@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600&family=Raleway:wght@300;400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-serif: 'Lora', serif;
  --font-body: 'Figtree', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --brand: #08aeb8;
  --brand-deep: #0d9aa3;
  --brand-subtle: rgba(8,174,184,.08);
  --coral: #d96a3b;
  --bg-abyss: #050811;
  --bg-deep: #0a0f1a;
  --bg-surface: #0e1420;
  --bg-elevated: rgba(255,255,255,.03);
  --text-primary: #E8E4DE;
  --text-secondary: rgba(232,228,222,.55);
  --text-muted: rgba(232,228,222,.35);
  --text-ghost: rgba(232,228,222,.18);
  --border-subtle: rgba(61,196,186,.12);
  --border-mid: rgba(61,196,186,.22);
  --glow-brand: rgba(8,174,184,.15);
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-abyss);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 1200px 800px at 6% 4%, rgba(8,174,184,.07), transparent 55%),
    radial-gradient(ellipse 900px 600px at 94% 96%, rgba(8,174,184,.04), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.012) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.008) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, #050811 0%, #060A12 38%, #04070D 100%);
  pointer-events: none;
}

a { color: var(--brand); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: .8; }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ── SITE NAV ─────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background .3s, border-color .3s, backdrop-filter .3s, transform .3s;
}

.site-nav.nav-hidden {
  transform: translateY(-100%);
}

.site-nav.scrolled {
  background: rgba(5,8,17,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.site-nav__logo svg { height: 28px; width: 28px; }
.site-nav__logo img { height: 22px; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .15s;
}
.site-nav__links a:hover { color: var(--text-primary); opacity: 1; }

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--bg-abyss);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(8,174,184,.25);
}
.site-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(8,174,184,.35);
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary);
  padding: 8px;
}


/* ── HERO ──────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  scroll-snap-align: start;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(8,174,184,.12) 0%, rgba(8,174,184,.03) 40%, transparent 70%);
  pointer-events: none;
}

.hero--split {
  padding: 140px 0 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__mark {
  display: inline-block;
  margin-bottom: 32px;
}

.hero__mark svg {
  width: 80px;
  height: 80px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: transform .15s, background .15s, border-color .15s;
  text-decoration: none;
}
.btn-download:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: var(--border-subtle);
  opacity: 1;
}
.btn-download svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.btn-app-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  opacity: 1;
}
.btn-app-store svg { width: 22px; height: 22px; }

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-ghost);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


/* ── SECTION STRUCTURE ────────────────────────────────────── */

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
  scroll-snap-align: start;
}
.section > .container,
.section > .container--narrow {
  width: 100%;
}

.section--alt {
  background: rgba(255,255,255,.015);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section__sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__sub {
  margin: 0 auto;
}


/* ── HOW IT WORKS ─────────────────────────────────────────── */

.section--how {
  padding: 0;
  flex-direction: column;
  align-items: stretch;
}
.section--how > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.step {
  text-align: center;
  padding: 48px 28px;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.step:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-subtle);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
}

.step__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

a.step {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.step__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8,174,184,.12);
  border: 1px solid rgba(8,174,184,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  color: var(--brand);
  transition: background .2s, transform .2s;
}
.step:hover .step__next {
  background: rgba(8,174,184,.2);
  transform: scale(1.08);
}

.demo-phone--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-phone__coming {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── TRUST SECTION ────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 40px 20px;
}

.trust-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--brand);
}

.trust-item__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.trust-item__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-grid--list {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  gap: 0;
}
.trust-grid--list .trust-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-grid--list .trust-item:last-child {
  border-bottom: none;
}
.trust-grid--list .trust-item__icon {
  margin: 0;
  flex-shrink: 0;
}


/* ── CTA BANNER ───────────────────────────────────────────── */

.cta-banner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
}

.cta-banner__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(8,174,184,.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner__sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}


/* ── FOOTER ───────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 48px 0;
  width: 100%;
  flex-shrink: 0;
}

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

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__brand svg { height: 22px; width: 22px; }
.site-footer__brand span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.site-footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .15s;
}
.site-footer__links a:hover { color: var(--text-secondary); opacity: 1; }

.site-footer__copy {
  font-size: 12px;
  color: var(--text-ghost);
  width: 100%;
  text-align: center;
  margin-top: 24px;
}


/* ── PERSONA PAGE ─────────────────────────────────────────── */

