/* ————————————————————————————————
   JOT · design system
   paper studio / signal orange / voice-in-serif
   Shared across all locales. Latin fonts are the default;
   the /ru/ page overrides --sans/--serif/--mono with
   Cyrillic-native faces (Golos Text / Lora / JetBrains Mono).
———————————————————————————————— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper:   #F4F3EE;
  --paper2:  #ECEBE4;
  --card:    #FCFBF7;
  --ink:     #1B1A15;
  --ink2:    #55534A;
  --ink3:    #8B897E;
  --line:    #DDDBD1;
  --line2:   #CBC9BE;
  --rec:     #FF4A00;
  --rec-ink: #C43900;
  --ok:      #3D7A46;
  --sans:    'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  --serif:   'Newsreader', Georgia, serif;
  --mono:    'Fragment Mono', ui-monospace, 'SF Mono', monospace;
  --ease:    cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--rec); color: #fff; }

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--rec); outline-offset: 3px; border-radius: 4px; }

/* the rule of the page: serif italic = a human voice */
.voice { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── mono eyebrow used on every section ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink3);
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; flex: none;
  background: var(--rec); border-radius: 2px;
}

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn-ink { background: var(--ink); color: var(--paper); box-shadow: 0 1px 0 rgba(27,26,21,0.4); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(27,26,21,0.22); background: #000; }
.btn-ink .btn-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rec); flex: none; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line2); font-weight: 500;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ════════ NAV ════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,243,238,0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand-key {
  width: 30px; height: 30px; flex: none;
  background: var(--ink); color: var(--rec);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 1rem; font-weight: 400;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0 1px 0 rgba(27,26,21,0.3);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink2);
  padding: 8px 13px; border-radius: 8px; transition: color 0.15s, background 0.15s;
}
.nav-a:hover { color: var(--ink); background: rgba(27,26,21,0.05); }

/* ── language switcher ── */
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang {
  position: relative; display: inline-flex; align-items: center;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink2);
  background: transparent; border: 1.5px solid var(--line2);
  padding: 7px 11px; border-radius: 999px; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.lang-btn:hover { border-color: var(--ink); color: var(--ink); }
.lang-btn svg { opacity: 0.75; }
.lang-btn .chev { transition: transform 0.2s var(--ease); }
.lang[data-open="true"] .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 200;
  min-width: 176px; padding: 6px;
  background: var(--card); border: 1.5px solid var(--ink); border-radius: 14px;
  box-shadow: 0 2px 0 var(--ink), 0 18px 40px -18px rgba(27,26,21,0.35);
  display: none; flex-direction: column; gap: 2px;
}
.lang[data-open="true"] .lang-menu { display: flex; }
.lang-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 9px; font-size: 0.9rem; font-weight: 500;
  color: var(--ink2); transition: background 0.14s, color 0.14s;
}
.lang-opt:hover { background: var(--paper2); color: var(--ink); }
.lang-opt .lang-en { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink3); }
.lang-opt[aria-current="true"] { color: var(--ink); font-weight: 700; }
.lang-opt[aria-current="true"] .lang-en { color: var(--rec-ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  font-size: 0.88rem; font-weight: 700;
  padding: 9px 20px; border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(27,26,21,0.25); }
.nav-cta .btn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); }

/* ════════ HERO ════════ */
.hero { padding: 92px 0 40px; }
.hero-eyebrow { margin-bottom: 30px; }
.hero-eyebrow::before { animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.98; letter-spacing: -0.045em;
  font-weight: 900; margin-bottom: 34px;
  max-width: 13ch;
}
.hero h1 .voice { font-weight: 400; letter-spacing: -0.02em; padding-right: 0.08em; }
.hero h1 .rec-period { color: var(--rec); }

