:root {
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #171328;
  --muted: #6f6979;
  --line: rgba(23, 19, 40, 0.14);
  --violet: #7559d9;
  --violet-dark: #5840b3;
  --lavender: #c5b7ff;
  --mint: #8ddab9;
  --mint-soft: #dff5ea;
  --coral: #ff846f;
  --coral-soft: #ffe5df;
  --shadow: 0 22px 60px rgba(37, 28, 67, 0.12);
  --radius: 20px;
  --display:
    "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue Condensed",
    "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}
.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }
.app-screen.active { display: block; }
.hidden { display: none !important; }

.site-header, .app-topbar {
  position: relative;
  z-index: 30;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}
.site-header { position: absolute; inset: 0 0 auto; }
.site-header nav { display: flex; gap: 30px; margin-left: auto; }
.site-header nav a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 600; }
.site-header nav a:hover { color: var(--ink); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.11em;
}
.brand img.wordmark { width: 136px; height: auto; }
.brand-button { cursor: pointer; padding: 0; }
.button {
  border: 0;
  border-radius: 999px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .52; cursor: wait; transform: none; }
.button span { font-size: 18px; }
.button-primary { background: var(--violet); color: white; box-shadow: 0 12px 28px rgba(117, 89, 217, .23); }
.button-primary:hover { background: var(--violet-dark); box-shadow: 0 16px 34px rgba(117, 89, 217, .3); }
.button-ink { background: var(--ink); color: white; }
.button-outline { background: transparent; border: 1px solid var(--line); }
.button-small { padding: 10px 17px; font-size: 13px; }
.button-full { width: 100%; }
.text-link, .text-button, .back-link {
  border: 0;
  background: none;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.text-link { display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--ink); padding: 8px 0 4px; }