.persona-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.persona-hero__glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(8,174,184,.08) 0%, transparent 70%);
  pointer-events: none;
}

.persona-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.persona-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.persona-hero__moment {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 32px;
}

.persona-hero__backstory {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}


/* ── JOURNEY SECTIONS (persona pages) ─────────────────────── */

.journey-section {
  padding: 100px 0;
  position: relative;
}

.journey-section--alt {
  background: rgba(255,255,255,.015);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.journey__header {
  margin-bottom: 48px;
}

.journey__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.journey__eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(8,174,184,.4), transparent);
}

.journey__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.journey__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.journey__card {
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .25s;
}
.journey__card:hover { border-color: var(--border-subtle); }

.journey__card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.journey__card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.journey__card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.journey__card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.journey__card-status--live {
  background: rgba(16,185,129,.1);
  color: #10b981;
  border: 1px solid rgba(16,185,129,.2);
}
.journey__card-status--designed {
  background: rgba(251,191,36,.08);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,.15);
}


/* ── THE TURN (persona page CTA) ──────────────────────────── */

.the-turn {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.the-turn__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(8,174,184,.1) 0%, rgba(8,174,184,.03) 50%, transparent 70%);
  pointer-events: none;
}

.the-turn__text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.45;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--bg-abyss);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 24px rgba(8,174,184,.25);
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(8,174,184,.35);
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover {
  border-color: var(--border-mid);
  color: var(--text-primary);
  opacity: 1;
}


/* ── LEGAL PAGES ──────────────────────────────────────────── */

.legal {
  padding: 140px 0 80px;
}

.legal__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.legal__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal__body h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 40px 0 16px;
}

.legal__body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.legal__body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal__body ul, .legal__body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal__body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal__body a { color: var(--brand); }


/* ── SUPPORT PAGE ─────────────────────────────────────────── */

.support-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.support-hero__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.support-hero__sub {
  font-size: 16px;
  color: var(--text-secondary);
}

.support-contact {
  text-align: center;
  padding: 40px 0 80px;
}

.support-contact__card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.support-contact__card svg {
  color: var(--brand);
  flex-shrink: 0;
}

.support-contact__label {
  font-size: 13px;
  color: var(--text-muted);
}

.support-contact__email {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
}

.faq { padding: 0 0 80px; }

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color .15s;
}
.faq__question:hover { color: var(--brand); }

.faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq__item.open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ── SCROLL REVEAL ANIMATION ──────────────────────────────── */

body.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ── BREADCRUMB (persona/legal pages) ─────────────────────── */

.breadcrumb {
  padding: 88px 0 0;
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--text-ghost);
}

.breadcrumb__inner a { color: var(--text-muted); }
.breadcrumb__inner a:hover { color: var(--brand); opacity: 1; }

.breadcrumb__sep { color: var(--text-ghost); }


/* ── ATHENA MARK (inline) ─────────────────────────────────── */

.athena-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.athena-mark svg { overflow: visible; }


/* ── LIVE DEMO EMBED ──────────────────────────────────────── */

.demo-showcase {
  padding: 80px 0;
  position: relative;
}

.demo-showcase__header {
  text-align: center;
  margin-bottom: 48px;
}

.demo-frame-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.demo-phone {
  width: 390px;
  height: 844px;
  border-radius: 44px;
  border: 1.5px solid rgba(61,196,186,.18);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 0 0 6px rgba(6,10,16,.96),
    0 0 0 7px rgba(61,196,186,.12),
    0 32px 80px rgba(0,0,0,.78);
  background: #0b1117;
}

.demo-phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 34px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
}

.demo-phone iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #0b1117;
}

.demo-deck-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 24px;
  border: 1px solid rgba(61,196,186,.12);
  background: var(--bg-deep);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  position: relative;
}

.demo-deck-wrap iframe {
  width: 100%;
  min-width: 100%;
  height: 960px;
  border: none;
  display: block;
}

.demo-deck-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(5,8,17,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(61,196,186,.2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.demo-label {
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.demo-label::before, .demo-label::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(8,174,184,.45);
}

/* Journey section with demo: side by side */
.journey-with-demo {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.journey-with-demo .demo-phone {
  justify-self: center;
}

/* Homepage demo: centered phone */
.hero-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 80px;
}


/* ── IMMERSIVE SECTIONS ──────────────────────────────────── */

.immersive-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 48px;
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

.immersive-section--hero {
  padding: 140px 48px 80px;
  overflow: hidden;
}

.immersive-section__phone {
  width: 390px;
  height: 844px;
  border-radius: 44px;
  border: 1.5px solid rgba(61,196,186,.18);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 0 0 6px rgba(6,10,16,.96),
    0 0 0 7px rgba(61,196,186,.12),
    0 32px 80px rgba(0,0,0,.78);
  background: #0b1117;
  justify-self: center;
}

.immersive-section__phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 34px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
}

.immersive-section__phone iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #0b1117;
}


