/* ============================================================
   DocuCut — marketing site
   Dark, cinematic, single light-blue accent from the brand mark.
   ============================================================ */

:root {
  /* Brand blues (from the DocuCut lockup) */
  --blue-300: #9bdcff;
  --blue-400: #73cbfb;
  --blue-500: #4fb7f4;
  --blue-600: #3a9fdc;
  --accent: #5bb8f5;

  /* Cool near-black surfaces */
  --bg: #070b12;
  --bg-2: #0a0f18;
  --panel: #0e151f;
  --panel-2: #121b27;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #eef4fb;
  --muted: #9bacbf;
  --dim: #647387;

  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 0 1px rgba(91, 184, 245, 0.18), 0 24px 70px -24px rgba(79, 183, 244, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient backdrop */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1100px 640px at 82% 18%, rgba(79, 183, 244, 0.09), transparent 62%),
    radial-gradient(900px 520px at 0% 22%, rgba(58, 159, 220, 0.06), transparent 58%);
  pointer-events: none; z-index: 0;
}

h1, h2, h3, h4, h5 { font-family: "Outfit", sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: #fff; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85em;
  background: rgba(91, 184, 245, 0.12);
  color: var(--blue-300);
  padding: 0.12em 0.45em;
  border-radius: 6px;
  letter-spacing: 0;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============ BUTTONS ============ */
.btn {
  --pad-y: 13px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .2s var(--ease);
  white-space: nowrap; user-select: none;
}
.btn .ico { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn-sm { --pad-y: 9px; --pad-x: 16px; font-size: 14px; }
.btn-lg { --pad-y: 16px; --pad-x: 30px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-500));
  color: #04243a;
  box-shadow: 0 10px 30px -8px rgba(79, 183, 244, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(79, 183, 244, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-strong);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(91, 184, 245, 0.5); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============ ANNOUNCEMENT ============ */
.announce {
  background: linear-gradient(90deg, rgba(79, 183, 244, 0.16), rgba(58, 159, 220, 0.12));
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 60;
  font-size: 14px;
}
.announce-inner { max-width: var(--maxw); margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; color: var(--text); }
.announce-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 4px rgba(79, 183, 244, 0.2); animation: pulse 2.4s var(--ease) infinite; }
.announce-link { color: var(--blue-300); font-weight: 600; }
.announce-link:hover { color: #fff; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============ NAV ============ */
.nav { position: sticky; top: 0; z-index: 50; padding: 14px 24px; transition: padding .3s var(--ease); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px 14px 9px 18px;
  display: flex; align-items: center; gap: 18px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(10, 15, 24, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled .nav-inner { background: rgba(10, 15, 24, 0.85); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.nav-brand { flex-shrink: 0; }
.nav-logo { height: 26px; width: auto; }
.nav-links { display: flex; gap: 26px; margin-left: 8px; margin-right: auto; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; position: relative; transition: color .2s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--blue-400); transition: width .25s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 8px; align-items: center; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: 6px; margin: 10px 24px 0; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(10, 15, 24, 0.95); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.nav-mobile a:not(.btn) { padding: 10px 8px; color: var(--muted); border-radius: 8px; }
.nav-mobile a:not(.btn):hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.nav-mobile .btn { margin-top: 4px; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ============ HERO ============ */
.hero { position: relative; padding: 80px 0 70px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(closest-side, rgba(79, 183, 244, 0.22), rgba(79, 183, 244, 0.06) 55%, transparent 75%);
  filter: blur(20px); pointer-events: none; z-index: 0;
  animation: floatGlow 9s ease-in-out infinite;
}
@keyframes floatGlow { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; } 50% { transform: translateX(-50%) translateY(24px); opacity: 1; } }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-copy { max-width: 620px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  font-family: "Outfit", sans-serif; color: var(--blue-300);
  background: rgba(91, 184, 245, 0.10); border: 1px solid rgba(91, 184, 245, 0.28);
  margin-bottom: 24px;
}
.badge-pr { flex-shrink: 0; }

.hero-title { font-size: clamp(38px, 6vw, 70px); font-weight: 800; margin-bottom: 22px; }
.grad { background: linear-gradient(120deg, var(--blue-300), var(--blue-500) 60%, var(--blue-600)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-meta { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }
.hero-meta li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--dim); }
.check { width: 16px; height: 16px; border-radius: 50%; background: rgba(91, 184, 245, 0.15); position: relative; flex-shrink: 0; }
.check::after { content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 8px; border: solid var(--blue-400); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ============ HERO DEMO PANEL ============ */
.hero-demo { position: relative; }
.hero-demo::before {
  content: ""; position: absolute; inset: -30px -10px; z-index: -1;
  background: radial-gradient(closest-side, rgba(79, 183, 244, 0.18), transparent 70%); filter: blur(10px);
}
.panel {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-7deg) rotateX(2deg);
  transition: transform .6s var(--ease);
  max-width: 460px; margin-left: auto;
}
.hero-demo:hover .panel { transform: perspective(1600px) rotateY(-2deg) rotateX(0.5deg); }

.panel-titlebar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.panel-dots { display: flex; gap: 6px; }
.panel-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.panel-dots i:first-child { background: #ff5f57; } .panel-dots i:nth-child(2) { background: #febc2e; } .panel-dots i:nth-child(3) { background: #28c840; }
.panel-title { display: flex; align-items: center; gap: 7px; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13.5px; margin: 0 auto; color: var(--text); }
.panel-gear { color: var(--dim); font-size: 14px; }

.panel-tabs { display: flex; padding: 10px 10px 0; gap: 6px; }
.ptab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px; font-size: 12.5px; font-weight: 600; font-family: "Outfit", sans-serif;
  background: none; border: 0; border-radius: 9px 9px 0 0; color: var(--dim); cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.ptab svg { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }
.ptab.active { color: var(--blue-300); background: rgba(91, 184, 245, 0.08); }

.panel-body { position: relative; overflow: hidden; min-height: 312px; transition: height .32s var(--ease); }
.panel-view { padding: 16px; position: absolute; top: 0; left: 0; right: 0; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .26s var(--ease), transform .32s var(--ease); }
.panel-view.active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .panel-body { transition: none; } .panel-view { transition: none; } }

.panel-run { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: 10px; background: linear-gradient(180deg, rgba(91, 184, 245, 0.16), rgba(91, 184, 245, 0.06)); border: 1px solid rgba(91, 184, 245, 0.22); font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13.5px; }
.panel-run-go { font-size: 12px; padding: 4px 12px; border-radius: 999px; background: var(--blue-500); color: #04243a; }
.panel-progress { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.07); margin: 14px 0; overflow: hidden; }
.panel-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue-400), var(--blue-600)); border-radius: 4px; }

.select-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.select-item { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); opacity: 0; transform: translateX(12px); }
.select-item.show { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease); }
.select-score { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 14px; color: #04243a; background: linear-gradient(180deg, var(--blue-400), var(--blue-500)); }
.select-item.mid .select-score { background: linear-gradient(180deg, #6f7e92, #55657a); color: #fff; }
.select-body { min-width: 0; flex: 1; }
.select-quote { font-size: 12.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.select-meta { font-size: 11px; color: var(--dim); display: flex; gap: 8px; margin-top: 2px; }
.select-cat { color: var(--blue-300); }

.panel-runtime { display: flex; align-items: center; justify-content: space-between; font-family: "Outfit", sans-serif; font-size: 13.5px; color: var(--muted); }
.panel-runtime strong { color: #fff; font-size: 18px; }
.panel-slider { position: relative; height: 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.08); margin: 14px 0 18px; }
.panel-slider-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--blue-400), var(--blue-600)); width: 40%; }
.panel-slider-thumb { position: absolute; top: 50%; left: 40%; width: 16px; height: 16px; border-radius: 50%; background: #fff; transform: translate(-50%, -50%); box-shadow: 0 2px 8px rgba(0,0,0,.4); }
.beat-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.beat-row { display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateX(12px); }
.beat-row.show { opacity: 1; transform: none; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.beat-tag { flex-shrink: 0; width: 88px; font-family: "Outfit", sans-serif; font-size: 11px; font-weight: 600; color: var(--blue-300); }
.beat-bar { height: 16px; border-radius: 5px; background: linear-gradient(90deg, rgba(91, 184, 245, 0.7), rgba(58, 159, 220, 0.45)); border: 1px solid rgba(91, 184, 245, 0.3); min-width: 8px; }

.panel-caption { text-align: center; font-size: 12.5px; color: var(--dim); margin-top: 16px; }

/* ===== Hero morphing stage: portrait plugin → landscape timeline ===== */
.hero-stage { position: relative; width: 100%; max-width: 560px; height: 500px; margin-left: auto; }
.hpanel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column;
  width: 64%; height: 464px;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-strong); border-radius: 18px;
  box-shadow: var(--shadow-soft), var(--shadow-glow); overflow: hidden;
  transition: width .7s var(--ease), height .7s var(--ease);
}
.hpanel.landscape { width: 100%; height: 360px; }
.hpanel-bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); flex-shrink: 0; }
.hpanel-bar .panel-title { margin: 0; }
.hpanel-tab { margin-left: auto; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 11.5px; color: var(--blue-300); background: rgba(91, 184, 245, 0.1); border: 1px solid rgba(91, 184, 245, 0.28); padding: 3px 11px; border-radius: 999px; white-space: nowrap; transition: color .3s var(--ease); }
.hpanel-stage { position: relative; flex: 1; }
.hlayer { position: absolute; inset: 0; padding: 22px; transition: opacity .4s var(--ease); }
.hlayer-timeline { opacity: 0; pointer-events: none; }
.hpanel.landscape .hlayer-controls { opacity: 0; pointer-events: none; }
.hpanel.landscape .hlayer-timeline { opacity: 1; }
.hctl-hint { font-size: 12px; color: var(--blue-300); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.hctl-hint::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 4px rgba(79, 183, 244, 0.18); animation: pulse 1.4s var(--ease) infinite; }
.hctl-rows { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.hctl-rows i { display: block; height: 30px; border-radius: 8px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line); }
.htl { position: absolute; inset: 0; display: none; padding: 0 28px; }
.htl.on { display: block; }
.htl-selects.on, .htl-story.on { display: flex; flex-direction: column; justify-content: center; }
.htl-selects .prt-ruler { margin: 0 0 8px 34px; }
.htl-story.assembled .storyasm-stage .sbeat { opacity: 1; transform: none; }
@media (max-width: 1024px) { .hero-stage { margin: 0 auto; } }
@media (prefers-reduced-motion: reduce) { .hpanel { transition: none; } .hlayer { transition: none; } }
/* phones: shorter panel + tighter timeline so beats aren't tall & cramped
   (selectors scoped to the hero so they out-specify the feature-section rules) */
