:root {
  --ink: #0a0b0d;
  --ink-soft: #111317;
  --ink-card: #17191d;
  --white: #f8f7f3;
  --paper: #f2f1ec;
  --paper-card: #ffffff;
  --muted: #a9abb0;
  --muted-dark: #686b70;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 11, 13, 0.13);
  --red: #f02b32;
  --red-bright: #ff3940;
  --red-dark: #bd1820;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(5, 7, 11, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 13, 0.84);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
}

.brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d5d5d7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a:not(.button) {
  transition: color 180ms ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 12px;
}

.button--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(240, 43, 50, 0.2);
}

.button--red:hover,
.button--red:focus-visible {
  background: var(--red-bright);
}

.button--outline {
  border-color: rgba(10, 11, 13, 0.22);
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--full {
  width: 100%;
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 15px;
}

.text-link--light {
  color: #d6d6d8;
}

.text-link--light:hover,
.text-link--light:focus-visible {
  color: var(--white);
}

.text-link--dark {
  color: var(--ink);
}

.text-link--dark:hover,
.text-link--dark:focus-visible {
  color: var(--red-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 138px 0 28px;
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 77% 36%, rgba(240, 43, 50, 0.15), transparent 28%),
    radial-gradient(circle at 90% 2%, rgba(255, 255, 255, 0.07), transparent 22%),
    var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 250px;
  right: -180px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(255, 255, 255, 0.025), 0 0 0 128px rgba(255, 255, 255, 0.018);
}

.hero::after {
  top: 410px;
  left: -260px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(240, 43, 50, 0.18);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.hero__copy {
  max-width: 600px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--red {
  color: #ff7378;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 43, 50, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 760;
  line-height: 0.98;
}

h1 span {
  display: block;
  color: var(--red);
}

.hero__lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: #b8b9be;
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 29px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 43px;
  color: #a4a5aa;
  font-size: 12px;
  font-weight: 600;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item__icon {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #f8f7f3;
  font-size: 10px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 365px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.signal-card audio {
  display: none;
}

.signal-card::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(240, 43, 50, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(240, 43, 50, 0.06), 0 0 0 70px rgba(240, 43, 50, 0.035);
  content: "";
}

.signal-card__top,
.signal-card__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 61px;
  padding: 0 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #b4b5b9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-card__top {
  flex: 0 0 auto;
}

.signal-card__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.live-dot,
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4349;
  box-shadow: 0 0 0 5px rgba(255, 67, 73, 0.14);
}

.signal-card__live {
  color: #ff666b;
}

.signal-card__content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 273px;
  padding: 35px 25px 28px;
}

.station-mark {
  display: flex;
  align-items: center;
  gap: 15px;
}

.station-mark__orb {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 30px rgba(240, 43, 50, 0.25);
}

.station-mark__orb svg {
  width: 28px;
  height: 28px;
  overflow: visible;
  color: #fff;
}

.station-mark__orb path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.micro-label {
  display: block;
  margin-bottom: 5px;
  color: #85868b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.station-mark strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.station-mark__copy {
  margin: 5px 0 0;
  color: #9b9ca1;
  font-size: 12px;
  line-height: 1.4;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 93px;
  margin: 28px 0 24px;
  padding: 0 2px;
}

.waveform i {
  display: block;
  width: 4px;
  height: var(--bar);
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--red), #ff8c90);
  opacity: 0.9;
}

.waveform.is-playing i {
  transform-origin: center;
  animation: signal-pulse 1.15s ease-in-out infinite;
}

.waveform.is-playing i:nth-child(2n) {
  animation-delay: 120ms;
}

.waveform.is-playing i:nth-child(3n) {
  animation-delay: 240ms;
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.signal-card__now {
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-card__now-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.signal-card__now-head .micro-label {
  margin-bottom: 0;
}

.signal-card__state {
  color: #ff7378;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: #e7e6e3;
  font-size: 15px;
  font-weight: 700;
}

.signal-card__track > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-card__time {
  color: #898a8e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.signal-card__metadata {
  display: grid;
  gap: 5px;
  margin-top: 13px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.14);
}

.signal-card__metadata-label {
  color: #ff7378;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-card__meta {
  color: #c7c8cb;
  font-size: 12px;
  line-height: 1.45;
}

.signal-card__bottom {
  flex: 0 0 auto;
  min-height: 72px;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 0;
  text-transform: none;
}

.signal-card__bottom .micro-label {
  margin-bottom: 2px;
}

.signal-card__bottom strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
}

.signal-card__fact {
  min-width: 0;
}

.signal-card__fact--quality {
  margin-left: auto;
}

.signal-card__metric {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.signal-card__metric strong {
  color: #ff6d72;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.signal-card__metric span {
  color: #83858a;
  font-size: 10px;
}

.signal-card__play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.signal-card__play:hover {
  border-color: rgba(255, 109, 114, 0.8);
  background: rgba(240, 43, 50, 0.16);
  transform: translateY(-1px);
}

.signal-card__play:focus-visible {
  outline: 2px solid #ff8c90;
  outline-offset: 3px;
}

.signal-card__play:disabled {
  cursor: wait;
  opacity: 0.76;
}

.signal-card__play-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 9px;
  line-height: 1;
}

.signal-card__play.is-playing .signal-card__play-icon {
  background: #ff6d72;
  font-size: 11px;
}

.signal-card__footnote {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 33px;
  padding: 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #85868b;
  font-size: 10.5px;
}

@media (prefers-reduced-motion: reduce) {
  .waveform.is-playing i {
    animation: none;
  }
}

.signal-card__footnote .status-dot {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 0 4px rgba(255, 67, 73, 0.12);
}

.signal-card__footnote strong {
  color: #c7c8cb;
  font-size: inherit;
}

.hero__ticker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 45px;
  color: #8e9095;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-line {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--ink-soft);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip__grid > div {
  min-height: 118px;
  padding: 25px 32px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-strip__grid > div + div {
  padding-left: 27px;
}

.proof-strip__grid > div:last-child {
  border-right: 0;
}

.proof-number,
.card-index,
.plan-number {
  display: block;
  color: #77797f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.proof-strip strong {
  display: block;
  margin-top: 13px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: -0.015em;
}

.proof-strip p {
  margin: 5px 0 0;
  color: #85868c;
  font-size: 12px;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.section--light {
  background: var(--paper);
  color: var(--ink);
}

.agent-section {
  padding-top: 34px;
}

.agent-section__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 80px;
  align-items: center;
}

.agent-section__lede {
  max-width: 470px;
  margin: 23px 0 28px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.65;
}

.agent-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #17181c;
  color: var(--white);
  box-shadow: 0 20px 50px rgba(16, 17, 20, 0.12);
}