/* ── STATIC PHONE MOCKUPS ──────────────────────────────────── */

.immersive-section__phone--static {
  background: #0b1117;
}

.static-phone {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 48px 24px 0;
  font-family: var(--font-body);
}

.static-phone__status {
  position: absolute;
  top: 16px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.static-phone__status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.8);
}

.static-phone__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Static phone tab bar */
.static-phone__tabbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: 10px;
  height: 70px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(5,8,17,.92);
}
.sp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,.25);
}
.sp-tab svg { width: 22px; height: 22px; }
.sp-tab--active { color: var(--brand); }

/* Upload static phone */
.sp-upload-icon {
  margin: auto auto 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(61,196,186,.06);
  border: 1px solid rgba(61,196,186,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.sp-upload-label {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sp-upload-types {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.sp-upload-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: auto;
}

.sp-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

/* Athena static phone */
.sp-athena-icon {
  margin: 24px auto 20px;
}

.sp-athena-bubble {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.sp-athena-bubble--question {
  background: rgba(61,196,186,.04);
  border-color: rgba(61,196,186,.15);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sp-athena-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(61,196,186,.6);
  margin-bottom: 8px;
}

.sp-athena-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
}

.sp-athena-qmark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(61,196,186,.08);
  border: 1px solid rgba(61,196,186,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Vault static phone */
.sp-vault-tabs {
  display: flex;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 16px;
}

.sp-vault-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  border-radius: 8px;
}

.sp-vault-tab--active {
  background: rgba(61,196,186,.12);
  color: var(--brand);
}

.sp-vault-count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 20px;
}

.sp-vault-month {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sp-vault-record {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.sp-vault-record__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.sp-vault-record__dot--flag {
  background: #f87171;
}

.sp-vault-record__info {
  flex: 1;
  min-width: 0;
}

.sp-vault-record__title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.sp-vault-record__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
}

.sp-vault-record__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(248,113,113,.12);
  color: #f87171;
  flex-shrink: 0;
}

/* Visits static phone */
.sp-visits-header {
  margin-bottom: 12px;
}

.sp-visits-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.sp-visit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  margin-bottom: 10px;
}

.sp-visit-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}

.sp-visit-card__icon--upcoming {
  background: rgba(61,196,186,.08);
  color: var(--brand);
}

.sp-visit-card__info { flex: 1; min-width: 0; }

.sp-visit-card__title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.sp-visit-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
}

.sp-visit-card__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.sp-visit-card__badge--prep {
  background: rgba(61,196,186,.1);
  color: var(--brand);
}

.sp-visit-prep {
  padding: 12px 16px;
  margin-bottom: 10px;
}

.sp-visit-prep__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(61,196,186,.5);
  margin-bottom: 10px;
}

.sp-visit-prep__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  padding: 6px 0;
}

.sp-visit-prep__item svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* Static phone screen header (vault-style) */
.sp-screen-header { padding: 0 0 14px; }
.sp-screen-header__top {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.sp-screen-header__date {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em;
  color: rgba(255,255,255,.3);
}
.sp-screen-header__kicker {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em;
  color: var(--brand); margin-top: 2px;
}
.sp-screen-header__title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  color: var(--text-primary); letter-spacing: -.02em; line-height: 1.2;
  margin-top: 6px;
}