@media (max-width: 520px) {
  .hero-stage { height: 356px; }
  .hpanel { width: 82%; height: 340px; }
  .hpanel.landscape { height: 230px; }
  /* tighter bar so the "Story Builder" tab is never clipped */
  .hpanel-bar { padding: 9px 11px; gap: 7px; }
  .hpanel-tab { font-size: 10px; padding: 3px 9px; }
  .htl { padding: 0 14px; }
  .htl-story .storyasm-stage { height: 62px; gap: 4px; }
  .htl-story .sbeat { padding: 4px 3px; }
  .htl-story .sbeat span { font-size: 8.5px; line-height: 1.04; overflow-wrap: break-word; word-break: normal; hyphens: auto; }
  .htl .prt-track { width: 22px; }
  .htl .prt-lane { height: 38px; }
  .htl-selects .prt-ruler { margin-left: 30px; }
  /* clip score + label fit inside the narrow lanes — scoped so they out-specify the base rules */
  .htl .prt-sel { gap: 2px; padding: 0 4px; }
  .htl .prt-score { font-size: 8px; padding: 1px 3px; }
  .htl .prt-clip-label { font-size: 8.5px; }
  .feature-visual .prt-sel { gap: 3px; padding: 0 5px; }
  .feature-visual .prt-score { font-size: 9px; padding: 1px 3px; }
  .feature-visual .prt-clip-label { font-size: 9.5px; }
  /* story beats wrap instead of truncating */
  .storyasm .storyasm-stage { gap: 5px; }
  /* equal-width beats on phones so short labels (Hook, Setup) don't break mid-word */
  .storyasm-stage .sbeat { padding: 4px 3px; flex-grow: 1; }
  .storyasm-stage .sbeat span { font-size: 9px; line-height: 1.05; overflow-wrap: break-word; word-break: normal; hyphens: auto; }
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 16px; font-family: "Outfit", sans-serif; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); }
.section-lead { color: var(--muted); margin-top: 18px; font-size: 17px; }

