:root {
  --ink: #102f33;
  --ink-soft: #426167;
  --paper: #f5f2e9;
  --paper-deep: #ebe7db;
  --white: #fffef9;
  --teal: #12a99c;
  --teal-dark: #087b75;
  --mint: #c5f7de;
  --lime: #d9ff7a;
  --blue: #7ed7ff;
  --coral: #ff8c72;
  --line: rgba(16, 47, 51, .14);
  --shadow: 0 24px 70px rgba(20, 53, 57, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 16px 0;
  transition: padding .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: 9px 0;
  background: rgba(245, 242, 233, .85);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 3px;
  padding: 4px;
  border-radius: 10px;
  background: var(--ink);
  transform: rotate(45deg);
}

.brand-mark span {
  display: block;
  border-radius: 50%;
  background: var(--lime);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: var(--teal);
}

.brand-name {
  font-size: 19px;
  font-weight: 820;
  letter-spacing: -.5px;
}

.brand-by {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 660;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
}

.language-switch :is(a, button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.language-switch :is(a, button)[aria-current="page"],
.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

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

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

.button-ink {
  background: var(--ink);
  color: white;
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 30px rgba(18, 169, 156, .22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 18px 36px rgba(18, 169, 156, .28);
}

.button-light {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 154px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(16, 47, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 51, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: 28px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(126, 215, 255, .55), rgba(126, 215, 255, 0) 68%);
}

.hero-glow-two {
  bottom: -190px;
  left: -110px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 255, 122, .52), rgba(217, 255, 122, 0) 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.landing-hero {
  min-height: 0;
  padding: 150px 0 88px;
}

.landing-hero .hero-copy {
  max-width: 780px;
}

.related-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.landing-note {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(18, 169, 156, .13);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 22px;
  font-size: clamp(50px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 10px;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.05em;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 730;
  cursor: pointer;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding-left: 2px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 11px;
  transition: transform .25s var(--ease), border-color .25s ease;
}

.text-button:hover .play-icon,
.text-button:focus-visible .play-icon {
  transform: scale(1.08);
  border-color: var(--teal);
}

.proof-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
}

.proof-row div {
  display: flex;
  flex-direction: column;
  min-width: 118px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.proof-row div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-row strong {
  font-size: 20px;
  letter-spacing: -.03em;
}

.proof-row span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

.hero-console {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 249, .76);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(16, 47, 51, .04);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.hero-console::before,
.hero-console::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: var(--radius-lg);
}

.hero-console::before {
  inset: 24px -18px -22px 34px;
  background: var(--teal);
  opacity: .17;
  transform: rotate(2deg);
}

.hero-console::after {
  inset: -18px 36px 28px -24px;
  border: 1px solid rgba(16, 47, 51, .11);
  transform: rotate(-2deg);
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 5px 17px;
  border-bottom: 1px solid var(--line);
}

.console-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 780;
}

.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2dc373;
  box-shadow: 0 0 0 0 rgba(45, 195, 115, .45);
  animation: status-pulse 2.2s infinite;
}

.console-date {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.day-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px 20px;
}

.day-score > div:first-child {
  display: flex;
  flex-direction: column;
}

.score-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 680;
}

.day-score strong {
  margin-top: 2px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.05em;
}

.score-ring {
  --score: 76;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) calc(var(--score) * 1%), var(--paper-deep) 0);
  transition: background .5s ease;
}

.score-ring span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
}

.appointments {
  display: grid;
  gap: 10px;
}

.appointment {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .8);
  transition: border-color .35s ease, background .35s ease, transform .35s var(--ease);
}

.appointment time {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.appointment-main {
  display: flex;
  flex-direction: column;
}

.appointment-main strong {
  font-size: 13px;
}

.appointment-main span {
  color: var(--ink-soft);
  font-size: 10px;
}

.appointment-state {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--mint);
  color: #176841;
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
}

.appointment.is-waiting .appointment-state {
  background: #fff0bf;
  color: #886008;
}

.appointment.is-recovered {
  border-color: rgba(18, 169, 156, .5);
  background: rgba(197, 247, 222, .45);
  transform: translateX(-7px);
}

.appointment.is-recovered .appointment-state {
  background: var(--teal);
  color: white;
}

.protect-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
}

.protect-button:hover,
.protect-button:focus-visible {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.protect-icon {
  font-size: 16px;
}

.protect-button.is-running .protect-icon {
  animation: spin .75s linear infinite;
}

.console-note {
  padding: 11px 9px 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 249, .55);
}

