/* ============================================================
   HoldSay — Design Tokens & Foundations
   ============================================================ */

@font-face{font-family:"Geist";font-style:normal;font-weight:100 900;font-display:swap;src:url(/assets/geist.9b6f5ff4.woff2) format("woff2");}
@font-face{font-family:"Geist Mono";font-style:normal;font-weight:100 900;font-display:swap;src:url(/assets/geist-mono.5f3d6ad6.woff2) format("woff2");}
:root {
  /* --- Brand color: the REC red --- */
  --rec: #e5402a;
  --wall-ventura: url(/assets/wall-ventura.9cbb9b38.jpg);
  --wall-bigsur: url(/assets/wall-bigsur.de0031f7.jpg);
  --wall-sequoia: url(/assets/wall-sequoia.252118e1.jpg);
  --wall-goldengate: url(/assets/wall-goldengate.6292a6b2.jpg);
  --macwall: url(/assets/wall-tahoe.0fae2962.jpg);
  --appicon: url(/assets/icon.01f24e4a.png);
  --rec-deep: #c8331f;
  --rec-glow: rgba(229, 64, 42, 0.55);

  /* --- Ink / text --- */
  --ink: #1d1b18;
  --ink-2: #4a463f;
  --ink-3: #8a8478;
  --ink-4: #b6b0a4;
  --hairline: rgba(40, 34, 24, 0.10);

  /* --- Card (light / ivory) --- */
  --card-ivory: #efeae0;
  --card-ivory-2: #e7e0d2;
  --card-rib-hi: #f6f1e8;
  --card-rib-lo: #d9d1c0;
  --knob-face-hi: #fbf8f1;
  --knob-face-lo: #ddd6c7;

  /* --- Card (dark / charcoal) --- */
  --card-coal: #2a2a2c;
  --card-coal-2: #1f1f21;
  --coal-rib-hi: #353537;
  --coal-rib-lo: #161617;

  /* --- Surface (the page) --- */
  --paper: #f7f5f1;

  /* --- Type --- */
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", "SF Mono", ui-monospace, "JetBrains Mono", "Menlo", monospace;

  /* --- Rhythm --- */
  --r-card: 26px 26px 90px 26px;       /* signature asymmetric radius */
  --shadow-float:
    0 2px 4px rgba(40, 34, 24, 0.04),
    0 14px 30px rgba(40, 34, 24, 0.07),
    0 44px 90px rgba(40, 34, 24, 0.10);
  --shadow-deep:
    0 4px 8px rgba(30, 27, 24, 0.06),
    0 30px 60px rgba(30, 27, 24, 0.12),
    0 80px 140px rgba(30, 27, 24, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* ============================================================
   The flowing silk / brushed-metal white surface.
   Layered drifting highlights + a faint grain. Sits fixed
   behind everything so the whole page feels like one
   continuous lit material.
   ============================================================ */
.surface,
.surface-grain {
  position: fixed;
  inset: -10vmax;
  pointer-events: none;
  z-index: -2;
}

.surface {
  background:
    /* large soft cool highlight, upper-left */
    radial-gradient(58% 48% at 20% 16%, rgba(202, 216, 232, 0.78) 0%, rgba(202, 216, 232, 0) 62%),
    /* warm champagne sheen, lower-right */
    radial-gradient(56% 56% at 84% 80%, rgba(238, 226, 206, 0.82) 0%, rgba(238, 226, 206, 0) 64%),
    /* cool counter-light, upper-right */
    radial-gradient(48% 42% at 74% 10%, rgba(212, 222, 236, 0.7) 0%, rgba(212, 222, 236, 0) 60%),
    /* deep soft shadow pooling, lower-left — gives the "lit metal" falloff */
    radial-gradient(60% 55% at 12% 92%, rgba(176, 170, 158, 0.34) 0%, rgba(176, 170, 158, 0) 60%),
    /* brushed directional sheen across the whole sheet */
    linear-gradient(102deg, #eeebe4 0%, #fdfcf9 26%, #f2efe8 48%, #fefdfb 70%, #edeae2 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 240% 240%;
  background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%, 0% 50%;
  animation: surface-drift 30s ease-in-out infinite alternate;
}

/* a broad silken ribbon of light sweeping diagonally — the "reflection" */
.surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg,
      transparent 22%,
      rgba(255, 255, 255, 0.0) 32%,
      rgba(255, 255, 255, 0.85) 47%,
      rgba(255, 255, 255, 0.12) 56%,
      transparent 68%);
  background-size: 300% 300%;
  background-position: 0% 0%;
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: silk-sweep 22s ease-in-out infinite alternate;
}

.surface-grain {
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

@keyframes surface-drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%, 0% 50%; }
  100% { background-position: 55% 35%, 45% 65%, 30% 55%, 25% 80%, 100% 50%; }
}
@keyframes silk-sweep {
  0%   { background-position: 8% 50%; }
  100% { background-position: 92% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .surface, .surface::after { animation: none; }
}

/* ============================================================
   Shared layout helpers
   ============================================================ */
.wrap { width: min(1180px, 84vw); margin: 0 auto; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; margin: 0; }

.display {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--ink-2); }

section { position: relative; }

/* ============================================================
   HoldSay — Dictation Card component
   A skeuomorphic floating recorder. States driven by
   data-state on .dcard:  idle | recording | transcribing | done
   Theme via data-theme: light | dark
   ============================================================ */

.dcard {
  --w: 360;                   /* base width (UNITLESS) */
  --u: calc(var(--w) / 360);  /* fluid unit ratio (unitless) — every dim scales with width */
  position: relative;
  width: calc(var(--w) * 1px);
  display: grid;
  grid-template-columns: 35% 1fr;
  /* Signature shape: LEFT side is square (no radius); only the right
     corners round — top-right and bottom-right share the SAME moderate
     radius so the card is symmetric about its horizontal axis. Radius
     scales with width so small/scaled cards keep the exact proportions. */
  border-radius: 0 calc(var(--w) * 0.09px) calc(var(--w) * 0.09px) 0;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--sans);
  box-shadow: var(--shadow-deep);
  transition: box-shadow .5s ease, transform .6s cubic-bezier(.22,1,.36,1);
}