/* ============ FEATURES ============ */
.features { padding: 30px 0 110px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-num { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 14px; color: var(--blue-500); letter-spacing: 0.1em; }
.feature-text h3 { font-size: clamp(24px, 3.2vw, 34px); margin: 14px 0 18px; }
.feature-text p { color: var(--muted); margin-bottom: 22px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ticks li { display: flex; align-items: flex-start; gap: 11px; color: var(--text); font-size: 15.5px; }
.ticks li::before { content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: rgba(91, 184, 245, 0.14); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235bb8f5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }

/* feature visuals */
.feature-text, .feature-visual { min-width: 0; }
.feature-visual { position: relative; }
.vcard { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-soft); }
.vcard-head { display: flex; align-items: center; gap: 9px; font-family: ui-monospace, monospace; font-size: 12.5px; color: var(--blue-300); margin-bottom: 16px; letter-spacing: 0.02em; }
.vcard-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 4px rgba(79,183,244,.15); }

/* feature chips — make the two features unmistakable */
.feature-chip { display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px 6px 7px; border-radius: 999px; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; color: var(--blue-300); background: rgba(91, 184, 245, 0.1); border: 1px solid rgba(91, 184, 245, 0.28); margin-bottom: 18px; letter-spacing: 0.01em; }
.feature-chip-n { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #04243a; background: linear-gradient(180deg, var(--blue-400), var(--blue-500)); }

/* flow connector between the two features */
.feature-flow { display: flex; align-items: center; gap: 18px; max-width: 560px; margin: 4px auto 60px; }
.feature-flow-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.feature-flow-label { font-family: "Outfit", sans-serif; font-weight: 500; font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }

/* ===== Feature 1 visual — Premiere timeline pulling selects ===== */
.prt { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-soft); }
.prt-head { display: flex; align-items: center; gap: 9px; font-family: ui-monospace, monospace; font-size: 12.5px; color: var(--blue-300); margin-bottom: 14px; letter-spacing: 0.02em; }
.prt-tc { margin-left: auto; color: var(--dim); font-size: 11.5px; }
.prt-ruler { display: flex; height: 12px; margin: 0 0 8px 34px; }
.prt-ruler i { flex: 1; border-left: 1px solid var(--line); }
.prt-ruler i:last-child { border-right: 1px solid var(--line); }
.prt-rows { display: flex; flex-direction: column; gap: 10px; }
.prt-row { display: flex; align-items: stretch; gap: 8px; }
.prt-track { width: 26px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: ui-monospace, monospace; font-size: 10px; color: var(--dim); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: 5px; }
.prt-lane { position: relative; flex: 1; height: 44px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.prt-clip { position: absolute; }
.prt-video, .prt-audio { left: 0; right: 0; top: 2px; bottom: 2px; border-radius: 5px; overflow: hidden; display: flex; align-items: center; }
.prt-video { background: linear-gradient(180deg, #37506b, #273a50); border: 1px solid rgba(255, 255, 255, 0.12); }
.prt-film { position: absolute; top: 0; left: 0; right: 0; height: 7px; background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 4px, transparent 4px 9px); opacity: 0.45; }
.prt-video-label { position: relative; z-index: 1; font-family: "Inter", sans-serif; font-weight: 600; font-size: 11px; color: rgba(255, 255, 255, 0.85); padding-left: 10px; }
.prt-audio { background: linear-gradient(180deg, #2f6f50, #21503a); border: 1px solid rgba(255, 255, 255, 0.1); }
.prt-wave { position: absolute; inset: 5px 8px; background: repeating-linear-gradient(90deg, rgba(173, 240, 200, 0.65) 0 2px, transparent 2px 5px); -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 5px); opacity: 0.5; }
/* source highlights on the interview track */
.prt-src { position: absolute; top: 2px; bottom: 2px; border-radius: 4px; background: linear-gradient(180deg, rgba(91, 184, 245, 0.5), rgba(58, 159, 220, 0.32)); border: 1px solid rgba(115, 203, 251, 0.7); box-shadow: 0 0 14px rgba(91, 184, 245, 0.55); opacity: 0; transition: opacity .35s var(--ease); }
.prt-src.flash { opacity: 1; }
/* the selects that get lifted up to V2 */
.prt-sel { top: 2px; bottom: 2px; border-radius: 5px; background: linear-gradient(180deg, var(--blue-400), var(--blue-500)); border: 1px solid rgba(255, 255, 255, 0.3); display: flex; align-items: center; gap: 5px; padding: 0 7px; overflow: hidden; box-shadow: 0 8px 18px -6px rgba(79, 183, 244, 0.7); opacity: 0; transform: translateY(56px) scaleX(0.92); transition: opacity .5s var(--ease), transform .6s var(--ease); }
.prt-sel.in { opacity: 1; transform: translateY(0) scaleX(1); }
.prt-score { flex-shrink: 0; font-family: "Outfit", sans-serif; font-weight: 800; font-size: 11px; color: #04243a; background: rgba(255, 255, 255, 0.9); border-radius: 4px; padding: 1px 5px; }
.prt-clip-label { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 10.5px; color: #04243a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== Feature 2 visual — selects arranging into the story ===== */
.storyasm { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-soft); }
.storyasm-stage { display: flex; gap: 11px; height: 92px; margin: 14px 0 8px; }
.sbeat { flex-grow: var(--w); flex-basis: 0; min-width: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 6px; text-align: center; background: linear-gradient(180deg, rgba(91, 184, 245, 0.82), rgba(58, 159, 220, 0.5)); border: 1px solid rgba(115, 203, 251, 0.35); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); opacity: 0; transition: opacity .5s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i) * 70ms); }
.sbeat span { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 10px; line-height: 1.12; color: #fff; overflow: hidden; }
.storyasm-stage .sbeat:nth-child(1) { transform: translate(-28px, -26px) rotate(-8deg) scale(0.85); }
.storyasm-stage .sbeat:nth-child(2) { transform: translate(22px, -38px) rotate(7deg) scale(0.9); }
.storyasm-stage .sbeat:nth-child(3) { transform: translate(-18px, 30px) rotate(5deg) scale(0.88); }
.storyasm-stage .sbeat:nth-child(4) { transform: translate(30px, -22px) rotate(-6deg) scale(0.92); }
.storyasm-stage .sbeat:nth-child(5) { transform: translate(-32px, 30px) rotate(8deg) scale(0.86); }
.storyasm-stage .sbeat:nth-child(6) { transform: translate(24px, 26px) rotate(-5deg) scale(0.9); }
.storyasm-stage .sbeat:nth-child(7) { transform: translate(-22px, -30px) rotate(6deg) scale(0.88); }
.storyasm.assembled .sbeat { opacity: 1; transform: none; }
.storyasm-axis { display: flex; justify-content: space-between; font-size: 11px; color: var(--dim); font-family: ui-monospace, monospace; }
@media (prefers-reduced-motion: reduce) {
  .prt-sel { opacity: 1; transform: none; }
  .sbeat { opacity: 1; transform: none; transition: none; }
}

/* ============ STORY (interactive) ============ */
.story { padding: 110px 0; position: relative; overflow: hidden; }
.story-glow { position: absolute; bottom: -200px; left: 20%; width: 700px; height: 500px; background: radial-gradient(closest-side, rgba(58, 159, 220, 0.16), transparent 70%); filter: blur(30px); pointer-events: none; }
.story-demo { max-width: 920px; margin: 0 auto; background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-soft); }
.story-controls { margin-bottom: 30px; }
.story-runtime-label { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.story-runtime-label span { font-family: "Outfit", sans-serif; font-weight: 600; color: var(--muted); }
.story-runtime-label strong { font-family: "Outfit", sans-serif; font-size: 30px; color: #fff; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.1); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-500); box-shadow: 0 4px 14px rgba(79, 183, 244, 0.6); cursor: grab; transition: transform .15s var(--ease); }
input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-500); box-shadow: 0 4px 14px rgba(79, 183, 244, 0.6); cursor: grab; }
input[type="range"]:focus-visible { box-shadow: 0 0 0 3px rgba(91, 184, 245, 0.4); }
.story-marks { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; color: var(--dim); font-family: ui-monospace, monospace; }

.beats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.beat { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 16px; }
.beat-label { display: flex; align-items: center; gap: 10px; }
.beat-index { width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 12px; color: var(--blue-300); background: rgba(91, 184, 245, 0.1); border: 1px solid rgba(91, 184, 245, 0.22); }
.beat-name { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14.5px; color: var(--text); }
.beat-track { height: 26px; border-radius: 8px; background: rgba(255, 255, 255, 0.04); overflow: hidden; }
.beat-fill { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, var(--blue-400), var(--blue-600)); width: 0; transition: width .3s var(--ease); box-shadow: inset 0 1px 0 rgba(255,255,255,.2); }
.beat-time { font-family: ui-monospace, monospace; font-size: 13px; color: var(--muted); min-width: 48px; text-align: right; font-variant-numeric: tabular-nums; }