.agent-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.agent-card__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c9cbd0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.status-dot--green {
  background: #72dc9b;
}

.agent-card__body {
  padding: 27px 25px 30px;
}

.agent-card__body code {
  display: block;
  overflow-x: auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ff8790;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.agent-card__body p {
  margin: 11px 0 22px;
  color: #a9abb1;
  font-size: 13px;
  line-height: 1.55;
}

.section-heading h2,
.automation__copy h2,
.payment-copy h2,
.final-cta h2 {
  max-width: 670px;
  font-size: clamp(38px, 4.1vw, 61px);
  font-weight: 760;
  line-height: 1;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading__aside {
  max-width: 370px;
  margin: 0 0 3px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 27px 27px 25px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: var(--paper-card);
  box-shadow: 0 8px 30px rgba(10, 11, 13, 0.025);
}

.benefit-card--accent {
  background: var(--red);
  color: var(--white);
}

.benefit-card--accent .card-index,
.benefit-card--accent p,
.benefit-card--accent .text-link {
  color: rgba(255, 255, 255, 0.75);
}

.benefit-card--accent .benefit-card__icon {
  border-color: rgba(255, 255, 255, 0.33);
}

.benefit-card .card-index {
  margin-bottom: 31px;
}

.benefit-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.icon-bars {
  position: relative;
  width: 22px;
  height: 20px;
  background: linear-gradient(to right, var(--red) 0 3px, transparent 3px 7px, var(--red) 7px 10px, transparent 10px 14px, var(--red) 14px 17px, transparent 17px 22px);
  clip-path: polygon(0 55%, 15% 55%, 15% 20%, 29% 20%, 29% 78%, 44% 78%, 44% 0, 58% 0, 58% 62%, 72% 62%, 72% 31%, 86% 31%, 86% 88%, 100% 88%, 100% 100%, 0 100%);
}

.benefit-card--accent .icon-bars {
  background: var(--white);
}

.icon-play {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--red);
}

.benefit-card--accent .icon-play {
  border-left-color: var(--white);
}

.icon-chat {
  position: relative;
  width: 22px;
  height: 16px;
  border: 2px solid var(--red);
  border-radius: 5px;
}

.icon-chat::after {
  position: absolute;
  bottom: -5px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
  background: var(--paper-card);
  content: "";
  transform: skewY(-27deg);
}

.benefit-card h3 {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.1;
}

.benefit-card p {
  margin: 10px 0 18px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.65;
}

.benefit-card .text-link {
  margin-top: auto;
}

.pricing-section {
  padding-top: 82px;
  padding-bottom: 88px;
  scroll-margin-top: 88px;
  background:
    linear-gradient(rgba(10, 11, 13, 0.89), rgba(10, 11, 13, 0.89)),
    radial-gradient(circle at 50% 0%, rgba(240, 43, 50, 0.23), transparent 40%),
    var(--ink);
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-right: auto;
  margin-left: auto;
}

.section-heading--center > p:last-child {
  max-width: 510px;
  margin: 22px auto 0;
  color: #999b9f;
  font-size: 15px;
}

.billing-switch {
  display: flex;
  justify-content: center;
  gap: 3px;
  width: max-content;
  margin: 30px auto 34px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.billing-switch__button {
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #929499;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.billing-switch__button span {
  margin-left: 5px;
  color: #ff777c;
  font-size: 10px;
}

.billing-switch__button.is-active {
  background: var(--white);
  color: var(--ink);
}

.billing-switch__button.is-active span {
  color: var(--red-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 28px 27px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.plan-card--featured {
  border-color: rgba(240, 43, 50, 0.72);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.plan-card__ribbon {
  position: absolute;
  top: 0;
  right: 27px;
  padding: 7px 11px 8px;
  border-radius: 0 0 6px 6px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.plan-card .plan-kicker {
  color: #8d8f94;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card--featured .plan-kicker {
  color: #77797d;
}

.plan-card .plan-number {
  color: #777a80;
}

.plan-card h3 {
  margin-top: 44px;
  font-size: 31px;
  line-height: 1;
}

.plan-description {
  min-height: 48px;
  margin: 12px 0 25px;
  color: #9a9ca0;
  font-size: 13px;
  line-height: 1.5;
}

.plan-card--featured .plan-description {
  color: #6a6c70;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price {
  color: var(--white);
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.plan-card--featured .price {
  color: var(--ink);
}

.price-unit {
  color: #919399;
  font-size: 12px;
  font-weight: 700;
}

.plan-card--featured .price-unit {
  color: #6f7175;
}

.price-note {
  min-height: 20px;
  margin: 11px 0 28px;
  color: #ef6d73;
  font-size: 11px;
  font-weight: 750;
}

.plan-card--featured .price-note {
  color: var(--red-dark);
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: #c6c7ca;
  font-size: 12px;
  list-style: none;
}

.plan-card--featured .plan-features {
  color: #55575b;
}

.plan-features li {
  position: relative;
  padding-left: 20px;
}

.plan-features li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--red);
  border-left: 1.5px solid var(--red);
  content: "";
  transform: rotate(-45deg);
}

.plan-card .button--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.plan-card .button--outline:hover,
.plan-card .button--outline:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.plan-card--featured .button--red {
  box-shadow: none;
}

.pricing-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 27px;
  color: #777a80;
  text-align: center;
}

.pricing-footnote__mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #777a80;
  border-radius: 50%;
  font-size: 10px;
}

.pricing-footnote p {
  margin: 0;
  font-size: 11px;
}

.automation-section {
  padding-top: 88px;
  padding-bottom: 88px;
  scroll-margin-top: 88px;
  background: var(--ink-soft);
}

.automation__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr);
  gap: 70px;
  align-items: center;
}

.automation__copy h2 {
  max-width: 560px;
}

.automation__lede {
  max-width: 485px;
  margin: 26px 0 0;
  color: #a7a9ae;
  font-size: 15px;
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 0;
  max-width: 480px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  min-height: 72px;
  padding: 0 0 23px;
}

.steps li + li {
  position: relative;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.step-number {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #a3a5aa;
  font-size: 10px;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-top: 3px;
  color: var(--white);
  font-size: 14px;
}

.steps p {
  margin: 4px 0 0;
  color: #7f8186;
  font-size: 12px;
}

.automation-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #0b0c0f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 47px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #6f7278;
  font-size: 10px;
}

.console-lights {
  display: flex;
  gap: 5px;
}

.console-lights span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #393b40;
}

.console-lights span:first-child {
  background: #ef5a5e;
}

.console-menu {
  margin-left: auto;
  letter-spacing: 0.2em;
}

.console-body {
  padding: 29px;
}

.console-heading,
.console-plan,
.console-flow__item,
.console-note {
  display: flex;
  align-items: center;
}

