:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  --bg: #0b0a16;
  --bg-2: #0f0d1c;
  --panel: #12111f;
  --panel-2: #161427;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --text: #f7f5ff;
  --muted: #aaa7bb;
  --muted-2: #777489;
  --violet: #7b5cff;
  --violet-2: #9a84ff;
  --violet-3: #5d46df;
  --blue: #87a4ff;
  --green: #74e5a7;
  --max: 1240px;
  --section: 112px;
  --radius: 24px;
  --shadow: 0 26px 70px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 8%, rgba(111,83,255,.08), transparent 27%),
    linear-gradient(180deg, #0b0917 0%, #0a0914 48%, #080810 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button, input, select { font: inherit; }

::selection {
  background: rgba(123,92,255,.35);
  color: white;
}

.site-width {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(10,9,20,.76);
  backdrop-filter: blur(18px);
}

.topbar {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.2), transparent 28%),
    linear-gradient(145deg, #8d6cff, #5c45d7);
  box-shadow: 0 12px 28px rgba(79,56,196,.25);
  font-size: 16px;
  font-weight: 750;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 660;
  letter-spacing: -.01em;
}

.brand-copy small {
  color: #7d788e;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav a,
.nav-signin,
.footer-column a,
.text-link {
  color: #a8a4b5;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .18s ease;
}

.nav a:hover,
.nav-signin:hover,
.footer-column a:hover,
.text-link:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.button {
  min-height: 50px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 12px;
}

.button-primary {
  background: linear-gradient(135deg, #835fff, #6748e8);
  box-shadow: 0 14px 30px rgba(95,67,220,.22), inset 0 1px 0 rgba(255,255,255,.17);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(95,67,220,.32), inset 0 1px 0 rgba(255,255,255,.2);
}

.button-secondary {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}

.button-secondary:hover {
  border-color: rgba(148,125,255,.35);
  background: rgba(123,92,255,.07);
}

/* Hero */
.hero-section {
  padding: 64px 0 54px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(500px,.94fr);
  align-items: center;
  gap: 70px;
}

.intro-line {
  width: fit-content;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d6d2e3;
  font-size: 13px;
  font-weight: 520;
}

.intro-line strong {
  color: white;
  font-weight: 650;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(116,229,167,.08), 0 0 16px rgba(116,229,167,.38);
}

.prototype-pill {
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #aaa6b6;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.prototype-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ee0a8;
  box-shadow: 0 0 0 4px rgba(126,224,168,.08);
}

.hero h1 {
  margin: 27px 0 24px;
  max-width: 670px;
  font-size: clamp(56px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 680;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #cbbcff 0%, #8e71ff 45%, #89a8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 660px;
  margin: 0;
  color: #aaa6b8;
  font-size: 18px;
  line-height: 1.72;
}

.provider-line {
  margin-top: 25px;
  max-width: 660px;
  padding: 15px 16px;
  display: flex;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.026);
}

.provider-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 5px rgba(255,255,255,.05);
}

.provider-line div {
  display: grid;
  gap: 5px;
}

.provider-line strong {
  font-size: 13px;
  font-weight: 620;
}

.provider-line small {
  color: #848093;
  font-size: 12px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-proof {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: #777386;
  font-size: 11px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof i {
  color: var(--green);
  font-style: normal;
}

.device-stage {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.stage-glow {
  width: 540px;
  height: 540px;
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,79,238,.15), transparent 67%);
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(131,105,255,.13);
  border-radius: 50%;
}

.orbit-one { width: 440px; height: 440px; }
.orbit-two { width: 560px; height: 560px; border-color: rgba(129,156,255,.08); }

.device-shell {
  width: 310px;
  height: 390px;
  position: relative;
  padding: 24px;
  border: 1px solid #393742;
  border-radius: 44px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.035), transparent 26%),
    #171820;
  box-shadow: 0 45px 90px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.05);
}