.signal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  overflow: hidden;
}

.signal-inner span {
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 790;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.signal-inner i {
  flex: 1;
  min-width: 18px;
  height: 1px;
  background: var(--line);
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.how-copy h2,
.ai-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 16px 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.section-heading p,
.how-copy p,
.faq-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading-left p {
  margin-inline: 0;
}

.fit-section {
  background: var(--white);
}

.balance-grid {
  display: grid;
  grid-template-columns: 1fr 86px 1fr;
  align-items: center;
  gap: 22px;
}

.balance-card {
  min-height: 410px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.balance-stays {
  border: 1px solid var(--line);
  background: var(--paper);
}

.balance-lighter {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.balance-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border-radius: 14px;
  background: var(--white);
  color: var(--teal);
  font-size: 20px;
}

.balance-lighter .balance-icon {
  background: var(--lime);
  color: var(--ink);
}

.card-label {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.balance-lighter .card-label {
  color: var(--lime);
}

.balance-card h3 {
  margin: 10px 0 24px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.balance-card ul,
.ai-list,
.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.balance-card li,
.ai-list li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.balance-lighter li,
.ai-list li {
  color: rgba(255, 255, 255, .76);
}

.balance-card li::before,
.ai-list li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.balance-lighter li::before,
.ai-list li::before {
  color: var(--lime);
}

.balance-bridge {
  position: relative;
  display: grid;
  place-items: center;
}

.balance-bridge span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
  box-shadow: 0 0 0 10px var(--white);
}

.balance-bridge div {
  position: absolute;
  width: 1px;
  height: 240px;
  background: linear-gradient(transparent, var(--teal), transparent);
}

.how-section {
  overflow: hidden;
  background: var(--paper);
}

.how-section::after {
  content: "R";
  position: absolute;
  right: -2vw;
  bottom: -14vw;
  z-index: 0;
  color: rgba(16, 47, 51, .035);
  font-family: Georgia, serif;
  font-size: 43vw;
  font-style: italic;
  line-height: .8;
}

.how-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 10vw, 140px);
}

.how-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.how-copy h2 {
  font-size: clamp(38px, 4.6vw, 58px);
}

.how-copy p {
  margin-inline: 0;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--teal-dark);
  font-weight: 780;
  text-decoration: none;
}

.inline-link span:last-child {
  font-size: 21px;
  transition: transform .25s var(--ease);
}

.inline-link:hover span:last-child,
.inline-link:focus-visible span:last-child {
  transform: translateX(6px);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 249, .72);
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.step.is-active {
  border-color: rgba(18, 169, 156, .4);
  background: var(--white);
  transform: translateX(-10px);
}

.step button {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 25px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.step-number {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 820;
}

.step-title {
  font-size: 20px;
  font-weight: 790;
  letter-spacing: -.02em;
}

.step-toggle {
  font-size: 24px;
  transition: transform .3s var(--ease);
}

.step.is-active .step-toggle {
  transform: rotate(45deg);
}

.step-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}

.step-body p {
  min-height: 0;
  margin: 0;
  padding: 0 34px 0 96px;
  color: var(--ink-soft);
  overflow: hidden;
  transition: padding .4s var(--ease);
}

.step.is-active .step-body {
  grid-template-rows: 1fr;
}

.step.is-active .step-body p {
  padding-bottom: 30px;
}

.features-section {
  background: var(--white);
}

.verticals-section {
  background: var(--paper);
}

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

.vertical-card {
  min-height: 330px;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}

.feature-wide {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  grid-column: 1 / -1;
  gap: 50px;
  min-height: 420px;
  background: #dff7f4;
}

.feature-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: .12em;
}

.feature-card h3 {
  max-width: 420px;
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.feature-card p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
}

.reminder-visual {
  position: relative;
  min-height: 260px;
  padding: 42px 24px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
  box-shadow: 0 28px 50px rgba(16, 47, 51, .2);
}

.phone-bubble,
.phone-reply {
  max-width: 82%;
  padding: 13px 16px;
  border-radius: 18px 18px 18px 5px;
  background: rgba(255, 255, 255, .12);
  font-size: 13px;
}

.phone-reply {
  margin: 22px 0 0 auto;
  border-radius: 18px 18px 5px 18px;
  background: var(--lime);
  color: var(--ink);
}

.message {
  position: absolute;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
}

.message-one {
  top: 20px;
  left: 25px;
}

.message-two {
  right: 25px;
  bottom: 19px;
}