.console-heading {
  justify-content: space-between;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #80c297;
  font-size: 10px;
  font-weight: 750;
}

.console-status .status-dot {
  width: 6px;
  height: 6px;
  background: #76c18e;
  box-shadow: none;
}

.console-plan {
  justify-content: space-between;
  margin-top: 28px;
  padding: 16px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.console-plan strong {
  color: var(--white);
  font-size: 21px;
  letter-spacing: -0.04em;
}

.console-price {
  color: #ff666c;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.console-price small {
  margin-left: 3px;
  color: #7e8085;
  font-size: 10px;
  font-weight: 600;
}

.console-flow {
  display: grid;
  grid-template-columns: 1fr 27px 1fr 27px 1fr;
  gap: 0;
  align-items: start;
  padding: 36px 0 31px;
}

.console-flow__item {
  display: block;
  text-align: center;
}

.console-flow__item > span {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #42444a;
  border-radius: 50%;
  color: #8a8c91;
  font-size: 11px;
  font-weight: 800;
}

.console-flow__item.is-done > span {
  border-color: #5b9c70;
  background: #1e3c29;
  color: #8bd3a0;
}

.console-flow__item.is-current > span {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.console-flow__item p {
  margin: 11px 0 3px;
  color: #e5e4e1;
  font-size: 11px;
  font-weight: 750;
}

.console-flow__item small {
  color: #707278;
  font-size: 9px;
}

.console-flow__line {
  height: 1px;
  margin-top: 15px;
  background: #3a3c42;
}

.console-note {
  align-items: flex-start;
  gap: 11px;
  padding: 14px 15px;
  border: 1px solid rgba(240, 43, 50, 0.24);
  border-radius: 7px;
  background: rgba(240, 43, 50, 0.08);
}

.console-note__icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
}

.console-note p {
  margin: 0;
  color: #adaeb2;
  font-size: 11px;
  line-height: 1.5;
}

.payment-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--red);
  scroll-margin-top: 88px;
}

.payment-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) 310px;
  gap: 46px;
  align-items: center;
  min-height: 230px;
}

.payment-band__inner::after {
  position: absolute;
  right: -145px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.04), 0 0 0 90px rgba(255, 255, 255, 0.03);
  content: "";
}

.payment-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 55px;
  line-height: 1;
}

.payment-copy {
  position: relative;
  z-index: 1;
}

.payment-copy .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.payment-copy h2 {
  max-width: 500px;
  font-size: clamp(32px, 3.1vw, 48px);
}

.payment-copy > p:last-child {
  max-width: 505px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
  line-height: 1.6;
}

.payment-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.payment-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.payment-points b {
  min-width: 36px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.crypto-payment {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 204px;
  gap: 35px;
  align-items: start;
  margin-bottom: 29px;
  padding: 25px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  background: rgba(10, 11, 13, 0.2);
}

.crypto-payment__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.crypto-payment__heading .micro-label,
.crypto-payment__qr-column > .micro-label {
  color: rgba(255, 255, 255, 0.65);
}

.crypto-payment__status {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.crypto-payment__content {
  min-width: 0;
}

.crypto-payment h3 {
  max-width: 590px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.03;
}

.crypto-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 23px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.crypto-steps li {
  display: flex;
  min-width: 0;
  gap: 10px;
  align-items: flex-start;
}

.crypto-step-number {
  display: inline-grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.crypto-steps strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  line-height: 1.2;
}

.crypto-steps small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.4;
}

.crypto-payment__qr-column {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
}

.crypto-payment__qr-frame {
  width: 164px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 11, 13, 0.18);
}

.crypto-payment__qr-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.crypto-payment__wallet-placeholder {
  display: grid;
  min-height: 144px;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--ink);
  text-align: center;
}

.crypto-payment__wallet-placeholder strong {
  font-size: 28px;
  letter-spacing: -0.06em;
}

.crypto-payment__wallet-placeholder span {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crypto-payment__wallet-placeholder small {
  margin-top: 5px;
  color: #77797e;
  font-size: 9px;
}

.crypto-payment__qr-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.crypto-payment__qr-note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.crypto-payment__qr-note strong {
  color: var(--white);
}

.crypto-address {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 auto 29px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 8px;
  background: rgba(10, 11, 13, 0.18);
}

.crypto-address__copy {
  min-width: 0;
}

.crypto-address code {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  line-height: 1.55;
}

.crypto-address p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.45;
}

.crypto-address .micro-label {
  color: rgba(255, 255, 255, 0.58);
}

.crypto-address__copy > strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 13px;
}

.crypto-address__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.crypto-address__button:hover,
.crypto-address__button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--red-dark);
}

.crypto-address__button--static {
  cursor: default;
  text-align: center;
}

.crypto-address__button--static:hover,
.crypto-address__button--static:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}

.faq-section {
  padding-bottom: 96px;
  scroll-margin-top: 88px;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 110px;
  align-items: start;
}

.faq__grid .section-heading > p:not(.eyebrow) {
  max-width: 310px;
  margin: 23px 0 28px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--red-dark);
  content: "+";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 45px 24px 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.7;
}

.signup-section {
  padding: 96px 0;
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 78% 25%, rgba(240, 43, 50, 0.18), transparent 27%),
    var(--ink-soft);
}

.signup__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 56px;
  align-items: start;
}

.signup__copy {
  max-width: 460px;
  padding-top: 18px;
}

.signup__copy h2 {
  max-width: 460px;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 760;
  line-height: 0.98;
}

.signup__lede {
  max-width: 430px;
  margin: 22px 0 0;
  color: #a1a3a8;
  font-size: 15px;
  line-height: 1.65;
}

.signup__promise {
  display: flex;
  max-width: 430px;
  gap: 13px;
  align-items: flex-start;
  margin-top: 30px;
}

.signup__promise-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(240, 43, 50, 0.5);
  border-radius: 50%;
  background: rgba(240, 43, 50, 0.12);
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 800;
}