.device-top {
  height: 24px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.device-top span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #08090d;
}

.device-display {
  height: 245px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid #3a3946;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #191228, #09090e 68%);
}

.device-core {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(171,150,255,.28);
  border-radius: 50%;
  background: radial-gradient(circle, #835fff, #5e3fdd);
  box-shadow: 0 0 0 12px rgba(123,92,255,.08), 0 0 35px rgba(123,92,255,.28);
  font-size: 28px;
  font-weight: 700;
}

.wave-bars {
  height: 24px;
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wave-bars i {
  width: 3px;
  border-radius: 999px;
  background: #8c6cff;
  animation: wave 1.15s ease-in-out infinite;
}

.wave-bars i:nth-child(1) { height: 8px; }
.wave-bars i:nth-child(2) { height: 15px; animation-delay: -.22s; }
.wave-bars i:nth-child(3) { height: 23px; animation-delay: -.4s; }
.wave-bars i:nth-child(4) { height: 14px; animation-delay: -.12s; }
.wave-bars i:nth-child(5) { height: 7px; animation-delay: -.3s; }

.device-display strong {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 600;
}

.device-display small {
  margin-top: 2px;
  color: #777285;
  font-size: 9px;
}

.speaker-grid {
  height: 55px;
  display: grid;
  grid-template-columns: repeat(9,5px);
  justify-content: center;
  align-content: center;
  gap: 7px;
}

.speaker-grid i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #090a0e;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 190px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(15,14,25,.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.floating-card strong,
.floating-card span { display: block; }

.floating-card strong {
  margin: 4px 0;
  font-size: 13px;
  font-weight: 620;
}

.floating-card > span:last-child {
  color: #817d8e;
  font-size: 11px;
}

.mini-label {
  color: #a28cff !important;
  font-size: 8px !important;
  font-weight: 700;
  letter-spacing: .13em;
}

.mini-label.success { color: #77e5a5 !important; }

.memory-card { left: 8px; top: 122px; }
.reminder-card { right: -6px; bottom: 108px; }
.action-card { left: 18px; bottom: 38px; }

/* Proof strip */
.proof-section {
  padding: 0 0 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.018);
}

.proof-grid article {
  min-height: 118px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.proof-grid article:last-child { border-right: 0; }

.proof-icon {
  color: #8d73ff;
  font-size: 15px;
}

.proof-grid article div {
  display: grid;
  gap: 5px;
}

.proof-grid strong {
  font-size: 13px;
  font-weight: 620;
}

.proof-grid small {
  color: #777386;
  font-size: 11px;
  line-height: 1.45;
}

/* Global sections */
.section {
  padding: var(--section) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.story-heading h2,
.voice-copy h2,
.trust-copy h2,
.future-card h2,
.faq-intro h2 {
  margin: 13px 0 18px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -.041em;
  font-weight: 640;
}

.section-heading p,
.story-heading > p,
.voice-copy > p,
.trust-copy > p,
.future-card p,
.faq-intro p {
  margin: 0;
  color: #9d99ab;
  font-size: 17px;
  line-height: 1.7;
}

.kicker,
.card-label {
  color: #947dff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

/* Experience */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.experience-card {
  min-height: 400px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #11101d;
}

.experience-card.featured {
  border-color: rgba(131,100,255,.28);
  background: radial-gradient(circle at 88% 5%, rgba(123,92,255,.12), transparent 34%), #131120;
}

.experience-card.outcome {
  background: radial-gradient(circle at 90% 5%, rgba(127,160,255,.07), transparent 34%), #11101d;
}

.experience-card h3 {
  margin: 13px 0 28px;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -.028em;
  font-weight: 620;
}

.experience-card ul {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.experience-card li {
  color: #9995a7;
  font-size: 14px;
}

.experience-card li::before {
  content: "—";
  margin-right: 8px;
  color: #5e596b;
}

.featured li::before,
.outcome li::before {
  content: "✓";
  color: var(--green);
}

.screen-demo,
.presence-demo,
.outcome-metric {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 17px;
  background: rgba(255,255,255,.018);
}

.browser-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f4b5b;
}

.fake-input {
  padding: 13px 14px;
  border: 1px solid #2f2d39;
  border-radius: 11px;
  color: #777284;
  font-size: 12px;
}

.presence-demo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.presence-orb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #8b68ff, #6248dc);
  box-shadow: 0 14px 32px rgba(94,68,215,.25);
  font-size: 18px;
  font-weight: 680;
}

.presence-demo div {
  display: grid;
  gap: 5px;
}

.presence-demo strong {
  font-size: 13px;
  font-weight: 620;
}

.presence-demo small {
  color: #7d788b;
  font-size: 11px;
}

.outcome-metric {
  display: grid;
  align-content: center;
  gap: 5px;
}

.outcome-metric strong {
  font-size: 18px;
  font-weight: 610;
}

.outcome-metric span {
  color: #7f7a8c;
  font-size: 12px;
}

/* Stories */
.story-section {
  border-top: 1px solid rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.045);
  background:
    radial-gradient(circle at 18% 30%, rgba(123,92,255,.055), transparent 35%),
    #0c0b17;
}

.story-heading {
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
}

.story-heading h2 { margin-bottom: 0; }

.day-story {
  display: grid;
  gap: 12px;
}

.day-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.018);
}

.day-time {
  color: #7d778d;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .05em;
}

.day-content h3 {
  margin: 9px 0 7px;
  font-size: 25px;
  font-weight: 610;
  letter-spacing: -.025em;
}

.day-content > p {
  margin: 0 0 18px;
  color: #8f8a9d;
  font-size: 14px;
  line-height: 1.6;
}

.story-status {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.story-status.live {
  color: #83ecb2;
  border: 1px solid rgba(116,229,167,.18);
  background: rgba(116,229,167,.05);
}

.story-status.future {
  color: #aa96ff;
  border: 1px solid rgba(123,92,255,.2);
  background: rgba(123,92,255,.06);
}

.day-content blockquote {
  margin: 8px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 13px;
  background: rgba(255,255,255,.018);
  color: #d6d2df;
  font-size: 13px;
  line-height: 1.55;
}

.day-content blockquote.veyn {
  border-color: rgba(123,92,255,.13);
  background: rgba(123,92,255,.035);
}

.day-content blockquote small {
  display: block;
  margin-bottom: 3px;
  color: #8873ea;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
}

.story-note {
  margin-top: 10px !important;
  color: #696577 !important;
  font-size: 11px !important;
}

/* Voice */
.voice-section {
  background: radial-gradient(circle at 78% 35%, rgba(123,92,255,.07), transparent 34%);
}

.voice-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.voice-benefits {
  margin: 28px 0;
  display: grid;
  gap: 11px;
}

.voice-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa6b5;
  font-size: 13px;
}

.voice-benefits i {
  color: var(--green);
  font-style: normal;
}

.voice-note {
  display: block;
  margin-top: 13px;
  color: #6f6a7c;
  font-size: 10px;
  line-height: 1.55;
}

.voice-console {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent),
    #11101d;
  box-shadow: var(--shadow);
}