/* ============ BUILT FOR (animated, looping) ============ */
.builtfor { padding: 120px 0; position: relative; overflow: hidden; text-align: center; }
.builtfor-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 840px; height: 380px; background: radial-gradient(closest-side, rgba(79, 183, 244, 0.15), transparent 70%); filter: blur(28px); pointer-events: none; }
.builtfor-inner { position: relative; z-index: 1; }
.builtfor-title { font-size: clamp(30px, 5.4vw, 60px); line-height: 1.14; font-weight: 800; letter-spacing: -0.02em; max-width: 920px; margin: 0 auto; }
.bw { display: inline-block; opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .65s var(--ease); }
.bw.show { opacity: 1; transform: none; }
.bw.amp { color: var(--dim); }
.builtfor .grad { background-size: 220% 100%; animation: shimmer 4.5s linear infinite; }
@keyframes shimmer { from { background-position: 0% center; } to { background-position: 220% center; } }
@media (prefers-reduced-motion: reduce) { .bw { opacity: 1; transform: none; transition: none; } .builtfor .grad { animation: none; } }

/* ============ DOWNLOAD ============ */
.download { padding: 90px 0; }
.download-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; padding: 50px; border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(135deg, rgba(91, 184, 245, 0.08), rgba(10,15,24,.4)); box-shadow: var(--shadow-soft); }
.download-text h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 16px; }
.download-text p { color: var(--muted); margin-bottom: 26px; max-width: 460px; }
.download-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.download-note { font-size: 13px; color: var(--dim); }
.download-steps { display: flex; flex-direction: column; gap: 12px; }
.dstep { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); font-size: 14.5px; color: var(--text); }
.dstep span { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 13px; color: #04243a; background: linear-gradient(180deg, var(--blue-400), var(--blue-500)); }

/* ============ PRICING ============ */
.pricing { padding: 100px 0; }
.billing-toggle { display: inline-flex; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.03); margin-top: 26px; }
.bt { padding: 9px 20px; border-radius: 999px; border: 0; background: none; color: var(--muted); font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.bt.active { background: linear-gradient(180deg, var(--blue-400), var(--blue-500)); color: #04243a; }
.save { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: rgba(91, 184, 245, 0.18); color: var(--blue-300); font-weight: 700; }
.bt.active .save { background: rgba(4, 36, 58, 0.2); color: #04243a; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.plan-single { max-width: 440px; margin: 0 auto; }
.plan-single .plan { padding: 40px 34px; }
.plan-foot { text-align: center; font-size: 12.5px; color: var(--dim); margin-top: 20px; }
.plan { padding: 34px 30px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, var(--panel), var(--bg-2)); position: relative; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.plan:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.plan-featured { border-color: rgba(91, 184, 245, 0.45); box-shadow: var(--shadow-glow); background: linear-gradient(180deg, rgba(91, 184, 245, 0.07), var(--bg-2)); }
.plan-featured:hover { border-color: rgba(91, 184, 245, 0.7); }
.plan-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; border-radius: 999px; font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 700; color: #04243a; background: linear-gradient(180deg, var(--blue-400), var(--blue-500)); white-space: nowrap; }
.plan-name { font-size: 22px; margin-bottom: 6px; }
.plan-desc { color: var(--muted); font-size: 14px; min-height: 40px; margin-bottom: 18px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .amount { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 46px; color: #fff; letter-spacing: -0.02em; }
.plan-price .per { color: var(--dim); font-size: 15px; }
.plan-billed { font-size: 12.5px; color: var(--dim); min-height: 18px; margin-bottom: 20px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.plan-feats li { position: relative; padding-left: 28px; font-size: 14px; line-height: 1.5; color: var(--text); }
.plan-feats li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: rgba(91, 184, 245, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235bb8f5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat; }
.plan-feats li b { font-weight: 600; }
.pricing-fine { text-align: center; color: var(--dim); font-size: 13px; margin-top: 30px; }

/* ============ FAQ ============ */
.faq { padding: 90px 0; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.02); overflow: hidden; transition: border-color .3s var(--ease); }
.faq-item.open { border-color: rgba(91, 184, 245, 0.35); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: 0; cursor: pointer; text-align: left; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16.5px; color: var(--text); }
.faq-q:hover { color: #fff; }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--blue-400); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-icon::before { top: 10px; left: 2px; width: 18px; height: 2px; }
.faq-icon::after { top: 2px; left: 10px; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); font-size: 15px; }

/* ============ FINAL ============ */
.final { padding: 120px 0; position: relative; overflow: hidden; text-align: center; }
.final-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 500px; background: radial-gradient(closest-side, rgba(79, 183, 244, 0.16), transparent 70%); filter: blur(20px); pointer-events: none; }
.final-inner { max-width: 680px; margin: 0 auto; }
.final-inner h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 18px; }
.final-inner p { color: var(--muted); font-size: 18px; margin-bottom: 32px; }
.final-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 70px 0 36px; position: relative; z-index: 1; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; }
.footer-logo { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.footer-col h5 { font-family: "Outfit", sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dim); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--blue-300); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--dim); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 700px; }
  .panel { margin: 0 auto; transform: none; max-width: 480px; }
  .hero-demo:hover .panel { transform: none; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-text { order: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .nav-mobile[hidden] { display: none; }
  .nav { padding-left: 14px; padding-right: 14px; }
  .nav-inner { justify-content: center; gap: 14px; padding-left: 14px; padding-right: 14px; }
  .hero { padding: 50px 0 50px; }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { order: -1; }
  .beat { grid-template-columns: 120px 1fr; }
  .beat-time { grid-column: 2; text-align: left; margin-top: -6px; }
  .audience-inner { grid-template-columns: 1fr; gap: 30px; padding: 32px; }
  .audience-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
  .download-inner, .story-demo { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-logos { gap: 26px; }
}

@media (max-width: 480px) {
  .steps-grid, .cards { grid-template-columns: 1fr; }
  .hero-meta { gap: 12px; }
  .beat { grid-template-columns: 100px 1fr; gap: 10px; }
  .beat-name { font-size: 13px; }
}

/* ============ GLOBAL ILLUMINATED GRID ============ */
.bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-grid { position: absolute; inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* the brighter grid, revealed only inside the moving light */
.bg-grid--lit {
  background-image:
    linear-gradient(to right, rgba(91, 184, 245, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(91, 184, 245, 0.5) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(440px 360px at var(--lx, 50%) var(--ly, 26%), #000 0%, rgba(0,0,0,0.35) 46%, transparent 72%);
          mask-image: radial-gradient(440px 360px at var(--lx, 50%) var(--ly, 26%), #000 0%, rgba(0,0,0,0.35) 46%, transparent 72%);
}
/* soft halo around the light */
.bg-glow { position: absolute; inset: 0; background: radial-gradient(420px 320px at var(--lx, 50%) var(--ly, 26%), rgba(79, 183, 244, 0.10), transparent 70%); }
@media (prefers-reduced-motion: reduce) {
  .bg-grid--lit { -webkit-mask-image: radial-gradient(440px 360px at 50% 30%, #000, transparent 72%); mask-image: radial-gradient(440px 360px at 50% 30%, #000, transparent 72%); }
}

/* ============ SCROLL TIMELINE (scrubber) ============ */
.scrubber { display: none; position: fixed; top: 104px; bottom: 34px; right: 18px; width: 48px; z-index: 40; pointer-events: none; }
.scrubber-rail { position: absolute; right: 4px; top: 0; bottom: 0; width: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.09); }
.scrubber-ticks { position: absolute; right: 0; top: 0; bottom: 0; width: 12px; background-image: repeating-linear-gradient(to bottom, var(--line-strong) 0 1px, transparent 1px 46px); opacity: 0.5; }
.scrubber-fill { position: absolute; right: 4px; top: 0; width: 3px; height: 0%; border-radius: 3px; background: linear-gradient(180deg, var(--blue-400), var(--blue-600)); box-shadow: 0 0 10px rgba(79, 183, 244, 0.5); }
.scrubber-head { position: absolute; right: 5.5px; top: 0; width: 12px; height: 12px; transform: translate(50%, -50%); border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 4px rgba(79, 183, 244, 0.16), 0 0 12px rgba(79, 183, 244, 0.7); }
.scrubber-tc { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-family: ui-monospace, "SF Mono", monospace; font-size: 11px; color: var(--blue-300); background: rgba(10, 15, 24, 0.85); border: 1px solid var(--line); padding: 3px 8px; border-radius: 7px; white-space: nowrap; box-shadow: 0 6px 18px -8px rgba(0,0,0,.6); }
/* computer only: wide screen + a real mouse/trackpad (never touch tablets/phones) */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) { .scrubber { display: block; } }
@media (prefers-reduced-motion: reduce) { .scrubber-fill, .scrubber-head { transition: none; } }