.signup__promise strong {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.signup__promise p {
  max-width: 360px;
  margin: 5px 0 0;
  color: #85878c;
  font-size: 12px;
  line-height: 1.55;
}

.signup__proofs {
  display: grid;
  gap: 17px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.signup__proof {
  display: flex;
  gap: 12px;
  align-items: center;
}

.signup__proof-number {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(240, 43, 50, 0.5);
  border-radius: 8px;
  background: rgba(240, 43, 50, 0.1);
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signup__proof strong {
  display: block;
  color: var(--white);
  font-size: 12px;
}

.signup__proof p {
  margin: 3px 0 0;
  color: #85878c;
  font-size: 11px;
  line-height: 1.45;
}

.signup__support {
  max-width: 430px;
  margin: 35px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #a8aab0;
  font-size: 11px;
  line-height: 1.5;
}

.order-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.order-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px 24px;
  border-bottom: 1px solid var(--line-dark);
}

.order-card__top .micro-label {
  color: #85868b;
}

.order-card h3 {
  font-size: 31px;
  line-height: 1;
}

.order-card__intro {
  margin: 8px 0 0;
  color: #77797e;
  font-size: 12px;
  line-height: 1.45;
}

.order-card__mode {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.order-card__mode .status-dot {
  background: var(--red);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 30px 15px;
  border-bottom: 1px solid var(--line-dark);
  background: #fbfaf7;
}

.order-step {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #9a9b9e;
  font-size: 10px;
  font-weight: 800;
}

.order-step__number {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(10, 11, 13, 0.14);
  border-radius: 50%;
  color: #77797e;
  font-size: 9px;
  font-weight: 800;
}

.order-step--active {
  color: var(--ink);
}

.order-step--active .order-step__number {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 30px;
  border-bottom: 1px solid var(--line-dark);
  background: #f7f5f0;
}

.payment-methods__copy {
  min-width: 190px;
}

.payment-methods__copy .micro-label {
  color: #77797e;
}

.payment-methods__copy > strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: -0.02em;
}

.payment-methods__copy p {
  margin: 4px 0 0;
  color: #77797e;
  font-size: 10px;
  line-height: 1.4;
}

.payment-methods__grid {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.payment-method {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.payment-method__mark {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(10, 11, 13, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #505258;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.payment-method__mark svg {
  display: block;
  width: 19px;
  height: 19px;
}

.payment-method--google .payment-method__mark {
  background: #eaf1ff;
  color: #4285f4;
}

.payment-method--apple .payment-method__mark {
  border-color: #111216;
  background: #111216;
  color: #fff;
}

.payment-method--card .payment-method__mark {
  color: #55575c;
}

.payment-method--card .payment-method__mark svg {
  width: 22px;
  height: 16px;
}

.order-form {
  padding: 27px 30px 31px;
}

.order-form__section + .order-form__section {
  margin-top: 23px;
  padding-top: 23px;
  border-top: 1px solid rgba(10, 11, 13, 0.1);
}

.order-form__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}

.order-form__section-head .micro-label {
  margin-bottom: 4px;
  color: #85868b;
}

.order-form__section-head strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.order-form__section-count {
  flex: 0 0 auto;
  color: #9a9b9e;
  font-size: 10px;
  font-weight: 700;
}

.order-form__grid {
  display: grid;
  gap: 13px;
  margin-top: 14px;
}

.order-form__grid--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.order-form label > span {
  display: block;
  margin-bottom: 6px;
  color: #55575c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(10, 11, 13, 0.18);
  border-radius: 8px;
  outline: 0;
  background: #fffdf9;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.order-form input[type="text"]:focus,
.order-form input[type="email"]:focus,
.order-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 43, 50, 0.12);
}

.order-form__summary {
  display: grid;
  gap: 5px;
  margin-top: 13px;
  padding: 14px;
  border-radius: 9px;
  background: #f5f1ec;
}

.order-form__summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}

.order-form__summary span {
  color: #696b70;
  font-size: 10px;
  font-weight: 700;
}

.order-form__summary > div > div {
  display: grid;
  gap: 2px;
}

.order-form__summary > div > div strong {
  font-size: 12px;
  letter-spacing: 0;
}

.order-form__summary strong {
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.order-form__summary small {
  color: #77797e;
  font-size: 10px;
  line-height: 1.4;
}

.order-form__secure {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 21px;
  padding: 12px;
  border: 1px solid rgba(10, 11, 13, 0.1);
  border-radius: 8px;
  background: #faf9f6;
}

.order-form__secure-icon {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 111, 86, 0.12);
  color: #2f6f56;
  font-size: 11px;
  font-weight: 900;
}

.order-form__secure strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
}

.order-form__secure p {
  margin: 3px 0 0;
  color: #77797e;
  font-size: 10px;
  line-height: 1.4;
}

.order-form__check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 15px;
  color: #66686d;
  font-size: 11px;
  line-height: 1.45;
}

.order-form__check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--red);
}

.order-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.order-form .button {
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 9px;
}

.order-form__note {
  margin: 11px 0 0;
  color: #85878b;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.order-feedback {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 30px 28px;
  padding: 14px 16px;
  border: 1px solid rgba(164, 108, 25, 0.25);
  border-radius: 9px;
  background: #fff7e8;
  color: #795314;
}

.order-feedback__icon {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(164, 108, 25, 0.14);
  color: #a46c19;
  font-size: 12px;
  font-weight: 900;
}

.order-feedback strong {
  display: block;
  font-size: 11px;
}

.order-feedback p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

.order-feedback--setup {
  border-color: rgba(164, 108, 25, 0.25);
  background: #fff7e8;
}

.payment-result {
  padding: 27px 29px 29px;
  background: var(--ink-card);
  color: var(--white);
}

.payment-result__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.payment-result__top .micro-label {
  color: #85878d;
}

.payment-result h3 {
  color: var(--white);
  font-size: 27px;
}

