/* ==========================================================================
   SpeakIt — marketing site styles
   Design language mirrors the app: royal-blue accent, blue→indigo gradient
   pills, heavy headlines, near-white surfaces, soft ambient shadows,
   iOS-squircle radii, warm corner glows. Light + dark (system) aware.
   ========================================================================== */

/* ----------  Fonts  ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ----------  Design tokens  ---------- */
:root {
  /* brand */
  --brand:        #2E5BFF;
  --brand-strong: #1E3FCC;
  --grad-a:       #3B5BFF;
  --grad-b:       #5B4DFF;
  --premium-a:    #8A4DFF;
  --premium-b:    #FF4D9D;
  --enhanced:     #2F6BFF;
  --warm-a:       #FF9F45;
  --warm-b:       #FF6B8B;

  /* surfaces (light) */
  --bg:        #FBFBFD;
  --bg-soft:   #F3F4F8;
  --surface:   #FFFFFF;
  --surface-2: #F5F6FA;

  /* text (light) */
  --ink:    #0B0B14;
  --ink-2:  #54545F;
  --ink-3:  #8A8A95;
  --on-brand: #FFFFFF;

  /* lines + shadow */
  --border:   rgba(10,12,30,.08);
  --border-2: rgba(10,12,30,.06);
  --shadow-sm: 0 1px 2px rgba(12,18,45,.05), 0 4px 14px rgba(12,18,45,.05);
  --shadow-md: 0 8px 30px rgba(15,23,55,.08), 0 2px 6px rgba(15,23,55,.04);
  --shadow-lg: 0 24px 70px rgba(20,28,75,.16), 0 8px 24px rgba(20,28,75,.08);
  --shadow-brand: 0 14px 40px rgba(46,91,255,.32);

  /* shape + motion */
  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --container: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);

  color-scheme: light dark;
}

