/* Dolly — "a film set for your screen."
   BossOS house style (ADUable/RouteWiz family): warm call-sheet paper, ink borders,
   hard offset shadows, dashed rules, graph grid, mono production labels — punctuated
   by dark director's-monitor bands. Cobalt is the action color; REC red appears only
   as the recording light and stamps. */

:root {
  --paper: #F5F3EC;
  --paper-2: #FCFAF4;
  --ink: #14151C;
  --ink-soft: #4A4C58;
  --ink-faint: #6C6E7A;
  --line: #D8D4C6;
  --blue: #2F54E0;
  --blue-soft: #E5E9FC;
  --blue-ink: #1B2C7A;
  --rec: #C13A2C;
  --green: #2F8B5B;
  --band: #14161F;
  --band-2: #1B2038;
  --band-ink: #E8E9F2;
  --band-soft: #A9B0D6;
  --headline: "Fraunces", "Iowan Old Style", Georgia, serif;
  --display: "Archivo", system-ui, sans-serif;
  --mono2: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 5px 5px 0 var(--ink);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dolly-ease: cubic-bezier(0.65, 0, 0.15, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  background-blend-mode: soft-light;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.in-studio { overflow: hidden; }

h1, h2 { font-family: var(--headline); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; font-optical-sizing: auto; }
h1 em, h2 em { font-style: italic; color: var(--blue); }
h3 { font-family: var(--display); font-weight: 800; }
.mono { font-family: var(--mono2); }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1120px; margin: 0 auto; padding-left: var(--s-6, 24px); padding-right: var(--s-6, 24px); }
.section { padding: var(--s-20, 80px) 0 var(--s-24, 96px); border-top: 1.5px dashed var(--line); }
.grid-2 { display: grid; gap: var(--s-12, 48px); align-items: center; grid-template-columns: 1fr 1fr; }
.g-105 { grid-template-columns: 1.05fr 0.95fr; }
.grid-3 { display: grid; gap: var(--s-6, 24px); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; color: var(--blue-ink); margin-bottom: var(--s-4, 16px); }
.eyebrow::before { content: "◼ "; color: var(--blue); font-size: 8px; vertical-align: 2px; }
.section h2, .band h2 { font-size: clamp(30px, 3.6vw, 44px); max-width: 700px; margin-bottom: var(--s-6, 24px); }
.sub { color: var(--ink-soft); max-width: 560px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 10px;
  padding: 13px 22px; color: var(--ink); background: var(--paper-2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-ink); }
.btn-paper:hover { background: #fff; }
.btn-big { font-size: 16px; padding: 17px 28px; width: 100%; }
.btn-sm { font-size: 12px; padding: 9px 14px; box-shadow: 3px 3px 0 var(--ink); }
.btn-sm:hover { box-shadow: 4px 4px 0 var(--ink); }
.btn-sm:active { box-shadow: 1px 1px 0 var(--ink); }
.btn.danger { color: var(--rec); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(245, 243, 236, 0.92); backdrop-filter: blur(10px); border-bottom: 2px solid var(--ink); }
.nav-inner { display: flex; align-items: center; gap: var(--s-6, 24px); height: 66px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 900; font-size: 24px; letter-spacing: -0.02em; text-decoration: none; color: var(--ink); }
.logo svg { color: var(--ink); }
.nav-links { display: flex; gap: var(--s-5, 20px); margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--ink-soft); }
.nav-links a:hover { color: var(--blue); }
.nav-tc { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.08em; min-width: 118px; text-align: right; }

/* ---------- hero ---------- */
.hero { padding: var(--s-16, 64px) 0 var(--s-20, 80px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: var(--s-12, 48px); align-items: center; }
.hero h1 { font-size: clamp(42px, 4.8vw, 62px); margin-bottom: var(--s-5, 20px); }
.hero h1 em { position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: 0.04em; height: 0.14em;
  background: var(--rec); opacity: 0.85; border-radius: 2px; transform: rotate(-0.6deg); z-index: -1;
}
.hero .sub { margin-bottom: var(--s-8, 32px); }

/* the record console — a real widget, not a hero image */
.console {
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); padding: var(--s-5, 20px); max-width: 460px;
  display: flex; flex-direction: column; gap: var(--s-3, 12px);
}
.console-head { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rec); display: inline-block; animation: recpulse 1.4s ease infinite; }
@keyframes recpulse { 50% { opacity: 0.25; } }
.mic-line { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--ink-soft); cursor: pointer; }
.mic-line input { accent-color: var(--blue); width: 16px; height: 16px; }
.console-foot { font-size: 10px; letter-spacing: 0.16em; color: var(--ink-faint); border-top: 1.5px dashed var(--line); padding-top: var(--s-3, 12px); }
.warn { color: #A2540C; font-size: 10px; letter-spacing: 0.1em; }

/* ---------- the director's monitor ---------- */
.monitor {
  background: var(--band); border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden; color: var(--band-ink);
}
.m-head {
  display: flex; align-items: center; gap: 14px; padding: 11px 16px;
  font-size: 11px; letter-spacing: 0.1em; color: var(--band-soft);
  border-bottom: 1px solid rgba(169, 176, 214, 0.25);
}
.m-rec { display: inline-flex; align-items: center; gap: 6px; color: #FF6B5B; font-weight: 600; }
.m-rec i { width: 8px; height: 8px; border-radius: 50%; background: #FF4B3A; animation: recpulse 1.2s ease infinite; }
.m-name { margin-left: auto; font-size: 10px; }
.m-body { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #3F414D; }
.m-backdrop {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, #101322, #05060C);
}
.m-backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 22% 12%, rgba(64, 96, 230, 0.5), transparent 60%),
              radial-gradient(circle at 85% 90%, rgba(120, 56, 250, 0.25), transparent 55%);
}
.m-window {
  position: absolute; inset: 0; background: #20222B; overflow: hidden;
  transform-origin: 50% 54%;
}
.m-titlebar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #2A2C38; }
.m-titlebar i { width: 9px; height: 9px; border-radius: 50%; background: #454857; }
.m-titlebar i:first-child { background: #FF5F57; }
.m-titlebar b { margin-left: 8px; font-size: 9px; font-weight: 500; color: #767a8c; }
.m-content { position: relative; padding: 7% 8%; transform-origin: 30% 68%; }
.m-line { height: 9px; border-radius: 5px; background: #333645; margin-bottom: 11px; }
.m-line.w70 { width: 70%; } .m-line.w45 { width: 45%; } .m-line.w60 { width: 60%; }
.m-btn { width: 96px; height: 26px; border-radius: 7px; background: var(--blue); margin-top: 10px; }
.m-card { position: absolute; right: 8%; top: 16%; width: 26%; height: 55%; border-radius: 8px; background: linear-gradient(160deg, #2B2E3D, #232633); }
.m-zoommark {
  position: absolute; left: 5.5%; bottom: 14%; width: 34%; height: 34%;
  border: 2px dashed #6E8CFF; border-radius: 10px; opacity: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.m-zoommark span { font-size: 8px; letter-spacing: 0.12em; color: #6E8CFF; background: rgba(20, 22, 31, 0.85); padding: 2px 6px; border-radius: 4px; transform: translateY(115%); }
.m-stamp {
  position: absolute; right: 6%; top: 10%;
  font-size: 15px; font-weight: 600; letter-spacing: 0.14em; color: #5BD98F;
  border: 2.5px solid #5BD98F; border-radius: 8px; padding: 7px 13px;
  transform: rotate(-7deg) scale(0.5); opacity: 0; background: rgba(20, 22, 31, 0.7);
}
.m-foot { padding: 10px 16px; font-size: 9.5px; letter-spacing: 0.14em; color: var(--band-soft); border-top: 1px solid rgba(169, 176, 214, 0.25); }

/* the monitor performs Dolly's job on a 10s loop */
.fx-on .m-zoommark { animation: mZoommark 10s var(--ease) infinite; }
.fx-on .m-content { animation: mPush 10s var(--dolly-ease) infinite; }
.fx-on .m-window { animation: mStage 10s var(--ease) infinite; }
.fx-on .m-backdrop { animation: mBackdrop 10s var(--ease) infinite; }
.fx-on .m-stamp { animation: mStamp 10s var(--ease) infinite; }
@keyframes mZoommark {
  0%, 10% { opacity: 0; transform: scale(0.82); }
  15%, 34% { opacity: 1; transform: scale(1); }
  42%, 100% { opacity: 0; transform: scale(1); }
}
@keyframes mPush {
  0%, 18% { transform: scale(1) translate(0, 0); }
  34%, 50% { transform: scale(1.85) translate(2%, -6%); }
  62%, 100% { transform: scale(1) translate(0, 0); }
}
@keyframes mStage {
  0%, 58% { transform: scale(1); border-radius: 0; box-shadow: none; }
  68%, 90% { transform: scale(0.8); border-radius: 12px; box-shadow: 0 22px 44px rgba(0, 0, 0, 0.6); }
  98%, 100% { transform: scale(1); border-radius: 0; box-shadow: none; }
}
@keyframes mBackdrop {
  0%, 56% { opacity: 0; }
  66%, 92% { opacity: 1; }
  98%, 100% { opacity: 0; }
}
@keyframes mStamp {
  0%, 70% { opacity: 0; transform: rotate(-7deg) scale(1.7); }
  75%, 93% { opacity: 1; transform: rotate(-7deg) scale(1); }
  97%, 100% { opacity: 0; transform: rotate(-7deg) scale(1); }
}

/* ---------- trust strip ---------- */
.truststrip { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--paper-2); padding: 13px 0; }
.truststrip .wrap { text-align: center; font-size: 11px; letter-spacing: 0.12em; color: var(--ink-soft); }
.truststrip b { color: var(--ink); }

/* ---------- export receipt ---------- */
.receipt { background: var(--paper-2); border: 2px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow); padding: var(--s-5, 20px); position: relative; }
.receipt-head { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--ink-soft); border-bottom: 1.5px dashed var(--line); padding-bottom: var(--s-3, 12px); margin-bottom: var(--s-3, 12px); }
.receipt-rows div { display: flex; justify-content: space-between; gap: 16px; font-size: 12px; padding: 7px 0; border-bottom: 1.5px dashed var(--line); }
.receipt-rows span { color: var(--ink-faint); letter-spacing: 0.08em; font-size: 10.5px; }
.receipt-rows b { font-weight: 600; color: var(--ink); text-align: right; }
.receipt-rows .green, .arows .green { color: var(--green); }
.stamp {
  display: inline-block; font-family: var(--mono2); font-weight: 600; font-size: 14px;
  letter-spacing: 0.14em; padding: 8px 14px; border: 2.5px solid; border-radius: 8px;
  transform: rotate(-5deg);
}
.stamp-green { color: var(--green); border-color: var(--green); background: rgba(47, 139, 91, 0.07); }
.receipt .stamp { position: absolute; right: 18px; bottom: -16px; background: var(--paper-2); }
.checks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: var(--s-5, 20px); }
.checks li { padding-left: 26px; position: relative; color: var(--ink-soft); font-size: 15.5px; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-family: var(--mono2); font-weight: 600; }

/* ---------- dark monitor bands ---------- */
.band { background: linear-gradient(160deg, var(--band), var(--band-2)); color: var(--band-ink); padding: var(--s-20, 80px) 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.band-eyebrow { color: var(--band-soft); }
.band-eyebrow::before { color: #6E8CFF; }
.band-h2 { color: var(--band-ink); }
.band-h2 em { color: #8FA6FF; }
.strike { text-decoration: line-through; text-decoration-color: var(--rec); text-decoration-thickness: 3px; color: var(--band-soft); }
.vs-grid { display: grid; grid-template-columns: 1fr 46px 1fr; gap: var(--s-5, 20px); align-items: center; margin-top: var(--s-8, 32px); }
.vs-arrow { font-size: 26px; color: #6E8CFF; text-align: center; }
.vs-cell figcaption { margin-top: var(--s-3, 12px); font-size: 9.5px; letter-spacing: 0.12em; color: var(--band-soft); line-height: 1.7; }
.shot-before { aspect-ratio: 16/10; border-radius: 8px; background: #9A9BA3; overflow: hidden; filter: grayscale(1); }
.sb-bar { padding: 8px 12px; background: #83848C; font-size: 9px; color: #D4D4D8; letter-spacing: 0.06em; }
.sb-body { padding: 8%; }
.shot-before .m-line { background: #B3B4BB; }
.shot-after { aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; position: relative; background: linear-gradient(135deg, #101322, #05060C); box-shadow: 0 0 44px rgba(79, 108, 255, 0.35); }
.shot-after::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 12%, rgba(64, 96, 230, 0.45), transparent 60%); }
.sa-window { position: absolute; inset: 13% 17%; background: #20222B; border-radius: 9px; padding: 5%; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55); }
.sa-btn { width: 84px; height: 24px; border-radius: 6px; background: var(--blue); margin-top: 8px; }

/* ---------- kit cards ---------- */
.cards { display: grid; gap: var(--s-6, 24px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.kcard {
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: var(--shadow-sm); padding: var(--s-6, 24px);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.kcard:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.kcard-tab {
  display: inline-block; font-size: 9.5px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--blue-ink); background: var(--blue-soft); border: 1.5px solid var(--blue);
  border-radius: 5px; padding: 3px 9px; margin-bottom: var(--s-4, 16px);
}
.kcard h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.01em; }
.kcard p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- price anchor ---------- */
.anchor-grid { display: grid; gap: var(--s-6, 24px); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; margin-top: var(--s-8, 32px); }
.acard { background: var(--paper-2); border: 2px solid var(--ink); border-radius: 12px; box-shadow: var(--shadow-sm); padding: var(--s-6, 24px); position: relative; }
.acard h3 { font-family: var(--mono2); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; color: var(--ink-soft); }
.acard-pick { border-top: 6px solid var(--blue); box-shadow: var(--shadow); }
.acard-tag {
  position: absolute; top: -14px; left: 20px; font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em;
  background: var(--blue); color: #fff; border-radius: 5px; padding: 4px 10px;
}
.aprice { font-family: var(--display); font-weight: 900; font-size: 40px; margin: 10px 0 14px; }
.acard-pick .aprice { color: var(--blue); }
.arows div { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; padding: 7px 0; border-bottom: 1.5px dashed var(--line); }
.arows span { color: var(--ink-faint); letter-spacing: 0.06em; font-size: 10px; }
.arows b { font-weight: 600; text-align: right; }
.acard .btn { margin-top: var(--s-5, 20px); width: 100%; }
.anchor-note { margin: var(--s-8, 32px) auto 0; font-size: 14.5px; color: var(--ink-soft); max-width: 680px; text-align: center; }

/* ---------- straight answers ---------- */
.pcard { border-left: 3px solid var(--blue); padding-left: var(--s-5, 20px); }
.pcard h3 { font-size: 17px; margin-bottom: 8px; }
.pcard p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- steps ---------- */
.steps { display: grid; gap: var(--s-6, 24px); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.scard { border: 2px solid var(--ink); border-radius: 12px; background: var(--paper-2); box-shadow: var(--shadow-sm); padding: var(--s-6, 24px); }
.scard-hot { background: var(--blue-soft); border-color: var(--blue); box-shadow: 5px 5px 0 var(--blue-ink); }
.snum { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; color: var(--blue-ink); margin-bottom: var(--s-3, 12px); }
.scard h3 { font-size: 20px; margin-bottom: 8px; }
.scard p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: var(--s-3, 12px); }
.faq-list details { border: 2px solid var(--ink); border-radius: 10px; background: var(--paper-2); padding: var(--s-4, 16px) var(--s-5, 20px); box-shadow: 3px 3px 0 var(--ink); }
.faq-list summary { font-family: var(--display); font-weight: 800; font-size: 16px; cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -2px; color: var(--blue); font-size: 22px; font-weight: 600; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: var(--s-3, 12px); font-size: 14.5px; color: var(--ink-soft); }

/* ---------- final band + footer ---------- */
.band-final-inner { text-align: center; }
.band-final .band-h2 { margin-left: auto; margin-right: auto; font-size: clamp(34px, 4.4vw, 56px); }
.band-sub { color: var(--band-soft); margin-top: var(--s-4, 16px); }
.band-ctas { display: flex; gap: var(--s-4, 16px); justify-content: center; flex-wrap: wrap; margin-top: var(--s-8, 32px); }
.band-ctas .btn-big { width: auto; }
.btn-band { background: transparent; color: var(--band-ink); border-color: var(--band-soft); box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5); }
.btn-band:hover { border-color: #fff; box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.5); }
.band-note { margin-top: var(--s-5, 20px); font-size: 10px; letter-spacing: 0.22em; color: var(--band-soft); }
.footer { padding: var(--s-6, 24px) 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 10px; letter-spacing: 0.14em; color: var(--ink-faint); }
.footer a { color: var(--ink-soft); }

/* ==================== STUDIO (paper cutting room) ==================== */
#studio { position: fixed; inset: 0; z-index: 500; background: var(--paper); display: flex; flex-direction: column; }
#studio[hidden] { display: none; }
.studio-bar { display: flex; align-items: center; gap: var(--s-5, 20px); padding: 10px var(--s-5, 20px); border-bottom: 2px solid var(--ink); background: var(--paper-2); }
.logo-sm { font-size: 20px; }
.studio-note { font-size: 10px; letter-spacing: 0.14em; color: var(--ink-faint); flex: 1; }
.studio-actions { display: flex; gap: var(--s-3, 12px); }
.studio-main { flex: 1; display: flex; gap: var(--s-5, 20px); padding: var(--s-5, 20px); min-height: 0; }
.stage-col { flex: 1; display: flex; flex-direction: column; gap: var(--s-4, 16px); min-width: 0; }
.canvas-wrap { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
#stage { max-width: 100%; max-height: 100%; border-radius: 8px; border: 2px solid var(--ink); background: #000; box-shadow: var(--shadow); }
#stage.aiming { cursor: crosshair; }
.focus-hint {
  position: absolute; top: var(--s-4, 16px); left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em;
  border: 2px solid var(--ink); border-radius: 100px; padding: 8px 18px; pointer-events: none;
  box-shadow: 3px 3px 0 var(--ink);
}

/* transport */
.transport { display: flex; align-items: center; gap: var(--s-4, 16px); }
.transport[hidden] { display: none; }
.time-label { font-size: 12px; color: var(--ink-soft); min-width: 118px; text-align: center; }
.timeline { position: relative; flex: 1; height: 46px; background: var(--paper-2); border: 2px solid var(--ink); border-radius: 8px; cursor: pointer; touch-action: none; box-shadow: 3px 3px 0 var(--ink); }
.tl-shade { position: absolute; top: 0; bottom: 0; background: repeating-linear-gradient(-45deg, rgba(20, 21, 28, 0.14) 0 5px, transparent 5px 10px); pointer-events: none; z-index: 2; }
.tl-shade.left { left: 0; border-radius: 6px 0 0 6px; }
.tl-shade.right { right: 0; border-radius: 0 6px 6px 0; }
.tl-blocks { position: absolute; inset: 6px 0; }
.tl-block {
  position: absolute; top: 0; bottom: 0; border-radius: 6px;
  background: var(--blue-soft); border: 2px solid var(--blue);
  color: var(--blue-ink); font-size: 10px; font-weight: 600; font-family: var(--mono2);
  display: flex; align-items: center; justify-content: center; cursor: grab; z-index: 3; touch-action: none;
  overflow: hidden; white-space: nowrap;
}
.tl-block.selected { background: var(--blue); color: #fff; }
.tl-playhead { position: absolute; top: -4px; bottom: -4px; width: 2.5px; background: var(--rec); z-index: 4; pointer-events: none; }
.tl-handle {
  position: absolute; top: -5px; bottom: -5px; width: 11px; margin-left: -5.5px;
  background: var(--ink); border-radius: 4px; cursor: ew-resize; z-index: 5; touch-action: none;
}

/* panel */
.panel { width: 268px; flex-shrink: 0; overflow-y: auto; display: flex; flex-direction: column; gap: var(--s-4, 16px); }
.panel-sec { background: var(--paper-2); border: 2px solid var(--ink); border-radius: 10px; padding: var(--s-4, 16px); box-shadow: 3px 3px 0 var(--ink); }
.panel-sec h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--ink-soft); margin-bottom: var(--s-3, 12px); }
.panel-hint { font-size: 12.5px; color: var(--ink-faint); margin-bottom: var(--s-3, 12px); }
.panel-btns { display: flex; gap: var(--s-2, 8px); }
.bg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2, 8px); }
.bg-swatch { aspect-ratio: 1; border-radius: 7px; border: 2px solid var(--line); cursor: pointer; }
.bg-swatch.selected { border-color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.bg-swatch.bg-none { background: repeating-conic-gradient(#D8D4C6 0% 25%, #F5F3EC 0% 50%) 0 0 / 12px 12px; }
.slider-row { display: flex; align-items: center; gap: var(--s-3, 12px); font-size: 13px; color: var(--ink-soft); margin-bottom: var(--s-3, 12px); }
.slider-row input[type="range"] { flex: 1; accent-color: var(--blue); min-width: 0; }
.slider-row .mono { font-size: 11px; min-width: 34px; text-align: right; }
.check-row { display: flex; align-items: center; gap: var(--s-2, 8px); font-size: 13.5px; cursor: pointer; }
.check-row input { accent-color: var(--blue); }

/* ==================== overlays ==================== */
#srcVideo { display: none; }
.overlay { position: fixed; inset: 0; z-index: 900; background: rgba(20, 21, 28, 0.72); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-4, 16px); }
.overlay[hidden] { display: none; }
.count-num { font-family: var(--display); font-weight: 900; font-size: 130px; color: #fff; line-height: 1; }
.overlay > p { color: var(--band-soft); font-size: 11px; letter-spacing: 0.22em; }
.modal {
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 14px;
  padding: var(--s-8, 32px); max-width: 470px; width: calc(100% - 48px); text-align: center;
  box-shadow: var(--shadow);
}
.modal h3 { font-family: var(--headline); font-weight: 600; font-size: 24px; margin-bottom: var(--s-3, 12px); }
.modal p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: var(--s-5, 20px); }
.modal .stamp { margin-bottom: var(--s-4, 16px); }
.progress { height: 10px; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 100px; overflow: hidden; margin-bottom: var(--s-3, 12px); }
.progress-fill { height: 100%; width: 0; background: var(--blue); transition: width 0.2s linear; }
.email-row { display: flex; gap: var(--s-3, 12px); justify-content: center; flex-wrap: wrap; }
.email-row input {
  flex: 1; min-width: 200px; background: #fff; border: 2px solid var(--ink); border-radius: 10px;
  padding: 12px 16px; color: var(--ink); font-size: 15px; font-family: var(--sans);
}
.email-row input:focus { outline: none; border-color: var(--blue); }
.err { color: var(--rec); font-size: 10px; letter-spacing: 0.1em; margin-top: var(--s-3, 12px); }

.rec-pill {
  position: fixed; bottom: var(--s-6, 24px); left: 50%; transform: translateX(-50%); z-index: 950;
  display: flex; align-items: center; gap: var(--s-3, 12px);
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: 100px;
  padding: 8px 8px 8px 20px; box-shadow: var(--shadow-sm);
}
.rec-pill[hidden] { display: none; }
.rec-pill .mono { font-size: 13px; }
.rec-pill button {
  background: var(--rec); color: #fff; border: 2px solid var(--ink); border-radius: 100px;
  padding: 8px 20px; font-family: var(--display); font-weight: 900; font-size: 12px; letter-spacing: 0.1em;
}

.toast {
  position: fixed; bottom: var(--s-6, 24px); right: var(--s-6, 24px); z-index: 990;
  background: var(--paper-2); border: 2px solid var(--ink); border-left: 6px solid var(--blue);
  border-radius: 10px; padding: var(--s-3, 12px) var(--s-5, 20px); font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(12px); transition: all 0.25s var(--ease); pointer-events: none; max-width: 380px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ==================== reveals (landing-fx.js gates .fx-on) ==================== */
.fx-on [data-reveal] { opacity: 0; transform: translateY(24px); }
.fx-on [data-reveal].revealed {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--rv-delay, 0ms),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--rv-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .rec-dot, .m-rec i, .m-zoommark, .m-content, .m-window, .m-backdrop, .m-stamp { animation: none !important; }
  .btn, .kcard { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .nav-tc { display: none; }
  .vs-grid { grid-template-columns: 1fr; }
  .vs-arrow { transform: rotate(90deg); }
  .receipt .stamp { bottom: -14px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-big { width: 100%; }
  .band-ctas .btn { width: 100%; }
  .studio-main { flex-direction: column; overflow-y: auto; }
  .panel { width: 100%; }
  .canvas-wrap { min-height: 220px; }
  .transport { flex-wrap: wrap; }
  .timeline { order: 3; flex-basis: 100%; }
}

/* ---------- Pro / account ---------- */
.aper { font-size: 14px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.08em; }
.pro-tag {
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.16em; color: var(--blue-ink);
  background: var(--blue-soft); border: 1px solid var(--blue); border-radius: 4px; padding: 2px 6px;
}
.btn.gopro { color: var(--blue-ink); border-color: var(--blue); }
.btn.gopro[hidden] { display: none; }
.acc-close { margin-top: var(--s-4, 16px); }
#accStep2 .email-row input { letter-spacing: 0.3em; font-family: var(--mono2); text-align: center; }