.console-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-head div {
  display: grid;
  gap: 4px;
}

.console-head small {
  color: #8e77ff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.console-head strong {
  font-size: 16px;
  font-weight: 620;
}

.console-head > span {
  padding: 5px 7px;
  border: 1px solid rgba(116,229,167,.18);
  border-radius: 999px;
  color: #7de6ab;
  background: rgba(116,229,167,.05);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .11em;
}

.voice-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.voice-option {
  min-height: 78px;
  padding: 12px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.017);
}

.voice-option.active {
  border-color: rgba(123,92,255,.28);
  background: rgba(123,92,255,.06);
}

.voice-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #1c192d;
  color: #a994ff;
  font-size: 12px;
  font-weight: 680;
}

.voice-option div:nth-child(2) {
  display: grid;
  gap: 2px;
}

.voice-option strong {
  font-size: 12px;
  font-weight: 620;
}

.voice-option small {
  color: #777184;
  font-size: 9px;
}

.voice-option > span {
  color: #6f697b;
  font-size: 9px;
}

/* How */
.how-section {
  border-top: 1px solid rgba(255,255,255,.045);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.how-card {
  min-height: 280px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #11101d;
}

.how-card > span {
  color: #5f5a6c;
  font-size: 9px;
  font-weight: 700;
}

.how-icon {
  width: 48px;
  height: 48px;
  margin: 28px 0 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123,92,255,.18);
  border-radius: 14px;
  background: rgba(123,92,255,.055);
  color: #9b86ff;
}