.hero-cols {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 56px;
}
.hero-sub {
  font-size: 1.15rem; color: var(--ink2); line-height: 1.7;
  max-width: 46ch;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-btnrow { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-fine {
  font-family: var(--mono); font-size: 0.72rem; color: var(--ink3);
  letter-spacing: 0.04em;
}

/* ════════ DEMO — the signature ════════ */
.demo {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 2px 0 var(--ink), 0 28px 60px -24px rgba(27,26,21,0.25);
  overflow: hidden;
}
.demo-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
}
.demo-status {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em;
  color: var(--ink2); text-transform: uppercase;
}
.rec-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--ink3); transition: background 0.2s, box-shadow 0.2s;
}
.rec-dot.live { background: var(--rec); box-shadow: 0 0 0 4px rgba(255,74,0,0.18); animation: blink 1.1s ease-in-out infinite; }
.demo-model {
  font-family: var(--mono); font-size: 0.7rem; color: var(--ink3);
  border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px;
  letter-spacing: 0.03em; white-space: nowrap;
}

.demo-mid {
  display: flex; align-items: center; gap: 24px;
  padding: 26px 24px 10px;
}
/* the ⌥ keycap you can actually hold */
.keycap {
  flex: none; width: 108px; height: 84px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0EFE9 100%);
  border: 1.5px solid var(--ink);
  border-radius: 14px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.2s;
  user-select: none; -webkit-user-select: none; touch-action: none;
  font-family: var(--sans); color: var(--ink);
}
.keycap:hover { background: linear-gradient(180deg, #FFFFFF 0%, #F6F5F0 100%); }
.keycap.down { transform: translateY(4px); box-shadow: 0 1px 0 var(--ink); background: #FFF4EE; }
.keycap-glyph { font-size: 1.9rem; font-weight: 500; line-height: 1; }
.keycap-name { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); }

.demo-wavebox { flex: 1; min-width: 0; height: 72px; }
.demo-wavebox canvas { width: 100%; height: 100%; display: block; }

.demo-time {
  flex: none; font-family: var(--mono); font-size: 0.95rem;
  color: var(--ink3); font-variant-numeric: tabular-nums;
  min-width: 84px; text-align: right;
}
.demo-time.live { color: var(--rec-ink); }

.demo-script {
  padding: 8px 24px 6px;
  min-height: 92px;
  display: flex; align-items: flex-start;
}
.demo-script-inner {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.45; color: var(--ink); letter-spacing: -0.01em;
}
.demo-hint { color: var(--ink3); }
.caret {
  display: inline-block; width: 2px; height: 1.05em;
  background: var(--rec); vertical-align: -0.15em; margin-left: 2px;
  animation: blink 1s step-end infinite;
}

.demo-meta {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 12px 24px 20px;
  font-family: var(--mono); font-size: 0.72rem; color: var(--ink3);
  letter-spacing: 0.04em;
  opacity: 0; transition: opacity 0.4s;
}
.demo-meta.show { opacity: 1; }
.demo-meta .ok { color: var(--ok); }

/* trust ticker under demo */
.ticker {
  margin-top: 26px; overflow: hidden; position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex; gap: 44px; width: max-content;
  animation: tick 36s linear infinite;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink3); white-space: nowrap;
}
@keyframes tick { to { transform: translateX(-50%); } }
.ticker-track span::after { content: '·'; margin-left: 44px; color: var(--line2); }

/* ════════ SECTIONS ════════ */
.sec { padding: 110px 0; }
.sec-head { margin-bottom: 56px; }
.sec-h {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
  margin-top: 18px; max-width: 20ch;
}
.sec-h .voice { font-weight: 400; }
.sec-sub { margin-top: 18px; font-size: 1.08rem; color: var(--ink2); max-width: 52ch; line-height: 1.7; }

/* ════════ HOW — the timecode tape ════════ */
.how { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.tape { position: relative; }
.tape-ruler {
  height: 12px; margin-bottom: 6px;
  background:
    repeating-linear-gradient(90deg, var(--line2) 0 1px, transparent 1px 2.5%);
  border-bottom: 1.5px solid var(--ink);
}
.tape-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.step { padding-top: 26px; position: relative; }
.step::before {
  content: ''; position: absolute; top: -6px; left: 0;
  width: 1.5px; height: 20px; background: var(--rec);
}
.step-time {
  font-family: var(--mono); font-size: 0.78rem; color: var(--rec-ink);
  letter-spacing: 0.08em; margin-bottom: 14px; font-variant-numeric: tabular-nums;
}
.step-title { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.step-body { font-size: 0.95rem; color: var(--ink2); line-height: 1.7; }
.step-body .kbd {
  font-family: var(--mono); font-size: 0.78em;
  border: 1px solid var(--line2); border-bottom-width: 2.5px;
  border-radius: 6px; padding: 2px 7px; background: var(--paper);
  white-space: nowrap; color: var(--ink);
}

/* ════════ PRIVACY ════════ */
.priv-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 72px; align-items: center;
}
.priv-checks { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.pcheck { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; font-weight: 500; line-height: 1.5; }
.pcheck svg { flex: none; margin-top: 3px; }

.macbox {
  background: var(--card); border: 1.5px solid var(--ink); border-radius: 20px;
  padding: 26px; box-shadow: 0 2px 0 var(--ink);
}
.macbox-label {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink3); text-align: center; margin-bottom: 20px;
}
.macbox-inner {
  border: 1.5px dashed var(--line2); border-radius: 14px; padding: 26px 18px;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.flow-row { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.flow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line2); border-radius: 10px;
  padding: 9px 14px; font-family: var(--mono); font-size: 0.74rem;
  letter-spacing: 0.02em; white-space: nowrap;
}
.flow-arrow { color: var(--rec); font-weight: 700; transform: rotate(90deg); line-height: 1; }
.macbox-foot {
  margin-top: 18px; display: flex; justify-content: center;
}
.no-cloud {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em;
  color: var(--ok); border: 1px solid rgba(61,122,70,0.35);
  background: rgba(61,122,70,0.07); border-radius: 999px; padding: 8px 16px;
}

/* ════════ FEATURES ════════ */
.feats { background: var(--paper2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.feat:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 2px 0 var(--ink); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px;
  border: 1.5px solid var(--ink); display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
}
.feat h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.feat p { font-size: 0.9rem; color: var(--ink2); line-height: 1.7; }
.feat p .voice { color: var(--ink); }

/* ════════ VS TABLE ════════ */
.vs-table-scroll { overflow-x: auto; }
.vs {
  width: 100%; max-width: 780px; margin: 0 auto;
  border-collapse: separate; border-spacing: 0;
  border: 1.5px solid var(--ink); border-radius: 16px; overflow: hidden;
  background: var(--card); box-shadow: 0 2px 0 var(--ink);
}
.vs th, .vs td { padding: 15px 22px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.vs tr:last-child td { border-bottom: none; }
.vs thead th {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink3); background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}
.vs thead th.col-jot { color: var(--rec-ink); }
.vs td:first-child { color: var(--ink2); }
.vs td.col-jot { font-weight: 700; background: rgba(255,74,0,0.04); }
.vs td.col-cloud { color: var(--ink3); }
.vs .bad { color: var(--rec-ink); font-weight: 500; }

/* ════════ PRICING ════════ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 30px; display: flex; flex-direction: column;
  position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.plan:hover { transform: translateY(-4px); }
.plan-hot { border: 1.5px solid var(--ink); box-shadow: 0 2px 0 var(--ink), 0 24px 48px -24px rgba(27,26,21,0.3); }
.plan-badge {
  position: absolute; top: -13px; left: 30px;
  background: var(--rec); color: #fff;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan-name { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 22px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-cur { font-size: 1.3rem; font-weight: 700; }
.plan-amt { font-size: 3.6rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.plan-per { color: var(--ink3); font-size: 0.9rem; }
.plan-was { margin-top: 6px; font-size: 0.85rem; color: var(--ink3); }
.plan-was s { margin-right: 8px; }
.plan-was em { font-style: normal; color: var(--rec-ink); font-weight: 700; }
.plan-tag { margin-top: 10px; font-size: 0.92rem; color: var(--ink2); line-height: 1.6; min-height: 3em; }
.plan-list { list-style: none; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink2); line-height: 1.55; }
.plan-list li svg { flex: none; margin-top: 4px; }
.plan-list li strong { color: var(--ink); }
.plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 20px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  border: 1.5px solid var(--line2); color: var(--ink);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.plan-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.plan-btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.plan-btn-solid:hover { box-shadow: 0 8px 20px rgba(27,26,21,0.3); background: #000; }
.plan-btn-solid .btn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); }
.plan-note { margin-top: 12px; text-align: center; font-family: var(--mono); font-size: 0.68rem; color: var(--ink3); letter-spacing: 0.04em; }

/* ════════ FAQ ════════ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-x {
  flex: none; width: 24px; height: 24px; position: relative;
  transition: transform 0.3s var(--ease);
}
.faq-x::before, .faq-x::after {
  content: ''; position: absolute; background: var(--ink); border-radius: 2px;
  top: 50%; left: 50%;
}
.faq-x::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-x::after { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq[open] .faq-x { transform: rotate(45deg); }
.faq-a { padding: 0 4px 24px; color: var(--ink2); font-size: 0.97rem; line-height: 1.75; max-width: 62ch; }
.faq-a code { font-family: var(--mono); font-size: 0.85em; background: var(--paper2); padding: 2px 6px; border-radius: 5px; }
.faq-a a { text-decoration: underline; }

/* ════════ FINAL CTA ════════ */
.outro {
  background: var(--ink); color: var(--paper);
  padding: 130px 0; text-align: center; position: relative; overflow: hidden;
}
.outro-wave {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 220px; opacity: 0.13; pointer-events: none;
}
.outro-wave canvas { width: 100%; height: 100%; display: block; }
.outro .eyebrow { color: rgba(244,243,238,0.55); }
.outro h2 {
  position: relative;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900; letter-spacing: -0.045em; line-height: 1.02;
  margin: 22px 0 30px;
}
.outro h2 .voice { font-weight: 400; color: #fff; }
.outro h2 .rec-period { color: var(--rec); }
.outro-sub { position: relative; color: rgba(244,243,238,0.72); font-size: 1.1rem; max-width: 44ch; margin: 0 auto 40px; line-height: 1.7; }
.btn-paper { background: var(--paper); color: var(--ink); position: relative; }
.btn-paper:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.45); background: #fff; }
.btn-paper .btn-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rec); }
.outro-fine {
  position: relative; margin-top: 26px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em;
  color: rgba(244,243,238,0.45);
}

/* ════════ FOOTER ════════ */
.foot { background: var(--ink); color: rgba(244,243,238,0.6); border-top: 1px solid rgba(244,243,238,0.12); }
.foot-in {
  max-width: 1140px; margin: 0 auto; padding: 30px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--paper); }