/* ----------  Dark theme (follows system, matches app dark mode)  ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0A0A0E;
    --bg-soft:   #111118;
    --surface:   #16161E;
    --surface-2: #1C1C26;

    --ink:    #F4F4F7;
    --ink-2:  #A9A9B6;
    --ink-3:  #74747F;

    --border:   rgba(255,255,255,.10);
    --border-2: rgba(255,255,255,.06);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 10px 34px rgba(0,0,0,.5);
    --shadow-lg: 0 28px 80px rgba(0,0,0,.6);
    --shadow-brand: 0 14px 40px rgba(46,91,255,.4);
  }
}

/* ----------  Reset / base  ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text',
               'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { line-height: 1.08; letter-spacing: -.02em; margin: 0; font-weight: 800; }
p { margin: 0; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 60%, transparent); outline-offset: 3px; border-radius: 6px; }
::selection { background: color-mix(in srgb, var(--brand) 24%, transparent); }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(44px, 6vw, 80px) 0; }
.center { text-align: center; }
.muted { color: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-strong);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  padding: 7px 14px; border-radius: var(--r-pill);
}
@media (prefers-color-scheme: dark){ .eyebrow{ color:#A9B8FF; } }

.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(36px,5vw,60px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 850; }
.section-head p { margin-top: 16px; font-size: 1.18rem; color: var(--ink-2); }

/* ----------  Gradient text + pills  ---------- */
.grad-text {
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .95rem; color: #fff;
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  padding: 10px 20px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-brand);
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
  padding: 15px 26px; border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(100deg, var(--grad-a), var(--grad-b)); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { box-shadow: 0 18px 48px rgba(46,91,255,.42); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { background: var(--surface-2); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }

/* App Store badge button */
.appstore-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0B0B14; color: #fff; border-radius: 16px;
  padding: 12px 22px 12px 18px; box-shadow: var(--shadow-md);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease);
}
.appstore-btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.appstore-btn svg { width: 30px; height: 30px; flex: none; }
.appstore-btn .as-top { font-size: .7rem; opacity: .8; line-height: 1; letter-spacing: .02em; }
.appstore-btn .as-big { font-size: 1.32rem; font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
@media (prefers-color-scheme: dark){ .appstore-btn{ background:#fff; color:#0B0B14; } }

/* ----------  Navbar  ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a { color: var(--ink-2); font-weight: 600; font-size: .96rem; padding: 9px 14px; border-radius: var(--r-pill); transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.nav__burger svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav__links { position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 22px 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); box-shadow: var(--shadow-lg); }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 12px; font-size: 1.05rem; }
  .nav__burger { display: inline-flex; }
  .nav__cta .btn--primary { display: none; }
}

/* ----------  Background glows  ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; z-index: 0; pointer-events: none; }
.glow--blue { background: radial-gradient(circle, var(--grad-b), transparent 70%); }
.glow--warm { background: radial-gradient(circle, var(--warm-a), transparent 70%); }
@media (prefers-color-scheme: dark){ .glow{ opacity:.4; } }

/* ----------  Hero  ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(40px,6vw,72px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.5rem); font-weight: 900; letter-spacing: -.035em; }
.hero__sub { margin-top: 22px; font-size: clamp(1.12rem, 2vw, 1.32rem); color: var(--ink-2); max-width: 30ch; }
.hero__cta { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-size: .92rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 17px; height: 17px; color: #20B26C; }
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__art img { width: min(330px, 78%); border-radius: 38px; box-shadow: var(--shadow-lg); }
.hero .glow--blue { width: 540px; height: 540px; top: -180px; right: -160px; }
.hero .glow--warm { width: 440px; height: 440px; bottom: -220px; left: -180px; opacity: .4; }

@media (max-width: 860px) {
  .hero { padding-top: clamp(28px, 6vw, 56px); }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__note { justify-content: center; }
  /* copy first, phone below — keeps the headline + CTA above the fold */
  .hero__art { order: 0; margin-top: 30px; }
  .hero__art img { width: min(264px, 66%); }
}

/* ----------  Logo / trust strip  ---------- */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; padding: 34px 0; text-align: center; }
.stat .num { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 850; letter-spacing: -.03em; }
.stat .num .grad-text { font-weight: 900; }
.stat .lbl { margin-top: 4px; font-size: .9rem; color: var(--ink-2); }
.stat + .stat { border-left: 1px solid var(--border-2); }
@media (max-width: 760px){
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 10px; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:last-child { grid-column: 1 / -1; border-left: none; }
}

/* ----------  Feature rows  ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.feature + .feature { margin-top: clamp(72px, 10vw, 140px); }
.feature--rev .feature__media { order: 2; }
.feature__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); color: #fff; box-shadow: var(--shadow-brand);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 850; }
.feature__lead { margin-top: 16px; font-size: 1.12rem; color: var(--ink-2); }
.feature__list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.feature__list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-size: 1.02rem; }
.feature__list svg { width: 21px; height: 21px; flex: none; color: var(--brand); margin-top: 2px; }
@media (max-width: 820px){
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature--rev .feature__media { order: -1; }
  .feature__media { margin-inline: auto; }
}

/* ----------  Phone frame (wraps raw screenshots)  ---------- */
.phone {
  position: relative; width: min(290px, 74vw); margin-inline: auto;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #2a2a32, #0d0d12);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.phone::before { /* speaker notch */
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #060608; border-radius: 999px; z-index: 3;
}
.phone img { border-radius: 34px; width: 100%; display: block; }
.phone--plain { background: none; padding: 0; box-shadow: var(--shadow-lg); border-radius: 40px; }
.phone--plain::before { display: none; }
.phone--plain img { border-radius: 40px; }

/* ----------  Feature grid (small cards)  ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 30%, var(--border)); }
.card__ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; font-weight: 750; }
.card p { margin-top: 9px; color: var(--ink-2); font-size: .98rem; }
@media (max-width: 900px){ .cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .cards { grid-template-columns: 1fr; } }

/* ----------  Use cases  ---------- */
.uses { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.use { display: flex; gap: 15px; align-items: flex-start; padding: 22px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.use__ico { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.use__ico svg { width: 22px; height: 22px; }
.use b { font-size: 1.05rem; font-weight: 750; display: block; }
.use span { color: var(--ink-2); font-size: .96rem; }
@media (max-width: 900px){ .uses { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .uses { grid-template-columns: 1fr; } }

/* ----------  Privacy band  ---------- */
.band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(125deg, #1B2A6B, #2E5BFF 55%, #6A4DFF);
  color: #fff; padding: clamp(40px,6vw,72px); box-shadow: var(--shadow-lg);
}
.band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 850; }
.band p { margin-top: 16px; font-size: 1.14rem; color: rgba(255,255,255,.86); max-width: 60ch; }
.band__pills { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.band__pills span { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: 9px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem; display: inline-flex; gap: 8px; align-items: center; }
.band__pills svg { width: 18px; height: 18px; }
.band .glow--warm { width: 360px; height: 360px; right: -120px; top: -140px; opacity: .35; }

/* ----------  FAQ  ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 4px 22px; box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.faq details[open] { border-color: color-mix(in srgb, var(--brand) 30%, var(--border)); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform .25s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content:""; position:absolute; background: var(--brand); border-radius: 2px; }
.faq summary .plus::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq summary .plus::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: opacity .2s; }
.faq details[open] summary .plus { transform: rotate(90deg); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq p { padding: 0 0 20px; color: var(--ink-2); font-size: 1.02rem; }

/* ----------  CTA band  ---------- */
.cta-final { text-align: center; }
.cta-final .band { display: flex; flex-direction: column; align-items: center; }
.cta-final img.appicon { width: 92px; height: 92px; border-radius: 22px; box-shadow: var(--shadow-lg); margin-bottom: 22px; }
.cta-final .btns { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ----------  Footer  ---------- */
.footer { border-top: 1px solid var(--border); background: var(--surface); padding: 56px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { margin-top: 14px; color: var(--ink-2); font-size: .96rem; max-width: 32ch; }
.footer h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin: 0 0 14px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--ink-2); font-weight: 500; font-size: .98rem; }
.footer ul a:hover { color: var(--ink); }
.footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-3); font-size: .9rem; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ----------  Legal / article pages  ---------- */
.legal { max-width: 820px; margin-inline: auto; padding: clamp(40px,6vw,72px) 0; }
.legal__head { margin-bottom: 40px; }
.legal__head h1 { font-size: clamp(2.1rem, 4.6vw, 3rem); font-weight: 850; }
.legal__head .updated { margin-top: 12px; color: var(--ink-3); font-size: .95rem; }
.legal h2 { font-size: 1.5rem; font-weight: 800; margin: 44px 0 14px; letter-spacing: -.01em; }
.legal h3 { font-size: 1.15rem; font-weight: 750; margin: 28px 0 10px; }
.legal p { margin: 0 0 16px; color: var(--ink-2); }
.legal ul, .legal ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); }
.legal li { margin-bottom: 9px; }
.legal strong { color: var(--ink); }
.legal a { font-weight: 600; }
.legal .toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px 26px; margin-bottom: 40px; box-shadow: var(--shadow-sm); }
.legal .toc h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin: 0 0 12px; font-weight: 700; }
.legal .toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.legal .toc a { color: var(--ink-2); }
@media (max-width: 560px){ .legal .toc ol { columns: 1; } }

