/* Lumina — site styles v3
   Shopify / Stripe inspired. Pill CTAs, massive type, live mockup.
   Depends on: ../colors_and_type.css
   ─────────────────────────────────────────────────────────────── */

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

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 9999px;
  font-family: var(--lumina-font-sans); font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none; border: 1px solid transparent;
  line-height: 1; white-space: nowrap;
  transition: all 130ms var(--ease-standard);
}
.btn-primary {
  background: var(--lumina-text-primary); color: var(--lumina-surface-base);
  border-color: transparent;
}
.btn-primary:hover { background: #fff; border-color: transparent; }
.btn-ghost {
  background: transparent; color: var(--lumina-text-primary);
  border-color: var(--border-03);
}
.btn-ghost:hover { background: var(--background-tint-010); border-color: var(--border-04); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-verdant {
  background: var(--lumina-accent-verdant); color: #040d0b;
  border-color: transparent;
}
.btn-verdant:hover { opacity: .88; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px; display: flex; align-items: center; padding: 0 48px;
  transition: background 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgb(10 10 10 / 90%);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: var(--border-01);
}
.nav__logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; border: none; color: var(--lumina-text-primary); flex-shrink: 0;
}
.nav__logo img { width: 22px; height: 22px; }
.nav__wordmark { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.nav__links {
  display: flex; list-style: none; margin: 0 0 0 32px; padding: 0; gap: 0;
}
.nav__links a {
  font-size: 13.5px; color: var(--lumina-text-secondary); font-weight: 500;
  text-decoration: none; border: none; padding: 6px 14px; border-radius: 9999px;
  transition: color 120ms, background 120ms;
}
.nav__links a:hover { color: var(--lumina-text-primary); background: var(--background-tint-010); }
.nav__spacer { flex: 1; }
.nav__cta { padding: 8px 20px; font-size: 13px; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 85vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 48px 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 10%, rgb(255 255 255 / 4%) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgb(94 234 212 / 5%) 0%, transparent 60%);
}
/* kicker removed */
.hero__headline {
  font-family: var(--lumina-font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.035em;
  color: var(--lumina-text-primary); margin: 0 0 24px;
  max-width: 860px; text-wrap: balance; position: relative;
}
.hero__sub {
  font-size: 18px; line-height: 1.72; font-weight: 400;
  color: var(--lumina-text-secondary); margin: 0 0 36px;
  max-width: 480px; position: relative;
}
.hero__form {
  display: flex; gap: 8px; flex-wrap: wrap;
  max-width: 440px; margin: 0 auto 0; justify-content: center;
  position: relative;
}
.hero__form input[type="email"] {
  flex: 1; min-width: 200px; padding: 13px 20px;
  background: var(--lumina-surface-elevated);
  border: 1px solid var(--border-02); border-radius: 9999px;
  font-family: var(--lumina-font-sans); font-size: 14px;
  color: var(--lumina-text-primary); outline: none; transition: border-color 140ms;
}
.hero__form input:focus { border-color: var(--border-04); }
.hero__form input::placeholder { color: var(--lumina-text-muted); }
.hero__form button {
  padding: 13px 22px; background: var(--lumina-accent-verdant); color: #040d0b;
  border: none; border-radius: 9999px;
  font-family: var(--lumina-font-sans); font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: opacity 140ms;
}
.hero__form button:hover { opacity: .87; }
.hero__note { font-size: 12px; color: var(--lumina-text-muted); margin: 14px 0 0; position: relative; }
.hero__thanks {
  display: none; margin-top: 14px; padding: 13px 20px;
  border: 1px solid rgb(94 234 212 / 22%); border-radius: var(--lumina-radius-sm);
  background: rgb(94 234 212 / 5%);
  font-size: 14px; color: var(--lumina-accent-verdant); max-width: 420px;
  position: relative;
}

/* ── LIVE MOCKUP — Recording Panel ───────────────────────────── */
.lm {
  width: 100%; max-width: 520px;
  background: #0a0d0c;
  border-radius: 10px;
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 4%), 0 48px 100px rgb(0 0 0 / 75%);
  transform: perspective(1600px) rotateY(-8deg) rotateX(3deg);
  overflow: hidden; display: flex; flex-direction: column;
  font-family: var(--lumina-font-sans); user-select: none;
  position: relative; z-index: 1;
}
/* Title bar */
.lm-bar {
  height: 40px; background: #131a17; flex-shrink: 0;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  display: flex; align-items: center; padding: 0 14px; gap: 12px;
}
.lm-dots { display: flex; gap: 6px; flex-shrink: 0; }
.lm-dot { width: 11px; height: 11px; border-radius: 50%; }
.lm-dot-r { background: #f87171; }
.lm-dot-y { background: #facc15; }
.lm-dot-g { background: #4ade80; }
.lm-bar-title { font-size: 11.5px; font-weight: 500; color: rgb(255 255 255 / 38%); flex: 1; text-align: center; }

/* Recording status pill in title bar */
.lm-rec-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; border: 1px solid;
  font-size: 10.5px; font-weight: 600; font-family: var(--lumina-font-mono);
  white-space: nowrap; flex-shrink: 0;
  transition: background 400ms ease, border-color 400ms ease, color 400ms ease;
}
.lm-rec-pill[data-tone="armed"] {
  border-color: rgb(245 158 11 / 50%); color: #f59e0b; background: rgb(245 158 11 / 12%);
}
.lm-rec-pill[data-tone="active"] {
  border-color: rgb(239 68 68 / 50%); color: #ef4444; background: rgb(239 68 68 / 12%);
}
.lm-rec-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.lm-rec-pill[data-tone="active"] .lm-rec-dot { animation: live-pulse 900ms ease-in-out infinite alternate; }
@keyframes live-pulse {
  from { box-shadow: 0 0 0 0 rgb(239 68 68 / 38%); }
  to   { box-shadow: 0 0 0 5px transparent; }
}

/* Body */
.lm-body { flex: 1; display: flex; flex-direction: column; overflow: hidden; position: relative; }

/* Patient header */
.lm-patient-hdr {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid rgb(255 255 255 / 7%); flex-shrink: 0;
}
.lm-patient-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgb(94 234 212 / 15%); border: 1px solid rgb(94 234 212 / 30%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; font-family: var(--lumina-font-mono);
  color: #5eead4; flex-shrink: 0;
}
.lm-patient-name { font-size: 13px; font-weight: 600; color: rgb(255 255 255 / 84%); }
.lm-patient-meta { font-size: 11px; color: rgb(255 255 255 / 36%); margin-top: 1px; }
.lm-consent-chip {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600; color: #5eead4; opacity: 0.7;
}
.lm-consent-chip svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Recording glyph + timer */
.lm-rec-center {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 16px 14px; flex-shrink: 0;
}
.lm-rec-glyph {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: background 400ms ease, color 400ms ease;
}
.lm-rec-glyph[data-tone="armed"]  { color: #f59e0b; background: rgb(245 158 11 / 18%); }
.lm-rec-glyph[data-tone="active"] { color: #ef4444; background: rgb(239 68 68 / 18%); animation: live-pulse 900ms ease-in-out infinite alternate; }
.lm-rec-glyph svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lm-timer {
  font-family: var(--lumina-font-mono);
  font-size: 22px; font-weight: 600;
  font-variant-numeric: tabular-nums; letter-spacing: 0.04em; line-height: 1;
  color: rgb(255 255 255 / 80%); transition: color 400ms;
}
.lm-timer.dim { color: rgb(255 255 255 / 22%); }

/* Transcript */
.lm-transcript {
  flex: 1; overflow: hidden; padding: 0 16px 12px;
  display: flex; flex-direction: column; gap: 0; min-height: 0;
}
.lm-tx-empty { font-size: 11.5px; color: rgb(255 255 255 / 20%); text-align: center; padding: 8px 0; }
.lm-line {
  display: flex; flex-direction: column; gap: 2px;
  padding: 7px 0; border-bottom: 1px solid rgb(255 255 255 / 5%);
  opacity: 0; transform: translateY(5px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.lm-line:last-child { border-bottom: none; }
.lm-line.show { opacity: 1; transform: translateY(0); }
.lm-speaker { font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.lm-speaker.clinico  { color: #5eead4; }
.lm-speaker.paciente { color: rgb(255 255 255 / 42%); }
.lm-line-text { font-size: 12px; color: rgb(255 255 255 / 68%); line-height: 1.55; }

/* AI analysis panel — slides in from right */
.lm-analysis {
  position: absolute; right: 0; top: 0; bottom: 0; width: 188px;
  background: #101815;
  border-left: 1px solid rgb(255 255 255 / 8%);
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.2, 0, 0, 1);
  display: flex; flex-direction: column; overflow: hidden;
}
.lm-analysis.show { transform: translateX(0); }
.lm-analysis-hdr {
  padding: 12px 12px 10px; flex-shrink: 0;
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #5eead4;
  display: flex; align-items: center; gap: 5px;
}
.lm-analysis-hdr svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.lm-analysis-items { padding: 10px 12px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lm-analysis-item {
  font-size: 11px; color: rgb(255 255 255 / 62%); line-height: 1.55;
  padding-left: 11px; position: relative;
  opacity: 0; transform: translateX(8px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.lm-analysis-item::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 4px; height: 4px; border-radius: 50%; background: #5eead4;
}
.lm-analysis-item.show { opacity: 1; transform: translateX(0); }
.lm-analysis-tags {
  padding: 8px 12px 12px; display: flex; flex-wrap: wrap; gap: 4px; flex-shrink: 0;
  border-top: 1px solid rgb(255 255 255 / 7%);
}
.lm-analysis-tag {
  padding: 2px 8px; border-radius: 999px;
  background: rgb(20 40 42 / 85%); border: 1px solid rgb(45 100 100 / 60%);
  font-size: 10px; font-weight: 600; color: #99f6e4;
}

/* ── BEFORE / AFTER DEMO ─────────────────────────────────────── */
.ba-wrap { padding: 0 72px 80px; }
.ba-demo {
  display: grid; grid-template-columns: 1fr 52px 1fr;
  max-width: 1060px; margin: 0 auto;
  border: 1px solid var(--border-02); border-radius: var(--lumina-radius-md);
  overflow: hidden; min-height: 380px;
}
.ba-panel { display: flex; flex-direction: column; overflow: hidden; }
.ba-panel--before { border-right: none; }
.ba-label {
  padding: 10px 16px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--border-01);
  background: var(--lumina-surface-raised);
}
.ba-label--before { color: var(--lumina-text-muted); }
.ba-label--after  { color: var(--lumina-accent-verdant); }
.ba-editor {
  flex: 1; padding: 20px; background: var(--lumina-surface-elevated);
  display: flex; flex-direction: column;
}
.ba-editor-hdr { margin-bottom: 16px; }
.ba-editor-title {
  font-size: 13px; font-weight: 600; color: var(--lumina-text-primary); margin-bottom: 3px;
}
.ba-editor-meta { font-size: 11px; color: var(--lumina-text-muted); }
.ba-editor-body {
  font-size: 12.5px; line-height: 1.7; color: var(--lumina-text-secondary);
  white-space: pre-wrap; flex: 1; overflow: hidden;
}
.ba-cursor {
  display: inline-block; width: 2px; height: 13px;
  background: var(--lumina-text-muted); vertical-align: middle;
  animation: cur-blink 1s step-end infinite;
}
@keyframes cur-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ba-footer {
  padding: 10px 16px; font-size: 11.5px; font-weight: 500;
  border-top: 1px solid var(--border-01);
  background: var(--lumina-surface-raised);
  display: flex; align-items: center; gap: 6px;
}
.ba-footer svg { width: 13px; height: 13px; flex-shrink: 0; }
.ba-footer--warn { color: var(--lumina-status-warn); }
.ba-footer--ok   { color: var(--lumina-accent-verdant); }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border-02);
  border-right: 1px solid var(--border-02);
  background: var(--lumina-surface-base);
  color: var(--lumina-text-muted);
}
.ba-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
/* Lumina side */
.ba-lumina { flex: 1; display: flex; flex-direction: column; background: #0a0d0c; }
.ba-lm-bar {
  height: 34px; background: #131a17; flex-shrink: 0;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
}
.ba-lm-dots { display: flex; gap: 5px; }
.ba-lm-dot { width: 9px; height: 9px; border-radius: 50%; }
.ba-status {
  font-size: 10px; font-weight: 600; font-family: var(--lumina-font-mono);
  transition: color 300ms;
}
.ba-status[data-tone="armed"] { color: #f59e0b; }
.ba-status[data-tone="active"] { color: #ef4444; animation: live-pulse-text 900ms ease-in-out infinite alternate; }
.ba-status[data-tone="ok"]    { color: #5eead4; }
@keyframes live-pulse-text {
  from { opacity: 1; } to { opacity: 0.6; }
}
.ba-lm-body {
  flex: 1; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px; overflow: hidden;
}
.ba-generating {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: #5eead4; font-weight: 500;
  font-family: var(--lumina-font-mono);
}
.ba-gen-dots span {
  display: inline-block; width: 3px; height: 3px; border-radius: 50%;
  background: #5eead4; margin: 0 1px;
  animation: ty-bounce 1.2s ease-in-out infinite;
}
.ba-gen-dots span:nth-child(2) { animation-delay: 0.2s; }
.ba-gen-dots span:nth-child(3) { animation-delay: 0.4s; }
.ba-note { display: flex; flex-direction: column; gap: 9px; transition: opacity 600ms ease; }
.ba-note-title {
  font-size: 12px; font-weight: 700; color: rgb(255 255 255 / 82%);
  padding-bottom: 8px; border-bottom: 1px solid rgb(255 255 255 / 7%);
}
.ba-note-section { display: flex; flex-direction: column; gap: 3px; }
.ba-note-slabel {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #5eead4;
}
.ba-note-text { font-size: 11px; color: rgb(255 255 255 / 62%); line-height: 1.6; }
.ba-note-chips { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 3px; }
.ba-chip {
  padding: 2px 7px; border-radius: 999px;
  background: rgb(20 40 42 / 85%); border: 1px solid rgb(45 100 100 / 60%);
  font-size: 10px; font-weight: 600; font-family: var(--lumina-font-mono); color: #99f6e4;
}

/* ── STEP MOCKUPS ─────────────────────────────────────────────── */
.sm { width: 100%; background: #0a0d0c; border-radius: 10px; border: 1px solid rgb(255 255 255 / 11%); box-shadow: 0 20px 60px rgb(0 0 0 / 50%); overflow: hidden; display: flex; flex-direction: column; font-family: var(--lumina-font-sans); user-select: none; }
.sm2-body { flex: 1; display: grid; grid-template-columns: 1fr 168px; min-height: 0; overflow: hidden; }
.sm2-chat { display: flex; flex-direction: column; border-right: 1px solid rgb(255 255 255 / 7%); min-height: 0; }
.sm2-chat-hdr { height: 38px; border-bottom: 1px solid rgb(255 255 255 / 7%); display: flex; align-items: center; padding: 0 12px; gap: 8px; flex-shrink: 0; }
.sm2-chat-name { font-size: 12px; font-weight: 600; color: rgb(255 255 255 / 78%); }
.sm2-tabs { display: flex; gap: 2px; margin-left: auto; }
.sm2-tab { font-size: 10.5px; padding: 3px 8px; border-radius: 999px; color: rgb(255 255 255 / 30%); }
.sm2-tab.active { background: rgb(255 255 255 / 8%); color: rgb(255 255 255 / 72%); }
.sm2-msgs { flex: 1; overflow: hidden; padding: 11px 12px; display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.sm2-msg { opacity: 0; transform: translateY(5px); transition: opacity 400ms ease, transform 400ms ease; }
.sm2-msg.show { opacity: 1; transform: translateY(0); }
.sm2-user { align-self: flex-end; background: rgb(255 255 255 / 9%); border-radius: 9px 9px 2px 9px; padding: 7px 11px; font-size: 11px; color: rgb(255 255 255 / 78%); max-width: 88%; line-height: 1.5; }
.sm2-ai { font-size: 11px; color: rgb(255 255 255 / 60%); line-height: 1.65; }
.sm2-ev { display: inline; padding: 1px 6px; border-radius: 999px; background: var(--lumina-surface-raised); border: 1px solid var(--border-02); font-family: var(--lumina-font-mono); font-size: 9px; color: var(--lumina-text-secondary); white-space: nowrap; vertical-align: middle; }
.sm2-typing { display: flex; gap: 3px; align-items: center; opacity: 0; transition: opacity 280ms; }
.sm2-typing.show { opacity: 1; }
.sm2-typing-dot { width: 4px; height: 4px; border-radius: 50%; background: rgb(255 255 255 / 35%); animation: ty-bounce 1.2s ease-in-out infinite; }
.sm2-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.sm2-typing-dot:nth-child(3) { animation-delay: 0.4s; }
.sm2-composer { flex-shrink: 0; margin: 0 10px 10px; background: rgb(255 255 255 / 5%); border: 1px solid rgb(255 255 255 / 10%); border-radius: 9px; padding: 7px 11px; font-size: 11px; color: rgb(255 255 255 / 28%); transition: color 200ms; }
.sm2-composer.typing { color: rgb(255 255 255 / 75%); }
.sm2-panel { background: #111614; display: flex; flex-direction: column; }
.sm2-panel-hdr { height: 38px; border-bottom: 1px solid rgb(255 255 255 / 7%); display: flex; align-items: center; padding: 0 10px; font-size: 12px; font-weight: 600; color: rgb(255 255 255 / 75%); flex-shrink: 0; }
.sm2-panel-items { padding: 6px; display: flex; flex-direction: column; gap: 1px; }
.sm2-pi { padding: 6px 8px; border-radius: 5px; font-size: 11px; color: rgb(255 255 255 / 48%); transition: all 200ms; }
.sm2-pi.generating { background: rgb(94 234 212 / 8%); color: #5eead4; }
.sm2-pi.done { color: rgb(255 255 255 / 65%); }
.sm2-drafts-hdr { padding: 7px 8px 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgb(255 255 255 / 28%); border-top: 1px solid rgb(255 255 255 / 7%); margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.sm2-dbadge { background: rgb(248 113 113 / 20%); color: #f87171; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 999px; }
.sm2-draft { padding: 5px 8px; display: flex; flex-direction: column; gap: 2px; }
.sm2-dtag { font-size: 9px; padding: 1px 6px; border-radius: 3px; font-weight: 700; width: fit-content; background: rgb(248 113 113 / 15%); color: #f87171; }
.sm2-dname { font-size: 10.5px; color: rgb(255 255 255 / 52%); }
.sm3-body { flex: 1; display: grid; grid-template-columns: 54px 1fr; min-height: 0; overflow: hidden; }
.sm3-sidebar { border-right: 1px solid rgb(255 255 255 / 7%); display: flex; flex-direction: column; align-items: center; padding: 10px 0; gap: 4px; background: #0a0d0c; }
.sm3-si { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgb(255 255 255 / 28%); }
.sm3-si.active { background: rgb(255 255 255 / 10%); color: rgb(255 255 255 / 75%); }
.sm3-si svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sm3-main { display: flex; flex-direction: column; overflow: hidden; }
.sm3-search { display: flex; align-items: center; gap: 7px; padding: 8px 12px; border-bottom: 1px solid rgb(255 255 255 / 7%); font-size: 11px; color: rgb(255 255 255 / 28%); flex-shrink: 0; }
.sm3-search svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; flex-shrink: 0; }
.sm3-filters { display: flex; gap: 3px; padding: 6px 10px; border-bottom: 1px solid rgb(255 255 255 / 7%); flex-shrink: 0; }
.sm3-filter { font-size: 10.5px; padding: 3px 9px; border-radius: 999px; color: rgb(255 255 255 / 30%); }
.sm3-filter.active { background: rgb(255 255 255 / 9%); color: rgb(255 255 255 / 70%); }
.sm3-patients { display: flex; flex-direction: column; padding: 6px; gap: 1px; flex-shrink: 0; }
.sm3-patient { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 7px; transition: background 200ms; }
.sm3-patient--featured { background: rgb(255 255 255 / 5%); }
.sm3-pav { width: 26px; height: 26px; border-radius: 50%; background: rgb(255 255 255 / 10%); border: 1px solid rgb(255 255 255 / 15%); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; font-family: var(--lumina-font-mono); color: rgb(255 255 255 / 60%); flex-shrink: 0; }
.sm3-pav--t { background: rgb(94 234 212 / 12%); border-color: rgb(94 234 212 / 22%); color: #5eead4; }
.sm3-pname { font-size: 12px; font-weight: 600; color: rgb(255 255 255 / 80%); }
.sm3-pmeta { font-size: 10px; color: rgb(255 255 255 / 35%); margin-top: 1px; }
.sm3-pcta { margin-left: auto; font-size: 10.5px; font-weight: 500; color: rgb(255 255 255 / 45%); white-space: nowrap; opacity: 0; transition: opacity 300ms; }
.sm3-pcta.show { opacity: 1; }
.sm3-brief { border-top: 1px solid rgb(255 255 255 / 7%); overflow: hidden; max-height: 0; transition: max-height 400ms cubic-bezier(0.2, 0, 0, 1); }
.sm3-brief.open { max-height: 120px; }
.sm3-brief-inner { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.sm3-brief-row { display: flex; gap: 8px; align-items: baseline; }
.sm3-brief-k { font-size: 10px; font-weight: 600; color: rgb(255 255 255 / 32%); width: 78px; flex-shrink: 0; }
.sm3-brief-v { font-size: 10.5px; color: rgb(255 255 255 / 62%); line-height: 1.5; }

/* ── SOCIAL PROOF ────────────────────────────────────────────── */
.social-proof {
  padding: 0 72px 100px;
}
.sp-inner {
  max-width: 1060px; margin: 0 auto;
  border: 1px solid var(--border-02); border-radius: var(--lumina-radius-md);
  padding: 40px 48px;
  background: var(--lumina-surface-elevated);
}
.sp-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--lumina-text-muted);
  margin: 0 0 28px; text-align: center;
}
.sp-facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sp-fact {
  padding: 0 24px; border-right: 1px solid var(--border-01);
  display: flex; flex-direction: column; gap: 6px;
}
.sp-fact:first-child { padding-left: 0; }
.sp-fact:last-child  { border-right: none; }
.sp-fact-val {
  font-family: var(--lumina-font-display);
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--lumina-text-primary); line-height: 1.2;
}
.sp-fact-label {
  font-size: 12.5px; color: var(--lumina-text-muted);
  line-height: 1.5;
}
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-01);
  border-bottom: 1px solid var(--border-01);
}
.stat-item {
  padding: 48px 44px; border-right: 1px solid var(--border-01);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--lumina-font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600; line-height: 1; letter-spacing: -0.04em;
  color: var(--lumina-text-primary);
}
.stat-val span { color: var(--lumina-text-primary); }
.stat-label { font-size: 14px; color: var(--lumina-text-muted); font-weight: 500; line-height: 1.4; }

/* ── SECTION UTILITIES ───────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--lumina-text-muted); margin-bottom: 16px; text-transform: uppercase;
}
.label-pip { width: 4px; height: 4px; border-radius: 50%; background: var(--lumina-text-muted); flex-shrink: 0; }
.section-title {
  font-family: var(--lumina-font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--lumina-text-primary); margin: 0 0 18px; text-wrap: balance;
}
.section-sub { font-size: 17px; line-height: 1.7; font-weight: 400; color: var(--lumina-text-secondary); margin: 0; }
.section-head { text-align: center; max-width: 580px; margin: 0 auto 72px; }
.section-head--left { text-align: left; margin-left: 0; }

/* ── PRODUCT SHOWCASE ────────────────────────────────────────── */
.showcase { padding: 100px 72px; }
.showcase__head { text-align: center; margin-bottom: 64px; }
.showcase__theater {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: center;
  height: 420px;
}
.theater-screen {
  border-radius: 10px; border: 1px solid var(--border-02);
  overflow: hidden; position: absolute;
}
.theater-screen img { width: 100%; display: block; }
.theater-screen--main {
  width: 62%; z-index: 2; left: 50%; transform: translateX(-50%);
  box-shadow: 0 32px 80px rgb(0 0 0 / 60%);
}
.theater-screen--left {
  width: 44%; z-index: 1; left: 0; top: 48px;
  transform: perspective(1200px) rotateY(12deg) scale(0.9);
  opacity: 0.65;
  box-shadow: 0 20px 50px rgb(0 0 0 / 45%);
}

/* ── BENTO ───────────────────────────────────────────────────── */
.bento-section { padding: 0 72px 100px; max-width: 1300px; margin: 0 auto; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bento-card {
  background: var(--lumina-surface-elevated);
  border: 1px solid var(--border-02); border-radius: var(--lumina-radius-md);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 160ms; overflow: hidden;
}
.bento-card:hover { border-color: var(--border-03); }
.bento-a { grid-column: 1 / 3; }
.bento-b { grid-column: 3 / 4; grid-row: 1 / 3; }
.bento-c { grid-column: 1 / 2; }
.bento-d { grid-column: 2 / 3; }
.bento-e { grid-column: 1 / 4; }

.bento-icon {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: var(--lumina-surface-raised); border-radius: var(--lumina-radius-xs); flex-shrink: 0;
}
.bento-icon svg { width: 17px; height: 17px; stroke: var(--lumina-text-secondary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.bento-card__title { font-size: 15px; font-weight: 700; color: var(--lumina-text-primary); margin: 0; line-height: 1.3; letter-spacing: -0.01em; }
.bento-card__body { font-size: 13.5px; line-height: 1.65; color: var(--lumina-text-secondary); margin: 0; }
.bento-card__pill {
  display: inline-flex; padding: 3px 12px;
  background: var(--lumina-surface-raised); border: 1px solid var(--border-02);
  border-radius: 9999px; font-size: 11px; font-weight: 500;
  color: var(--lumina-text-muted); width: fit-content; margin-top: auto;
}
/* waveform */
.mini-wave { display: flex; align-items: center; gap: 3px; height: 28px; margin-bottom: 4px; }
.mini-wave__bar {
  width: 3px; border-radius: 2px; background: var(--lumina-text-secondary); opacity: 0.5;
  animation: wave-dance 1.3s ease-in-out infinite;
}
.mini-wave__bar:nth-child(1)  { height: 8px;  animation-delay: 0ms; }
.mini-wave__bar:nth-child(2)  { height: 18px; animation-delay: 90ms; }
.mini-wave__bar:nth-child(3)  { height: 28px; animation-delay: 180ms; }
.mini-wave__bar:nth-child(4)  { height: 14px; animation-delay: 270ms; }
.mini-wave__bar:nth-child(5)  { height: 22px; animation-delay: 360ms; }
.mini-wave__bar:nth-child(6)  { height: 10px; animation-delay: 450ms; }
.mini-wave__bar:nth-child(7)  { height: 20px; animation-delay: 540ms; }
.mini-wave__bar:nth-child(8)  { height: 28px; animation-delay: 630ms; }
.mini-wave__bar:nth-child(9)  { height: 12px; animation-delay: 720ms; }
.mini-wave__bar:nth-child(10) { height: 24px; animation-delay: 810ms; }
.mini-wave__bar:nth-child(11) { height: 8px;  animation-delay: 900ms; }
.mini-wave__bar:nth-child(12) { height: 18px; animation-delay: 990ms; }
@keyframes wave-dance {
  0%, 100% { opacity: 0.45; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.35); }
}
.rec-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lumina-recording-active); flex-shrink: 0;
  animation: pulse-rec 1.4s ease-in-out infinite;
}
@keyframes pulse-rec {
  0%, 100% { box-shadow: 0 0 0 0 rgb(248 113 113 / 40%); }
  50%       { box-shadow: 0 0 0 5px transparent; }
}
.mini-rec-status { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 500; font-family: var(--lumina-font-mono); color: var(--lumina-text-secondary); }
.mini-chat {
  background: var(--lumina-surface-sunken); border: 1px solid var(--border-01);
  border-radius: var(--lumina-radius-sm); padding: 12px;
  flex: 1; display: flex; flex-direction: column; gap: 8px; min-height: 0;
}
.mini-bubble {
  align-self: flex-end; background: var(--lumina-surface-raised);
  border-radius: 9px 9px 2px 9px; padding: 7px 11px;
  font-size: 11px; color: var(--lumina-text-secondary); max-width: 92%; line-height: 1.5;
}
.mini-response-text { font-size: 11px; color: var(--lumina-text-muted); line-height: 1.5; }
.citation-chip {
  display: inline-flex; align-items: center; padding: 2px 9px;
  background: var(--lumina-surface-raised); border: 1px solid var(--border-02);
  border-radius: 9999px; font-size: 10.5px; font-weight: 500;
  font-family: var(--lumina-font-mono); color: var(--lumina-text-secondary);
}
.privacy-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.privacy-badge {
  padding: 5px 14px; background: var(--lumina-surface-raised);
  border: 1px solid var(--border-02); border-radius: 9999px;
  font-size: 12px; font-weight: 500; color: var(--lumina-text-secondary);
}
.bento-e-layout { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.bento-e-text { flex: 1; min-width: 200px; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps { padding: 0 72px 100px; }
.steps .section-head { margin-bottom: 80px; }
.steps__list { display: flex; flex-direction: column; gap: 96px; max-width: 1280px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center; }
.step--flip { direction: rtl; }
.step--flip > * { direction: ltr; }
.step__num {
  font-family: var(--lumina-font-sans);
  font-size: 12px; font-weight: 500;
  color: var(--lumina-text-muted);
  margin-bottom: 14px; letter-spacing: 0;
}
.step__title { font-family: var(--lumina-font-display); font-size: clamp(22px, 2.8vw, 32px); font-weight: 500; line-height: 1.18; letter-spacing: -0.02em; color: var(--lumina-text-primary); margin: 0 0 16px; }
.step__body { font-size: 15px; line-height: 1.78; color: var(--lumina-text-secondary); margin: 0 0 24px; }
.step__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.step__tag { padding: 4px 14px; background: var(--lumina-surface-elevated); border: 1px solid var(--border-02); border-radius: 9999px; font-size: 12px; font-weight: 500; color: var(--lumina-text-muted); }
.step__citations { display: flex; gap: 6px; flex-wrap: wrap; }
.step__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.step__stat { display: flex; flex-direction: column; gap: 4px; }
.step__stat-val { font-family: var(--lumina-font-mono); font-size: 30px; font-weight: 600; color: var(--lumina-text-primary); letter-spacing: -0.02em; line-height: 1; }
.step__stat-label { font-size: 12px; color: var(--lumina-text-muted); font-weight: 500; }
.step__visual img { width: 100%; border-radius: 10px; border: 1px solid var(--border-02); box-shadow: 0 20px 60px rgb(0 0 0 / 50%); display: block; }
.step__visual--orb { display: flex; align-items: center; justify-content: center; }
.orb-card { width: 100%; max-width: 340px; background: var(--lumina-surface-elevated); border: 1px solid var(--border-02); border-radius: var(--lumina-radius-md); padding: 28px; }
.orb-card__img { display: none; }
.orb-card__label { font-size: 11px; font-weight: 600; color: var(--lumina-text-secondary); margin-bottom: 14px; }
.orb-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-01); }
.orb-row:last-child { border-bottom: none; }
.orb-row__name { font-size: 13px; font-weight: 500; color: var(--lumina-text-primary); }
.orb-row__val { font-size: 12px; font-family: var(--lumina-font-mono); color: var(--lumina-text-muted); }

/* ── COMPARISON ──────────────────────────────────────────────── */
.comparison { padding: 0 72px 100px; }
.cmp-wrap { max-width: 900px; margin: 0 auto; border: 1px solid var(--border-02); border-radius: var(--lumina-radius-md); overflow: hidden; }
.cmp-head { display: grid; grid-template-columns: 160px repeat(3, 1fr); background: var(--lumina-surface-elevated); border-bottom: 1px solid var(--border-02); }
.cmp-head__blank { padding: 16px 20px; }
.cmp-head__col { padding: 16px 20px; font-size: 12px; font-weight: 600; color: var(--lumina-text-muted); border-left: 1px solid var(--border-01); }
.cmp-head__col--lumina { color: var(--lumina-accent-verdant); background: rgb(94 234 212 / 5%); display: flex; align-items: center; gap: 7px; }
.cmp-head__logo { width: 14px; height: 14px; }
.cmp-row { display: grid; grid-template-columns: 160px repeat(3, 1fr); border-bottom: 1px solid var(--border-01); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row__label { padding: 16px 20px; font-size: 13px; font-weight: 600; color: var(--lumina-text-secondary); background: var(--lumina-surface-elevated); border-right: 1px solid var(--border-01); }
.cmp-cell { padding: 16px 20px; font-size: 13px; line-height: 1.5; color: var(--lumina-text-muted); border-left: 1px solid var(--border-01); }
.cmp-cell--yes { color: var(--lumina-text-secondary); background: rgb(94 234 212 / 4%); }
.cmp-check { color: var(--lumina-accent-verdant); font-weight: 700; margin-right: 4px; }
.cmp-x { color: var(--lumina-status-danger); margin-right: 4px; }
.cmp-mid { color: var(--lumina-status-warn); margin-right: 4px; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials { padding: 0 72px 100px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.testi { background: var(--lumina-surface-elevated); border: 1px solid var(--border-02); border-radius: var(--lumina-radius-md); padding: 28px 28px 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.testi__quote { font-size: 15px; line-height: 1.78; font-weight: 400; font-family: var(--lumina-font-serif); color: var(--lumina-text-primary); margin: 0; font-style: italic; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--lumina-surface-raised); border: 1px solid var(--border-02); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; font-family: var(--lumina-font-mono); color: var(--lumina-accent-verdant); flex-shrink: 0; }
.testi__name { font-size: 13px; font-weight: 600; color: var(--lumina-text-primary); }
.testi__cred { font-size: 12px; color: var(--lumina-text-muted); margin-top: 1px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 0 72px 100px; }
.faq__inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border-02); }
.faq__item:first-child { border-top: 1px solid var(--border-02); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--lumina-text-primary); cursor: pointer; list-style: none; user-select: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__arrow { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--lumina-text-muted); transition: transform 200ms ease; }
details[open] .faq__arrow { transform: rotate(180deg); }
.faq__a { font-size: 14px; line-height: 1.78; color: var(--lumina-text-secondary); margin: 0; padding-bottom: 20px; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band { padding: 0 72px 100px; }
.cta-band__inner { max-width: 1200px; margin: 0 auto; background: var(--lumina-surface-elevated); border: 1px solid var(--border-02); border-radius: 20px; padding: 80px 72px; text-align: center; position: relative; overflow: hidden; }
.cta-band__inner::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgb(94 234 212 / 9%) 0%, transparent 65%); }
.cta-band__orb { width: 52px; height: 52px; margin: 0 auto 24px; display: block; filter: drop-shadow(0 0 20px rgb(94 234 212 / 45%)); position: relative; }
.cta-band__title { font-family: var(--lumina-font-display); font-size: clamp(30px, 4vw, 50px); font-weight: 600; line-height: 1.08; letter-spacing: -0.03em; color: var(--lumina-text-primary); margin: 0 0 14px; }
.cta-band__sub { font-size: 17px; color: var(--lumina-text-secondary); margin: 0 0 40px; line-height: 1.6; }
.cta-form { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.cta-form input[type="email"] { flex: 1; min-width: 200px; padding: 13px 20px; background: var(--lumina-surface-raised); border: 1px solid var(--border-02); border-radius: 9999px; font-family: var(--lumina-font-sans); font-size: 14px; color: var(--lumina-text-primary); outline: none; transition: border-color 140ms; }
.cta-form input:focus { border-color: var(--border-04); }
.cta-form input::placeholder { color: var(--lumina-text-muted); }
.cta-form button { padding: 13px 24px; background: var(--lumina-accent-verdant); color: #040d0b; border: none; border-radius: 9999px; font-family: var(--lumina-font-sans); font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: opacity 140ms; }
.cta-form button:hover { opacity: .87; }
.cta-thanks { display: none; padding: 14px 24px; border: 1px solid rgb(94 234 212 / 22%); border-radius: var(--lumina-radius-sm); background: rgb(94 234 212 / 5%); font-size: 14px; color: var(--lumina-accent-verdant); max-width: 420px; margin: 0 auto; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border-01); background: var(--lumina-surface-sunken); }
.footer__top { max-width: 1300px; margin: 0 auto; padding: 64px 72px 48px; display: grid; grid-template-columns: 280px 1fr; gap: 80px; }
.footer__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; border: none; color: var(--lumina-text-primary); margin-bottom: 12px; }
.footer__brand img { width: 20px; height: 20px; }
.footer__brand span { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.footer__tagline { font-size: 13px; color: var(--lumina-text-muted); line-height: 1.6; margin: 0; }
.footer__nav-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__nav-col { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-label { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--lumina-text-muted); margin-bottom: 4px; }
.footer__nav-col a { font-size: 13.5px; color: var(--lumina-text-secondary); text-decoration: none; border: none; transition: color 120ms; }
.footer__nav-col a:hover { color: var(--lumina-text-primary); }
.footer__bottom { border-top: 1px solid var(--border-01); max-width: 1300px; margin: 0 auto; padding: 20px 72px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__copy { font-size: 12px; color: var(--lumina-text-muted); margin: 0; }

/* ── PRICING PAGE ────────────────────────────────────────────── */
.page-hero { padding: 120px 24px 60px; text-align: center; }
.page-hero__headline { font-family: var(--lumina-font-display); font-size: clamp(32px, 5vw, 54px); font-weight: 600; color: var(--lumina-text-primary); margin: 0 0 14px; line-height: 1.08; letter-spacing: -0.03em; }
.page-hero__sub { font-size: 17px; color: var(--lumina-text-secondary); margin: 0 auto; max-width: 380px; line-height: 1.65; }
.pricing-section { padding: 0 24px 96px; }
.pricing-grid { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pricing-card { border: 1px solid var(--border-02); border-radius: 12px; padding: 32px; background: var(--lumina-surface-elevated); }
.pricing-card.featured { border-color: rgb(94 234 212 / 30%); background: rgb(94 234 212 / 4%); }
.pc__plan { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--lumina-text-muted); margin-bottom: 12px; display: block; }
.pricing-card.featured .pc__plan { color: var(--lumina-accent-verdant); }
.pc__price { font-family: var(--lumina-font-display); font-size: 38px; font-weight: 600; color: var(--lumina-text-primary); line-height: 1; margin-bottom: 4px; letter-spacing: -0.03em; }
.pc__period { font-size: 13px; color: var(--lumina-text-muted); margin-bottom: 4px; }
.pc__trial { font-size: 13px; color: var(--lumina-text-secondary); margin-bottom: 24px; }
.pc__features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pc__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--lumina-text-secondary); line-height: 1.5; }
.pc__features li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--lumina-accent-verdant); flex-shrink: 0; margin-top: 2px; }
.pc__features li.on::before { background: rgb(94 234 212 / 18%); }
.pc__btn { display: block; width: 100%; padding: 13px; border-radius: 9999px; font-family: var(--lumina-font-sans); font-size: 14px; font-weight: 600; cursor: pointer; text-align: center; border: none; text-decoration: none; transition: all 140ms; }
.pc__btn.primary { background: var(--lumina-accent-verdant); color: #040d0b; }
.pc__btn.primary:hover { opacity: .85; }
.pc__btn.ghost { background: transparent; color: var(--lumina-text-secondary); border: 1px solid var(--border-02); }
.pc__btn.ghost:hover { background: var(--lumina-surface-raised); color: var(--lumina-text-primary); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { padding: 100px 24px 60px; }
  .hero__headline { font-size: clamp(44px, 10vw, 72px); }
  .hero__visual { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 24px; }
  .showcase { padding: 72px 24px; }
  .showcase__theater { height: 260px; }
  .theater-screen--main { width: 75%; }
  .theater-screen--left { display: none; }
  .bento-section { padding: 0 24px 72px; }
  .bento { grid-template-columns: 1fr; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e { grid-column: 1; grid-row: auto; }
  .bento-e-layout { flex-direction: column; }
  .steps { padding: 0 24px 72px; }
  .step { grid-template-columns: 1fr; gap: 32px; }
  .step--flip { direction: ltr; }
  .comparison { padding: 0 24px 72px; }
  .cmp-head, .cmp-row { grid-template-columns: 80px repeat(3, 1fr); }
  .testimonials { padding: 0 24px 72px; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq { padding: 0 24px 72px; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .ba-wrap { padding: 0 24px 72px; }
  .ba-demo { grid-template-columns: 1fr; min-height: auto; }
  .ba-arrow { display: none; }
  .ba-panel--before { border-right: none; border-bottom: 1px solid var(--border-02); }
  .social-proof { padding: 0 24px 72px; }
  .sp-inner { padding: 28px 24px; }
  .sp-facts { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sp-fact { border-right: none; padding: 0; border-bottom: 1px solid var(--border-01); padding-bottom: 16px; }
  .sp-fact:nth-child(3), .sp-fact:last-child { border-bottom: none; }
  .cta-band__inner { padding: 48px 24px; border-radius: 12px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px 32px; }
  .footer__nav-cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { padding: 20px 24px; }
}