.text-button { color: var(--muted); font-size: 13px; }
.text-button:hover, .back-link:hover { color: var(--violet); }
.eyebrow, .tiny-label {
  margin: 0;
  color: #437b68;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.tiny-label { color: var(--muted); font-size: 9px; letter-spacing: .15em; }
.tiny-label.mint { color: #39755e; }

.hero {
  min-height: 780px;
  padding: 156px clamp(24px, 6.3vw, 96px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  overflow: hidden;
}
.hero-copy { max-width: 760px; position: relative; z-index: 2; }
.hero h1, .section h2, .final-cta h2, .onboarding-art h2, .setup-layout aside h2,
.dashboard-intro h2, .report-hero h2 {
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 96px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance;
  word-spacing: normal;
}
.hero h1 { line-height: 1.03; }
.hero h1 span, .final-cta h2 span { color: var(--violet); }
.hero-lede {
  max-width: 590px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}
.button-row { display: flex; align-items: center; gap: 26px; margin: 34px 0 27px; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
}
.trust-line span + span::before {
  content: "/";
  margin-right: 12px;
  color: rgba(23, 19, 40, 0.34);
}
.hero-demo {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-demo::before {
  content: "";
  width: 420px;
  height: 420px;
  border-radius: 46% 54% 63% 37%;
  background: linear-gradient(145deg, #896dff 0%, #6d50d4 52%, #4e36a2 100%);
  box-shadow: inset 18px 18px 42px rgba(255,255,255,.19), 0 34px 80px rgba(77,51,163,.28);
  transform: rotate(-9deg);
  animation: shapeFloat 8s ease-in-out infinite;
}
.demo-orbit { position: absolute; border: 1px solid rgba(117,89,217,.35); border-radius: 50%; }
.orbit-one { width: 570px; height: 330px; transform: rotate(24deg); animation: orbitDriftOne 13s linear infinite; }
.orbit-two { width: 510px; height: 420px; transform: rotate(-35deg); animation: orbitDriftTwo 16s linear infinite reverse; }
.demo-card {
  position: absolute;
  background: rgba(255,253,248,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.question-preview { width: min(390px, 75%); top: 60px; right: -5px; padding: 22px; transform: rotate(2deg); animation: cardFloatOne 6s ease-in-out infinite; }
.question-preview p { font-family: Georgia, serif; font-size: 18px; line-height: 1.45; margin: 15px 0 20px; }
.recording-line { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 11px; }
.recording-line b { margin-left: auto; color: var(--ink); font-variant-numeric: tabular-nums; }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #e14e4e; box-shadow: 0 0 0 5px rgba(225,78,78,.12); }
.score-preview {
  width: min(410px, 82%);
  bottom: 48px;
  left: -25px;
  padding: 18px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  transform: rotate(-2deg);
  animation: cardFloatTwo 7s ease-in-out infinite;
}
.score-preview p { font-size: 13px; line-height: 1.5; margin: 8px 0 0; }
.score-ring {
  width: 76px; height: 76px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: conic-gradient(var(--mint) 82%, rgba(23,19,40,.1) 0);
  position: relative;
}
.score-ring::after { content: ""; position: absolute; inset: 6px; background: var(--paper); border-radius: 50%; }
.score-ring strong, .score-ring span { z-index: 1; }
.score-ring strong { font-size: 24px; line-height: 1; }
.score-ring span { font-size: 7px; font-weight: 900; letter-spacing: .1em; color: var(--muted); margin-top: 4px; }
.spark { position: absolute; width: 12px; height: 12px; background: var(--mint); transform: rotate(45deg); animation: sparkPulse 2.8s ease-in-out infinite; }
.spark-a { top: 70px; left: 30px; }.spark-b { bottom: 100px; right: 15px; background: var(--coral); width: 8px; height: 8px; }

.section { padding: 110px clamp(24px, 6.3vw, 96px); }
.section-heading { max-width: 720px; margin-bottom: 54px; }
.section-heading h2 { font-size: clamp(50px, 5.4vw, 84px); margin: 15px 0 20px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; max-width: 670px; }
.labs-section { background: var(--ink); color: var(--cream); }
.labs-section .section-heading > p:last-child { color: rgba(246,241,232,.68); }
.labs-section .eyebrow { color: var(--mint); }
.lab-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: stretch; }
.lab-quote {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 50px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 80% 10%, rgba(117,89,217,.45), transparent 42%), rgba(255,255,255,.035);
}
.quote-mark { color: var(--mint); font: 88px/.6 Georgia, serif; }
.lab-quote blockquote { margin: 28px 0; font: 31px/1.35 Georgia, serif; }
.lab-quote p { color: rgba(246,241,232,.6); font-size: 13px; }
.lab-points { border-top: 1px solid rgba(255,255,255,.16); }
.lab-points article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.lab-points article > span { color: var(--mint); font-weight: 800; font-size: 12px; }
.lab-points h3 { margin: 0 0 8px; font-size: 21px; }
.lab-points p { margin: 0; color: rgba(246,241,232,.62); max-width: 620px; }

.wide-heading { max-width: 1000px; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path-card {
  border-radius: var(--radius);
  padding: 34px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(23,19,40,.09);
  transition: transform .22s ease, box-shadow .22s ease;
}
.path-card:hover {
  transform: translateY(-8px) rotate(-.4deg);
  box-shadow: inset 0 0 0 1px rgba(23,19,40,.09), 0 24px 55px rgba(37,28,67,.12);
}
.path-card.violet { background: #dcd3ff; }.path-card.mint { background: var(--mint-soft); }.path-card.coral { background: var(--coral-soft); }
.path-number { font-size: 11px; font-weight: 900; }
.path-icon { margin: 50px 0 35px; font-size: 40px; }
.path-card h3 { font-size: 29px; margin: 0 0 12px; letter-spacing: -.03em; }
.path-card p { color: rgba(23,19,40,.67); margin: 0; }
.card-link { margin-top: auto; padding: 28px 0 0; border: 0; border-top: 1px solid rgba(23,19,40,.15); background: none; text-align: left; font-weight: 800; cursor: pointer; display: flex; justify-content: space-between; }
.card-link:hover span { transform: translateX(4px); }
.card-link span { transition: transform .18s; }
.how-section { border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; }
.steps article {
  min-height: 245px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 31px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(117,89,217,.32);
  box-shadow: var(--shadow);
}
.steps article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); color: white; font-size: 13px; font-weight: 800; }
.steps h3 { margin: 44px 0 10px; font-size: 21px; }
.steps p { color: var(--muted); margin: 0; }
.step-arrow { color: var(--violet); font-size: 25px; }
.final-cta { text-align: center; padding: 130px 24px; background: #ece5f6; }
.vision-section {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.brand-art {
  border-radius: 48% 52% 46% 54%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
  background: var(--paper);
  animation: softTilt 9s ease-in-out infinite;
}
.brand-art img { display: block; width: 100%; height: auto; }
.vision-copy h2 {
  font-size: clamp(48px, 5vw, 78px);
  margin: 15px 0 24px;
}
.vision-lede { color: var(--muted); font: 18px/1.55 Georgia, serif; max-width: 680px; }
.vision-features { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vision-features article { display: flex; gap: 13px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,253,248,.62); }
.vision-features article > span { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-soft); color: #39755e; }
.vision-features h3 { margin: 0 0 5px; font-size: 14px; }
.vision-features p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.final-cta img { width: 176px; margin-bottom: 25px; }
.final-cta h2 { font-size: clamp(48px, 6vw, 88px); margin: 18px auto 36px; }
footer { display: flex; align-items: center; gap: 28px; padding: 30px clamp(24px,6.3vw,96px); background: var(--ink); color: rgba(255,255,255,.58); font-size: 12px; }
footer p:last-child { margin-left: auto; }
.footer-brand { color: white; }
.footer-brand .wordmark { filter: brightness(0) invert(1); }

.app-screen { background: var(--cream); }
.app-topbar { min-height: 72px; background: rgba(246,241,232,.94); position: sticky; top: 0; backdrop-filter: blur(18px); }
.app-nav { display: flex; gap: 8px; }
.app-nav button { border: 0; background: none; padding: 9px 14px; border-radius: 999px; color: var(--muted); cursor: pointer; }
.app-nav button.active { background: var(--paper); color: var(--ink); box-shadow: 0 2px 12px rgba(23,19,40,.08); }
.user-pill { border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px 6px 6px; background: var(--paper); display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 12px; }
.user-pill span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); color: white; font-weight: 850; }
.app-progress { display: flex; align-items: center; gap: 6px; }
.app-progress i { width: 22px; height: 3px; background: rgba(23,19,40,.14); border-radius: 2px; }
.app-progress i.active { background: var(--violet); }
.app-progress span { margin-left: 8px; font-size: 9px; font-weight: 900; letter-spacing: .14em; color: var(--muted); }

.onboarding-wrap { min-height: calc(100vh - 73px); display: grid; grid-template-columns: 1fr 480px; gap: clamp(40px,7vw,110px); align-items: center; max-width: 1240px; margin: auto; padding: 60px 30px; }
.onboarding-art { max-width: 620px; }
.onboarding-art h2 { font-size: clamp(52px, 6vw, 82px); }
.onboarding-art > p:not(.eyebrow) { color: var(--muted); font: 19px/1.55 Georgia, serif; max-width: 570px; }
.privacy-note { margin-top: 42px; display: flex; gap: 13px; align-items: flex-start; }
.privacy-note > span { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); font-weight: 900; }
.privacy-note p { margin: 0; font-size: 13px; color: var(--muted); }
.paper-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(23,19,40,.055); }
.onboarding-form, .setup-form { padding: 40px; }
.onboarding-form h3 { margin: 24px 0 28px; font: 29px/1.2 Georgia, serif; }
.step-chip { display: inline-block; background: var(--mint-soft); color: #39755e; border-radius: 999px; padding: 6px 10px; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
label { display: block; margin: 17px 0 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); background: #fff;
  color: var(--ink); border-radius: 12px; padding: 13px 14px; outline: none;
  transition: border .16s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(117,89,217,.12); }
textarea { min-height: 115px; resize: vertical; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 28px; }
.segmented button { padding: 12px; border: 1px solid var(--line); background: white; border-radius: 10px; cursor: pointer; font-weight: 700; }
.segmented button.active { border-color: var(--violet); color: var(--violet); background: rgba(117,89,217,.06); }
.form-fine { text-align: center; color: var(--muted); font-size: 11px; margin: 12px 0 0; }

.dashboard { max-width: 1280px; margin: auto; padding: 70px 30px 90px; }
.dashboard-intro { display: inline-block; }
.dashboard-intro h2 { font-size: clamp(46px,5vw,70px); margin: 12px 0; }
.dashboard-intro p:last-child { color: var(--muted); margin: 0; }
.dashboard > .button { float: right; margin-top: 30px; }
.stats-grid { clear: both; display: grid; grid-template-columns: .85fr .65fr 1.5fr; gap: 16px; padding-top: 50px; }
.stat-card { min-height: 172px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.56); position: relative; overflow: hidden; }
.stat-card > span { display: block; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.stat-card strong { display: inline-block; font-size: 53px; line-height: 1; margin-top: 23px; letter-spacing: -.05em; }
.stat-card small { color: var(--muted); margin-left: 6px; }
.main-stat { background: var(--violet); color: white; border-color: transparent; }
.main-stat > span, .main-stat small { color: rgba(255,255,255,.7); }
.stat-track { height: 4px; position: absolute; left: 25px; right: 25px; bottom: 21px; background: rgba(255,255,255,.22); border-radius: 4px; }
.stat-track i { display: block; width: 0; height: 100%; background: var(--mint); border-radius: 4px; transition: width .5s ease; }
.weakness-stat strong { display: block; font: 25px/1.22 Georgia, serif; letter-spacing: -.02em; max-width: 500px; }
.weakness-stat small { margin-left: 0; }
.dashboard-columns { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; margin-top: 18px; }
.dashboard-columns > section { padding: 28px; min-height: 360px; }
.card-heading { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 23px; }
.card-heading h3 { font-size: 22px; margin: 6px 0 0; }
.quick-moments { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quick-moment { min-height: 112px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: white; text-align: left; cursor: pointer; transition: transform .15s, border .15s; }
.quick-moment:hover { transform: translateY(-2px); border-color: var(--violet); }
.quick-moment span { font-size: 9px; color: var(--muted); font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.quick-moment strong { display: block; margin-top: 12px; font-size: 15px; }
.empty-state { min-height: 230px; display: grid; place-items: center; align-content: center; color: var(--muted); text-align: center; }
.empty-state > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--violet); }
.session-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.session-row:last-child { border-bottom: 0; }
.session-row > span { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; background: var(--mint-soft); font-weight: 850; }
.session-row strong, .session-row small { display: block; }
.session-row strong { font-size: 13px; }.session-row small { color: var(--muted); margin-top: 3px; font-size: 10px; }
.session-row b { font-size: 20px; }

.setup-layout { min-height: calc(100vh - 73px); display: grid; grid-template-columns: minmax(280px,.7fr) minmax(600px,1.3fr); gap: 70px; max-width: 1280px; margin: auto; padding: 60px 30px 90px; }
.setup-layout aside { padding-top: 20px; }
.back-link { padding: 0; margin-bottom: 70px; }
.setup-layout aside h2 { font-size: clamp(52px,5.8vw,78px); margin: 15px 0 24px; }
.setup-layout aside > p:not(.eyebrow) { color: var(--muted); max-width: 390px; }
.setup-tip { margin-top: 45px; display: flex; gap: 13px; max-width: 370px; padding: 17px; border: 1px solid rgba(117,89,217,.18); background: rgba(117,89,217,.06); border-radius: 14px; }
.setup-tip > span { color: var(--violet); }
.setup-tip p { margin: 0; font-size: 12px; color: var(--muted); }
.setup-form { align-self: start; }
.form-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.form-heading h3 { margin: 7px 0 0; font-size: 23px; }
.voice-button { border: 1px solid rgba(117,89,217,.28); background: rgba(117,89,217,.06); color: var(--violet); border-radius: 999px; padding: 10px 14px; cursor: pointer; font-size: 12px; font-weight: 800; }
.voice-button.recording { background: var(--coral-soft); color: #a43e31; border-color: rgba(164,62,49,.25); }
.moment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.moment-option { padding: 15px; min-height: 95px; text-align: left; border: 1px solid var(--line); border-radius: 13px; background: white; cursor: pointer; position: relative; }
.moment-option:hover { border-color: var(--violet); }
.moment-option.active { border-color: var(--violet); box-shadow: 0 0 0 2px rgba(117,89,217,.1); background: rgba(117,89,217,.035); }
.moment-option.active::after { content: "✓"; position: absolute; right: 13px; top: 12px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); color: white; font-size: 10px; font-weight: 900; }
.moment-option span { display: block; color: var(--muted); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.moment-option strong { display: block; margin: 14px 28px 0 0; font-size: 14px; }
.divider { height: 1px; background: var(--line); margin: 27px 0 2px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.document-upload {
  margin-top: 22px;
  padding: 18px;
  border: 1px dashed rgba(117,89,217,.38);
  border-radius: 14px;
  background: rgba(117,89,217,.035);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.document-upload h4 { margin: 5px 0 3px; font-size: 14px; }
.document-upload p { margin: 0; color: var(--muted); font-size: 11px; }
.document-upload .button { flex: 0 0 auto; padding: 10px 15px; font-size: 11px; }
.attachment-list { display: grid; gap: 8px; margin-top: 10px; }
.attachment-chip { display: grid; grid-template-columns: 32px 1fr 26px; gap: 10px; align-items: center; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.attachment-chip > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--mint-soft); color: #39755e; }
.attachment-chip strong, .attachment-chip small { display: block; }
.attachment-chip strong { font-size: 11px; }.attachment-chip small { color: var(--muted); font-size: 9px; margin-top: 2px; }
.attachment-chip button { border: 0; background: none; cursor: pointer; color: var(--muted); font-size: 18px; }
.inline-status { color: var(--muted); font-size: 11px; margin: 9px 0 0; min-height: 16px; }
.error-message { color: #b34538; min-height: 18px; font-size: 12px; margin: 10px 0; }

.rehearsal-screen { background: #efe9df; }
.rehearsal-topbar { background: rgba(239,233,223,.94); }
.rehearsal-layout { min-height: calc(100vh - 73px); display: grid; grid-template-columns: 270px 1fr; }
.rehearsal-sidebar { padding: 55px 35px; border-right: 1px solid var(--line); }
.turn-rail { margin-top: 25px; }
.turn-step { min-height: 57px; display: flex; align-items: flex-start; gap: 12px; color: var(--muted); font-size: 11px; position: relative; }
.turn-step::before { content: ""; width: 1px; position: absolute; left: 10px; top: 21px; bottom: -2px; background: var(--line); }
.turn-step:last-child::before { display: none; }
.turn-step i { width: 21px; height: 21px; flex: 0 0 21px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: var(--cream); font-style: normal; font-size: 8px; z-index: 1; }
.turn-step.active { color: var(--ink); font-weight: 800; }
.turn-step.active i { border-color: var(--violet); background: var(--violet); color: white; }
.turn-step.done i { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.coach-note { margin-top: 55px; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; display: flex; gap: 10px; }
.coach-note p { margin: 0; font-size: 11px; color: var(--muted); }
.pulse-dot { width: 9px; height: 9px; flex: 0 0 9px; margin-top: 3px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(141,218,185,.2); }
.question-stage { max-width: 920px; width: 100%; margin: 0 auto; padding: 70px 45px 110px; }
.question-meta { display: flex; justify-content: space-between; font-size: 9px; font-weight: 900; letter-spacing: .14em; color: var(--muted); }
.question-meta span:last-child { color: var(--violet); }
.question-stage > h2 { font: clamp(34px,4vw,55px)/1.18 Georgia, serif; letter-spacing: -.04em; margin: 26px 0 30px; max-width: 860px; }
.route-preview { margin: 0 0 28px; padding: 20px; border: 1px solid rgba(117,89,217,.22); border-radius: 16px; background: rgba(255,255,255,.52); }
.route-preview > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.route-preview > div strong { font: 17px/1.25 Georgia, serif; text-align: right; }
.route-preview > p { margin: 10px 0 16px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.route-preview ol { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; list-style: none; padding: 0; margin: 0; counter-reset: route; }
.route-preview li { counter-increment: route; display: grid; grid-template-columns: 24px 1fr; gap: 8px; align-items: start; padding: 10px; border-radius: 10px; background: var(--paper); font-size: 10px; line-height: 1.4; }
.route-preview li::before { content: counter(route); width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-soft); font-size: 8px; font-weight: 900; }
.route-preview li span { display: block; color: var(--violet); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.route-preview small { display: block; margin-top: 12px; color: var(--muted); font-size: 8px; }
.route-preview.running { padding: 12px 15px; }
.route-preview.running > p, .route-preview.running ol, .route-preview.running small { display: none; }
.practice-studio { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 12px; margin-bottom: 25px; }
.camera-stage { min-height: 330px; border-radius: 18px; overflow: hidden; background: #1d1929; position: relative; box-shadow: var(--shadow); }
.camera-stage > video, .camera-stage > canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); }
.camera-stage > canvas { pointer-events: none; }
.video-question-overlay { position: absolute; z-index: 3; left: 18px; right: 18px; bottom: 18px; padding: 14px 16px; border-radius: 13px; color: white; background: rgba(23,19,40,.78); backdrop-filter: blur(12px); pointer-events: none; }
.video-question-overlay span { display: block; margin-bottom: 5px; color: var(--mint); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.video-question-overlay p { margin: 0; font: 16px/1.35 Georgia, serif; }
.continuous-recording-badge { position: absolute; z-index: 4; top: 49px; left: 12px; padding: 6px 9px; border-radius: 999px; color: white; background: rgba(164,62,49,.82); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.continuous-recording-badge i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: white; animation: recordingPulse 1.3s infinite; }
@keyframes recordingPulse { 50% { opacity: .35; } }
.camera-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; color: white; text-align: center; background: radial-gradient(circle at 50% 30%, rgba(117,89,217,.42), transparent 48%), #1d1929; }
.camera-placeholder > span { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--mint); font-size: 24px; }
.camera-placeholder strong { margin-top: 16px; font-size: 18px; }
.camera-placeholder p { margin: 5px 0 17px; color: rgba(255,255,255,.62); font-size: 11px; }
.camera-placeholder .button { padding: 10px 16px; font-size: 11px; }
.camera-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; pointer-events: none; }
.camera-badges span { padding: 6px 9px; border-radius: 999px; color: white; background: rgba(23,19,40,.66); backdrop-filter: blur(8px); font-size: 8px; font-weight: 850; letter-spacing: .05em; }
.live-coach { border: 1px solid var(--line); background: var(--paper); border-radius: 18px; padding: 18px; }
.live-meter { padding: 15px 0; border-bottom: 1px solid var(--line); }
.live-meter > span { display: block; color: var(--muted); font-size: 9px; }
.live-meter strong { display: block; font-size: 16px; margin: 4px 0 8px; }
.live-meter i { display: block; height: 4px; background: rgba(23,19,40,.09); border-radius: 4px; overflow: hidden; }
.live-meter i b { display: block; width: 0; height: 100%; background: var(--violet); border-radius: 4px; transition: width .2s; }
.live-cue { margin-top: 15px; padding: 11px; border-radius: 10px; background: var(--mint-soft); color: #39755e; font-size: 10px; line-height: 1.45; }
.proxy-note { color: var(--muted); font-size: 8px; line-height: 1.45; margin: 12px 0 0; }
.session-control-card { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); box-shadow: 0 8px 25px rgba(23,19,40,.05); }
.session-control-copy { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.session-control-copy strong { max-width: 560px; font-size: 12px; line-height: 1.45; text-align: right; }
.answer-label { display: block; margin: 14px 0 8px; color: var(--ink); font-weight: 850; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.transcript-fallback { margin-top: 12px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.45); }
.transcript-fallback summary { cursor: pointer; color: var(--muted); font-size: 10px; font-weight: 800; }
.transcript-fallback textarea { width: 100%; min-height: 130px; padding: 15px; font-size: 14px; line-height: 1.5; background: var(--paper); }
.answer-controls { display: flex; align-items: center; gap: 13px; margin-top: 15px; }
.record-button { display: flex; gap: 10px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; cursor: pointer; font-size: 12px; }
.record-button.recording { border-color: var(--coral); color: #a43e31; }
.answer-controls .button { margin-left: auto; }
.timer { margin-left: auto; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.answer-controls .button ~ .timer { margin-left: 0; }
.finish-early { display: block; margin: 13px 0 0 auto; color: var(--violet); }
.boundary-status { margin: 12px 0 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.speech-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; min-height: 26px; }
.metric-chip { padding: 5px 9px; border-radius: 999px; background: rgba(117,89,217,.08); color: var(--violet-dark); font-size: 10px; font-weight: 750; }
.feedback-panel { margin-top: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.feedback-header { display: flex; justify-content: space-between; align-items: center; }
.feedback-header strong { width: 54px; height: 54px; border-radius: 50%; background: var(--mint-soft); display: grid; place-items: center; font-size: 20px; }
.rubric-scores { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.rubric-chip { border: 1px solid var(--line); padding: 7px 10px; border-radius: 999px; font-size: 10px; }
.rubric-chip b { color: var(--violet); }
.feedback-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feedback-block { padding: 18px; border-radius: 13px; }
.feedback-block.strength { background: var(--mint-soft); }.feedback-block.fix { background: var(--coral-soft); }
.feedback-block > span { font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.feedback-block ul { padding-left: 17px; margin: 12px 0 0; font-size: 12px; }
.feedback-block li + li { margin-top: 6px; }
.stronger-answer { border-left: 3px solid var(--violet); padding: 4px 0 4px 17px; margin: 25px 0; }
.stronger-answer p { margin: 8px 0 0; font: 15px/1.6 Georgia, serif; }
.delivery-note { border-left: 3px solid var(--mint); padding: 4px 0 4px 17px; margin: 22px 0; }
.delivery-note p { margin: 7px 0 0; font-size: 12px; color: var(--muted); }
.recording-replay { margin: 22px 0; padding: 16px; border-radius: 13px; background: #eee9f7; }
.recording-replay video { display: block; width: 100%; max-height: 360px; margin: 10px 0; border-radius: 10px; background: var(--ink); }
.recording-replay .text-link { font-size: 11px; }

.report { max-width: 1200px; margin: auto; padding: 70px 30px 100px; }
.report-hero { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; margin-bottom: 45px; }
.report-hero h2 { font-size: clamp(45px,5.8vw,78px); max-width: 850px; margin: 14px 0; }
.report-hero > div > p:last-child { color: var(--muted); }
.report-score { width: 170px; height: 170px; border-radius: 50%; background: var(--violet); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 22px 50px rgba(117,89,217,.25); }
.report-score strong { font-size: 60px; line-height: 1; letter-spacing: -.07em; }
.report-score span { margin-top: 7px; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-align: center; opacity: .72; }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.report-grid > section { padding: 29px; min-height: 310px; }
.report-grid > section:last-child { grid-column: 1 / -1; }
.report-timeline, .session-recording-replay { grid-column: 1 / -1; }
.report-grid h3 { font-size: 22px; margin: 8px 0 25px; }
.delivery-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.delivery-metrics > div { padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.delivery-metrics span { display: block; color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.delivery-metrics strong { display: block; margin-top: 5px; font-size: 17px; }
.delivery-report > p { margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.report-rubric-row { display: grid; grid-template-columns: 110px 1fr 36px; gap: 12px; align-items: center; margin: 17px 0; font-size: 11px; }
.report-rubric-row .bar { height: 6px; background: rgba(23,19,40,.09); border-radius: 6px; overflow: hidden; }
.report-rubric-row .bar i { display: block; height: 100%; background: var(--violet); border-radius: 6px; }
.report-rubric-row b { text-align: right; }
.report-list { margin: 0; padding-left: 20px; }
.report-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.report-list li:last-child { border-bottom: 0; }
.report-list.good li::marker { color: #48a47e; }
.report-list.numbered { list-style: none; padding: 0; counter-reset: fixes; }
.report-list.numbered li { counter-increment: fixes; display: grid; grid-template-columns: 28px 1fr; gap: 8px; }
.report-list.numbered li::before { content: "0" counter(fixes); color: var(--coral); font-size: 10px; font-weight: 900; margin-top: 3px; }
.tag-list { padding: 0; margin: 20px 0 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li { padding: 8px 11px; border-radius: 999px; border: 1px solid var(--line); font-size: 11px; }
.improvement-strip { background: var(--mint-soft); border-radius: 12px; padding: 13px; color: #39755e; font-size: 11px; }
.turn-breakdown { display: grid; gap: 9px; }
.turn-breakdown-row { display: grid; grid-template-columns: 110px 1fr auto; gap: 14px; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.turn-breakdown-row > span { color: var(--violet); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.turn-breakdown-row strong { display: block; font: 14px/1.4 Georgia, serif; }
.turn-breakdown-row p { margin: 6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.turn-breakdown-row b { min-width: 42px; text-align: right; font-size: 16px; }
.session-recording-replay video { display: block; width: 100%; max-height: 520px; margin: 5px 0 14px; border-radius: 13px; background: var(--ink); }
.session-recording-replay > p { margin: 10px 0 0; color: var(--muted); font-size: 9px; }
.report-actions { display: flex; justify-content: center; gap: 13px; margin-top: 45px; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 25px; transform: translate(-50%, 20px); padding: 11px 16px; border-radius: 999px; background: var(--ink); color: white; font-size: 12px; opacity: 0; pointer-events: none; transition: .2s; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

.ready .hero-copy > * {
  animation: riseIn .78s cubic-bezier(.22, 1, .36, 1) both;
}
.ready .hero-copy h1 { animation-delay: .08s; }
.ready .hero-copy .hero-lede { animation-delay: .16s; }
.ready .hero-copy .button-row { animation-delay: .24s; }
.ready .hero-copy .trust-line { animation-delay: .32s; }

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
}
.reveal-item.in-view {
  opacity: 1;
  transform: none;
}
.lab-points article:nth-child(2),
.path-card:nth-child(2),
.steps article:nth-of-type(2),
.vision-features article:nth-child(2) {
  transition-delay: .08s;
}
.lab-points article:nth-child(3),
.path-card:nth-child(3),
.steps article:nth-of-type(3),
.vision-features article:nth-child(3) {
  transition-delay: .16s;
}
.vision-features article:nth-child(4) {
  transition-delay: .24s;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shapeFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-9deg) scale(1); }
  50% { transform: translate3d(0, -18px, 0) rotate(-5deg) scale(1.025); }
}
@keyframes orbitDriftOne {
  to { transform: rotate(384deg); }
}
@keyframes orbitDriftTwo {
  to { transform: rotate(-395deg); }
}
@keyframes cardFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(0deg); }
}
@keyframes cardFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, 12px, 0) rotate(-.5deg); }
}
@keyframes sparkPulse {
  0%, 100% { opacity: .55; transform: rotate(45deg) scale(.82); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.35); }
}
@keyframes softTilt {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-10px); }
}

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-demo { min-height: 480px; max-width: 650px; width: 100%; margin: auto; }
  .lab-feature, .dashboard-columns, .onboarding-wrap, .setup-layout, .vision-section { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 300px; }
  .path-icon { margin: 30px 0; }
  .setup-layout { max-width: 760px; gap: 30px; }
  .setup-layout aside h2 { max-width: 650px; }
  .back-link { margin-bottom: 35px; }
  .setup-tip { display: none; }
  .rehearsal-layout { grid-template-columns: 210px 1fr; }
  .rehearsal-sidebar { padding: 40px 24px; }
  .practice-studio { grid-template-columns: 1fr; }
  .live-coach { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .live-coach > .tiny-label, .live-cue, .proxy-note { grid-column: 1 / -1; }
  .live-meter { border-bottom: 0; }
}

@media (max-width: 760px) {
  .site-header nav { display: none; }
  .site-header, .app-topbar { padding: 14px 18px; }
  .site-header .button-small { display: none; }
  .hero { min-height: auto; padding: 125px 22px 60px; }
  .hero h1 { font-size: 54px; }
  .hero-demo { min-height: 390px; }
  .hero-demo::before { width: 300px; height: 300px; }
  .orbit-one { width: 380px; height: 230px; }.orbit-two { width: 340px; height: 290px; }
  .question-preview { top: 30px; right: 0; }.score-preview { bottom: 25px; left: 0; }
  .trust-line { flex-wrap: wrap; }
  .section { padding: 75px 22px; }
  .section-heading h2 { font-size: 48px; }
  .lab-quote { min-height: 330px; padding: 30px; }
  .lab-quote blockquote { font-size: 24px; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p:last-child { margin-left: 0; }
  .app-nav { display: none; }
  .app-progress { display: none; }
  .onboarding-wrap { padding: 45px 18px; }
  .onboarding-art h2 { font-size: 48px; }
  .onboarding-form, .setup-form { padding: 24px; }
  .dashboard { padding: 45px 18px 70px; }
  .dashboard > .button { float: none; margin-top: 25px; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding-top: 30px; }
  .weakness-stat { grid-column: 1 / -1; }
  .quick-moments, .moment-grid, .field-grid, .feedback-columns, .report-grid, .vision-features { grid-template-columns: 1fr; }
  .report-grid > section:last-child { grid-column: auto; }
  .document-upload { align-items: flex-start; flex-direction: column; }
  .setup-layout { padding: 40px 18px 70px; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .rehearsal-layout { display: block; }
  .rehearsal-sidebar { display: none; }
  .question-stage { padding: 45px 18px 80px; }
  .camera-stage { min-height: 250px; }
  .live-coach { grid-template-columns: 1fr; }
  .live-coach > .tiny-label, .live-cue, .proxy-note { grid-column: auto; }
  .question-stage > h2 { margin-bottom: 35px; }
  .route-preview ol { grid-template-columns: 1fr; }
  .route-preview > div, .session-control-copy { align-items: flex-start; flex-direction: column; }
  .route-preview > div strong, .session-control-copy strong { text-align: left; }
  .answer-controls { flex-wrap: wrap; }
  .answer-controls .button { width: 100%; margin-left: 0; order: 5; }
  .report { padding: 45px 18px 80px; }
  .report-hero { grid-template-columns: 1fr; }
  .report-score { width: 130px; height: 130px; }
  .report-score strong { font-size: 48px; }
  .report-actions { flex-direction: column; }
  .turn-breakdown-row { grid-template-columns: 1fr; }
  .turn-breakdown-row b { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