/* ---- panels ---- */
.dcard__knobpane {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(14px * var(--u));
  padding: calc(30px * var(--u)) calc(8px * var(--u));
}
.dcard__screen {
  position: relative;
  padding: calc(26px * var(--u)) calc(22px * var(--u)) calc(26px * var(--u)) calc(24px * var(--u));
  min-height: calc(244px * var(--u));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* vertical groove between panes */
.dcard__knobpane::after {
  content: "";
  position: absolute;
  top: 8%; bottom: 8%; right: 0;
  width: 2px;
  border-radius: 2px;
}

/* ===== LIGHT THEME ===== */
.dcard[data-theme="light"] { background: linear-gradient(180deg, #faf9f7 0%, #f1f0ec 100%); }
.dcard[data-theme="light"] .dcard__knobpane {
  background:
    linear-gradient(180deg, #faf9f7 0%, #f1f0ec 100%);
}
.dcard[data-theme="light"] .dcard__knobpane::after {
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.16), rgba(0,0,0,0));
  box-shadow: 1px 0 0 rgba(255,255,255,.7);
}
.dcard[data-theme="light"] .dcard__screen {
  /* Exactly 6 flutes (100% / 6 = 16.667% per band). Each flute is brightest
     at its TOP edge, fades through neutral, and ends in a SOFT, shallow
     shadow at the bottom — so the shadow sits below each flute. */
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.55) 1.1%, rgba(45,42,36,.085) 1.1%, rgba(45,42,36,0) 11.1%, rgba(45,42,36,0) 16.667%), linear-gradient(180deg, #fdfcf9, #fbfaf6); box-shadow: inset 1px 0 0 rgba(255,255,255,.55), inset 2px 0 4px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 2px rgba(0,0,0,.07);
}
.dcard[data-theme="light"] { color: var(--ink); }
.dcard[data-theme="light"] .dcard__sub { color: var(--ink-4); }

/* ===== DARK THEME ===== */
.dcard[data-theme="dark"] { background: linear-gradient(180deg, #3a3a40 0%, #2a2a2f 100%); }
.dcard[data-theme="dark"] .dcard__knobpane {
  background: linear-gradient(180deg, #3a3a40 0%, #2a2a2f 100%);
}
.dcard[data-theme="dark"] .dcard__knobpane::after {
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.5), rgba(0,0,0,0));
  box-shadow: 1px 0 0 rgba(255,255,255,.06);
}
.dcard[data-theme="dark"] .dcard__screen {
  /* Same 6-flute scheme: bright at top edge, soft shallow shadow at bottom. */
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.10) 1.1%, rgba(0,0,0,.34) 1.1%, rgba(0,0,0,0) 6.67%, rgba(0,0,0,0) 16.667%), linear-gradient(180deg, #3a3a3c 0%, #2f2f31 50%, #363638 100%); box-shadow: inset 1px 0 0 rgba(255,255,255,.06), inset 2px 0 4px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06), inset 0 -1px 2px rgba(0,0,0,.28);
}
.dcard[data-theme="dark"] { color: #f3efe8; }
.dcard[data-theme="dark"] .dcard__sub { color: #6f6a62; }

/* ============================================================
   The REC knob
   ============================================================ */
.knob {
  position: relative;
  width: calc(64px * var(--u)); height: calc(64px * var(--u));
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
/* dotted tick ring */
.knob__ticks { position: absolute; inset: calc(-13px * var(--u)); border-radius: 50%; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50.00' cy='6.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='65.05' cy='8.65' r='1.3' fill='%23000'/%3E%3Ccircle cx='78.28' cy='16.29' r='1.3' fill='%23000'/%3E%3Ccircle cx='88.11' cy='28.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='93.33' cy='42.36' r='1.3' fill='%23000'/%3E%3Ccircle cx='93.33' cy='57.64' r='1.3' fill='%23000'/%3E%3Ccircle cx='88.11' cy='72.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='78.28' cy='83.71' r='1.3' fill='%23000'/%3E%3Ccircle cx='65.05' cy='91.35' r='1.3' fill='%23000'/%3E%3Ccircle cx='50.00' cy='94.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='34.95' cy='91.35' r='1.3' fill='%23000'/%3E%3Ccircle cx='21.72' cy='83.71' r='1.3' fill='%23000'/%3E%3Ccircle cx='11.89' cy='72.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='6.67' cy='57.64' r='1.3' fill='%23000'/%3E%3Ccircle cx='6.67' cy='42.36' r='1.3' fill='%23000'/%3E%3Ccircle cx='11.89' cy='28.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='21.72' cy='16.29' r='1.3' fill='%23000'/%3E%3Ccircle cx='34.95' cy='8.65' r='1.3' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50.00' cy='6.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='65.05' cy='8.65' r='1.3' fill='%23000'/%3E%3Ccircle cx='78.28' cy='16.29' r='1.3' fill='%23000'/%3E%3Ccircle cx='88.11' cy='28.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='93.33' cy='42.36' r='1.3' fill='%23000'/%3E%3Ccircle cx='93.33' cy='57.64' r='1.3' fill='%23000'/%3E%3Ccircle cx='88.11' cy='72.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='78.28' cy='83.71' r='1.3' fill='%23000'/%3E%3Ccircle cx='65.05' cy='91.35' r='1.3' fill='%23000'/%3E%3Ccircle cx='50.00' cy='94.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='34.95' cy='91.35' r='1.3' fill='%23000'/%3E%3Ccircle cx='21.72' cy='83.71' r='1.3' fill='%23000'/%3E%3Ccircle cx='11.89' cy='72.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='6.67' cy='57.64' r='1.3' fill='%23000'/%3E%3Ccircle cx='6.67' cy='42.36' r='1.3' fill='%23000'/%3E%3Ccircle cx='11.89' cy='28.00' r='1.3' fill='%23000'/%3E%3Ccircle cx='21.72' cy='16.29' r='1.3' fill='%23000'/%3E%3Ccircle cx='34.95' cy='8.65' r='1.3' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat; opacity: .26; color: #000; }
.dcard[data-theme="dark"] .knob__ticks { color: #fff; opacity: .18; }

/* face (idle) */
.knob__face {
  width: calc(64px * var(--u)); height: calc(64px * var(--u));
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background .5s ease, box-shadow .5s ease;
}
.dcard[data-theme="light"] .knob__face {
  background: radial-gradient(circle at 50% 36%, #fcfbf8, #e7e3db 70%, #d6d2c8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -2px 4px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.13), 0 4px 7px rgba(0,0,0,.16);
}
.dcard[data-theme="dark"] .knob__face {
  background: radial-gradient(circle at 50% 36%, #4c4c54, #2c2c31 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -2px 4px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.5), 0 4px 7px rgba(0,0,0,.4);
}
/* center dot (idle small red) */
.knob__dot {
  width: calc(16px * var(--u)); height: calc(16px * var(--u));
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ff6e51, #e8402a 58%, #c5301c);
  box-shadow: 0 0 0 1px rgba(150,30,15,.28), 0 1px 2px rgba(0,0,0,.22);
  transition: all .45s cubic-bezier(.22,1,.36,1);
}

/* recording: whole knob lights up red and glows */
.dcard[data-state="recording"] .knob__face,
.dcard[data-state="transcribing"] .knob__face {
  background: radial-gradient(circle at 50% 36%, #ff8068, #e8402a 56%, #c5301c);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 0 0 1px rgba(150,30,15,.4),
    0 0 18px rgba(232,64,42,.42),
    0 3px 6px rgba(0,0,0,.2);
}
.dcard[data-state="recording"] .knob__dot,
.dcard[data-state="transcribing"] .knob__dot {
  width: calc(18px * var(--u)); height: calc(18px * var(--u));
  background: radial-gradient(circle at 40% 35%, #ffffff, #ffe6e0 75%);
  box-shadow: 0 0 10px rgba(255,255,255,.8);
}
@keyframes knob-pulse {
  0%, 100% { box-shadow:
    inset 0 2px 4px rgba(255,180,165,.7), inset 0 -4px 8px rgba(120,20,0,.55),
    0 0 0 1px rgba(150,40,20,.4), 0 6px 16px var(--rec-glow), 0 0 32px var(--rec-glow); }
  50% { box-shadow:
    inset 0 2px 4px rgba(255,180,165,.7), inset 0 -4px 8px rgba(120,20,0,.55),
    0 0 0 1px rgba(150,40,20,.4), 0 6px 22px var(--rec-glow), 0 0 60px var(--rec-glow); }
}

.knob__label {
  font-size: calc(10px * var(--u)); font-weight: 700; letter-spacing: .42em;
  text-indent: .42em;
  color: #908d85;
}
.dcard[data-theme="dark"] .knob__label { color: #8b8b93; }

/* ============================================================
   Screen — idle list view
   ============================================================ */
.dcard__title {
  font-size: calc(19px * var(--u)); font-weight: 600; letter-spacing: -0.01em; color: #33363b; text-shadow: 0 1px 0 rgba(255,255,255,.5);
  margin-bottom: calc(18px * var(--u));
}
.dcard__title b { font-weight: 700; color: #16181b; }
.dcard[data-theme="dark"] .dcard__title { color: #e3e4e7; text-shadow: 0 1px 1px rgba(0,0,0,.45); }
.dcard[data-theme="dark"] .dcard__title b { color: #fff; }

/* History holds at most 3 entries; the box always reserves the full
   3-row height so the card never resizes as entries come and go. */
.dcard__rows { display: flex; flex-direction: column; gap: calc(13px * var(--u)); height: calc(140px * var(--u)); overflow: hidden; }
.drow { display: flex; align-items: center; gap: calc(12px * var(--u)); transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.drow--enter { opacity: 0; transform: translateY(10px); }
.drow__play {
  flex: 0 0 auto;
  width: calc(38px * var(--u)); height: calc(38px * var(--u)); border-radius: 50%;
  display: grid; place-items: center;
  font-size: calc(12px * var(--u));
  transition: transform .2s ease;
}
.dcard[data-theme="light"] .drow__play {
  background: radial-gradient(circle at 50% 36%, #fcfbf8, #e7e3db 70%, #d6d2c8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), inset 0 -1px 2px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.13), 0 1px 2px rgba(0,0,0,.16);
  color: #3a3a3c;
}
.dcard[data-theme="dark"] .drow__play {
  background: radial-gradient(circle at 50% 34%, #54565d, #26282c 78%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.45);
  color: #cfcfd6;
}
.drow__play:hover { transform: scale(1.08); }
.drow__time { font-family: var(--mono); font-weight: 700; font-size: calc(16px * var(--u)); letter-spacing: -.02em; color: #52555b; }
.dcard[data-theme="dark"] .drow__time { color: #bdbec3; }
.drow__name { font-size: calc(15px * var(--u)); color: #6c6f75; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dcard[data-theme="dark"] .drow__name { color: #9b9ca1; }

/* ============================================================
   Screen — recording view (timecode)
   ============================================================ */
.dcard__reclabel {
  display: none;
  align-items: center; gap: calc(9px * var(--u));
  font-family: var(--mono); font-size: calc(11px * var(--u)); font-weight: 700; letter-spacing: .18em;
  color: #c0341e;
  margin-bottom: calc(6px * var(--u));
}
.dcard__reclabel .blip {
  width: calc(11px * var(--u)); height: calc(11px * var(--u)); border-radius: 50%; background: var(--rec);
  box-shadow: 0 0 8px var(--rec-glow);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: .25; } }

.dcard__timecode {
  display: none;
  font-family: var(--mono);
  font-weight: 700;
  font-size: calc(56px * var(--u));
  letter-spacing: .01em;
  line-height: .95;
  font-variant-numeric: tabular-nums;
}

/* states toggle which screen block shows */
.dcard__idleview { display: block; }
.dcard[data-state="recording"] .dcard__idleview,
.dcard[data-state="transcribing"] .dcard__idleview { display: none; }
.dcard[data-state="recording"] .dcard__reclabel,
.dcard[data-state="transcribing"] .dcard__reclabel { display: flex; position: absolute; top: calc(20px * var(--u)); left: calc(24px * var(--u)); margin: 0; }
.dcard[data-state="recording"] .dcard__timecode,
.dcard[data-state="transcribing"] .dcard__timecode { display: block; }

/* transcribing label override */
.dcard[data-state="transcribing"] .dcard__reclabel { color: var(--ink-2); }
.dcard[data-state="transcribing"] .dcard__reclabel .blip {
  background: var(--ink-3); box-shadow: none;
  animation: spinpulse 1s linear infinite;
}
.dcard[data-theme="dark"][data-state="transcribing"] .dcard__reclabel { color: #cfc9bf; }
@keyframes spinpulse { 0%{transform:scale(.6);opacity:.4} 50%{transform:scale(1);opacity:1} 100%{transform:scale(.6);opacity:.4} }

/* a small pill row that appears under the timecode while recording */
.dcard__nowrow {
  display: none;
  margin-top: calc(16px * var(--u));
  align-items: center; gap: calc(12px * var(--u));
  padding: calc(8px * var(--u)) calc(14px * var(--u)) calc(8px * var(--u)) calc(8px * var(--u));
  border-radius: calc(12px * var(--u));
}
.dcard[data-state="recording"] .dcard__nowrow,
.dcard[data-state="transcribing"] .dcard__nowrow { display: flex; }
.dcard[data-theme="light"] .dcard__nowrow {
  background: rgba(255,255,255,.4);
  box-shadow: inset 0 0 0 1px rgba(120,104,74,.14);
}
.dcard[data-theme="dark"] .dcard__nowrow {
  background: rgba(0,0,0,.28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

/* transcribing shimmer on the name text */
.dcard[data-state="transcribing"] .dcard__nowrow .drow__name {
  background: linear-gradient(90deg, currentColor 30%, var(--ink-2) 50%, currentColor 70%);
  -webkit-background-clip: text; background-clip: text;
}

/* ============================================================
   HoldSay — Sections
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 600 16px/1 var(--sans);
  letter-spacing: -.01em;
  padding: 14px 22px;
  border-radius: 14px;
  border: none; cursor: pointer; text-decoration: none;
  color: #fff; background: var(--ink);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.18), 0 8px 22px rgba(30,27,24,.20);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0,0,0,.2), 0 14px 32px rgba(30,27,24,.28); }
.btn:active { transform: translateY(0); }
.btn--primary { background: linear-gradient(180deg,#2b2824,#16140f); }
.btn--lg { font-size: 20px; padding: 22px 44px; border-radius: 18px; gap: 13px; }
.btn--lg .btn__os { width: 24px; height: 24px; }
.btn--block { width: 100%; }
.btn__os { display: inline-flex; width: 18px; height: 18px; }
.btn__os svg { width: 100%; height: 100%; fill: currentColor; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 15px 0;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav.is-stuck {
  background: rgba(247,245,241,.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  box-shadow: 0 1px 0 var(--hairline);
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav__logo {
  width: 22px; height: 22px; border-radius: 5px;
  background: var(--appicon) center / cover no-repeat;
}
.nav__name { font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__link { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav__link:hover { color: var(--ink); }
.nav__dl { padding: 11px 18px; border-radius: 12px; font-size: 15px; }
.nav__dl .btn__os { width: 16px; height: 16px; }

/* ---------- Mac frame ---------- */
.macframe { position: relative; width: 100%; }
.macframe__bar {
  height: 30px; border-radius: 14px 14px 0 0;
  display: flex; align-items: center; gap: 7px; padding: 0 14px;
  background: linear-gradient(180deg,#f4f1ea,#e7e2d6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.macframe__bar span { width: 11px; height: 11px; border-radius: 50%; background: #cfc7b6; }
.macframe__bar span:nth-child(1){ background:#f0655a; }
.macframe__bar span:nth-child(2){ background:#f3c150; }
.macframe__bar span:nth-child(3){ background:#62c45a; }
.macframe__url {
  margin-left: 14px; height: 18px; flex: 1; max-width: 320px;
  border-radius: 6px; background: rgba(0,0,0,.05);
  font: 500 11px/18px var(--sans); color: var(--ink-3); padding: 0 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.macframe__screen {
  position: relative; overflow: hidden;
  border-radius: 0 0 14px 14px;
  background: var(--macwall) center / cover no-repeat, linear-gradient(180deg,#fdfcfa,#f4f1ec);
  box-shadow: inset 0 0 0 1px rgba(40,34,24,.06);
  min-height: 320px;
}
/* ghost (semi-transparent abstract laptop, hero & buy) */
.macframe--ghost .macframe__bar { background: linear-gradient(180deg, rgba(244,241,234,.5), rgba(231,226,214,.4)); }
.macframe--ghost .macframe__screen {
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(244,241,236,.38)), var(--macwall) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(40,34,24,.05);
  backdrop-filter: blur(2px);
}
/* per-section desktops: hero keeps Tahoe; the rest each get their own macOS wallpaper */
#featScreenDictate { background-image: var(--wall-ventura), linear-gradient(180deg,#fdfcfa,#f4f1ec); }
#featScreenRecord { background-image: var(--wall-bigsur), linear-gradient(180deg,#fdfcfa,#f4f1ec); }
#featScreenBatch { background-image: var(--wall-sequoia), linear-gradient(180deg,#fdfcfa,#f4f1ec); }
#heroMac .macframe__screen { background-image: linear-gradient(180deg, rgba(255,255,255,.5), rgba(244,241,236,.38)), var(--wall-goldengate); }
#buyMac .macframe__screen { background-image: linear-gradient(180deg, rgba(255,255,255,.5), rgba(244,241,236,.38)), var(--macwall); }

/* app window mock inside a screen */
.appwin {
  position: absolute; border-radius: 10px; overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(40,34,24,.06), 0 12px 30px rgba(40,34,24,.12);
  border: 1px solid rgba(40,34,24,.06);
}
.appwin__bar { height: 22px; display:flex; align-items:center; gap:5px; padding:0 9px; background:#f4f1ec; border-bottom:1px solid rgba(40,34,24,.05); }
.appwin__bar i { width:8px;height:8px;border-radius:50%;background:#d9d2c4; display:block; }
.appwin__body { padding: 14px 16px; font: 500 13px/1.6 var(--sans); color: var(--ink-2); }
.appwin__cursor { display:inline-block; width:2px; height:1.05em; background: var(--rec); margin-left:1px; vertical-align:-2px; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

/* in-app dictation toast */
.dtoast {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%) translateY(8px);
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(28,24,20,.92); color: #fff; font: 600 12px var(--sans);
  letter-spacing: .02em; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  opacity: 0; transition: opacity .3s ease, transform .3s ease;
}
.dtoast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
.dtoast .blip { width: 8px; height: 8px; border-radius: 50%; background: var(--rec); box-shadow: 0 0 7px var(--rec-glow); animation: blink 1.1s steps(1) infinite; }

/* ---------- Hero ---------- */
.hero { padding: 108px 0 54px; min-height: calc(100vh / var(--pagezoom, 1)); box-sizing: border-box; display: flex; align-items: center; }
.hero__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 44px; align-items: center; }
.hero__title { margin-bottom: 22px; line-height: 1.1; font-weight: 800; white-space: nowrap; font-size: clamp(30px, 3.9vw, 56px); }
.hero__sub { max-width: 30em; margin: 0 0 30px; font-size: clamp(15px, 1.3vw, 18px); }
.hero__sub b { color: var(--ink); font-weight: 700; }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero__meta { font-size: 14px; color: var(--ink-3); }
.hero__meta b { color: var(--ink); }
.hero__meta s { color: var(--ink-4); }

.hero__stage { position: relative; aspect-ratio: 4 / 3; }
.hero__stage .macframe { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); width: 100%; }
.hero__stage .macframe__screen { min-height: 0; aspect-ratio: 16/10; }
/* floating card in hero — animated between corner & center */
.hero__stage .dcard {
  position: absolute; z-index: 5; --w: 392;
  transform-origin: center center;
  transition: left 1.1s cubic-bezier(.62,.01,.2,1), top 1.1s cubic-bezier(.62,.01,.2,1),
              transform 1.1s cubic-bezier(.62,.01,.2,1), box-shadow .7s ease;
}
.hero__stage .dcard.corner { left: 87%; top: 81.6%; transform: translate(-50%,-50%) scale(.38); }
.hero__stage .dcard.center { left: 50%; top: 50%; transform: translate(-50%,-50%) scale(1.02); }
#heroMac { transition: opacity .9s ease, filter .9s ease; }
#heroMac.dim { opacity: .32; filter: blur(1px); }

/* dragged folder in hero/batch */
.dragfolder {
  position: absolute; z-index: 9; width: 56px; height: 44px; pointer-events: none;
  opacity: 0; transition: opacity .3s ease;
}
.dragfolder svg { width: 100%; height: 100%; filter: drop-shadow(0 10px 18px rgba(40,34,24,.25)); }
.dragfolder .badge { position: absolute; top: -8px; right: -8px; background: var(--rec); color:#fff; font:800 11px var(--sans); min-width:20px; height:20px; border-radius:999px; display:grid; place-items:center; padding:0 5px; }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.scroll-hint span { display:block; width: 22px; height: 34px; border-radius: 12px; border: 2px solid var(--ink-4); position: relative; }
.scroll-hint span::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:2px; background: var(--ink-4); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,9px)} 100%{opacity:0} }

/* ---------- Section heads ----------
   Hero keeps the big .display; every other section uses a calmer,
   more harmonious headline so the page reads as one composition. */
.feature__head { max-width: 720px; margin-bottom: 36px; }
.flow .feature__head { margin-bottom: 22px; }
.feature__title { margin-bottom: 18px; }
.feature__desc { color: var(--ink-2); max-width: 38em; }

.feature__title,
.flow .feature__title,
.pitch__head h2,
.buy__title,
.faq h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -.028em;
}
.feature__desc, .pitch__zero { font-size: clamp(16px, 1.25vw, 19px); }

.feature { padding: 48px 0; }

/* ---------- Tabs (sit BELOW the Mac frame, centered) ---------- */
.tabs { display: flex; gap: 12px; margin: 30px auto 0; flex-wrap: wrap; justify-content: center; max-width: 760px; }
.tab {
  position: relative; text-align: left;
  background: rgba(255,255,255,.55); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 15px 24px; cursor: pointer;
  display: flex; flex-direction: column; gap: 3px; min-width: 196px;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.tab:hover { transform: translateY(-2px); }
.tab.is-active { background: #fff; box-shadow: var(--shadow-float); }
.tab__name { font-weight: 700; font-size: 18px; letter-spacing: -.02em; color: var(--ink); }
.tab__hint { font-size: 13px; color: var(--ink-3); }
.tab__bar { position: absolute; left: 0; right: 0; top: 0; height: 3px; border-radius: 0 0 3px 3px; background: var(--rec); transform: scaleX(0); transform-origin: left; }
.tab.is-active .tab__bar { animation: tabfill var(--dur, 9s) linear forwards; }
@keyframes tabfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Feature stage ---------- */
.stagebox { position: relative; }
.feature .macframe { width: 70%; max-width: 760px; margin: 0 0 0 auto; }
/* alternate L-R-L for rhythm: dictate left, record right, batch left */
#feature-dictate .macframe, #feature-batch .macframe { margin-left: 0; margin-right: auto; }
#feature-record .feature__head { margin-left: auto; margin-right: 0; text-align: right; }
#feature-record .feature__desc { margin-left: auto; margin-right: 0; }
.feature .macframe__screen { min-height: 400px; }

/* three-up windows for the Dictate scene */
.winrow { position: absolute; inset: 0; }
.scene-card { position: absolute; z-index: 8; }

/* output chips used in record/batch scenes */
.md {
  font: 500 13px/1.65 var(--mono); color: var(--ink-2);
  white-space: pre-wrap;
}
.md .h { color: var(--ink); font-weight: 700; font-family: var(--sans); }
.md .b { color: var(--rec); }

/* finder list */
.finder { position:absolute; border-radius: 10px; overflow:hidden; background:#fff; box-shadow: 0 12px 30px rgba(40,34,24,.14); border:1px solid rgba(40,34,24,.06); }
.finder__row { display:flex; align-items:center; gap:10px; padding:9px 14px; font:500 13px var(--sans); color:var(--ink-2); border-bottom:1px solid rgba(40,34,24,.04); }
.finder__row .fi { width:18px;height:22px;border-radius:3px;background:linear-gradient(180deg,#cfe0ff,#9bbcf0); flex:0 0 auto; position:relative; }
.finder__row .fi.aud { background:linear-gradient(180deg,#ffd9c2,#ffb38a); }
.ctxmenu { position:absolute; border-radius:10px; background:#fff; box-shadow:0 20px 50px rgba(0,0,0,.22); border:1px solid rgba(0,0,0,.06); padding:6px; min-width:210px; font:500 13px var(--sans); }
.ctxmenu .mi { padding:8px 12px; border-radius:7px; color:var(--ink-2); }
.ctxmenu .mi.hot { background: var(--rec); color:#fff; }
.ctxmenu .sep { height:1px; background:rgba(0,0,0,.07); margin:5px 8px; }

/* ---------- Workflow board (sec 3) ---------- */
.flow { padding: 58px 0 60px; }
.flowboard {
  position: relative;
  display: grid; grid-template-columns: 0.72fr 1fr 1.04fr; gap: 18px;
  align-items: center;
  min-height: 380px;
  padding: 20px 0;
}
.flow-node { position: relative; z-index: 3; }

/* speaker */
.speaker { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.speaker__person {
  width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle at 40% 32%, #fff, #ece6da);
  box-shadow: var(--shadow-float), inset 0 2px 4px rgba(255,255,255,.8);
  display: grid; place-items: center;
}
.speaker__person svg { width: 52px; height: 52px; }
.speaker__roles { display: flex; flex-direction: column; gap: 7px; align-items: center; }
.role-chip {
  font: 700 12px var(--sans); color: var(--ink-2);
  padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.7);
  border: 1px solid var(--hairline); white-space: nowrap;
  opacity: .35; transition: opacity .4s ease, transform .4s ease, color .4s ease;
}
.role-chip.is-on { opacity: 1; transform: scale(1.04); box-shadow: var(--shadow-float); }

/* center column: card with sound flowing in, outputs flowing out */
.flow-center { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.flow-center .dcard { --w: 268; }
.flow-outputs { display: flex; gap: 12px; }
.out-doc {
  width: 64px; height: 80px; border-radius: 8px; background: #fff;
  box-shadow: var(--shadow-float); border: 1px solid var(--hairline);
  padding: 9px 8px; display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(14px) scale(.9);
}
.out-doc .tag { font: 700 9px var(--sans); letter-spacing: .08em; }
.out-doc .ln { height: 3px; border-radius: 2px; background: rgba(40,34,24,.12); }
.out-doc .ln.s { width: 60%; }
.out-doc.md-doc .tag { color: var(--rec); }
.out-doc.aud-doc .tag { color: #3a78d6; }

/* downstream tools */
.tools { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tool {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 15px; border-radius: 14px; background: rgba(255,255,255,.72);
  border: 1px solid var(--hairline); font: 600 14px var(--sans); color: var(--ink);
  opacity: .4; transform: translateX(-8px);
  transition: opacity .45s ease, transform .45s ease, box-shadow .3s ease, background .3s ease;
}
.tool.is-on { opacity: 1; transform: translateX(0); box-shadow: var(--shadow-float); background:#fff; }
.tool__ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; font-weight: 800; font-size: 13px; }
.tool__sub { display:block; font-weight: 500; font-size: 12px; color: var(--ink-3); }

/* connectors (SVG overlay) */
.flow-wires { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: visible; }
.flow-wires path { fill: none; stroke: rgba(40,34,24,.16); stroke-width: 2; }
.flow-wires .dash { stroke-dasharray: 6 8; animation: wire 1.1s linear infinite; }
/* ===== Workflow redesign — flowing curves + real app icons ===== */
.flowboard{ display:block; position:relative; min-height:410px; padding:10px 0; transform:translate(-3%,-34px); }
.flow-wires2{ position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; overflow:visible; }
.flow-wires2 .wire{ fill:none; stroke:rgba(40,34,24,.16); stroke-width:2.8; stroke-linecap:round; }
.flow-wires2 .wire-glow{ fill:none; stroke:#e5402a; stroke-width:3.4; stroke-linecap:round; stroke-dasharray:24 600; animation:flowmove 2.4s linear infinite; }
@keyframes flowmove{ to{ stroke-dashoffset:-622; } }
.fz{ position:absolute; z-index:3; }
.fz-src{ left:0; top:50%; transform:translateY(-50%); width:18%; display:flex; flex-direction:column; align-items:center; gap:16px; }
.src-person{ position:relative; width:90px; height:90px; border-radius:50%; background:radial-gradient(circle at 40% 32%,#fff,#ece6da); box-shadow:var(--shadow-float), inset 0 2px 4px rgba(255,255,255,.8); display:grid; place-items:center; }
.src-person svg{ width:44px; height:44px; }
.flow-wave{ position:absolute; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:2px; height:64px; transform:translateY(-50%); pointer-events:none; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 84%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 84%,transparent); }
.flow-wave b{ flex:1 1 0; min-width:2px; max-width:5px; border-radius:3px; background:var(--rec); opacity:.82; transform-origin:center; animation:wavebar 1.15s ease-in-out infinite; }
@keyframes wavebar{ 0%,100%{transform:scaleY(.45)} 50%{transform:scaleY(1)} }
.src-roles{ display:flex; flex-direction:column; gap:7px; align-items:center; }
.src-files{ display:flex; flex-wrap:wrap; gap:6px; justify-content:center; max-width:160px; }
.file-chip{ font:700 10px var(--mono); letter-spacing:.05em; color:var(--ink-3); background:rgba(255,255,255,.7); border:1px solid var(--hairline); border-radius:7px; padding:4px 8px; }
.fz-rec{ left:50%; top:50%; transform:translate(-50%,-50%); }
.fz-rec .dcard{ --w:285; }
.fz-apps{ right:0; top:50%; transform:translateY(-50%); width:20%; display:flex; flex-direction:column; gap:11px; }
.app{ display:flex; align-items:center; gap:12px; padding:11px 14px; border-radius:14px; background:rgba(255,255,255,.72); border:1px solid var(--hairline); box-shadow:0 1px 2px rgba(40,34,24,.05); opacity:.42; transform:translateX(12px); transition:opacity .5s ease, transform .5s ease, box-shadow .35s ease, background .35s ease; }
.app.is-on{ opacity:1; transform:translateX(0); background:#fff; box-shadow:var(--shadow-float); }
.app__ico{ width:36px; height:36px; border-radius:9px; background:#fff; box-shadow:inset 0 0 0 1px rgba(40,34,24,.06), 0 1px 3px rgba(40,34,24,.12); display:grid; place-items:center; flex:0 0 auto; }
.app__ico img{ width:24px; height:24px; object-fit:contain; }
.app__txt{ font:600 14px var(--sans); color:var(--ink); line-height:1.12; }
.app__sub{ display:block; font-weight:500; font-size:12px; color:var(--ink-3); margin-top:2px; }
@media (max-width:860px){ .flow-wires2{display:none} .fz{position:static;transform:none;width:auto} .flowboard{display:flex;flex-direction:column;align-items:center;gap:26px} .flow-wave{display:none} }

@keyframes wire { to { stroke-dashoffset: -28; } }

/* sound waves into the card */
.waves { position: absolute; left: 0; right: 0; top: 50%; height: 80px; transform: translateY(-50%); z-index: 1; pointer-events: none; }

/* ---------- Pitch (sec 4) ---------- */
.pitch { padding: 36px 0 44px; }
.pitch__head { text-align: center; margin-bottom: 28px; }
.pitch__head h2 { margin-bottom: 20px; }
.pitch__head .amt { color: var(--ink); position: relative; }
.pitch__zero { display: inline-flex; align-items: center; gap: 14px; font-size: clamp(18px,2vw,25px); font-weight: 600; color: var(--ink-2); }
.pitch__zero .circle {
  position: relative; font-weight: 800; color: var(--ink); padding: 4px 14px; margin-right: 4px;
}
.pitch__zero .circle::after {
  content: ""; position: absolute; inset: -11px -14px -13px -16px;
  border: 3px solid var(--rec); border-radius: 50%;
  transform: rotate(-7deg) scale(.6); opacity: 0;
  transition: transform .6s cubic-bezier(.2,1.2,.3,1), opacity .4s ease;
}
.pitch__zero.is-circled .circle::after { transform: rotate(-7deg) scale(1); opacity: 1; }
.pitch__zero .tick { color: #2ca15b; font-weight: 800; }

.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.compare__col { position: relative; padding: 16px 40px; min-height: 340px; }
.compare__label { font: 700 15px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.compare__label--us { color: var(--ink); }
.compare__divider { width: 1px; background: linear-gradient(180deg, transparent, var(--hairline), transparent); }

.compare__others { display: flex; flex-direction: column; }
.bubbles { position: relative; flex: 1; min-height: 340px; overflow: hidden; -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 12%, #000 66%, transparent 100%); mask-image: linear-gradient(to top, transparent 0%, #000 12%, #000 66%, transparent 100%); }
.bubble {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 132px; height: 132px; border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(255,255,255,.97), rgba(238,232,222,.92));
  box-shadow: var(--shadow-float), inset 0 2px 5px rgba(255,255,255,.9), inset 0 -8px 16px rgba(120,104,74,.12);
  justify-content: center; color: var(--ink); padding: 10px; text-align: center;
  transform: translate(-50%, 0);
}
.bubble__logo { width: 38px; height: 38px; border-radius: 10px; object-fit: contain; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.16); }
.bubble__name { font-size: 12.5px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-2); line-height: 1.05; max-width: 112px; }
.bubble b { font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.bubble b i { font-size: 11px; font-weight: 600; font-style: normal; color: var(--ink-3); margin-left: 1px; }
.compare__note { font-size: 12px; color: var(--ink-4); margin-top: 12px; max-width: 340px; line-height: 1.45; }
.onetime { margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 16px; }
.onetime__lead { font-size: 15px; font-weight: 600; color: var(--ink-3); }
.onetime__item { font-size: 16px; font-weight: 700; color: var(--ink-2); background: rgba(40,34,24,.05); padding: 8px 15px; border-radius: 999px; }
.onetime__item b { font-weight: 800; }
.onetime__item--us { color: #fff; background: var(--rec); box-shadow: 0 4px 14px var(--rec-glow); }
.hero__title .rotator__word { white-space: nowrap; }
.compare__total { font: 800 34px var(--sans); letter-spacing: -.03em; color: var(--ink); margin-top: 8px; }
.compare__total span { font-size: 18px; font-weight: 600; color: var(--ink-3); }

.compare__us { display: flex; flex-direction: column; }
.compare__card { margin: 12px 0 16px; }
.checks { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.checks li { display: flex; align-items: center; gap: 14px; font-size: clamp(14px,1.2vw,16px); font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.ck { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(44,161,91,.12); position: relative; }
.ck::after {
  content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px;
  border: solid #2ca15b; border-width: 0 2.2px 2.2px 0; transform: rotate(45deg) scale(0); transform-origin: center;
}
.ck.is-on::after { animation: checkpop .5s cubic-bezier(.2,1.4,.4,1) forwards; }
@keyframes checkpop { to { transform: rotate(45deg) scale(1); } }
.compare__price { font: 800 34px var(--sans); letter-spacing: -.03em; color: var(--ink); margin-top: 8px; }
.compare__price s { font-size: 20px; font-weight: 600; color: var(--ink-4); margin-right: 6px; }
.compare__price b { color: var(--rec); }
.compare__price span { font-size: 20px; font-weight: 600; color: var(--ink-3); }

/* ---------- Buy (sec 5) ---------- */
.buy { padding: 24px 0 56px; }
.buy__head { text-align: left; margin-bottom: 26px; }
.buy__title { line-height: 1.1; }
.buy__price { color: var(--rec); }
.rotator { display: inline-block; position: relative; min-width: 1em; vertical-align: bottom; }
.rotator__word { display: inline-block; font-weight: 800; transition: opacity .4s ease, transform .4s ease; }

.buy__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.buy__stage { position: relative; aspect-ratio: 4/3; }
.buy__stage .macframe { position: absolute; inset: 6% 0 auto; width: 100%; }
.buy__stage .macframe__screen { min-height: 0; aspect-ratio: 16/10; }
.buy__stage .dcard {
  position: absolute; z-index: 5; --w: 320;
  transform-origin: center center;
  transition: left 1.1s cubic-bezier(.62,.01,.2,1), top 1.1s cubic-bezier(.62,.01,.2,1),
              transform 1.1s cubic-bezier(.62,.01,.2,1), box-shadow .7s ease;
}
.buy__stage .dcard.corner { left: 86%; top: 82%; transform: translate(-50%,-50%) scale(.42); }
.buy__stage .dcard.center { left: 48%; top: 47%; transform: translate(-50%,-50%) scale(1); }
#buyMac { transition: opacity .9s ease, filter .9s ease; }
#buyMac.dim { opacity: .3; filter: blur(1px); }

/* license — paper lifetime-license certificate */
.license {
  --perf: 92px;               /* y of the ticket perforation */
  position: relative; background: linear-gradient(180deg, #fffefb, #fdfbf5);
  border-radius: 18px;
  padding: 26px 32px 28px; overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(40,34,24,.07);
  /* real ticket notches: punch both edges out at the perforation line */
  -webkit-mask:
    radial-gradient(circle 11px at 0 var(--perf), transparent 97%, #000 100%),
    radial-gradient(circle 11px at 100% var(--perf), transparent 97%, #000 100%);
  -webkit-mask-composite: source-in;
  mask:
    radial-gradient(circle 11px at 0 var(--perf), transparent 97%, #000 100%),
    radial-gradient(circle 11px at 100% var(--perf), transparent 97%, #000 100%);
  mask-composite: intersect;
}
.license__head { display: flex; align-items: center; gap: 12px; height: 40px; margin-bottom: 44px; }
.license__mark { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 8px; background: var(--appicon) center / cover no-repeat; box-shadow: 0 1px 3px rgba(40,34,24,.18); }
.license__id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.license__title { font-size: 17px; font-weight: 800; letter-spacing: -.01em; line-height: 1; color: var(--ink); }
.license__badge {
  margin-left: auto;
  font: 800 11px var(--sans); letter-spacing: .13em; text-transform: uppercase;
  color: var(--rec); text-align: center; line-height: 1;
  padding: 8px 12px; border-radius: 7px;
  border: 2px solid rgba(229,64,42,.8);
  box-shadow: inset 0 0 0 2.5px #fffefb, inset 0 0 0 4px rgba(229,64,42,.45);
  background: rgba(229,64,42,.045);
  transform: rotate(-6deg);
}
.license__perf {
  position: absolute; left: 14px; right: 14px; top: calc(var(--perf) - 1px); height: 0;
  border-top: 2px dashed rgba(40,34,24,.18);
}
.license__price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 0 0 22px; }
.license__amt { font: 800 54px var(--sans); letter-spacing: -.04em; color: var(--ink); }
.license__amt sup { font-size: 24px; font-weight: 700; vertical-align: super; }
.license__was { font-size: 21px; color: var(--ink-4); font-weight: 600; }
.license__label { font: 700 11px var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.seats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 24px; }
.seat {
  position: relative;
  background: rgba(40,34,24,.04); border: 1.5px solid transparent; border-radius: 12px;
  padding: 11px 6px 9px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  transition: all .2s ease;
}
.seat b { font: 800 20px var(--mono); letter-spacing: -.02em; }
.seat span { font-size: 12px; font-weight: 600; color: var(--ink-3); }
.seat:hover { background: rgba(40,34,24,.07); }
.seat.is-active { background: #fff; border-color: var(--ink); box-shadow: var(--shadow-float); }
.seat.is-active::after {
  content: ""; position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #ff6a52, var(--rec) 72%);
  box-shadow: 0 0 6px var(--rec-glow);
}
.license__feats { list-style: none; margin: 0 0 26px; padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; background: rgba(40,34,24,.03); border-radius: 12px; }
.license__feats li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.license__feats .ck { width: 20px; height: 20px; }
.license__feats .ck::after { left: 6px; top: 4px; width: 5px; height: 9px; border-width: 0 2px 2px 0; }
.license__fine { text-align: center; font-size: 12.5px; color: var(--ink-3); margin: 12px 0 0; }

/* ---------- FAQ ---------- */
.faq { padding: 54px 0 76px; }
.faq__wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq__head { position: sticky; top: 110px; margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font: 600 18px var(--sans); letter-spacing: -.01em; color: var(--ink); }
.faq__q .pm { flex: 0 0 auto; width: 24px; height: 24px; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content:""; position:absolute; background: var(--ink-3); border-radius: 2px; transition: transform .3s ease; }
.faq__q .pm::before { left: 4px; right: 4px; top: 11px; height: 2px; }
.faq__q .pm::after { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.faq__item.is-open .pm::after { transform: scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq__a p { margin: 0 0 22px; padding-right: 30px; font-size: 16px; line-height: 1.6; color: var(--ink-2); }

/* ---------- Footer ---------- */
.foot { padding: 40px 0 60px; border-top: 1px solid var(--hairline); margin-top: 40px; }
.foot__row { display: flex; align-items: center; justify-content: space-between; }
.foot__copy { font-size: 13px; color: var(--ink-3); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Waitlist modal ---------- */
.wl { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.wl[hidden] { display: none; }
.wl__backdrop { position: absolute; inset: 0; background: rgba(28,24,20,.38); backdrop-filter: blur(6px); }
.wl__card {
  position: relative; width: min(430px, calc(100vw - 48px));
  background: linear-gradient(180deg,#fffefb,#fdfbf5);
  border-radius: 18px; border: 1px solid rgba(40,34,24,.07);
  box-shadow: var(--shadow-deep);
  padding: 30px 30px 24px; text-align: center;
  animation: wlpop .35s cubic-bezier(.2,1.2,.36,1);
}
@keyframes wlpop { from { transform: translateY(14px) scale(.96); opacity: 0; } }
.wl__x {
  position: absolute; top: 12px; right: 14px; width: 30px; height: 30px; border-radius: 50%;
  border: none; background: rgba(40,34,24,.06); color: var(--ink-3);
  font: 400 17px/30px var(--sans); cursor: pointer;
}
.wl__x:hover { background: rgba(40,34,24,.11); color: var(--ink); }
.wl__mark { display: inline-block; width: 44px; height: 44px; border-radius: 10px; background: var(--appicon) center / cover no-repeat; box-shadow: 0 2px 6px rgba(40,34,24,.2); margin-bottom: 14px; }
.wl__title { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 8px; color: var(--ink); }
.wl__sub { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0 0 18px; }
.wl__form { display: flex; gap: 10px; }
.wl__form[hidden], .wl__fine[hidden] { display: none; }
.wl__input {
  flex: 1; min-width: 0; height: 46px; border-radius: 12px;
  border: 1.5px solid rgba(40,34,24,.14); background: #fff;
  padding: 0 14px; font: 500 15px var(--sans); color: var(--ink); outline: none;
  transition: border-color .15s ease;
}
.wl__input:focus { border-color: var(--ink); }
.wl__input.is-bad { border-color: var(--rec); }
.wl__submit { height: 46px; padding: 0 18px; border-radius: 12px; white-space: nowrap; border: none; cursor: pointer; }
.wl__fine { font-size: 12px; color: var(--ink-3); margin: 12px 0 0; }
.wl__done { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 6px 0 4px; font-size: 14px; color: var(--ink-2); }
.wl__done[hidden] { display: none; }
.wl__done b { font-size: 17px; color: var(--ink); }
.wl__done .ck { width: 34px; height: 34px; margin-bottom: 4px; }
.wl__done .ck::after { left: 11px; top: 7px; width: 8px; height: 15px; border-width: 0 3px 3px 0; }

/* ---------- Responsive ---------- */
/* Scale the whole composition up on larger displays so proportions
   match the 13" reference (~1450px viewport), which stays untouched.
   Each step maps the band's midpoint back to the reference width. */
@media (min-width: 1560px) { body { zoom: 1.12; } :root { --pagezoom: 1.12; } }
@media (min-width: 1700px) { body { zoom: 1.22; } :root { --pagezoom: 1.22; } }
@media (min-width: 1850px) { body { zoom: 1.33; } :root { --pagezoom: 1.33; } }
@media (min-width: 2000px) { body { zoom: 1.45; } :root { --pagezoom: 1.45; } }
@media (min-width: 2200px) { body { zoom: 1.59; } :root { --pagezoom: 1.59; } }
@media (min-width: 2400px) { body { zoom: 1.76; } :root { --pagezoom: 1.76; } }
@media (min-width: 2700px) { body { zoom: 1.97; } :root { --pagezoom: 1.97; } }
@media (min-width: 3000px) { body { zoom: 2.2; } :root { --pagezoom: 2.2; } }
/* vh-under-zoom differs per engine: Chrome resolves 100vh against the
   physical viewport (needs the /zoom calc), Safari against the zoomed one
   (calc undershoots -> the px floor takes over, ~= 13" reference height). */
@media (min-width: 1560px) {
  .hero { min-height: max(820px, calc(100vh / var(--pagezoom, 1))); }
}

@media (max-width: 920px) {
  .hero__grid, .buy__grid, .faq__wrap { grid-template-columns: 1fr; gap: 40px; }
  .compare { grid-template-columns: 1fr; }
  .compare__divider { display: none; }
  .flowboard { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
  .hero { padding-top: 110px; }
}