.how-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 610;
  line-height: 1.25;
}

.how-card p {
  margin: 0;
  color: #858093;
  font-size: 13px;
  line-height: 1.6;
}

.openai-card {
  margin-top: 18px;
  padding: 23px;
  display: grid;
  grid-template-columns: 50px 240px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}

.openai-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  color: #d8d4e2;
  background: #0d0c15;
}

.openai-card h3 {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 620;
}

.openai-card p {
  margin: 0;
  color: #918c9e;
  font-size: 12px;
  line-height: 1.6;
}

.openai-card > small {
  grid-column: 3;
  color: #686374;
  font-size: 9px;
}

/* Trust */
.trust-section {
  border-top: 1px solid rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.045);
  background: #0c0b16;
}

.trust-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust-card {
  min-height: 154px;
  padding: 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.016);
}

.trust-card > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: rgba(116,229,167,.055);
}

.trust-card h3 {
  margin: 3px 0 7px;
  font-size: 13px;
  font-weight: 620;
}

.trust-card p {
  margin: 0;
  color: #7f7a8c;
  font-size: 11px;
  line-height: 1.55;
}

/* Pricing */
.pricing-section {
  background: radial-gradient(circle at 50% 45%, rgba(123,92,255,.045), transparent 40%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.price-card {
  min-height: 560px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #11101d;
}

.price-card.free-card {
  border-color: rgba(116,229,167,.24);
  background: radial-gradient(circle at 88% 0%, rgba(116,229,167,.07), transparent 32%), #11151c;
}

.price-card.pro-card {
  border-color: rgba(123,92,255,.22);
  background: radial-gradient(circle at 88% 0%, rgba(123,92,255,.09), transparent 32%), #12101e;
}

.price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.price-head > span {
  color: #9781ff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.price-head b {
  padding: 5px 7px;
  border: 1px solid rgba(123,92,255,.17);
  border-radius: 999px;
  color: #a792ff;
  background: rgba(123,92,255,.045);
  font-size: 7px;
  letter-spacing: .11em;
}

.free-card .price-head b {
  color: #82e9ad;
  border-color: rgba(116,229,167,.18);
  background: rgba(116,229,167,.04);
}

.price-card h3 {
  margin: 23px 0 2px;
  font-size: 38px;
  font-weight: 640;
  letter-spacing: -.035em;
}

.price-card > small {
  color: #706b7d;
  font-size: 10px;
}

.price-card > p {
  min-height: 78px;
  margin: 20px 0 22px;
  color: #8d889a;
  font-size: 13px;
  line-height: 1.6;
}

.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #aaa5b4;
  font-size: 12px;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8973f2;
}

.free-card li::before { color: var(--green); }

.price-card .button,
.hardware-note {
  margin-top: auto;
  width: 100%;
}

.hardware-note {
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  color: #6f6a7a;
  font-size: 10px;
}

/* Future */
.future-section {
  padding-top: 35px;
}

.future-card {
  min-height: 330px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  border: 1px solid rgba(132,105,255,.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 15%, rgba(123,92,255,.16), transparent 35%),
    radial-gradient(circle at 8% 100%, rgba(133,164,255,.06), transparent 32%),
    #12101f;
  box-shadow: var(--shadow);
}

.future-card h2 {
  max-width: 720px;
  font-size: clamp(38px, 4vw, 55px);
}

.future-card p {
  max-width: 700px;
}

.future-actions {
  min-width: 280px;
  display: grid;
  gap: 12px;
}

.future-actions > span {
  color: #777284;
  text-align: center;
  font-size: 10px;
}

/* FAQ */
.faq-section {
  border-top: 1px solid rgba(255,255,255,.045);
}

.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 85px;
}

