:root {
    --ground: #1E1A18;
    --tile: #26211E;
    --text: #F7F2ED;
    --coral: #FF6F5E;
    --muted: #a99e95;
    --hairline: rgba(247,242,237,0.09);
    --pill-bg: rgba(247,242,237,0.07);
    --pill-border: rgba(247,242,237,0.09);
    --track: rgba(247,242,237,0.18);
  }
  :root[data-theme="light"] {
    --ground: #F7F2ED;
    --tile: #FFFDFA;
    --text: #2B2725;
    --muted: #8d8179;
    --hairline: rgba(43,39,37,0.12);
    --pill-bg: rgba(43,39,37,0.06);
    --pill-border: rgba(43,39,37,0.12);
    --track: rgba(43,39,37,0.18);
  }
  @media (prefers-color-scheme: light) {
    :root:not([data-theme]) {
      --ground: #F7F2ED;
      --tile: #FFFDFA;
      --text: #2B2725;
      --muted: #8d8179;
      --hairline: rgba(43,39,37,0.12);
      --pill-bg: rgba(43,39,37,0.06);
      --pill-border: rgba(43,39,37,0.12);
      --track: rgba(43,39,37,0.18);
    }
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ground);
    color: var(--text);
    font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    line-height: 1.55;
    transition: background 0.35s ease, color 0.35s ease;
  }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  /* ---------- nav ---------- */
  nav { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; }
  .mark { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; }
  .tilebadge {
    width: 40px; height: 40px; border-radius: 11px;
    display: block; object-fit: cover;
  }
  .navside { display: flex; align-items: center; gap: 22px; }
  .navlinks { display: flex; gap: 24px; font-size: 15px; color: var(--muted); }
  .navlinks span { cursor: default; }
  .theme-btn {
    background: none; border: 1px solid var(--hairline); color: var(--text);
    border-radius: 999px; width: 38px; height: 38px;
    display: grid; place-items: center; cursor: pointer; padding: 0;
  }
  .theme-btn svg { width: 18px; height: 18px; }
  .theme-btn:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }
  nav { gap: 12px; }
  .mark, .theme-btn { flex-shrink: 0; }
  .navlinks { white-space: nowrap; }
  @media (max-width: 520px) {
    .wrap { padding: 0 18px; }
    nav { padding: 20px 0; }
    .mark { font-size: 17px; gap: 9px; }
    .tilebadge { width: 34px; height: 34px; border-radius: 9px; }
    .navside { gap: 12px; }
    .navlinks { gap: 14px; font-size: 14px; }
    .theme-btn { width: 34px; height: 34px; }
  }

  /* ---------- hero ---------- */
  .hero { display: grid; grid-template-columns: minmax(0,1fr); gap: 48px; align-items: center; padding: 48px 0 96px; }
  @media (min-width: 880px) { .hero { grid-template-columns: 1.05fr 0.95fr; } }
  h1 {
    font-size: clamp(38px, 5.6vw, 58px); font-weight: 800;
    line-height: 1.08; margin: 0 0 22px; letter-spacing: -0.01em; text-wrap: balance;
  }
  h1 em { font-style: normal; color: var(--coral); }
  .sub { font-size: 19px; color: var(--muted); max-width: 46ch; margin: 0 0 30px; }
  .sub b { color: var(--text); font-weight: 600; }
  .store-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--text); color: var(--ground);
    border-radius: 999px; padding: 14px 26px;
    font-weight: 700; font-size: 16px; text-decoration: none;
    transition: background 0.35s ease, color 0.35s ease;
  }
  .store-btn svg { width: 18px; height: 18px; }
  /* Every CTA sits exactly 30px under its copy, matching the hero. */
  .store-btn.section-cta { margin-top: 0; }
  .lede:has(+ .store-btn.section-cta) { margin-bottom: 30px; }
  .refusal .store-btn.section-cta { margin-top: 30px; }
  .store-btn.section-cta + .tiles { margin-top: 40px; }
  .store-note { display: block; margin-top: 12px; font-size: 13px; color: var(--muted); }

  /* ---------- phone frame (screens stay dark: the app in its element) ---------- */
  .phone {
    width: min(300px, 78vw); aspect-ratio: 300 / 620;
    border-radius: 48px; background: #131010;
    box-shadow: 0 0 0 3px #3a332f, 0 0 0 6px #0c0a09, 0 30px 80px rgba(0,0,0,0.4);
    position: relative; overflow: hidden; margin: 0 auto;
  }
  .island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 84px; height: 24px; border-radius: 999px; background: #000; z-index: 5; }
  .screen { position: absolute; inset: 0; background: var(--ground); transition: background 0.35s ease; }

  .fbar { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: rgba(255,111,94,0.16); z-index: 4; }
  .fbar::after {
    content: ""; position: absolute; top: 0; left: 0; bottom: 0;
    background: var(--coral); border-radius: 0 2px 2px 0;
    animation: fprog 5.4s linear infinite, fglow 0.9s ease-out infinite;
  }
  @keyframes fprog { 0% { width: 12%; } 100% { width: 92%; } }
  @keyframes fglow { 0% { opacity: 1; } 55% { opacity: 0.55; } 100% { opacity: 1; } }
  .fstage { position: absolute; inset: 0; display: grid; place-items: center; }
  .fletter { position: absolute; font-size: 120px; font-weight: 900; color: var(--text); opacity: 0; animation: fcycle 5.4s infinite; }
  .fletter:nth-child(1) { animation-delay: 0s; }
  .fletter:nth-child(2) { animation-delay: 0.9s; }
  .fletter:nth-child(3) { animation-delay: 1.8s; }
  .fletter:nth-child(4) { animation-delay: 2.7s; }
  .fletter:nth-child(5) { animation-delay: 3.6s; }
  .fletter:nth-child(6) { animation-delay: 4.5s; }
  @keyframes fcycle {
    0% { opacity: 0; transform: scale(0.96); }
    2%, 15% { opacity: 1; transform: scale(1); }
    17%, 100% { opacity: 0; transform: scale(1); }
  }
  .fpill {
    position: absolute; left: 50%; transform: translateX(-50%); bottom: 24px;
    display: flex; align-items: center; gap: 12px;
    background: var(--pill-bg); border: 1px solid var(--pill-border);
    backdrop-filter: blur(8px);
    border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 700; color: var(--text);
  }
  .fplay { width: 30px; height: 30px; border-radius: 999px; background: var(--coral); display: grid; place-items: center; animation: fglow 0.9s ease-out infinite; }
  .fplay::after {
    content: ""; width: 8px; height: 10px; background: #F7F2ED;
    clip-path: polygon(0 0, 0 100%, 20% 100%, 20% 0, 55% 0, 55% 100%, 75% 100%, 75% 0);
  }
  .ftrack { width: 64px; height: 4px; border-radius: 2px; background: var(--track); position: relative; }
  .ftrack::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 60%; background: var(--coral); border-radius: 2px; }
  .fbpm small { display: block; font-size: 8px; color: var(--coral); letter-spacing: 0.08em; font-weight: 600; }

  .rstage { position: absolute; inset: 46px 24px 90px; font-size: 19px; font-weight: 600; line-height: 1.75; color: var(--text); }
  .rtext { position: absolute; inset: 0; animation: rswap 7s infinite; }
  .rtext.alt { animation-delay: 3.5s; opacity: 0; }
  @keyframes rswap {
    0%, 6% { opacity: 0; }
    10%, 46% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }
  .rpill {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    background: var(--pill-bg); border: 1px solid var(--pill-border);
    border-radius: 999px; padding: 9px 22px; font-weight: 800; font-size: 15px; color: var(--coral);
    width: 46px; text-align: center;
  }
  .rlabel { position: absolute; inset: 0; display: grid; place-items: center; animation: rswap 7s infinite; }
  .rlabel.alt { animation-delay: 3.5s; opacity: 0; }
  .rpill > span { visibility: hidden; }

  .pstage { position: absolute; inset: 0; overflow: hidden; }
  .pfocal { position: absolute; left: 12px; top: 38%; width: 3px; height: 24px; background: var(--coral); border-radius: 2px; z-index: 3; opacity: 0.85; }
  .proll {
    position: absolute; left: 28px; right: 20px; top: 0;
    font-size: 17px; font-weight: 600; line-height: 2.1; color: var(--text);
    animation: proll 14s linear infinite;
  }
  @keyframes proll { 0% { transform: translateY(75%); } 100% { transform: translateY(-105%); } }

  /* recite phone: one phrase at a time, checked as it is said */
  .cbar { position: absolute; left: 0; right: 0; top: 44px; height: 3px; background: var(--pill-border); z-index: 3; }
  .cbar i { display: block; height: 100%; width: 0; background: var(--coral); animation: cbar 12s linear infinite; }
  @keyframes cbar { 0% { width: 8%; } 32% { width: 34%; } 34% { width: 34%; } 66% { width: 68%; } 68% { width: 68%; } 100% { width: 96%; } }
  .cstage { position: absolute; inset: 60px 22px 84px; display: flex; align-items: center; justify-content: center; }
  .cphrase {
    position: absolute; text-align: center; color: var(--text);
    font-size: 40px; font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
    animation: cswap 12s infinite; opacity: 0;
  }
  .cphrase:nth-child(2) { animation-delay: 4s; }
  .cphrase:nth-child(3) { animation-delay: 8s; }
  @keyframes cswap {
    0% { opacity: 0; transform: scale(0.96); }
    4% { opacity: 1; transform: scale(1); }
    30% { opacity: 1; transform: scale(1); }
    34% { opacity: 0; transform: scale(1.02); }
    100% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .cbar i { animation: none; width: 34%; }
    .cphrase { animation: none; opacity: 0; }
    .cphrase:nth-child(1) { opacity: 1; }
  }

  /* dictate phone */
  .dstage {
    position: absolute; inset: 52px 26px 120px;
    font-size: 20px; font-weight: 600; line-height: 1.8; color: var(--text);
  }
  .dhint {
    position: absolute; top: 52px; left: 26px; right: 26px;
    font-size: 20px; font-weight: 600; color: var(--muted);
    opacity: 0; animation: dhint 9s infinite;
  }
  @keyframes dhint {
    0%, 5% { opacity: 0.7; }
    8%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(1) { animation: dw1 9s infinite; opacity: 0; }
  @keyframes dw1 {
    0%, 12% { opacity: 0; }
    14%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(2) { animation: dw2 9s infinite; opacity: 0; }
  @keyframes dw2 {
    0%, 16% { opacity: 0; }
    18%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(3) { animation: dw3 9s infinite; opacity: 0; }
  @keyframes dw3 {
    0%, 20% { opacity: 0; }
    22%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(4) { animation: dw4 9s infinite; opacity: 0; }
  @keyframes dw4 {
    0%, 24% { opacity: 0; }
    26%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(5) { animation: dw5 9s infinite; opacity: 0; }
  @keyframes dw5 {
    0%, 28% { opacity: 0; }
    30%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(6) { animation: dw6 9s infinite; opacity: 0; }
  @keyframes dw6 {
    0%, 32% { opacity: 0; }
    34%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(7) { animation: dw7 9s infinite; opacity: 0; }
  @keyframes dw7 {
    0%, 36% { opacity: 0; }
    38%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(8) { animation: dw8 9s infinite; opacity: 0; }
  @keyframes dw8 {
    0%, 40% { opacity: 0; }
    42%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(9) { animation: dw9 9s infinite; opacity: 0; }
  @keyframes dw9 {
    0%, 44% { opacity: 0; }
    46%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dstage .w:nth-child(10) { animation: dw10 9s infinite; opacity: 0; }
  @keyframes dw10 {
    0%, 48% { opacity: 0; }
    50%, 82% { opacity: 1; }
    88%, 100% { opacity: 0; }
  }
  .dmic {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    width: 64px; height: 64px; border-radius: 999px; background: var(--coral);
    display: grid; place-items: center;
    animation: dbreathe 1.8s ease-in-out infinite;
  }
  @keyframes dbreathe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,111,94,0.35); }
    50% { box-shadow: 0 0 0 16px rgba(255,111,94,0); }
  }
  .dmic svg { width: 26px; height: 26px; }

  /* ---------- sections ---------- */
  section { padding: 88px 0; border-top: 1px solid var(--hairline); }
  .eyebrow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); font-weight: 700; margin-bottom: 14px; }
  h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.01em; text-wrap: balance; }
  .lede { font-size: 18px; color: var(--muted); max-width: 56ch; margin: 0 0 40px; }
  .lede b { color: var(--text); font-weight: 600; }
  .lede a, .page-head p a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

  .tiles { display: grid; gap: 18px; grid-template-columns: minmax(0,1fr); }
  @media (min-width: 720px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
  .tile { background: var(--tile); border: 1px solid var(--hairline); border-radius: 22px; padding: 28px 26px; transition: background 0.35s ease; }
  .tile .glyph { font-size: 26px; color: var(--coral); margin-bottom: 14px; font-weight: 800; }
  .tile h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
  .tile p { margin: 0; font-size: 15px; color: var(--muted); }

  .split { display: grid; gap: 48px; align-items: center; grid-template-columns: minmax(0,1fr); }
  @media (min-width: 880px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split.flip .copy { order: 2; }
  }

  /* ---------- voice-follow prompter mockup ---------- */
  .proll.vfollow { animation: vproll 16s linear infinite; }
  @keyframes vproll {
    0% { transform: translateY(75%); }
    22% { transform: translateY(38%); }
    34% { transform: translateY(38%); }   /* the actor dries; the prompter waits */
    58% { transform: translateY(-18%); }
    68% { transform: translateY(-18%); }  /* waits again */
    100% { transform: translateY(-105%); }
  }
  .vpill {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 3px;
    background: var(--pill-bg); border: 1px solid var(--pill-border);
    border-radius: 999px; padding: 9px 16px; z-index: 4;
  }
  .vpill span { font-size: 12px; font-weight: 700; color: var(--coral); margin-left: 7px; }
  .vpill i {
    width: 3px; height: 12px; border-radius: 2px; background: var(--coral);
    animation: vwave 1.1s ease-in-out infinite;
  }
  .vpill i:nth-child(1) { animation-delay: 0s; }
  .vpill i:nth-child(2) { animation-delay: 0.15s; }
  .vpill i:nth-child(3) { animation-delay: 0.3s; }
  .vpill i:nth-child(4) { animation-delay: 0.45s; }
  .vpill i:nth-child(5) { animation-delay: 0.6s; }
  @keyframes vwave {
    0%, 100% { transform: scaleY(0.35); }
    50% { transform: scaleY(1); }
  }

  /* ---------- scan import mockup ---------- */
  .sstage { position: absolute; inset: 46px 24px 40px; }
  .spaper {
    position: relative; height: 42%; border-radius: 14px;
    background: #FFFDFA; box-shadow: 0 12px 30px rgba(0,0,0,0.28);
    overflow: hidden; padding: 18px 16px;
  }
  .spaper i { display: block; height: 7px; border-radius: 4px; background: #D8D2CB; margin-bottom: 10px; }
  .spaper i:nth-child(2) { width: 86%; }
  .spaper i:nth-child(3) { width: 92%; }
  .spaper i:nth-child(4) { width: 74%; }
  .spaper i:nth-child(5) { width: 88%; }
  .spaper i:nth-child(6) { width: 52%; }
  .sline { position: absolute; left: 0; right: 0; height: 3px; background: var(--coral); box-shadow: 0 0 18px var(--coral); animation: sscan 5.4s ease-in-out infinite; }
  @keyframes sscan { 0% { top: 8%; } 46% { top: 90%; } 54% { top: 90%; } 100% { top: 8%; } }
  .sout { margin-top: 24px; font-size: 19px; font-weight: 700; line-height: 1.9; color: var(--text); }
  .sout span { opacity: 0; display: inline-block; animation: sword 5.4s infinite; }
  .sout span:nth-child(1) { animation-delay: 2.5s; }
  .sout span:nth-child(2) { animation-delay: 2.65s; }
  .sout span:nth-child(3) { animation-delay: 2.8s; }
  .sout span:nth-child(4) { animation-delay: 2.95s; }
  .sout span:nth-child(5) { animation-delay: 3.1s; }
  .sout span:nth-child(6) { animation-delay: 3.25s; }
  .sout span:nth-child(7) { animation-delay: 3.4s; }
  .sout span:nth-child(8) { animation-delay: 3.55s; }
  @keyframes sword { 0%, 44% { opacity: 0; transform: translateY(5px); } 52%, 94% { opacity: 1; transform: none; } 100% { opacity: 0; } }
  .sbadge {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    background: var(--pill-bg); border: 1px solid var(--pill-border);
    border-radius: 999px; padding: 9px 18px; font-weight: 700; font-size: 13px;
    color: var(--coral); white-space: nowrap;
  }

  /* ---------- plus ---------- */
  .plus-card {
    background: var(--tile); border: 1px solid var(--hairline); border-radius: 26px;
    padding: 34px 32px; max-width: 480px; width: 100%; margin: 0 auto;
    transition: background 0.35s ease;
  }
  .plus-price { font-size: 46px; font-weight: 800; letter-spacing: -0.01em; }
  .plus-price small { font-size: 17px; font-weight: 800; color: var(--coral); margin-left: 8px; }
  .plus-once { color: var(--muted); font-size: 15px; margin: 4px 0 24px; }
  .plus-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
  .plus-list li { display: flex; gap: 12px; align-items: baseline; font-size: 16px; font-weight: 500; color: var(--text); }
  .plus-list li::before { content: "\2022"; color: var(--coral); font-weight: 900; }
  .plus-free { margin: 22px 0 0; padding-top: 20px; border-top: 1px solid var(--hairline); font-size: 14px; color: var(--muted); }

  .refusal { text-align: center; padding: 110px 0; }
  .refusal h2 { font-size: clamp(30px, 4.6vw, 50px); max-width: 22ch; margin: 0 auto 18px; }
  .refusal h2 .no { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 3px; }
  .refusal p { color: var(--muted); font-size: 18px; max-width: 44ch; margin: 0 auto; }
  .refusal p b { color: var(--text); }

  footer {
    border-top: 1px solid var(--hairline);
    padding: 48px 0 64px; color: var(--muted); font-size: 14px;
    display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
  }
  .foot-mark { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); }
  .foot-mark .tilebadge { width: 30px; height: 30px; border-radius: 8px; }

  /* ---------- sub-pages ---------- */
  .pg:not(.active) { display: none !important; }
  .page-head { text-align: center; padding: 64px 0 40px; }
  .page-head h1 { font-size: clamp(30px, 4.6vw, 44px); margin: 0 0 10px; }
  .page-head p { color: var(--muted); margin: 0; font-size: 18px; }
  .page-head .lede { margin-left: auto; margin-right: auto; }
  .card-panel {
    background: var(--tile); border: 1px solid var(--hairline);
    border-radius: 24px; padding: 34px; max-width: 640px; margin: 0 auto 80px;
    transition: background 0.35s ease;
  }
  .field { margin-bottom: 20px; }
  .field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
  .field input, .field textarea {
    width: 100%; box-sizing: border-box;
    background: var(--ground); color: var(--text);
    border: 1px solid var(--hairline); border-radius: 12px;
    padding: 13px 14px; font-size: 16px; font-family: inherit;
    transition: background 0.35s ease;
  }
  .field input:focus, .field textarea:focus { outline: 2px solid var(--coral); outline-offset: 0; border-color: transparent; }
  .field textarea { min-height: 130px; resize: vertical; }
  .send-btn {
    width: 100%; border: none; cursor: pointer;
    background: var(--text); color: var(--ground);
    border-radius: 12px; padding: 15px; font-size: 16px; font-weight: 700; font-family: inherit;
    transition: background 0.35s ease, color 0.35s ease;
  }
  .send-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }
  .legal { max-width: 640px; margin: 0 auto 80px; }
  .legal .card-panel { margin-bottom: 24px; }
  .legal h3 { font-size: 17px; margin: 26px 0 8px; }
  .legal h3:first-child { margin-top: 0; }
  .legal p, .legal li { font-size: 15.5px; color: var(--muted); }
  .legal b { color: var(--text); }

  /* ---------- reads ---------- */
  .reads { display: grid; gap: 22px; grid-template-columns: minmax(0,1fr); }
  @media (min-width: 760px) { .reads { grid-template-columns: repeat(3, 1fr); } }
  .read-card { text-decoration: none; color: inherit; display: block; }
  .read-cover {
    border-radius: 20px; aspect-ratio: 16 / 10; overflow: hidden;
    display: grid; place-items: center; position: relative;
    border: 1px solid var(--hairline);
  }
  .read-cover.c1 { background: linear-gradient(160deg, #FF8A76, #EE5540); }
  .read-cover.c1 span { font-size: 34px; font-weight: 900; color: #F7F2ED; letter-spacing: 0.12em; }
  .read-cover.c2 { background: #1E1A18; }
  .read-cover.c2 .dots { display: flex; gap: 14px; }
  .read-cover.c2 .dots i {
    width: 16px; height: 16px; border-radius: 999px; background: var(--coral); display: block;
  }
  .read-cover.c2 .dots i:nth-child(2) { opacity: 0.7; }
  .read-cover.c2 .dots i:nth-child(3) { opacity: 0.45; }
  .read-cover.c2 .dots i:nth-child(4) { opacity: 0.25; }
  .read-cover.c3 { background: #F7F2ED; }
  .read-cover.c3 span { font-size: 40px; font-weight: 900; color: #2B2725; }
  .read-cover.c3 em { color: #FF6F5E; font-style: normal; }
  .read-title { font-size: 17px; font-weight: 800; margin: 14px 4px 0; line-height: 1.3; }
  .article { max-width: 640px; margin: 0 auto 80px; }
  .article .card-panel { max-width: none; margin-bottom: 24px; }
  .article p { font-size: 16.5px; color: var(--muted); line-height: 1.7; }
  .article p b, .article p a { color: var(--text); }
  .article h3 { font-size: 18px; margin: 28px 0 8px; }
  .art-hero {
    width: 100%; border-radius: 20px; display: block;
    margin: 0 0 26px; border: 1px solid var(--hairline);
  }
  .article .pull {
    border-left: 3px solid var(--coral); padding-left: 16px;
    font-size: 18px; color: var(--text); font-weight: 600;
  }

  /* ---------- QR widget ---------- */
  .qr-card {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    background: #fff; border-radius: 26px; padding: 16px 16px 10px;
    box-shadow: 0 14px 48px rgba(0,0,0,0.30);
    text-align: center; width: 186px;
    opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .qr-card.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .qr-card img { width: 154px; height: 154px; display: block; margin: 0 auto; }
  .qr-card span { display: block; font-size: 14px; font-weight: 800; color: #1E1A18; padding: 8px 0 5px; }
  @media (max-width: 719px) { .qr-card { display: none; } }
  .alpha-pill {
    position: fixed; right: 18px; bottom: 18px; z-index: 60;
    background: var(--coral); color: #fff; text-decoration: none;
    font-weight: 800; font-size: 14px; padding: 12px 18px; border-radius: 999px;
    /* An even halo, no y-offset: an offset shadow pools below the pill and
       reads as the button sitting high inside its own glow. Brand coral
       (#FF6F5E), kept tight so the compositing layer's rectangular bounds hug
       the pill: a wide blur pushes those bounds far past a rounded button and
       iOS Safari leaves them visible as a hard-edged patch over the cards. */
    box-shadow: 0 0 22px rgba(255,111,94,0.38);
    opacity: 0; transform: translateY(16px); pointer-events: none;
    /* Promote once and stay promoted: the artifact appears when Safari builds
       and tears down the layer around the transition. */
    will-change: opacity, transform;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .alpha-pill.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  @media (min-width: 720px) { .alpha-pill { display: none; } }

  /* ---------- footer ---------- */
  .bigfoot {
    border-top: 1px solid var(--hairline);
    padding: 56px 0 20px;
    display: grid; gap: 36px;
    grid-template-columns: minmax(0,1fr);
  }
  @media (min-width: 720px) { .bigfoot { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
  .bigfoot h4 { font-size: 15px; margin: 0 0 14px; }
  .bigfoot a, .bigfoot span.link {
    display: block; color: var(--muted); text-decoration: none;
    font-size: 15px; margin-bottom: 10px; cursor: pointer;
  }
  .bigfoot a:hover { color: var(--text); }
  .copyline { text-align: center; color: var(--muted); font-size: 13.5px; padding: 26px 0 60px; }

  /* Reduced motion: freeze ONLY our demo animations (scoped, never touching host UI) */
  @media (prefers-reduced-motion: reduce) {
    .fletter, .rtext, .rlabel, .proll, .fbar::after, .fplay {
      animation: none !important;
    }
    .fletter:nth-child(1), .rtext:not(.alt), .rlabel:not(.alt) { opacity: 1; }
    .proll { transform: translateY(10%); }
  }