.payment-result__status {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ff8a8e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.payment-result__main {
  display: block;
  margin-top: 27px;
}

.payment-result__amount .micro-label {
  color: #85878d;
}

.payment-result__amount strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: clamp(29px, 4vw, 45px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.payment-result__amount > small {
  display: block;
  margin-top: 8px;
  color: #b7b9be;
  font-size: 12px;
}

.payment-result__expiry {
  display: block;
  max-width: 260px;
  margin-top: 24px;
  color: #85878d;
  font-size: 10px;
  line-height: 1.5;
}

.payment-result__qr-column {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #b7b9be;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.payment-result__qr {
  display: grid;
  width: 154px;
  height: 154px;
  padding: 9px;
  place-items: center;
  border-radius: 7px;
  background: var(--white);
}

.payment-result__qr img,
.payment-result__qr canvas {
  display: block;
  width: 136px !important;
  height: 136px !important;
}

.payment-result__checkout-mark {
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: linear-gradient(145deg, #f8f7f3, #dad9d3);
  color: var(--ink);
  text-align: center;
}

.payment-result__checkout-mark strong {
  font-size: 28px;
  letter-spacing: -0.08em;
}

.payment-result__checkout-mark span {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-result__checkout-link {
  justify-self: end;
  min-height: 35px;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
}

.payment-result__address {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 16px;
  align-items: center;
  margin-top: 26px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.payment-result__address .micro-label {
  grid-column: 1 / -1;
  margin: 0;
  color: #85878d;
}

.payment-result__address p {
  min-width: 0;
  margin: 0;
  color: #e9e9e7;
  font-size: 12px;
  line-height: 1.5;
}

.payment-result__message {
  margin: 16px 0 0;
  color: #9c9ea4;
  font-size: 11px;
  line-height: 1.5;
}

.payment-result__new {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.final-cta {
  padding: 72px 0;
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 80% 50%, rgba(240, 43, 50, 0.16), transparent 26%),
    var(--ink-soft);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  max-width: 570px;
}

.final-cta p:last-child {
  margin: 16px 0 0;
  color: #96989d;
  font-size: 15px;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer {
  background: var(--ink);
}

.footer__top {
  display: flex;
  align-items: center;
  min-height: 108px;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer {
  width: 137px;
}

.footer__top p {
  margin: 0;
  color: #797b80;
  font-size: 12px;
}

.footer__site {
  margin-left: auto;
  color: #c5c6c9;
  font-size: 12px;
  font-weight: 700;
}

.footer__site span {
  color: var(--red);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 25px;
  color: #66686e;
  font-size: 10px;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .signal-card {
    width: min(100%, 600px);
  }

  .automation__grid,
  .agent-section__grid,
  .faq__grid,
  .signup__grid {
    gap: 55px;
  }

  .agent-section__grid {
    grid-template-columns: 1fr;
  }

  .signup__grid {
    grid-template-columns: 1fr;
  }

  .signup__copy {
    padding-top: 0;
  }

  .order-card {
    width: min(100%, 680px);
  }

  .payment-band__inner {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .payment-points {
    grid-column: 2;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .payment-points span {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 0;
  }

  .payment-points b {
    display: block;
    margin-bottom: 5px;
  }

}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .topbar__inner {
    min-height: 74px;
  }

  .brand {
    width: 145px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: #15171a;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a:not(.button) {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .site-nav .button {
    margin-top: 10px;
  }

  .hero {
    min-height: 0;
    padding: 142px 0 39px;
  }

  .hero,
  .section,
  .payment-band,
  .final-cta,
  .signup-section {
    scroll-margin-top: 74px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 76px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__trust {
    margin-top: 34px;
  }

  .hero__ticker {
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 35px;
    line-height: 1.4;
  }

  .proof-strip__grid,
  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div + div {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 85px 0;
  }

  .signup-section {
    padding: 78px 0;
  }

  .section-heading--split,
  .final-cta__inner {
    display: block;
  }

  .section-heading__aside {
    margin-top: 23px;
  }

  .benefit-grid {
    gap: 12px;
    margin-top: 45px;
  }

  .benefit-card {
    min-height: 320px;
  }

  .pricing-section {
    padding-top: 88px;
  }

  .pricing-grid {
    gap: 14px;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-card--featured {
    order: -1;
  }

  .automation__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .order-card__top,
  .order-form,
  .payment-result {
    padding-right: 20px;
    padding-left: 20px;
  }

  .payment-methods {
    display: grid;
    gap: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .payment-methods__copy {
    min-width: 0;
  }

  .payment-methods__grid {
    justify-content: flex-start;
    gap: 12px;
  }

  .order-steps {
    padding-right: 20px;
    padding-left: 20px;
  }

  .order-form__section-head {
    align-items: flex-start;
  }

  .signup__support {
    margin-top: 28px;
  }

  .order-form__grid--split,
  .payment-result__main {
    grid-template-columns: 1fr;
  }

  .payment-result__qr-column {
    justify-items: start;
    text-align: left;
  }

  .payment-result__address {
    grid-template-columns: 1fr;
  }

  .payment-result__address .micro-label {
    grid-column: auto;
  }

  .payment-result__address .payment-result__checkout-link {
    justify-content: center;
    width: 100%;
  }

  .order-feedback {
    margin-right: 20px;
    margin-left: 20px;
  }

  .automation-console {
    width: 100%;
  }

  .payment-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .payment-symbol {
    width: 66px;
    height: 66px;
    font-size: 45px;
  }

  .payment-points {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .payment-points span {
    display: flex;
    padding: 10px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .payment-points b {
    margin: 0;
  }

  .crypto-payment {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 29px;
    padding: 20px 18px 22px;
  }

  .crypto-payment__heading {
    flex-direction: column;
    gap: 11px;
  }

  .crypto-payment__status {
    align-self: flex-start;
  }

  .crypto-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
  }

  .crypto-payment__qr-frame {
    width: 154px;
  }

  .crypto-address {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .crypto-address__button {
    width: 100%;
  }

  .faq-section {
    padding-bottom: 88px;
  }

  .faq-list {
    margin-top: 50px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-cta__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .footer__top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 17px 22px;
    padding: 30px 0;
  }

  .footer__site {
    width: 100%;
    margin-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero__trust {
    display: grid;
    gap: 12px;
  }

  .signal-card__top,
  .signal-card__bottom {
    padding-right: 17px;
    padding-left: 17px;
  }

  .signal-card__content {
    padding-right: 17px;
    padding-left: 17px;
  }

  .signal-card__footnote {
    padding-right: 17px;
    padding-left: 17px;
  }

  .signal-card__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .signal-card__fact--quality {
    margin-left: 0;
  }

  .signal-card__play {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    padding-right: 9px;
  }

  .waveform {
    gap: 4px;
  }

  .waveform i {
    width: 3px;
  }

  .billing-switch {
    width: 100%;
  }

  .billing-switch__button {
    flex: 1;
    padding: 0 8px;
  }

  .payment-methods__grid {
    grid-template-columns: 1fr;
  }

  .console-body {
    padding: 21px 16px;
  }

  .console-flow {
    grid-template-columns: 1fr 13px 1fr 13px 1fr;
  }

  .console-flow__item p {
    font-size: 10px;
  }
}

/* RECAsound design refinement — September 2026 */
[hidden] { display: none !important; }
:root { --muted: #b5b7bc; --muted-dark: #555961; }
::selection { background: #b61e2b; color: #fff; }
:focus-visible { outline: 3px solid #e83b46; outline-offset: 5px; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 100; padding: 12px 20px; background: #fff; color: #111; border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.topbar__inner { min-height: 80px; }
.site-nav { gap: 26px; font-size: 14px; }
.button { font-size: 14px; min-height: 50px; }
.button--red { background: #d91e2b; box-shadow: none; }
.button--red:hover { background: #be1522; }
.hero { padding: 138px 0 64px; background: radial-gradient(ellipse at 88% 30%, #361820 0, transparent 42%), #0a0b0d; }
.hero::before { opacity: .45; top: 140px; }
.hero::after { display: none; }
.hero__grid { gap: 64px; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); }
h1 { font-size: clamp(48px,5.5vw,76px); line-height: 1.04; letter-spacing: -.055em; text-wrap: balance; }
h1 span { color: #ff4c57; }
.hero__lede { font-size: 17px; line-height: 1.7; max-width: 550px; }
.hero__price { margin: 24px 0 0; font-size: 15px; color: #c5c6cb; }
.hero__price strong { color: #fff; font-size: 22px; letter-spacing: -.035em; }
.hero__price > span { padding-left: 6px; }
.hero__actions { margin-top: 24px; }
.hero__trust { gap: 12px 22px; margin-top: 28px; color: #babdc4; }
.signal-card { border-radius: 20px; background: linear-gradient(150deg,#23262c,#13161b); border-color: #3d3e46; scroll-margin-top: 100px; }
.signal-card::after { display: none; }
.signal-card__top { padding: 20px 24px; }
.signal-card__content { padding: 28px 24px 22px; }
.signal-card__label,.signal-card__live { font-size: 10px; letter-spacing: .12em; }
.station-mark strong { font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.station-mark__copy { color: #b8bcc3; font-size: 13px; }
.signal-card .micro-label { color: #b0b4be; font-size: 10px; }
.waveform { height: 86px; justify-content: space-between; gap: 5px; margin: 28px 0 24px; }
.waveform i { flex: 1; max-width: 7px; background: #f66d78; border-radius: 6px; }
.signal-card__track { align-items: start; gap: 12px; }
.signal-card__track > span:first-child { white-space: normal; overflow-wrap: anywhere; font-size: 16px; line-height: 1.45; }
.signal-card__metadata { padding: 0; border: 0; background: none; margin-top: 10px; }
.signal-card__meta { color: #bbc0c8; line-height: 1.5; font-size: 12px; }
.signal-card__state { color: #c5c9d0; font-size: 10px; }
.signal-card__bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 22px 24px; }
.signal-card__fact--quality { margin-left: 0; text-align: right; }
.signal-card__play { grid-column: 1/-1; width: 100%; justify-content: center; min-height: 52px; border: 0; background: #e12230; color: white; font-size: 14px; }
.signal-card__play:hover { background: #bd1724; }
.signal-card__play-icon { background: #fff; color: #d91e2b; }
.signal-card__footnote { padding: 12px 24px; color: #aeb3bd; font-size: 11px; }
.service-strip { border-top: 1px solid #292c32; background: #101216; }
.service-strip__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); padding-block: 32px; }
.service-strip__grid > div { padding-inline: 28px; border-left: 1px solid #32343a; }
.service-strip__grid > div:first-child { padding-left: 0; border: 0; }
.service-strip__number { display: block; margin-bottom: 10px; color: #fb8790; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.service-strip strong { display: block; font-size: 17px; font-weight: 650; letter-spacing: -.025em; }
.service-strip p { margin: 8px 0 0; color: #b1b5bd; font-size: 13px; line-height: 1.6; }
.section-heading h2 { font-size: clamp(34px,3.7vw,50px); line-height: 1.08; text-wrap: balance; }
.pricing-section { background: #f5f4ef; color: #13151a; padding: 80px 0; }
.pricing-section .eyebrow { color: #b8202c; }
.pricing-section .section-heading--center h2 { max-width: 820px; }
.pricing-section .section-heading--center > p:last-child { max-width: 610px; color: #565b64; font-size: 16px; margin-top: 18px; }
.billing-switch { background: #e7e6e0; border-color: #d3d3cd; margin-block: 30px 40px; }
.billing-switch__button { color: #444951; min-height: 44px; font-size: 13px; padding-inline: 20px; }
.billing-switch__button.is-active { background: #16191e; color: #fff; }
.billing-switch__button span { color: #a9232d; font-size: 11px; }
.billing-switch__button.is-active span { color: #ffafb5; }
.pricing-grid { gap: 22px; }
.plan-card { padding: 30px 26px 26px; min-height: 560px; border: 1px solid #d5d6d0; border-radius: 16px; background: #fff; color: #17191e; box-shadow: 0 8px 28px #17202b06; }
.plan-card--featured { border: 2px solid #d91e2b; padding: 29px 25px 25px; background: #fff; box-shadow: 0 12px 40px #72102010; }
.plan-card__ribbon { top: -14px; right: 22px; border-radius: 20px; padding: 7px 13px; font-size: 10px; background: #b81d2a; }
.plan-card .plan-kicker { color: #646872; font-size: 10px; letter-spacing: .08em; }
.plan-card .plan-number { color: #6a6e77; }
.plan-card h3 { margin-top: 26px; font-size: 29px; line-height: 1.15; }
.plan-description,.plan-card--featured .plan-description { color: #5c6068; font-size: 14px; min-height: 64px; margin: 12px 0 20px; }
.plan-card .price { color: #15171c; font-size: clamp(42px,4vw,54px); font-variant-numeric: tabular-nums; }
.plan-card .price-unit { color: #555b66; font-size: 13px; }
.plan-card .price-note { color: #a52330; font-size: 12px; margin-bottom: 24px; }
.plan-card .plan-features { border-top: 1px solid #e5e6e1; padding-top: 24px; color: #444a55; font-size: 14px; gap: 11px; }
.plan-card .button { margin-top: auto; }
.plan-card .button--outline { border-color: #b9bec7; color: #252a33; }
.plan-card .button--outline:hover { background: #17191f; color: #fff; border-color: #17191f; }
.pricing-footnote { color: #555c66; line-height: 1.6; }
.pricing-footnote p { font-size: 13px; }
.signup-section { padding: 80px 0; background: #111419; }
.signup__grid { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 64px; }
.signup__copy { position: sticky; top: 120px; }
.signup__copy h2 { font-size: clamp(36px,4vw,52px); line-height: 1.1; }
.signup__lede { color: #bec2ca; font-size: 16px; }
.signup__promise p,.signup__proof p { font-size: 14px; color: #afb5c0; }
.signup__promise strong,.signup__proof strong { font-size: 15px; }
.signup__support { font-size: 14px; color: #c2c6ce; }
.signup__support a { display: block; margin-top: 6px; color: #ff929b; text-decoration: underline; text-underline-offset: 4px; }
.order-card { border-radius: 18px; background: #fff; }
.order-card__top { padding: 26px; }
.order-card__intro { font-size: 14px; color: #5b616c; }
.order-card__mode { display: none; }
.payment-methods { padding: 18px 26px; }
.payment-methods__copy .micro-label,.payment-methods__copy p { display: none; }
.payment-methods__copy > strong { font-size: 13px; }
.payment-methods__grid { gap: 12px; }
.order-form { padding: 26px; }
.order-form label > span { font-size: 14px; }
.order-form input[type="text"],.order-form input[type="email"],.order-form select { font-size: 16px; min-height: 50px; background: #fff; }
.order-form__summary { background: #f4f4ef; }
.order-form__summary small,.order-form__check,.order-form__note { font-size: 13px; color: #555b66; }
.order-form__secure p { font-size: 12px; color: #595f69; }
.order-form__section-count { display: none; }
.faq-section { padding: 80px 0; background: #f5f4ef; }
.faq-list { margin-top: 0; }
.faq-list summary { font-size: 17px; padding-block: 24px; }
.faq-list details p { color: #535963; font-size: 16px; line-height: 1.7; }
.agent-section { background: #e9eae5; padding: 64px 0; border-top: 1px solid #d5d7d0; }
.agent-section .section-heading h2 { font-size: clamp(30px,3vw,40px); }
.agent-card__body p { font-size: 14px; }
.footer__bottom { color: #aeb4be; font-size: 12px; }
@media (max-width: 980px) {
  .hero__grid { gap: 36px; }
  .signup__grid { gap: 32px; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
  .plan-card { padding-inline: 20px; }
  .plan-description { min-height: 84px; }
}
@media (max-width: 780px) {
  .topbar__inner { min-height: 72px; }
  .site-nav { top: 71px; }
  .hero { padding: 112px 0 40px; }
  .hero__grid,.signup__grid { grid-template-columns: minmax(0,1fr); }
  .hero__grid { gap: 38px; }
  h1 { font-size: clamp(42px,11vw,65px); max-width: 570px; }
  .hero__lede { font-size: 16px; margin-top: 20px; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 20px; }
  .hero__trust { display: flex; gap: 12px 20px; font-size: 12px; }
  .signal-card { width: 100%; max-width: 540px; justify-self: center; }
  .signal-card__content { padding-top: 24px; }
  .service-strip__grid { grid-template-columns: minmax(0,1fr); padding-block: 8px; }
  .service-strip__grid > div,.service-strip__grid > div:first-child { border: 0; padding: 22px 0; }
  .service-strip__grid > div + div { border-top: 1px solid #32343a; }
  .service-strip__number { margin-bottom: 6px; }
  .pricing-section,.signup-section,.faq-section { padding: 56px 0; }
  .section-heading h2 { font-size: 36px; }
  .pricing-grid { gap: 26px; }
  .plan-card,.plan-card--featured { min-height: 0; padding: 28px 24px; }
  .plan-description,.plan-card--featured .plan-description { min-height: 0; }
  .plan-card h3 { margin-top: 22px; }
  .plan-card .plan-features { margin-bottom: 24px; }
  .plan-card .price { font-size: 48px; }
  .billing-switch { width: max-content; max-width: 100%; }
  .billing-switch__button { padding-inline: 14px; }
  .signup__copy { position: static; max-width: none; }
  .signup__proofs { gap: 18px; margin-top: 26px; }
  .signup__promise { display: none; }
  .signup__support { margin-top: 24px; }
  .order-card__top,.order-form { padding: 22px 20px; }
  .payment-methods { padding: 16px 20px; gap: 12px; }
  .payment-methods__grid { display: flex; flex-wrap: wrap; }
  .order-form__grid--split { grid-template-columns: minmax(0,1fr); }
  .faq-list { margin-top: 30px; }
  .agent-section { padding: 48px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation: none !important; transition: none !important; }
}
/* Keep the same plan sequence on screen and for keyboard navigation. */
@media (max-width: 780px) { .plan-card--featured { order: 0; } }

/* Professional checkout: one form, a persistent order summary. */
.checkout-section { padding: 88px 0; }
.checkout-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: 32px; }
.checkout-heading h2 { font-size: clamp(36px,4vw,54px); line-height: 1.1; }
.checkout-heading > div > p:last-child { margin: 16px 0 0; color: #bac0ca; font-size: 16px; }
.checkout-help { flex-shrink: 0; color: #aeb6c3; font-size: 13px; line-height: 1.8; }
.checkout-help span { display: block; color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.checkout-card { background: #fff; border: 1px solid #d9dde3; box-shadow: 0 24px 70px #0003; border-radius: 20px; }
.checkout-progress { display: flex; gap: 44px; list-style: none; margin: 0; padding: 24px 36px; border-bottom: 1px solid #e6e8ed; background: #fff; }
.checkout-progress li { display: flex; align-items: center; gap: 10px; color: #687180; font-size: 13px; font-weight: 600; }
.checkout-progress li > span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid #d6dae2; border-radius: 50%; font-size: 12px; }
.checkout-progress li[aria-current] { color: #202733; }
.checkout-progress li[aria-current] > span { background: #202733; border-color: #202733; color: #fff; }
.checkout-form { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(310px,1fr); padding: 0; gap: 0; }
.checkout-fields { min-width: 0; padding: 36px; }
.checkout-fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.checkout-fieldset + .checkout-fieldset { margin-top: 32px; border-top: 1px solid #e4e7ec; padding-top: 30px; }
.checkout-fieldset legend { float: left; width: 100%; display: flex; align-items: center; gap: 12px; margin: 0 0 8px; color: #202733; font-size: 19px; font-weight: 650; letter-spacing: -.025em; }
.checkout-fieldset legend > span { font-size: 11px; color: #aa2530; font-weight: 700; letter-spacing: .04em; }
.checkout-hint { clear: both; margin: 0 0 22px; font-size: 13px; line-height: 1.65; color: #657080; }
.checkout-form .order-form__grid { margin-top: 0; gap: 18px; }
.checkout-contact { grid-template-columns: repeat(2,minmax(0,1fr)); }
.checkout-email { grid-column: 1/-1; }
.checkout-form label > span { font-size: 13px; font-weight: 600; color: #394352; margin-bottom: 8px; }
.checkout-form input[type="text"],.checkout-form input[type="email"],.checkout-form select { height: 50px; min-height: 50px; padding: 0 14px; border: 1px solid #cdd3dd; border-radius: 8px; box-shadow: 0 1px 2px #17253304; color: #202733; background: #fff; font-size: 15px; }
.checkout-form input::placeholder { color: #818a98; opacity: 1; }
.checkout-form input:focus,.checkout-form select:focus { border-color: #a52835; box-shadow: 0 0 0 3px #b4263515; }
.checkout-email small { display: block; margin-top: 7px; color: #667180; font-size: 12px; }
.checkout-privacy { display: flex; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid #e5e8ec; color: #525e6e; }
.checkout-privacy svg { flex: 0 0 21px; width: 21px; height: 24px; color: #697887; }
.checkout-privacy p { margin: 0; font-size: 12px; line-height: 1.75; }
.checkout-privacy p > span { color: #717b89; }
.checkout-summary { min-width: 0; padding: 36px 30px; background: #f5f6f8; border-left: 1px solid #e2e5eb; }
.checkout-summary__label { margin: 0 0 24px; color: #667180; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.checkout-summary .order-form__summary { display: block; margin: 0; padding: 0; border-radius: 0; background: none; }
.checkout-summary h3 { font-size: 26px; font-weight: 700; line-height: 1.2; letter-spacing: -.04em; color: #202733; }
.checkout-summary .checkout-plan-detail { margin: 10px 0 26px; color: #606d7c; font-size: 13px; line-height: 1.7; min-height: 44px; }
.checkout-summary .checkout-total { display: block; border-top: 1px solid #dce1e8; padding-top: 24px; }
.checkout-summary .checkout-total > span { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 500; color: #586575; }
.checkout-summary .checkout-total > div { display: flex; align-items: baseline; gap: 8px; }
.checkout-summary .checkout-total strong { color: #1d2531; font-size: 42px; font-weight: 750; line-height: 1.2; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.checkout-summary .checkout-total > div > span { font-size: 14px; font-weight: 500; color: #5f6b7c; }
.checkout-summary [data-order-summary-note] { display: block; margin-top: 10px; color: #4e5d6f; font-size: 12px; line-height: 1.7; }
.checkout-final-price { margin: 16px 0 22px; color: #667180; font-size: 12px; line-height: 1.65; }
.checkout-summary .order-form__check { gap: 10px; margin-top: 0; padding-top: 22px; border-top: 1px solid #dce1e8; }
.checkout-summary .order-form__check > span { margin: 0; color: #525e6e; font-size: 12px; font-weight: 400; line-height: 1.7; }
.checkout-summary .order-form__check input { margin-top: 3px; width: 18px; height: 18px; }
.checkout-summary .button { min-height: 54px; margin-top: 22px; border-radius: 9px; font-size: 14px; }
.checkout-stripe { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 18px; color: #596675; font-size: 12px; }
.checkout-stripe svg { height: 15px; width: 15px; margin-right: 3px; }
.checkout-stripe strong { color: #333e50; font-size: 14px; }
.checkout-wallets { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.checkout-wallets span { padding: 5px 10px; border: 1px solid #d6dce5; border-radius: 5px; color: #505c6c; background: #fff; font-size: 11px; font-weight: 600; }
.checkout-wallet-note { margin: 10px auto 0; max-width: 270px; color: #657080; text-align: center; font-size: 11px; line-height: 1.6; }
.checkout-card .order-feedback { margin: 24px 30px; }
@media(max-width:980px) {
 .checkout-form { grid-template-columns: minmax(0,1.25fr) minmax(290px,1fr); }
 .checkout-fields,.checkout-summary { padding: 28px 24px; }
 .checkout-contact { grid-template-columns: minmax(0,1fr); }
}
@media(max-width:780px) {
 .checkout-section { padding: 54px 0; }
 .checkout-heading { display: block; }
 .checkout-help { display: inline-block; margin-top: 20px; }
 .checkout-help span { display: inline; margin-left: 6px; }
 .checkout-progress { justify-content: space-between; gap: 10px; padding: 20px; }
 .checkout-progress li { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 10px; }
 .checkout-form { grid-template-columns: minmax(0,1fr); }
 .checkout-fields,.checkout-summary { padding: 26px 22px; }
 .checkout-summary { border-left: 0; border-top: 1px solid #dce1e8; }
 .checkout-form input[type="text"],.checkout-form input[type="email"],.checkout-form select { font-size: 16px; }
 .checkout-summary .checkout-plan-detail { min-height: 0; margin-bottom: 22px; }
 .checkout-summary__label { margin-bottom: 16px; }
 .checkout-card { border-radius: 16px; }
}

/* Precision and clarity pass: factual copy with the existing RECAsound identity. */
.button--ghost {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.035);
  color: #fff;
}
.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: #ff8a91;
  background: rgba(255,255,255,.08);
}
.hero__copy { max-width: 660px; }
.hero__actions { gap: 12px; }
.hero__actions .button { padding-inline: 19px; }
.signal-card__demo-note {
  margin: 17px 0 0;
  padding: 12px 14px;
  border-left: 2px solid #f66d78;
  background: rgba(240,43,50,.08);
  color: #bfc3ca;
  font-size: 11px;
  line-height: 1.55;
}
.signal-card__demo-note strong { color: #f2f1ed; }
.signal-card__fact--quality { text-align: left; }
.signal-card__footnote { letter-spacing: .01em; }

.quality-section {
  padding: 76px 0;
  border-top: 1px solid #292c32;
  border-bottom: 1px solid #2b2e34;
  background: #17191e;
  color: #f8f7f3;
}
.quality-section__grid {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(46px,7vw,92px);
  align-items: start;
}
.quality-section h2 {
  max-width: 520px;
  font-size: clamp(36px,4.2vw,56px);
  line-height: 1.05;
}
.quality-section__copy { max-width: 650px; }
.quality-section__copy p {
  margin: 0;
  color: #c1c4ca;
  font-size: 15px;
  line-height: 1.75;
}
.quality-section__copy p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.plan-description,
.plan-card--featured .plan-description { min-height: 88px; }
.plan-card .plan-features { font-size: 13.5px; line-height: 1.5; }
.pricing-clarity {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  margin-top: 30px;
}
.pricing-clarity__card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 24px;
  border: 1px solid #d8d9d4;
  border-radius: 12px;
  background: #fff;
  color: #454b55;
}
.pricing-clarity__card .pricing-footnote__mark {
  width: 24px;
  height: 24px;
  border-color: #b52834;
  color: #a6202d;
  font-weight: 750;
}
.pricing-clarity__card h3 {
  color: #17191e;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.025em;
}
.pricing-clarity__card p {
  margin: 7px 0 0;
  color: #5b616b;
  font-size: 13px;
  line-height: 1.65;
}

.checkout-heading > div { max-width: 760px; }
.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}
.checkout-progress li { min-width: 0; line-height: 1.35; }

@media(max-width:980px) {
  .quality-section__grid { gap: 42px; }
  .plan-description,
  .plan-card--featured .plan-description { min-height: 108px; }
  .checkout-progress { gap: 12px; padding-inline: 24px; }
  .checkout-progress li { font-size: 11px; }
}
@media(max-width:780px) {
  .quality-section { padding: 58px 0; }
  .quality-section__grid { grid-template-columns: minmax(0,1fr); gap: 28px; }
  .quality-section__copy p { font-size: 14px; }
  .plan-description,
  .plan-card--featured .plan-description { min-height: 0; }
  .pricing-clarity { grid-template-columns: minmax(0,1fr); }
  .checkout-progress { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .checkout-progress li { flex-direction: row; align-items: center; }
}
@media(max-width:480px) {
  .hero__actions { align-items: stretch; gap: 11px; }
  .hero__actions .button { width: 100%; }
  .pricing-clarity__card { padding: 19px; }
}