.feature-copy .feature-number {
  margin-bottom: 54px;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 82px;
}

.mini-calendar span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 820;
}

.mini-calendar .selected {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 14px 24px rgba(18, 169, 156, .2);
}

.feature-pulse {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 100px;
  margin: 2px 0 64px;
}

.feature-pulse i {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: var(--teal);
  animation: bars 3s ease-in-out infinite;
}

.feature-pulse i:nth-child(1) { height: 38%; animation-delay: -.8s; }
.feature-pulse i:nth-child(2) { height: 64%; animation-delay: -.2s; }
.feature-pulse i:nth-child(3) { height: 45%; animation-delay: -.6s; }
.feature-pulse i:nth-child(4) { height: 88%; animation-delay: -.4s; }
.feature-pulse i:nth-child(5) { height: 70%; animation-delay: -.9s; }

.ai-section {
  position: relative;
  padding: clamp(100px, 12vw, 170px) 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 75% 50%, black, transparent 68%);
}

.ai-orbit {
  position: absolute;
  border: 1px solid rgba(217, 255, 122, .16);
  border-radius: 50%;
}

.ai-orbit-one {
  top: -260px;
  right: -150px;
  width: 780px;
  height: 780px;
}

.ai-orbit-two {
  right: 150px;
  bottom: -280px;
  width: 520px;
  height: 520px;
}

.ai-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.section-kicker-light {
  color: var(--lime);
}

.ai-copy h2 {
  font-size: clamp(42px, 5.5vw, 68px);
}

.ai-copy p {
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
}

.ai-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.ai-list li {
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
}

.ai-list li::before {
  top: 8px;
}

.call-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.call-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.caller-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.call-head > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.call-head span {
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
}

.call-head strong {
  font-size: 14px;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(217, 255, 122, .4);
  border-radius: 999px;
  color: var(--lime) !important;
  font-weight: 850;
  letter-spacing: .08em;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 120px;
  margin: 24px 0;
  border-radius: 18px;
  background: rgba(0, 0, 0, .13);
}

.waveform i {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--lime);
  animation: wave 1.25s ease-in-out infinite;
}

.waveform i:nth-child(2n) { animation-delay: -.9s; }
.waveform i:nth-child(3n) { animation-delay: -.4s; }
.waveform i:nth-child(5n) { animation-delay: -.7s; }

.call-transcript {
  display: grid;
  gap: 10px;
}

.call-transcript p {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  margin: 0;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.call-transcript p span:first-child {
  color: var(--lime);
  font-weight: 760;
}

.call-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 15px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--ink);
}

.result-check {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.call-result div {
  display: flex;
  flex-direction: column;
}

.call-result strong {
  font-size: 12px;
}

.call-result div span {
  color: var(--ink-soft);
  font-size: 10px;
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.price-ai {
  background: #dff7f4;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.price-name {
  font-size: 22px;
  font-weight: 820;
  letter-spacing: -.03em;
}

.price-tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 46px 0 14px;
}

.price strong {
  font-size: clamp(46px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}

.price span {
  color: var(--ink-soft);
  font-size: 12px;
}

.price-card > p {
  min-height: 76px;
  margin: 0 0 30px;
  color: var(--ink-soft);
}

.price-card ul {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.founding-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  margin-top: 20px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.founding-number {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 58px;
  font-style: italic;
}

.founding-copy > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.founding-copy h3 {
  margin: 9px 0 10px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.founding-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .67);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 10vw, 140px);
}

.faq-heading h2 {
  font-size: clamp(38px, 4.6vw, 56px);
}

.faq-heading p {
  margin-inline: 0;
}

.faqs {
  border-top: 1px solid var(--line);
}

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

.faq button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 770;
  text-align: left;
  cursor: pointer;
}

.faq button i {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq button i::before,
.faq button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 52px 0 0;
  color: var(--ink-soft);
  overflow: hidden;
  transition: padding .35s var(--ease);
}

.faq.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq.is-open .faq-answer p {
  padding-bottom: 27px;
}

.final-cta {
  padding: 80px 0;
  background: var(--teal-dark);
  color: white;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 58px);
}

.site-footer {
  padding: 76px 0 24px;
  background: #092326;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .6fr;
  gap: 60px;
  padding-bottom: 64px;
}

.footer-grid-4 {
  grid-template-columns: 1.4fr .8fr .7fr .6fr;
}

.brand-footer .brand-mark {
  background: rgba(255, 255, 255, .12);
}