/* Appointment detail static phone */
.sp-appt__header {
  display: flex; align-items: center; gap: 8px; padding: 0 0 8px;
}
.sp-appt__back {
  width: 28px; height: 28px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: rgba(255,255,255,.35);
}
.sp-appt__doctor { flex: 1; }
.sp-appt__name {
  font-family: var(--font-serif); font-size: 18px; color: var(--text-primary); line-height: 1.2;
}
.sp-appt__role {
  font-size: 11px; color: rgba(255,255,255,.3); margin-top: 1px;
}
.sp-appt__avatar {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #f87171; background: rgba(248,113,113,.15);
}
.sp-appt__card {
  margin: 4px 0 0; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.sp-appt__card-row {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
}
.sp-appt__card-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: rgba(59,130,246,.1); display: flex; align-items: center; justify-content: center;
}
.sp-appt__date {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65);
}
.sp-appt__location {
  font-size: 11px; color: rgba(255,255,255,.3); margin-top: 2px;
}
.sp-appt__thread {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.sp-appt__dots { display: flex; gap: 3px; }
.sp-appt__dot {
  width: 5px; height: 5px; border-radius: 50%; border: 1px solid rgba(59,130,246,.3);
}
.sp-appt__dot--filled { background: rgba(59,130,246,.6); border-color: transparent; }
.sp-appt__dot--current {
  background: #60a5fa; border-color: rgba(59,130,246,.5);
  box-shadow: 0 0 5px rgba(59,130,246,.3);
}
.sp-appt__thread-label {
  font-size: 11px; color: rgba(59,130,246,.55); flex: 1;
}
.sp-appt__tabs {
  display: flex; gap: 16px; padding: 12px 0 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.sp-appt__tab {
  font-size: 12px; color: rgba(255,255,255,.3); padding-bottom: 8px;
}
.sp-appt__tab--active {
  color: var(--text-primary); font-weight: 600;
  border-bottom: 2px solid var(--text-primary); margin-bottom: -1px;
}
.sp-appt__pin {
  display: flex; gap: 10px; padding: 10px 0; align-items: flex-start;
}
.sp-appt__pin-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sp-appt__pin-icon--alert { background: rgba(248,113,113,.1); }
.sp-appt__pin-icon--athena { background: rgba(61,196,186,.1); }
.sp-appt__pin-text {
  font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.45;
}
.sp-appt__pin-source {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.2); margin-top: 3px;
}
.sp-appt__carry {
  margin: 6px 0; padding: 9px 12px; border-radius: 8px;
  background: rgba(251,191,36,.04); border: 1px solid rgba(251,191,36,.12);
}
.sp-appt__carry-label {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(251,191,36,.45); margin-bottom: 4px;
}
.sp-appt__carry-text {
  font-size: 11.5px; color: rgba(255,255,255,.45); line-height: 1.4;
}
.sp-appt__actions {
  display: flex; gap: 8px; padding: 10px 0;
}
.sp-appt__action {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 10px; border-radius: 8px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.4); background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.sp-appt__action--primary {
  color: var(--brand); background: rgba(61,196,186,.06);
  border-color: rgba(61,196,186,.15);
}

/* Hubs static phone */
.sp-hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.sp-hub-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  position: relative;
}

.sp-hub-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-hub-tile__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

.sp-hub-tile__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(251,191,36,.12);
  color: #fbbf24;
}

.sp-hub-insight {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(61,196,186,.03);
  border-left: 3px solid rgba(61,196,186,.3);
}

.sp-hub-insight__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(61,196,186,.55);
}

.sp-hub-insight p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ── DEMO SECTION ──────────────────────────────────────────── */

.demo-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.demo-personas {
  display: flex;
  gap: 12px;
}

.demo-persona {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all .15s;
}

.demo-persona img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.demo-persona.active {
  background: rgba(61,196,186,.08);
  border-color: rgba(61,196,186,.25);
  color: var(--text-primary);
}

.demo-screens {
  display: flex;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  padding: 3px;
}

.demo-screen {
  padding: 8px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .15s;
}

.demo-screen.active {
  background: rgba(61,196,186,.12);
  color: var(--brand);
}

/* Desktop: two-column immersive layout — heading + controls left, phone right */
#try-it.section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 48px;
}

#try-it .demo-header-snap { display: block; }
#try-it .container { max-width: none; padding: 0; }
#try-it .section__header { text-align: left; margin-bottom: 40px; }
#try-it .section__header .section__sub { margin: 0; }
#try-it .demo-controls { align-items: flex-start; margin-bottom: 0; }

.demo-phone-wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
}