.foot-brand .btn-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.85rem; }
.foot-links a { transition: color 0.15s; }
.foot-links a:hover { color: var(--paper); }
.foot-copy { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; color: rgba(244,243,238,0.35); }

/* ════════ reveal on scroll ════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 920px) {
  .nav-a { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .priv-grid { grid-template-columns: 1fr; gap: 44px; }
  .tape-steps { grid-template-columns: 1fr; gap: 34px; }
  .tape-ruler { display: none; }
  .step { padding-top: 0; padding-left: 22px; }
  .step::before { top: 4px; left: 0; width: 1.5px; height: calc(100% - 4px); }
}
@media (max-width: 620px) {
  .sec { padding: 80px 0; }
  .hero { padding-top: 64px; }
  .feat-grid { grid-template-columns: 1fr; }
  .demo-model { display: none; }
  .demo-mid { flex-wrap: wrap; gap: 18px; padding-bottom: 4px; }
  .demo-time { flex: 1; min-width: 0; }
  .demo-wavebox { width: 100%; flex-basis: 100%; order: 3; height: 52px; }
  .demo-script { min-height: 110px; }
  .hero-btnrow { width: 100%; flex-direction: column; }
  .hero-btnrow .btn { width: 100%; white-space: nowrap; }
  .hero-actions { width: 100%; }
  .nav-cta { padding: 9px 15px; }
}

/* ════════ reduced motion ════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .hero-eyebrow::before, .rec-dot.live, .caret { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