.brand-footer .brand-by {
  color: rgba(255, 255, 255, .5);
}

.footer-grid > div:first-child p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.footer-contact > span:first-child,
.footer-links > span:first-child {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--lime);
}

.footer-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  cursor: pointer;
}

.footer-settings:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
}

.footer-bottom .footer-settings {
  color: inherit;
}

.footer-bottom .footer-settings:hover {
  color: var(--lime);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
  padding: 24px;
  border: 1px solid rgba(220, 255, 94, .45);
  border-radius: 18px;
  background: #092326;
  color: white;
  box-shadow: 0 24px 80px rgba(3, 20, 22, .28);
}

.cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.cookie-copy p {
  max-width: 560px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--lime);
  font-size: 12px;
  font-weight: 750;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.cookie-decline {
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: white;
}

.cookie-decline:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08);
}

.video-modal {
  width: min(1000px, calc(100vw - 40px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #071d20;
  box-shadow: 0 50px 160px rgba(0, 0, 0, .45);
  overflow: visible;
}

.video-modal::backdrop {
  background: rgba(5, 22, 24, .78);
  backdrop-filter: blur(10px);
}

.video-modal video {
  width: 100%;
  border-radius: 22px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  padding: 160px 0 110px;
}

.legal-shell {
  max-width: 820px;
}

.legal-main h1 {
  margin: 20px 0 18px;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1;
  letter-spacing: -.06em;
}

.legal-intro {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 21px;
}

.legal-content {
  display: grid;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.legal-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.legal-content p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 750;
}

.legal-back {
  margin-top: 44px;
}

.legal-footer {
  padding-top: 24px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 195, 115, .45); }
  70% { box-shadow: 0 0 0 9px rgba(45, 195, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 195, 115, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(.68); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes wave {
  0%, 100% { height: 16px; opacity: .5; }
  50% { height: 52px; opacity: 1; }
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-console {
    width: min(620px, 100%);
    margin-inline: auto;
  }

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

  .how-copy {
    position: static;
    max-width: 760px;
  }

  .ai-copy {
    max-width: 780px;
  }

  .founding-card {
    grid-template-columns: 100px 1fr;
  }

  .founding-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 680px);
    --radius-lg: 26px;
  }

  .site-header {
    padding: 10px 0;
    background: rgba(245, 242, 233, .86);
    border-bottom-color: var(--line);
    backdrop-filter: blur(16px);
  }

  .brand-by,
  .nav-actions > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 74px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .proof-row div {
    min-width: 33%;
    padding: 0 12px;
  }

  .hero-console {
    padding: 14px;
    transform: none;
  }

  .appointment {
    grid-template-columns: 44px 1fr;
  }

  .appointment-state {
    grid-column: 2;
    justify-self: start;
  }

  .signal-inner {
    justify-content: flex-start;
    overflow: hidden;
  }

  .signal-inner span:nth-of-type(n+3),
  .signal-inner i:nth-of-type(n+3) {
    display: none;
  }

  .section-heading h2,
  .how-copy h2,
  .ai-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

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

  .balance-card {
    min-height: auto;
  }

  .balance-bridge {
    height: 30px;
  }

  .balance-bridge div {
    width: 240px;
    height: 1px;
  }

  .feature-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-copy .feature-number {
    margin-bottom: 30px;
  }

  .faq-grid {
    gap: 44px;
  }

  .founding-card {
    grid-template-columns: 1fr;
  }

  .founding-card .button {
    grid-column: auto;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta-inner .button {
    justify-self: start;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .brand-name {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-button {
    justify-content: center;
  }

  .proof-row {
    row-gap: 18px;
  }

  .proof-row div {
    min-width: 50%;
  }

  .proof-row div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-console {
    margin-inline: -5px;
  }

  .day-score strong {
    font-size: 39px;
  }

  .step button {
    grid-template-columns: 42px 1fr auto;
    padding: 22px 18px;
  }

  .step-title {
    font-size: 17px;
  }

  .step-body p,
  .step.is-active .step-body p {
    padding-right: 20px;
    padding-left: 60px;
  }

  .feature-card {
    padding: 24px;
  }

  .ai-list {
    grid-template-columns: 1fr;
  }

  .call-transcript p {
    grid-template-columns: 1fr;
  }

  .founding-number {
    width: 86px;
    height: 86px;
    font-size: 46px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 24px);
    padding: 20px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }

  .cookie-actions .button {
    width: 100%;
    padding-inline: 12px;
  }

  .modal-close {
    top: -15px;
    right: -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
