:root {
  --plum-950: #160724;
  --plum-900: #24103e;
  --plum-850: #301451;
  --plum-800: #3c1766;
  --violet-700: #6731d4;
  --violet-600: #7840ee;
  --violet-500: #905ef7;
  --violet-300: #c7aefc;
  --violet-150: #e7dcff;
  --violet-80: #f4efff;
  --ink: #241c2d;
  --muted: #716a78;
  --line: #e4dfe7;
  --paper: #fbfafc;
  --white: #fff;
  --mint: #b9f1d8;
  --peach: #ffd4bd;
  --shadow: 0 30px 80px rgba(27, 8, 45, .18);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; }
button, input, select { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.landing-body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.55 var(--body);
  overflow-x: hidden;
}

.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;
}

.landing-skip {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 11px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--plum-900);
  font-weight: 800;
  transition: top .2s;
}
.landing-skip:focus { top: 16px; }

.landing-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 80px;
  padding: 0 clamp(24px, 5vw, 88px);
  color: #fff;
  transition: background .25s, min-height .25s, box-shadow .25s, backdrop-filter .25s;
}

.landing-header.is-scrolled {
  min-height: 68px;
  background: rgba(27, 8, 46, .9);
  box-shadow: 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.landing-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.landing-brand-mark img { width: 33px; height: 33px; object-fit: contain; }
.landing-brand > span:last-child { display: grid; line-height: 1.05; }
.landing-brand strong { font-size: 15px; font-weight: 900; }
.landing-brand small { margin-top: 5px; color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.landing-nav a, .landing-login {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s;
}

.landing-nav a:hover, .landing-nav a:focus-visible, .landing-login:hover, .landing-login:focus-visible { color: #fff; }
.landing-header-actions { display: flex; align-items: center; gap: 18px; }

.landing-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 0;
  border-radius: 13px;
  background: var(--violet-600);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(92, 42, 205, .25);
  transition: transform .2s, background .2s, box-shadow .2s;
}

.landing-button:hover, .landing-button:focus-visible { transform: translateY(-2px); background: #8953f3; box-shadow: 0 18px 36px rgba(92, 42, 205, .34); }
.landing-button-small { min-height: 42px; padding: 0 17px; border: 1px solid rgba(255,255,255,.16); font-size: 12px; }
.landing-button-light { min-width: 248px; padding: 0 20px; background: #fff; color: var(--plum-800); box-shadow: 0 18px 45px rgba(10,2,22,.24); }
.landing-button-light:hover, .landing-button-light:focus-visible { background: var(--violet-80); color: var(--plum-900); }

.landing-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  background: rgba(255,255,255,.06);
}
.landing-menu-toggle span { display: block; height: 2px; margin: 4px 0; background: #fff; }

.landing-hero {
  position: relative;
  display: grid;
  min-height: 930px;
  grid-template-columns: minmax(380px, .86fr) minmax(640px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
  padding: 125px clamp(24px, 5vw, 88px) 80px;
  background:
    radial-gradient(circle at 23% 28%, rgba(129, 67, 245, .28), transparent 30%),
    linear-gradient(132deg, var(--plum-950) 0%, var(--plum-900) 54%, #34145c 100%);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 57% -25% -35%;
  background-image:
    linear-gradient(rgba(199, 174, 252, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 174, 252, .35) 1px, transparent 1px);
  background-size: 74px 44px;
  transform: perspective(360px) rotateX(58deg);
  transform-origin: center top;
}

.hero-arc {
  position: absolute;
  border: 1px solid rgba(209, 189, 255, .17);
  border-radius: 50%;
  pointer-events: none;
}
.hero-arc-one { width: 720px; height: 720px; right: -240px; top: -250px; }
.hero-arc-two { width: 960px; height: 960px; right: -235px; top: -330px; }
.hero-glow { position: absolute; width: 520px; height: 520px; right: 13%; top: 19%; border-radius: 50%; background: rgba(131, 70, 250, .22); filter: blur(100px); }

.landing-hero-copy { position: relative; z-index: 3; max-width: 650px; }
.landing-kicker { margin: 0 0 18px; color: var(--violet-300); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.landing-kicker-dark { color: var(--violet-700); }

.landing-hero h1, .landing-section-intro h2, .assistant-copy h2, .scene-copy h3, .conversion-copy h2, .trust-copy h2, .referral-strip h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.055em;
}

.landing-hero h1 { max-width: 780px; font-size: clamp(62px, 6.3vw, 112px); line-height: .91; }
.landing-hero h1 span { color: #c9b0ff; }
.landing-hero-lead { max-width: 610px; margin: 32px 0 0; color: rgba(255,255,255,.66); font-size: clamp(17px, 1.25vw, 21px); line-height: 1.65; }
.landing-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.landing-text-link { padding: 8px 0 5px; border-bottom: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.82); font-size: 13px; font-weight: 800; text-decoration: none; }
.landing-text-link:hover, .landing-text-link:focus-visible { color: #fff; border-color: #fff; }

.landing-trial-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  list-style: none;
}
.landing-trial-facts li { display: grid; gap: 3px; }
.landing-trial-facts b { font-size: 14px; }
.landing-trial-facts span { color: rgba(255,255,255,.43); font-size: 10px; }
.landing-launch-note { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0 0; color: rgba(255,255,255,.57); font-size: 11px; line-height: 1.5; }
.landing-launch-note i { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 5px; border-radius: 50%; background: #8cf0c0; box-shadow: 0 0 0 5px rgba(140,240,192,.1); }
.landing-launch-note strong { color: #fff; }

.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
  transform: perspective(1600px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
}

.hero-product-window {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 28px;
  background: #f8f6fb;
  color: var(--ink);
  box-shadow: 0 50px 110px rgba(8,1,17,.47);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.hero-product-window.is-emphasized { animation: productPulse .9s ease; }
@keyframes productPulse { 45% { transform: translateY(-8px) scale(1.008); box-shadow: 0 58px 130px rgba(8,1,17,.58), 0 0 0 5px rgba(190,155,255,.22); } }

.product-topbar { display: grid; grid-template-columns: 170px minmax(160px, 1fr) 150px; align-items: center; gap: 18px; height: 68px; padding: 0 22px; border-bottom: 1px solid #e8e2ec; background: #fff; }
.product-mini-brand { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.product-mini-brand img { width: 26px; height: 26px; object-fit: contain; }
.product-search { padding: 10px 14px; border: 1px solid #e4dfe7; border-radius: 10px; color: #aaa3b0; font-size: 10px; }
.product-live { display: flex; justify-content: flex-end; align-items: center; gap: 7px; color: #615b66; font-size: 9px; font-weight: 700; }
.product-live i { width: 7px; height: 7px; border-radius: 50%; background: #5dd39e; box-shadow: 0 0 0 4px rgba(93,211,158,.13); }
.product-layout { display: grid; min-height: 552px; grid-template-columns: 150px 1fr; }
.product-sidebar { display: flex; flex-direction: column; gap: 7px; padding: 27px 15px; border-right: 1px solid #e7e1e9; background: #fff; }
.product-sidebar span { display: flex; align-items: center; gap: 10px; padding: 11px 10px; border-radius: 10px; color: #928a98; font-size: 9px; font-weight: 800; }
.product-sidebar i { width: 13px; height: 13px; border: 2px solid currentColor; border-radius: 4px; }
.product-sidebar .is-active { background: #eee6ff; color: var(--violet-700); }
.product-dashboard { padding: 30px; }
.product-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.product-title span { display: grid; }
.product-title small { color: var(--violet-600); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.product-title strong { margin-top: 8px; font-size: 25px; letter-spacing: -.04em; }
.product-title button { padding: 10px 13px; border: 0; border-radius: 9px; background: var(--violet-600); color: #fff; font-size: 9px; font-weight: 800; }
.product-focus-card { position: relative; min-height: 240px; margin-top: 25px; padding: 32px; border-radius: 22px; background: linear-gradient(125deg, #6a32db, #925cf6); color: #fff; overflow: hidden; }
.product-focus-card::after { content: ""; position: absolute; width: 310px; height: 310px; right: -100px; top: -120px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.focus-label { font-size: 8px; font-weight: 900; letter-spacing: .15em; opacity: .7; }
.product-focus-card strong { display: block; margin-top: 14px; font-size: 30px; line-height: 1.02; letter-spacing: -.05em; }
.product-focus-card p { max-width: 290px; color: rgba(255,255,255,.7); font-size: 10px; }
.focus-line { position: absolute; right: 32px; bottom: 32px; display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.focus-line i { width: 19px; border-radius: 6px 6px 2px 2px; background: rgba(255,255,255,.72); }
.focus-line i:nth-child(1) { height: 36%; }.focus-line i:nth-child(2) { height: 68%; }.focus-line i:nth-child(3) { height: 50%; }.focus-line i:nth-child(4) { height: 90%; }
.product-day-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.product-day-grid article { min-width: 0; padding: 15px; border: 1px solid #e5dfe9; border-radius: 14px; background: #fff; }
.product-day-grid span { display: block; color: var(--violet-600); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.product-day-grid strong { display: block; margin-top: 8px; font-size: 10px; line-height: 1.3; }
.product-day-grid small { display: block; margin-top: 5px; color: #98909e; font-size: 8px; }

.context-orbit { position: absolute; border: 1px solid rgba(208, 184, 255, .23); border-radius: 50%; }
.context-orbit-one { width: 920px; height: 920px; left: -130px; top: -140px; }
.context-orbit-two { width: 760px; height: 760px; left: -48px; top: -60px; }
.hero-context-marker { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(28,9,48,.86); color: rgba(255,255,255,.74); font-size: 9px; font-weight: 800; box-shadow: 0 12px 30px rgba(10,2,20,.26); backdrop-filter: blur(10px); }
.hero-context-marker i { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-300); }
.marker-message { left: -32px; top: 16%; }.marker-profile { right: -30px; top: 45%; }.marker-program { left: 8%; bottom: -16px; }
.hero-product-caption { margin: 24px 0 0; color: rgba(255,255,255,.42); font-size: 9px; text-align: center; }

.context-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 66px);
  padding: 28px clamp(20px, 5vw, 88px);
  background: var(--violet-600);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.context-intro i { flex: 1; max-width: 150px; height: 1px; background: rgba(255,255,255,.32); }

.product-story, .integrations-section, .onboarding-section, .pricing-section, .faq-section {
  padding: clamp(86px, 10vw, 160px) clamp(24px, 7vw, 120px);
}

.landing-section-intro { max-width: 910px; margin-bottom: clamp(58px, 7vw, 100px); }
.landing-section-intro h2, .assistant-copy h2, .conversion-copy h2, .trust-copy h2 { font-size: clamp(45px, 5.2vw, 82px); line-height: .99; }
.landing-section-intro h2 span, .assistant-copy h2 span { color: var(--violet-600); }
.landing-section-intro > p:last-child { max-width: 720px; margin: 25px 0 0; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; }

.product-story { position: relative; background: #fff; }
.story-rail { position: sticky; z-index: 5; top: 82px; display: flex; width: fit-content; align-items: center; gap: 10px; margin: 0 0 54px auto; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: 0 12px 35px rgba(40,19,60,.08); backdrop-filter: blur(15px); }
.story-rail span { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: #9a929f; font-size: 9px; font-weight: 900; transition: background .2s, color .2s; }
.story-rail span.is-active { background: var(--violet-600); color: #fff; }
.story-rail i { width: 28px; height: 1px; background: var(--line); }

.product-scene { display: grid; grid-template-columns: minmax(300px, .66fr) minmax(600px, 1.34fr); align-items: center; gap: clamp(50px, 7vw, 120px); max-width: 1480px; margin: 0 auto clamp(110px, 14vw, 210px); }
.product-scene:last-child { margin-bottom: 20px; }
.product-scene.is-reversed { grid-template-columns: minmax(600px, 1.34fr) minmax(300px, .66fr); }
.product-scene.is-reversed .scene-copy { order: 2; }
.scene-copy > span { color: var(--violet-600); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.scene-copy h3 { margin-top: 18px; font-size: clamp(34px, 3.3vw, 57px); line-height: 1.03; }
.scene-copy > p { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.scene-copy ul { display: grid; gap: 10px; margin: 25px 0 0; padding: 0; list-style: none; color: #554e5a; font-size: 14px; }
.scene-copy li { display: flex; align-items: center; gap: 10px; }
.scene-copy li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet-500); box-shadow: 0 0 0 4px var(--violet-80); }
.scene-copy blockquote { margin: 27px 0 0; padding: 18px 20px; border-left: 3px solid var(--violet-500); background: var(--violet-80); color: #5a3a82; font-size: 13px; line-height: 1.65; }

.scene-frame { min-width: 0; min-height: 490px; border: 1px solid #ded7e3; border-radius: 26px; background: #f7f5f9; box-shadow: 0 32px 80px rgba(45,22,62,.14); overflow: hidden; }
.scene-toolbar { display: flex; align-items: center; justify-content: space-between; height: 66px; padding: 0 26px; border-bottom: 1px solid var(--line); background: #fff; }
.scene-toolbar b { font-size: 20px; }.scene-toolbar span { color: var(--muted); font-size: 12px; }
.scene-today { display: grid; grid-template-columns: .85fr 1.15fr; grid-template-rows: 66px 1fr; padding-bottom: 28px; }
.scene-today .scene-toolbar { grid-column: 1 / -1; }
.today-summary { align-self: stretch; margin: 28px 0 0 28px; padding: 28px; border-radius: 20px; background: linear-gradient(145deg, var(--plum-900), #522597); color: #fff; }
.today-summary small { color: var(--violet-300); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.today-summary strong { display: block; max-width: 220px; margin-top: 30px; font-size: 30px; line-height: 1.05; }
.today-summary p { color: rgba(255,255,255,.55); font-size: 11px; }
.today-list { display: grid; align-content: center; gap: 11px; padding: 28px; }
.today-list span { display: grid; grid-template-columns: 60px 1fr; gap: 2px 12px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.today-list i { grid-row: 1 / 3; align-self: center; padding: 7px 8px; border-radius: 8px; color: #4c3d57; font-size: 10px; font-style: normal; font-weight: 900; text-align: center; }
.today-list .is-purple { background: var(--violet-150); }.today-list .is-mint { background: var(--mint); }.today-list .is-peach { background: var(--peach); }
.today-list b { font-size: 12px; }.today-list small { color: var(--muted); font-size: 10px; }

.scene-dialog { display: grid; grid-template-columns: 165px minmax(290px, 1fr) 180px; background: #fff; }
.dialog-list { padding: 72px 10px 16px; border-right: 1px solid var(--line); background: #faf9fb; }
.dialog-list > span { display: grid; grid-template-columns: 30px 1fr; gap: 8px; padding: 11px 8px; border-radius: 10px; }
.dialog-list > span.is-active { background: var(--violet-80); }
.dialog-list > span > b { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--violet-150); color: var(--violet-700); font-size: 9px; }
.dialog-list i { display: grid; min-width: 0; font-style: normal; }
.dialog-list strong { font-size: 9px; }.dialog-list small { overflow: hidden; color: #9a929f; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.dialog-list time { grid-column: 2; color: #a69fac; font-size: 7px; }
.dialog-thread { position: relative; padding: 72px 22px 65px; background: #f8f6fa; }
.thread-head { position: absolute; left: 0; top: 0; right: 0; display: grid; height: 58px; align-content: center; padding: 0 20px; border-bottom: 1px solid var(--line); background: #fff; }
.thread-head b { font-size: 11px; }.thread-head span { color: var(--muted); font-size: 8px; }
.dialog-thread p { width: 82%; margin: 13px 0; padding: 13px 15px; border-radius: 14px; font-size: 9px; line-height: 1.55; }
.message-in { border: 1px solid var(--line); border-bottom-left-radius: 4px !important; background: #fff; }
.message-out { margin-left: auto !important; border-bottom-right-radius: 4px !important; background: var(--violet-600); color: #fff; }
.thread-input { position: absolute; left: 18px; right: 18px; bottom: 14px; display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: #9d95a3; font-size: 8px; }
.thread-input b { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 7px; background: var(--violet-600); color: #fff; }
.dialog-context { padding: 74px 18px 20px; border-left: 1px solid var(--line); background: #fff; }
.dialog-context > small { color: var(--violet-600); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.dialog-context strong { display: block; margin-top: 24px; font-size: 9px; }
.dialog-context p { margin: 5px 0 0; color: var(--muted); font-size: 8px; line-height: 1.5; }

.scene-progress { padding: 30px; background: #fff; }
.progress-title { display: flex; justify-content: space-between; align-items: flex-start; }
.progress-title span { display: grid; }
.progress-title small { color: var(--violet-600); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.progress-title strong { margin-top: 8px; font-size: 24px; }
.progress-title > b { padding: 7px 10px; border-radius: 999px; background: var(--mint); color: #235c45; font-size: 9px; }
.scene-progress svg { margin-top: 35px; }
.progress-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.progress-facts span { padding: 15px; border: 1px solid var(--line); border-radius: 12px; }
.progress-facts b, .progress-facts small { display: block; }.progress-facts b { font-size: 10px; }.progress-facts small { margin-top: 4px; color: var(--muted); font-size: 8px; }

.assistant-section {
  position: relative;
  display: grid;
  min-height: 800px;
  grid-template-columns: minmax(350px, .85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 120px);
  background: linear-gradient(135deg, var(--plum-950), var(--plum-850));
  color: #fff;
  overflow: hidden;
}
.assistant-section::before { content: ""; position: absolute; width: 600px; height: 600px; right: -150px; bottom: -220px; border-radius: 50%; background: rgba(126,66,242,.22); filter: blur(80px); }
.assistant-copy { position: relative; z-index: 2; }
.assistant-copy h2 span { color: var(--violet-300); }
.assistant-copy > p:not(.landing-kicker) { max-width: 610px; margin-top: 28px; color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.7; }
.assistant-rules { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.12); }
.assistant-rules span { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.74); font-size: 13px; }
.assistant-rules b { color: var(--violet-300); font-size: 9px; }
.assistant-orbit-visual { position: relative; min-height: 570px; }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(210,189,255,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 230px; height: 230px; }.orbit-two { width: 390px; height: 390px; }.orbit-three { width: 560px; height: 560px; }
.orbit-core { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; width: 164px; height: 164px; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.1); box-shadow: 0 0 90px rgba(137,81,245,.33); backdrop-filter: blur(18px); transform: translate(-50%,-50%); }
.orbit-core img { width: 66px; height: 66px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(15,3,27,.32)); }
.orbit-core strong { margin-top: 5px; font-size: 14px; }.orbit-core small { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.orbit-node { position: absolute; z-index: 3; padding: 10px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(34,12,59,.88); color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; box-shadow: 0 12px 35px rgba(10,2,20,.26); }
.orbit-node i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--violet-300); box-shadow: 0 0 0 5px rgba(199,174,252,.09); }
.node-questionnaire { left: 8%; top: 19%; }.node-questionnaire i { right: -4px; bottom: 2px; }
.node-calendar { right: 3%; top: 29%; }.node-calendar i { left: -4px; bottom: 3px; }
.node-dialog { left: 5%; bottom: 20%; }.node-dialog i { right: -4px; top: 3px; }
.node-handoff { right: 4%; bottom: 13%; color: #fff; border-color: rgba(134,239,190,.35); }.node-handoff i { left: -4px; top: 3px; background: #83e8b9; }

.integrations-section { background: #f5f1f8; }
.integration-board { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1420px; }
.channel-column, .payment-column { padding: clamp(24px, 3vw, 44px); border: 1px solid #ded6e3; border-radius: 26px; background: #fff; box-shadow: 0 20px 50px rgba(45,22,62,.07); }
.integration-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.integration-heading span { font-size: 20px; font-weight: 900; }.integration-heading small { color: var(--muted); font-size: 10px; }
.channel-row, .payment-row { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; min-height: 78px; border-top: 1px solid var(--line); }
.channel-brand-icon { width: 38px; height: 38px; object-fit: contain; }
.channel-row > span, .payment-row > span:not(.provider-mark) { display: grid; }
.channel-row strong, .payment-row strong { font-size: 13px; }.channel-row small, .payment-row small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.channel-row > b, .payment-row > b { padding: 6px 9px; border-radius: 999px; font-size: 8px; white-space: nowrap; }
.status-ready { background: #e4f8ee; color: #25634a; }.status-pilot { background: var(--violet-150); color: #5d2bb8; }.status-soon { background: #fff0d8; color: #805414; }.status-later { background: #efedf0; color: #68616d; }
.provider-mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: #fff; font-size: 16px; font-weight: 950; }
.provider-mark.is-robo { background: #111; }.provider-mark.is-yoo { background: #6f2cff; }.provider-mark.is-cloud { background: #138be7; }
.integration-note { margin: 18px 0 0; padding: 15px 17px; border-radius: 13px; background: #f7f5f8; color: var(--muted); font-size: 10px; line-height: 1.6; }

.onboarding-section { background: #fff; }
.onboarding-track { display: grid; max-width: 1450px; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; counter-reset: none; list-style: none; }
.onboarding-track li { position: relative; min-height: 260px; padding: 30px 30px 30px 0; border-top: 1px solid var(--line); }
.onboarding-track li:not(:last-child)::after { content: ""; position: absolute; top: -4px; right: 12%; width: 7px; height: 7px; border-radius: 50%; background: var(--violet-500); box-shadow: 0 0 0 6px var(--violet-80); }
.onboarding-track > li > span { color: var(--violet-600); font-size: 11px; font-weight: 900; }
.onboarding-track h3 { margin: 45px 0 0; font-size: 20px; letter-spacing: -.03em; }.onboarding-track p { max-width: 250px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.trust-section { display: grid; grid-template-columns: minmax(340px,.9fr) minmax(540px,1.1fr); align-items: center; gap: clamp(50px,8vw,140px); padding: clamp(90px,10vw,150px) clamp(24px,7vw,120px); background: #eeebf1; }
.trust-copy > p:not(.landing-kicker) { margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.trust-copy > a { display: inline-flex; gap: 20px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid #7d6c87; color: var(--plum-800); font-size: 12px; font-weight: 850; text-decoration: none; }
.trust-ledger { border-top: 1px solid #cdc5d1; }
.trust-ledger > span { display: grid; grid-template-columns: 45px 1fr; gap: 3px 18px; padding: 23px 0; border-bottom: 1px solid #cdc5d1; }
.trust-ledger i { grid-row: 1/3; color: var(--violet-600); font-size: 10px; font-style: normal; font-weight: 900; }
.trust-ledger b { font-size: 15px; }.trust-ledger small { color: var(--muted); font-size: 11px; }

.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1450px; }
.pricing-plan { position: relative; display: flex; min-height: 560px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .22s, border-color .22s, box-shadow .22s; }
.pricing-plan:hover { transform: translateY(-5px); border-color: var(--violet-300); box-shadow: 0 24px 55px rgba(62,29,89,.11); }
.pricing-plan.is-selected { border-color: var(--violet-600); box-shadow: 0 0 0 4px var(--violet-150), 0 24px 55px rgba(62,29,89,.11); }
.pricing-plan.is-featured { border: 2px solid var(--violet-600); background: linear-gradient(180deg,#fbf9ff,#fff); box-shadow: 0 25px 65px rgba(92,44,190,.13); }
.pricing-head { display: flex; min-height: 55px; align-items: flex-start; justify-content: space-between; gap: 15px; }
.pricing-head > span { display: grid; }.pricing-head strong { font-size: 22px; }.pricing-head small { color: var(--muted); font-size: 10px; }
.pricing-head > b { padding: 6px 8px; border-radius: 999px; background: var(--violet-150); color: var(--violet-700); font-size: 7px; white-space: nowrap; }
.pricing-price { display: flex; align-items: flex-end; margin: 28px 0; }
.pricing-price > strong { font-family: var(--display); font-size: clamp(45px,4vw,66px); line-height: .9; letter-spacing: -.06em; }
.pricing-price > span { display: flex; align-items: flex-end; margin-left: 8px; font-size: 17px; font-weight: 900; }.pricing-price small { margin: 0 0 1px 5px; color: var(--muted); font-size: 9px; font-weight: 500; }
.pricing-plan ul { display: grid; gap: 13px; margin: 0; padding: 25px 0; border-top: 1px solid var(--line); list-style: none; color: #5e5763; font-size: 12px; }
.pricing-plan li { display: flex; align-items: center; gap: 9px; }.pricing-plan li::before { content: "✓"; color: var(--violet-600); font-size: 10px; font-weight: 900; }
.pricing-plan > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 14px 16px; border-radius: 11px; background: var(--plum-900); color: #fff; font-size: 11px; font-weight: 850; text-decoration: none; }
.pricing-plan.is-featured > a { background: var(--violet-600); }
.pricing-footnotes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin-top: 32px; color: var(--muted); font-size: 11px; }
.pricing-footnotes p { margin: 0; padding-left: 16px; border-left: 2px solid var(--violet-300); }.pricing-footnotes strong { color: var(--ink); }

.referral-strip { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: clamp(30px,5vw,80px); padding: clamp(55px,7vw,90px) clamp(24px,7vw,120px); background: var(--violet-600); color: #fff; }
.referral-coin { position: relative; display: grid; width: 125px; height: 125px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.09); box-shadow: inset 0 0 0 10px rgba(255,255,255,.035); }
.referral-coin span { font-family: var(--display); font-size: 50px; }.referral-coin i { position: absolute; inset: -18px; border: 1px dashed rgba(255,255,255,.3); border-radius: 50%; }
.referral-strip .landing-kicker { color: rgba(255,255,255,.55); }
.referral-strip h2 { max-width: 890px; font-size: clamp(34px,4vw,62px); line-height: 1.02; }
.referral-strip > div:nth-child(2) > p:last-child { max-width: 760px; color: rgba(255,255,255,.66); font-size: 13px; }
.referral-strip > a { padding: 12px 0 5px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 12px; font-weight: 850; text-decoration: none; white-space: nowrap; }

.conversion-section { display: grid; grid-template-columns: minmax(320px,.85fr) minmax(420px, .75fr); align-items: center; justify-content: center; gap: clamp(60px,10vw,160px); padding: clamp(90px,11vw,170px) clamp(24px,10vw,180px); background: linear-gradient(140deg,var(--plum-950),var(--plum-850)); color: #fff; }
.conversion-copy { max-width: 650px; }.conversion-copy > p:not(.landing-kicker) { margin-top: 28px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.conversion-copy ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.75); font-size: 12px; }
.conversion-copy li::before { content: "—"; margin-right: 10px; color: var(--violet-300); }
.conversion-action { display: grid; grid-template-columns: 44px 1fr; gap: 18px 14px; max-width: 560px; padding: clamp(26px,3vw,40px); border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 30px 80px rgba(8,1,17,.24); backdrop-filter: blur(16px); }
.conversion-action > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(199,174,252,.34); border-radius: 50%; color: var(--violet-200); font-size: 9px; font-weight: 900; }
.conversion-action > div { align-self: center; }.conversion-action strong, .conversion-action small { display: block; }.conversion-action strong { font-size: 15px; }.conversion-action small { margin-top: 4px; color: rgba(255,255,255,.48); font-size: 10px; }
.conversion-action > button { grid-column: 1/-1; display: flex; min-height: 54px; align-items: center; justify-content: space-between; margin-top: 8px; padding: 0 18px; border: 0; border-radius: 11px; background: #fff; color: var(--plum-800); font: inherit; font-size: 12px; font-weight: 900; cursor: pointer; transition: transform .18s, background .18s; }
.conversion-action > button:hover, .conversion-action > button:focus-visible { transform: translateY(-2px); background: var(--violet-80); }
.conversion-action > p { grid-column: 1/-1; margin: 0; color: rgba(255,255,255,.4); font-size: 9px; line-height: 1.55; }
.conversion-form { display: grid; gap: 15px; max-width: 560px; padding: clamp(24px,3vw,38px); border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 30px 80px rgba(8,1,17,.24); backdrop-filter: blur(16px); }
.selected-plan { display: grid; grid-template-columns: 1fr auto; gap: 2px 18px; padding: 14px 16px; border: 1px solid rgba(199,174,252,.32); border-radius: 12px; background: rgba(199,174,252,.1); }
.selected-plan[hidden] { display: none; }
.selected-plan > span { grid-column: 1/-1; color: rgba(255,255,255,.56); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.selected-plan > strong { color: #fff; font-size: 17px; }
.selected-plan > small { align-self: center; color: rgba(255,255,255,.68); font-size: 10px; white-space: nowrap; }
.selected-plan > small b { color: #fff; font-size: 13px; }
.conversion-form label:not(.form-consent):not(.form-honeypot):not(.messenger-choice) { display: grid; gap: 7px; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 800; }
.conversion-form input:not([type="checkbox"]), .conversion-form select { width: 100%; height: 49px; padding: 0 14px; border: 1px solid rgba(255,255,255,.19); border-radius: 10px; outline: none; background: rgba(255,255,255,.1); color: #fff; transition: border-color .18s, box-shadow .18s, background .18s; }
.conversion-form select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#cbb7e8 50%),linear-gradient(135deg,#cbb7e8 50%,transparent 50%); background-position: calc(100% - 18px) 21px,calc(100% - 13px) 21px; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; }
.conversion-form select option { color: var(--ink); }
.conversion-form input::placeholder { color: rgba(255,255,255,.34); }
.conversion-form input:focus, .conversion-form select:focus { border-color: var(--violet-300); background-color: rgba(255,255,255,.13); box-shadow: 0 0 0 4px rgba(199,174,252,.11); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.58); font-size: 9px; line-height: 1.5; }
.form-consent input { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 1px; accent-color: var(--violet-500); }
.form-consent a { color: #fff; }
.conversion-form button { display: flex; height: 52px; align-items: center; justify-content: space-between; padding: 0 18px; border: 0; border-radius: 11px; background: #fff; color: var(--plum-800); font-size: 12px; font-weight: 900; cursor: pointer; transition: transform .18s, background .18s; }
.conversion-form button:hover, .conversion-form button:focus-visible { transform: translateY(-2px); background: var(--violet-80); }
.conversion-form button:disabled { cursor: wait; opacity: .7; transform: none; }
.form-note, .form-status { margin: 0; color: rgba(255,255,255,.46); font-size: 9px; line-height: 1.5; }
.form-status:not(:empty) { padding: 11px 12px; border: 1px solid rgba(140,240,192,.25); border-radius: 9px; background: rgba(140,240,192,.09); color: #c8f7df; }
.conversion-form.has-error .form-status { border-color: rgba(255,178,178,.28); background: rgba(255,125,125,.1); color: #ffd5d5; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.early-access-dialog { width: min(720px,calc(100vw - 28px)); max-height: calc(100dvh - 28px); padding: 0; border: 0; border-radius: 26px; background: transparent; color: var(--ink); overflow: visible; }
.early-access-dialog::backdrop { background: rgba(18,7,30,.7); backdrop-filter: blur(12px); }
.early-access-dialog-surface { position: relative; max-height: calc(100dvh - 28px); overflow: auto; padding: clamp(25px,4vw,44px); border: 1px solid rgba(255,255,255,.7); border-radius: 26px; background: linear-gradient(150deg,#fff,#f7f2ff); box-shadow: 0 40px 120px rgba(15,4,27,.46); }
.early-access-dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; padding: 0; border: 1px solid #ded5e8; border-radius: 50%; background: rgba(255,255,255,.82); color: var(--plum-800); font-size: 25px; line-height: 1; cursor: pointer; }
.early-access-dialog-head { padding-right: 44px; }.early-access-dialog-head h2 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(34px,5vw,52px); line-height: 1; letter-spacing: -.045em; }.early-access-dialog-head > p:last-child { max-width: 560px; margin: 15px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.early-access-dialog-form { display: grid; gap: 15px; margin-top: 28px; }
.early-access-dialog-form > label:not(.form-consent):not(.form-honeypot), .early-access-form-row label { display: grid; gap: 7px; color: #4c4156; font-size: 11px; font-weight: 850; }
.early-access-name-row { display: grid; grid-template-columns: 1.15fr 1fr 1.15fr; gap: 13px; }.early-access-name-row label { display: grid; gap: 7px; color: #4c4156; font-size: 11px; font-weight: 850; }
.early-access-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.early-access-dialog-form input:not([type="checkbox"]), .early-access-dialog-form select { width: 100%; height: 50px; padding: 0 14px; border: 1px solid #ded5e8; border-radius: 11px; outline: none; background: rgba(255,255,255,.9); color: var(--ink); font: inherit; font-size: 13px; transition: border-color .18s, box-shadow .18s; }
.early-access-dialog-form input:focus, .early-access-dialog-form select:focus { border-color: var(--violet-500); box-shadow: 0 0 0 4px rgba(120,67,232,.1); }
.early-access-dialog-form .selected-plan { border-color: #ded1fa; background: #f2ebff; }.early-access-dialog-form .selected-plan > span, .early-access-dialog-form .selected-plan > small { color: #766a80; }.early-access-dialog-form .selected-plan > strong, .early-access-dialog-form .selected-plan > small b { color: var(--plum-900); }
.early-access-dialog-form .form-consent { color: #6f6477; }.early-access-dialog-form .form-consent a { color: var(--violet-700); }
.early-access-submit { display: flex; min-height: 52px; align-items: center; justify-content: space-between; padding: 0 18px; border: 0; border-radius: 11px; background: var(--violet-600); color: #fff; font: inherit; font-size: 12px; font-weight: 900; cursor: pointer; transition: transform .18s, background .18s; }.early-access-submit:hover, .early-access-submit:focus-visible { transform: translateY(-2px); background: var(--violet-700); }.early-access-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.early-access-dialog-form .form-status { color: #746879; }.early-access-dialog-form .form-status:not(:empty) { border-color: #f2c8c8; background: #fff3f3; color: #9a3333; }
.early-access-dialog-form.has-error .form-status { border-color: #f2c8c8; background: #fff3f3; color: #9a3333; }
.early-access-channel-step { display: grid; gap: 12px; margin-top: 26px; }.early-access-channel-step[hidden] { display: none; }.early-access-step-ok { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: #e5f8ed; color: #246e47; font-size: 20px; font-weight: 900; }.early-access-channel-step h3 { margin: 2px 0 0; font-family: var(--display); font-size: 30px; letter-spacing: -.035em; }.early-access-channel-step > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }.early-access-channel-step > small { color: var(--muted); font-size: 9px; }
.early-access-channel-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 8px 0; }.early-access-channel-links a { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 12px; min-height: 78px; padding: 13px 15px; border: 1px solid #ded5e8; border-radius: 15px; background: #fff; color: var(--ink); text-decoration: none; box-shadow: 0 12px 30px rgba(48,22,72,.07); transition: border-color .18s, transform .18s, box-shadow .18s; }.early-access-channel-links a:hover, .early-access-channel-links a:focus-visible { transform: translateY(-2px); border-color: var(--violet-400); box-shadow: 0 18px 35px rgba(48,22,72,.12); }.early-access-channel-links span { display: grid; }.early-access-channel-links strong { font-size: 14px; }.early-access-channel-links small { margin-top: 4px; color: var(--muted); font-size: 9px; }.early-access-channel-links b { color: var(--violet-600); }.early-access-channel-icon { width: 46px; height: 46px; }

.faq-section { background: #f6f3f8; }
.faq-list { max-width: 1060px; margin-left: auto; border-top: 1px solid #d7d0db; }
.faq-list details { border-bottom: 1px solid #d7d0db; }
.faq-list summary { position: relative; padding: 25px 55px 25px 0; cursor: pointer; font-size: clamp(16px,1.4vw,20px); font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid #cfc7d4; border-radius: 50%; color: var(--violet-700); font-size: 18px; transition: transform .2s, background .2s; }
.faq-list details[open] summary::after { background: var(--violet-600); color: #fff; transform: rotate(45deg); }
.faq-list details p { max-width: 800px; margin: -5px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.landing-footer { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 50px; padding: 70px clamp(24px,7vw,120px) 28px; background: #12071e; color: #fff; }
.landing-footer .landing-brand { width: fit-content; }
.footer-brand > p { max-width: 350px; color: rgba(255,255,255,.42); font-size: 11px; }
.landing-footer > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.landing-footer > div > strong { margin-bottom: 8px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.landing-footer > div > a, .landing-footer > div > span { color: rgba(255,255,255,.66); font-size: 10px; text-decoration: none; }
.landing-footer > div > a:hover { color: #fff; }
.footer-bottom { grid-column: 1/-1; margin: 22px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.34); font-size: 9px; }

.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid #c5a8ff; outline-offset: 3px; }

@media (max-width: 1260px) {
  .landing-hero { min-height: 860px; grid-template-columns: minmax(330px,.78fr) minmax(560px,1.22fr); padding-left: 44px; padding-right: 44px; }
  .landing-hero h1 { font-size: clamp(58px,6vw,82px); }
  .hero-product-window { min-height: 530px; }
  .product-layout { min-height: 462px; grid-template-columns: 120px 1fr; }
  .product-sidebar { padding-inline: 10px; }
  .product-dashboard { padding: 24px; }
  .product-focus-card { min-height: 200px; }
  .product-day-grid small { display: none; }
  .scene-dialog { grid-template-columns: 140px minmax(250px,1fr) 150px; }
}

@media (max-width: 1050px) {
  .landing-header { grid-template-columns: auto auto 1fr; padding-inline: 24px; }
  .landing-menu-toggle { display: block; order: 3; justify-self: end; }
  .landing-nav { position: absolute; left: 16px; top: 72px; right: 16px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(25,8,43,.98); box-shadow: var(--shadow); }
  .landing-nav.is-open { display: flex; }
  .landing-nav a { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .landing-header-actions { justify-self: center; }
  .landing-hero { min-height: auto; grid-template-columns: 1fr; padding: 135px 34px 80px; }
  .landing-hero-copy { max-width: 760px; }
  .landing-hero h1 { font-size: clamp(62px,9.5vw,96px); }
  .hero-product { width: min(900px,100%); margin: 30px auto 0; transform: none; }
  .hero-product-window { min-height: 580px; }
  .product-layout { min-height: 510px; }
  .product-scene, .product-scene.is-reversed { grid-template-columns: 1fr; gap: 42px; }
  .product-scene.is-reversed .scene-copy { order: 0; }
  .scene-copy { max-width: 680px; }
  .assistant-section, .trust-section, .conversion-section { grid-template-columns: 1fr; }
  .assistant-orbit-visual { width: min(680px,100%); margin: 0 auto; }
  .integration-board { grid-template-columns: 1fr; }
  .onboarding-track { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; }
  .pricing-plan { min-height: auto; }
  .referral-strip { grid-template-columns: 120px 1fr; }
  .referral-strip > a { grid-column: 2; width: fit-content; }
  .landing-footer { grid-template-columns: 1.3fr 1fr 1fr; }
  .landing-footer > div:nth-child(4) { grid-column: 2; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 74px; }
  .landing-header { min-height: 66px; padding-inline: 16px; }
  .landing-header.is-scrolled { min-height: 62px; }
  .landing-brand-mark { width: 36px; height: 36px; border-radius: 11px; }
  .landing-brand-mark img { width: 28px; height: 28px; }
  .landing-brand strong { font-size: 13px; }.landing-brand small { display: none; }
  .landing-header-actions { margin-left: auto; margin-right: 8px; }
  .landing-login { display: none; }
  .landing-button-small { min-height: 36px; padding: 0 12px; font-size: 10px; }
  .landing-menu-toggle { width: 38px; height: 38px; }
  .landing-nav { top: 64px; }

  .landing-hero { padding: 112px 18px 58px; }
  .landing-hero h1 { font-size: clamp(52px,15.8vw,75px); }
  .landing-hero-lead { margin-top: 24px; font-size: 16px; }
  .landing-hero-actions { align-items: stretch; flex-direction: column; gap: 17px; margin-top: 28px; }
  .landing-button-light { width: 100%; min-width: 0; }
  .landing-text-link { align-self: flex-start; }
  .landing-trial-facts { gap: 9px; margin-top: 32px; padding-top: 20px; }
  .landing-trial-facts b { font-size: 11px; }.landing-trial-facts span { font-size: 8px; }
  .landing-launch-note { font-size: 10px; }

  .hero-product { margin-top: 35px; }
  .hero-product-window { min-height: 408px; border-radius: 18px; }
  .product-topbar { grid-template-columns: 1fr auto; height: 50px; padding: 0 12px; }
  .product-search { display: none; }
  .product-mini-brand { font-size: 10px; }.product-mini-brand img { width: 22px; height: 22px; }
  .product-live { font-size: 7px; }
  .product-layout { min-height: 356px; grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
  .product-dashboard { padding: 17px; }
  .product-title strong { font-size: 19px; }.product-title button { font-size: 7px; }
  .product-focus-card { min-height: 160px; margin-top: 18px; padding: 20px; border-radius: 15px; }
  .product-focus-card strong { font-size: 23px; }.product-focus-card p { max-width: 180px; font-size: 8px; }
  .focus-line { right: 18px; bottom: 20px; height: 58px; }.focus-line i { width: 12px; }
  .product-day-grid { gap: 6px; margin-top: 8px; }
  .product-day-grid article { padding: 9px; border-radius: 9px; }
  .product-day-grid strong { font-size: 7px; }.product-day-grid span { font-size: 6px; }
  .hero-context-marker { display: none; }
  .hero-product-caption { margin-top: 14px; }

  .context-intro { align-items: flex-start; flex-direction: column; gap: 8px; padding: 22px 18px; }
  .context-intro i { width: 80px; flex: 0 0 1px; }
  .product-story, .integrations-section, .onboarding-section, .pricing-section, .faq-section { padding: 78px 18px; }
  .landing-section-intro { margin-bottom: 48px; }
  .landing-section-intro h2, .assistant-copy h2, .conversion-copy h2, .trust-copy h2 { font-size: clamp(39px,11.5vw,54px); }
  .landing-section-intro > p:last-child { margin-top: 20px; font-size: 15px; }
  .story-rail { display: none; }
  .product-scene { gap: 28px; margin-bottom: 95px; }
  .scene-copy h3 { font-size: 36px; }.scene-copy > p { font-size: 15px; }
  .scene-frame { min-height: 390px; border-radius: 18px; }
  .scene-today { grid-template-columns: 1fr; grid-template-rows: 54px auto 1fr; }
  .scene-toolbar { height: 54px; padding: 0 18px; }
  .today-summary { margin: 16px 16px 0; padding: 21px; }
  .today-summary strong { margin-top: 15px; font-size: 24px; }
  .today-list { gap: 7px; padding: 12px 16px 16px; }
  .today-list span { grid-template-columns: 55px 1fr; padding: 12px; }
  .scene-dialog { grid-template-columns: 1fr; }
  .dialog-list, .dialog-context { display: none; }
  .dialog-thread { min-height: 390px; padding: 78px 18px 68px; }
  .dialog-thread p { width: 88%; font-size: 10px; }
  .scene-progress { min-height: 380px; padding: 20px; }
  .progress-title strong { font-size: 19px; }
  .scene-progress svg { margin-top: 45px; }
  .progress-facts { gap: 6px; }.progress-facts span { padding: 10px; }

  .assistant-section { min-height: auto; padding: 82px 18px; }
  .assistant-copy > p:not(.landing-kicker) { font-size: 15px; }
  .assistant-orbit-visual { min-height: 400px; margin-top: 20px; transform: scale(.9); }
  .orbit-one { width: 160px; height: 160px; }.orbit-two { width: 270px; height: 270px; }.orbit-three { width: 390px; height: 390px; }
  .orbit-core { width: 125px; height: 125px; }.orbit-core img { width: 48px; height: 48px; }
  .orbit-node { font-size: 8px; }

  .channel-column, .payment-column { padding: 22px 16px; border-radius: 18px; }
  .integration-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .channel-row, .payment-row { grid-template-columns: 42px 1fr; padding: 11px 0; }
  .channel-row > b, .payment-row > b { grid-column: 2; width: fit-content; margin-top: -9px; }
  .channel-brand-icon, .provider-mark { width: 34px; height: 34px; }

  .onboarding-track { grid-template-columns: 1fr; }
  .onboarding-track li { min-height: auto; padding: 25px 0 38px; }
  .onboarding-track li:not(:last-child)::after { display: none; }
  .onboarding-track h3 { margin-top: 17px; }

  .trust-section { padding: 78px 18px; }
  .trust-copy > p:not(.landing-kicker) { font-size: 15px; }
  .pricing-grid { gap: 12px; }
  .pricing-plan { padding: 25px 22px; border-radius: 18px; }
  .pricing-footnotes { grid-template-columns: 1fr; }

  .referral-strip { grid-template-columns: 1fr; padding: 70px 18px; }
  .referral-coin { width: 95px; height: 95px; }
  .referral-strip > a { grid-column: 1; }

  .conversion-section { gap: 42px; padding: 80px 18px; }
  .conversion-copy > p:not(.landing-kicker) { font-size: 15px; }
  .conversion-form, .conversion-action { width: 100%; padding: 20px 16px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; }

  .faq-list { margin-left: 0; }
  .faq-list summary { padding: 21px 50px 21px 0; font-size: 16px; }
  .faq-list summary::after { top: 17px; }

  .landing-footer { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 55px 18px 90px; }
  .footer-brand { grid-column: 1/-1; }
  .landing-footer > div:nth-child(4) { grid-column: 1/-1; }

  .mobile-cta { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; display: block; transition: opacity .2s, transform .2s; }
  .mobile-cta.is-hidden { pointer-events: none; opacity: 0; transform: translateY(18px); }
  .mobile-cta a { display: flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(42,16,72,.94); color: #fff; font-size: 12px; font-weight: 900; text-decoration: none; box-shadow: 0 16px 40px rgba(22,7,36,.3); backdrop-filter: blur(15px); }
}

@media (max-width: 680px) {
  .early-access-name-row, .early-access-form-row, .early-access-channel-links { grid-template-columns: 1fr; }
}

@media (max-width: 410px) {
  .landing-hero h1 { font-size: 50px; }
  .landing-trial-facts { grid-template-columns: 1fr; }
  .landing-trial-facts li { grid-template-columns: 85px 1fr; align-items: baseline; }
  .landing-footer { grid-template-columns: 1fr; }
  .landing-footer > div:nth-child(4), .footer-brand { grid-column: 1; }
  .early-access-dialog { width: calc(100vw - 16px); max-height: calc(100dvh - 16px); }
  .early-access-dialog-surface { max-height: calc(100dvh - 16px); padding: 24px 17px; border-radius: 19px; }
  .early-access-dialog-head { padding-right: 35px; }.early-access-dialog-head h2 { font-size: 34px; }
  .early-access-name-row, .early-access-form-row, .early-access-channel-links { grid-template-columns: 1fr; }
}

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