.callout { background: color-mix(in srgb, var(--brand) 8%, var(--surface)); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: var(--r-md); padding: 20px 24px; margin: 0 0 26px; }
.callout p { margin: 0; color: var(--ink); }

/* support page */
.support-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
.support-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm); }
.support-card .card__ico { margin-bottom: 14px; }
.support-card h2 { font-size: 1.2rem; font-weight: 800; margin: 0; }
.support-card p { margin: 8px 0 14px; color: var(--ink-2); }
@media (max-width: 620px){ .support-cards { grid-template-columns: 1fr; } }

/* ----------  Scroll-reveal  ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--brand); color:#fff; padding: 10px 16px; border-radius: 10px; z-index: 200; }
.skip-link:focus { left: 16px; }

/* nav: download button placement per breakpoint */
.nav__links .btn--primary { display: none; }
/* keep the CTA button white — .nav__links a sets a muted link color otherwise */
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: #fff; }
@media (max-width: 880px) {
  .nav__links .btn--primary { display: inline-flex; margin-top: 10px; }
}

/* ----------  AI "Generate" mockup (replaces a screenshot for the AI row)  ---------- */
.mock {
  width: min(320px, 80vw); margin-inline: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 24px;
}
.mock__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock__bar .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); }
.mock__title { font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.mock__done { color: var(--brand); font-weight: 700; font-size: .92rem; }
.mock__label { font-size: .78rem; font-weight: 700; letter-spacing: .02em; color: var(--ink-2); margin-bottom: 9px; }
.mock__field {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 16px; color: var(--ink); font-size: .98rem; min-height: 76px; line-height: 1.5;
}
.mock__field .cursor { display: inline-block; width: 2px; height: 1.05em; background: var(--brand);
  vertical-align: -2px; margin-left: 1px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce){ .mock__field .cursor { animation: none; } }
.mock__btn { margin-top: 16px; width: 100%; }
.mock__note { margin-top: 14px; text-align: center; font-size: .8rem; color: var(--ink-3); }