.faq-intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.1);
}

.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,.085);
}

.faq-list summary {
  min-height: 72px;
  padding: 21px 42px 21px 0;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 16px;
  color: #8d75ff;
  font-size: 23px;
  font-weight: 350;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list p {
  margin: -4px 0 24px;
  padding-right: 35px;
  color: #878294;
  font-size: 13px;
  line-height: 1.7;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,.05);
  background: #080711;
}

.footer-grid {
  padding: 55px 0 34px;
  display: grid;
  grid-template-columns: minmax(260px,1.35fr) repeat(4,.6fr);
  gap: 45px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #6d6879;
  font-size: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #d8d4e0;
  font-size: 10px;
}

.footer-column a { font-size: 11px; }

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-bottom small {
  color: #514c5d;
  font-size: 8px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  50% { transform: scaleY(.45); opacity: .58; }
}

/* Responsive */
@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .hero-copy {
    max-width: 820px;
    margin-inline: auto;
  }

  .intro-line,
  .prototype-pill,
  .provider-line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof { justify-content: center; }

  .device-stage {
    width: min(720px,100%);
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .proof-grid article:nth-child(3) { border-right: 0; }
  .proof-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card { min-height: 510px; }

  .voice-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .voice-copy,
  .trust-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .nav { display: none; }

  .topbar { grid-template-columns: 1fr auto; }
  .nav-actions { justify-self: end; }

  :root { --section: 88px; }

  .experience-grid,
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-heading,
  .faq-layout,
  .future-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-intro { position: static; }

  .openai-card {
    grid-template-columns: 48px 1fr;
  }

  .openai-card p,
  .openai-card > small {
    grid-column: 1 / -1;
  }

  .future-actions {
    min-width: 0;
    max-width: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(3,1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-width {
    width: min(100% - 26px, var(--max));
  }

  .topbar {
    min-height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy small,
  .nav-signin {
    display: none;
  }

  .button-small {
    min-height: 38px;
    font-size: 10px;
  }

  .hero-section {
    padding-top: 46px;
  }

  .hero {
    min-height: 0;
  }

  .intro-line {
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 62px);
    font-weight: 660;
  }

  .hero-lede {
    font-size: 16px;
  }

  .provider-line {
    text-align: left;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .device-stage {
    min-height: 470px;
    transform: scale(.83);
    transform-origin: center center;
    margin: -30px 0;
  }

  .memory-card { left: -18px; }
  .reminder-card { right: -22px; }
  .action-card { left: -10px; }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .proof-grid article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:last-child { border-bottom: 0; }

  .section-heading h2,
  .story-heading h2,
  .voice-copy h2,
  .trust-copy h2,
  .future-card h2,
  .faq-intro h2 {
    font-size: clamp(34px, 10.5vw, 45px);
  }

  .section-heading p,
  .story-heading > p,
  .voice-copy > p,
  .trust-copy > p,
  .future-card p,
  .faq-intro p {
    font-size: 15px;
  }

  .experience-grid,
  .how-grid,
  .pricing-grid,
  .trust-grid,
  .voice-options {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 0;
  }

  .story-heading {
    gap: 20px;
  }

  .day-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .day-content h3 {
    font-size: 21px;
  }

  .voice-console {
    padding: 18px;
  }

  .how-card {
    min-height: 0;
  }

  .price-card {
    min-height: 0;
  }

  .price-card > p {
    min-height: 0;
  }

  .future-card {
    min-height: 0;
    padding: 32px 22px;
  }

  .faq-list p { padding-right: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 420px) {
  .site-width {
    width: min(100% - 20px, var(--max));
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 420px;
    transform: scale(.72);
  }

  .memory-card { left: -38px; }
  .reminder-card { right: -40px; }
  .action-card { left: -28px; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
}

@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;
  }
}


/* Phase 9.7 — Founder List / launch growth */
.founder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(123,92,255,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}
.founder-layout {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(420px,.8fr);
  gap: 72px;
  align-items: center;
}
.founder-copy h2 {
  margin: 12px 0 18px;
  max-width: 760px;
  font-size: clamp(40px,5vw,66px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 680;
}
.founder-copy > p {
  max-width: 700px;
  color: #aaa6b7;
  font-size: 16px;
}
.founder-price {
  margin: 28px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.founder-price > div {
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.founder-price span {
  display: block;
  color: #817c90;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .09em;
}
.founder-price strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
  letter-spacing: -.025em;
}
.founder-points {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.founder-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #cbc7d6;
  font-size: 13px;
}
.founder-points i {
  color: var(--green);
  font-style: normal;
}
.founder-fineprint {
  margin-top: 20px !important;
  color: #706b7e !important;
  font-size: 10px !important;
}
.founder-card {
  padding: 30px;
  border: 1px solid rgba(147,125,255,.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0, rgba(117,86,255,.1), transparent 35%),
    #11101d;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.founder-card-head h3 {
  margin: 8px 0 8px;
  font-size: 30px;
  letter-spacing: -.035em;
}
.founder-card-head p {
  margin: 0 0 22px;
  color: #9490a2;
  font-size: 13px;
}
.founder-form {
  display: grid;
  gap: 14px;
}
.founder-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #aaa6b7;
  font-size: 11px;
}
.founder-form input[type="email"],
.referral-row input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  padding: 0 14px;
  background: #0a0913;
  color: white;
  outline: none;
}
.founder-form input[type="email"]:focus,
.referral-row input:focus {
  border-color: rgba(145,119,255,.65);
  box-shadow: 0 0 0 3px rgba(123,92,255,.1);
}
.founder-consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
}
.founder-consent input {
  margin-top: 3px;
  accent-color: #7b5cff;
}
.founder-consent span {
  margin: 0 !important;
  color: #898596 !important;
  font-size: 10px !important;
  line-height: 1.5;
}
.founder-message {
  min-height: 18px;
  color: #a5a1b0;
  font-size: 11px;
}
.founder-message.error {
  color: #ff9caa;
}
.founder-message.success {
  color: var(--green);
}
.founder-success {
  margin-top: 4px;
  padding: 19px;
  border: 1px solid rgba(116,229,167,.2);
  border-radius: 16px;
  background: rgba(116,229,167,.045);
}
.founder-success.hidden {
  display: none;
}
.success-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(116,229,167,.12);
  color: var(--green);
  font-weight: 750;
}
.founder-success h3 {
  margin: 11px 0 5px;
  font-size: 20px;
}
.founder-success p,
.founder-success small {
  color: #9691a2;
  font-size: 11px;
}
.referral-row {
  margin: 14px 0 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.referral-row .button {
  min-height: 50px;
}
.founder-trust {
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #6e697b;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.founder-card-cta {
  margin-top: 14px;
  width: 100%;
}

@media (max-width: 980px) {
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-card {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .founder-price {
    grid-template-columns: 1fr;
  }
  .founder-card {
    padding: 22px;
  }
  .referral-row {
    grid-template-columns: 1fr;
  }
  .referral-row .button {
    width: 100%;
  }
}

.founder-form.hidden {
  display: none;
}