.demo-phone-wrapper .immersive-section__phone {
  justify-self: auto;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .site-nav__links { display: none; }
  .site-nav__cta { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 900px) {
  html { scroll-snap-type: y mandatory; scroll-behavior: auto; }
  .steps { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
  .step {
    position: relative;
    padding: 16px 20px 14px;
    text-align: center;
    gap: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(8,174,184,.03) 100%);
    border: 1px solid rgba(61,196,186,.1);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.04);
  }
  .step__num {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin: 0;
    background: rgba(8,174,184,.1);
    border-color: rgba(61,196,186,.2);
    box-shadow: 0 0 8px rgba(8,174,184,.15);
  }
  .step__title { font-size: 16px; margin-bottom: 0; letter-spacing: -.01em; line-height: 28px; }
  .step__desc { font-size: 13px; line-height: 1.5; color: var(--text-secondary); }
  .step__next {
    width: 28px;
    height: 28px;
    background: rgba(8,174,184,.08);
    border-color: rgba(61,196,186,.15);
    margin: 2px auto 0;
  }
  .step__next svg { width: 9px; height: 14px; }
  .section--how { scroll-snap-align: none; min-height: auto; padding: 0; }
  .section--how > .container { padding-top: 48px; padding-bottom: 32px; scroll-snap-align: start; min-height: auto; justify-content: flex-start; }
  .section--how .section__header { margin-bottom: 16px; }
  .section--how .section__title { font-size: 26px; margin-bottom: 8px; letter-spacing: -.02em; }
  .section--how .section__sub { font-size: 14px; line-height: 1.5; }
  #features .section__header { margin-bottom: 24px; }
  #features.section { padding: 60px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; }
  #security .section__header { margin-bottom: 16px; }
  #security.section { padding: 40px 0; }
  .trust-grid--list .trust-item { padding: 12px 0; gap: 14px; }
  .trust-grid--list .trust-item__icon { width: 40px; height: 40px; }
  .trust-item__icon svg { width: 18px; height: 18px; }
  .trust-item__title { font-size: 14px; margin-bottom: 2px; }
  .trust-item__desc { font-size: 12px; line-height: 1.4; }
  .journey-with-demo { grid-template-columns: 1fr; gap: 32px; }
  .journey-with-demo .demo-phone { position: static; margin: 0 auto; }
  .demo-phone { width: 320px; height: 693px; border-radius: 36px; }
  .cta-banner { overflow: hidden; }

  /* ── Immersive sections — mobile ── */
  .immersive-section {
    display: block;
    max-width: none;
    padding: 0;
    min-height: auto;
    scroll-snap-align: none;
    margin: 0;
  }

  .immersive-section--hero { overflow: visible; }
  .immersive-section--hero .hero__glow { display: none; }
  .immersive-section--hero .hero__scroll-hint { display: none; }

  .immersive-section__text {
    min-height: 100vh;
    min-height: 100lvh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 24px;
  }

  .immersive-section__text--hero { text-align: center; }
  .immersive-section__text--hero .hero__sub { margin: 0 auto 40px; }
  .immersive-section__text--hero .hero__actions { justify-content: center; }

  .immersive-section__phone {
    scroll-snap-align: start;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    border-top: 1px solid var(--border-subtle);
  }

  .immersive-section__phone::before { display: none; }
  .static-phone__status { display: none; }
  .static-phone { padding-top: 16px; }

  /* Demo section */
  #try-it.section {
    display: block;
    min-height: auto;
    padding: 0;
    scroll-snap-align: none;
  }
  #try-it .container,
  #try-it .demo-controls {
    min-height: 0;
  }
  .demo-header-snap {
    min-height: 100vh;
    min-height: 100lvh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
  }
  .demo-personas { flex-wrap: wrap; justify-content: center; }
  .demo-persona { padding: 6px 12px; font-size: 13px; }
  .demo-persona img { width: 24px; height: 24px; }
  .demo-phone-wrapper { padding: 0; }
  .demo-phone-wrapper .immersive-section__phone {
    scroll-snap-align: start;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    border-top: 1px solid var(--border-subtle);
  }
  .demo-phone-wrapper .immersive-section__phone::before { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; min-height: 100lvh; }
  .section--how { min-height: auto; padding: 0; }
  .hero { padding: 100px 0 60px; min-height: 100vh; }
  .persona-hero { padding: 120px 0 60px; }
  .journey-section { padding: 60px 0; }
  .container, .container--narrow { padding: 0 20px; }
}

@media (max-width: 400px) {
  .demo-phone { width: calc(100vw - 40px); height: calc((100vw - 40px) * 2.165); }
}

/* ── MOBILE NAV DRAWER ─────────────────────────────────────── */

.site-nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5,8,17,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.site-nav__mobile.open { display: flex; }

.site-nav__mobile a {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
}

.site-nav__mobile .nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary);
  padding: 8px;
}


