/* ==========================================================================
   Morvelle: one-page site
   Tokens → base → components → sections → hero scene → loops → responsive
   ========================================================================== */

:root {
  --paper: #FFFFFF;
  --mist: #F5F7FC;
  --line: #E7EAF2;
  --ink: #0A0F1F;
  --ink-2: #394056;
  --muted: #687086;
  --blue: #0A72C2;
  --blue-600: #075AA3;
  --blue-300: #88CBF7;
  --ice: #EDF8FF;

  --eo: cubic-bezier(.16, 1, .3, 1);      /* expo out: arrivals */
  --io: cubic-bezier(.65, 0, .35, 1);     /* in-out: travel */
  --qi: cubic-bezier(.5, 0, .75, 0);      /* quart in: exits */

  --display: "General Sans", "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gutter: clamp(16px, 4vw, 32px);
  --radius: 20px;
  --shadow: 0 1px 2px rgba(10, 15, 31, .04), 0 18px 40px -24px rgba(16, 32, 96, .18);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(10, 114, 194, .45); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--blue); color: #fff; }

.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1240px; }
.mono { font-family: var(--mono); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--blue); }
.h2 { font-size: clamp(38px, 5.6vw, 70px); }
.h3 { font-size: 20px; font-weight: 620; letter-spacing: 0; line-height: 1.2; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); line-height: 1.5; max-width: 620px; margin-top: 22px; text-wrap: pretty; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 44px; padding: 0 20px; border-radius: 12px; border: 0; cursor: pointer;
  font-weight: 600; font-size: 15px; letter-spacing: -.005em; white-space: nowrap;
  transition: transform .35s var(--eo), box-shadow .35s var(--eo), background-color .25s ease;
}
.btn--sm { height: 38px; padding: 0 15px; font-size: 14px; border-radius: 10px; }
.btn--lg { height: 54px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--blue); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 22px -10px rgba(10, 114, 194, .75);
}
.btn--primary:hover { background: var(--blue-600); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 16px 30px -12px rgba(10, 114, 194, .8); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line), 0 1px 2px rgba(10, 15, 31, .05); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px #CDD4E3, 0 8px 18px -12px rgba(10, 15, 31, .25); transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--blue); box-shadow: 0 12px 30px -12px rgba(5, 15, 80, .6); }
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -12px rgba(5, 15, 80, .7); }
.btn__arrow { display: inline-block; transition: transform .35s var(--eo); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- Chip / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  height: 34px; padding: 0 14px 0 12px; border-radius: 99px;
  background: #fff; box-shadow: inset 0 0 0 1px var(--line), 0 1px 2px rgba(10, 15, 31, .04);
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
}
.chip__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.chip__dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--blue); animation: ping 2.4s var(--eo) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(3); opacity: 0; } }

.pill {
  display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px; border-radius: 99px;
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
}
.pill svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.pill--ok { background: var(--ink); color: #fff; }
.pill--blue { background: var(--blue); color: #fff; }

/* ---------- Logo placeholder ---------- */
.logo-slot {
  display: inline-grid; place-items: center; flex: none;
  width: 30px; height: 30px; border-radius: 8px;
  border: 1.5px dashed #B6C0D6; color: #8A93A8;
  font-family: var(--mono); font-size: 7.5px; letter-spacing: .06em; text-transform: uppercase;
}
.logo-slot--sm { width: 24px; height: 24px; font-size: 6px; border-radius: 6px; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Reveal system ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); }
html.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--eo) calc(var(--d, 0) * 1ms), transform 1.2s var(--eo) calc(var(--d, 0) * 1ms);
}
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
html.js [data-split] .wi { display: inline-block; transform: translateY(108%); }
html.js [data-split].is-in .wi {
  transform: none;
  transition: transform 1.15s var(--eo) calc(var(--i) * 55ms + var(--d, 0) * 1ms);
}

/* ==========================================================================
   NAV + scrubber
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { display: block; flex: none; line-height: 0; }
.brand__logo img { display: block; width: auto; height: 30px; }
.brand__logo--sm img { height: 22px; }
.brand__name { font-family: var(--display); font-size: 21px; font-weight: 650; letter-spacing: 0; }
.nav__links { display: flex; gap: 30px; font-size: 14.5px; color: var(--ink-2); }
.nav__links a { position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--eo); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.scrub { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); }
.scrub__fill { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--blue); transform-origin: 0 50%; transform: scaleX(0); }
.scrub__head {
  position: absolute; left: 0; bottom: -4px; width: 3px; height: 9px; border-radius: 2px;
  background: var(--blue); box-shadow: 0 0 0 3px rgba(10, 114, 194, .15);
  transform: translateX(-1px);
}
.scrub__ticks i { position: absolute; bottom: 0; width: 1px; height: 5px; background: #C7CEDD; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: clamp(32px, 4.2vw, 64px) 0 clamp(56px, 7vw, 96px); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto; height: 900px; pointer-events: none;
  background:
    radial-gradient(42% 38% at 50% 28%, rgba(10, 114, 194, .12), transparent 70%),
    radial-gradient(30% 30% at 22% 60%, rgba(136, 203, 247, .10), transparent 70%),
    radial-gradient(30% 30% at 80% 58%, rgba(10, 114, 194, .08), transparent 70%);
}
.hero__copy { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__chip { margin-bottom: 28px; }
.hero__title { font-size: clamp(34px, 4.4vw, 62px); max-width: 1040px; line-height: 1.06; }
.hero__line { display: block; }
.hero__lede { margin-top: 18px; max-width: 800px; }
.hero__lede strong { color: var(--ink); font-weight: 650; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.hero__facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 18px; font-size: 14px; color: var(--ink-2); }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--ice)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.2 2.1L11.5 5.6' fill='none' stroke='%230A72C2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ---------- Reel player frame ---------- */
.reel {
  position: relative; margin: clamp(44px, 6vw, 72px) auto 0; max-width: 1120px;
  padding: 10px; border-radius: 22px; background: rgba(255, 255, 255, .85);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(10, 15, 31, .04), 0 40px 90px -40px rgba(8, 83, 158, .35), 0 20px 40px -30px rgba(10, 15, 31, .25);
}
.reel__top { display: flex; align-items: center; gap: 14px; padding: 4px 8px 11px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.reel__live { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); text-transform: uppercase; letter-spacing: .12em; }
.rec { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: blink 1.6s steps(1) infinite; }
@keyframes blink { 50% { opacity: .25; } }
.reel__spec { margin-left: auto; }
.reel__next { flex: none; color: var(--blue); text-transform: uppercase; letter-spacing: .12em; transition: color .2s; }
.reel__next span { display: inline-block; transition: transform .35s var(--eo); }
.reel__next:hover { color: var(--blue-600); }
.reel__next:hover span { transform: translateX(3px); }
.reel__head { text-align: center; margin: clamp(28px, 3vw, 40px) auto 0; }
.reel__title { font-size: 15px; font-weight: 600; color: var(--ink-2); }
.reel__sub { margin-top: 12px; font-family: var(--mono); font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.reel__head + .reel { margin-top: 12px; }
.reel__viewport { position: relative; aspect-ratio: 16 / 9; border-radius: 13px; overflow: hidden; background: #F3F5FB; isolation: isolate; }
.reel__bar { display: flex; align-items: center; gap: 14px; padding: 12px 8px 4px; font-family: var(--mono); font-size: 11px; color: var(--ink); }
.reel__play { display: inline-flex; align-items: center; justify-content: center; gap: 3px; width: 22px; height: 22px; padding: 0; border: 0; background: none; cursor: pointer; }
.reel__play.is-paused i:first-child { width: 0; height: 0; border-radius: 0; background: none; border-style: solid; border-width: 5.5px 0 5.5px 9px; border-color: transparent transparent transparent var(--ink); }
.reel__play.is-paused i + i { display: none; }
.reel__play i { width: 3px; height: 10px; border-radius: 1px; background: var(--ink); }
.reel__tc { font-variant-numeric: tabular-nums; }
.reel__tc--dim { color: var(--muted); }
.reel__track { position: relative; flex: 1; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.reel__prog { position: absolute; inset: 0; background: var(--blue); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- Reel video ---------- */
.reel__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #0A0F1F; }
.reel__sound {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px 0 11px;
  border: 0; border-radius: 99px; cursor: pointer;
  background: rgba(10, 15, 31, .55); color: #fff; font-size: 13px; font-weight: 600;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
  transition: background-color .25s ease, transform .35s var(--eo);
}
.reel__sound:hover { background: rgba(10, 15, 31, .75); transform: translateY(-1px); }
.reel__sound svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.reel__sound svg path:first-child { fill: currentColor; }
.reel__sound .ico-on, .reel__sound[aria-pressed="true"] .ico-off { display: none; }
.reel__sound[aria-pressed="true"] .ico-on { display: block; }
.reel__sound[aria-pressed="true"] { background: var(--blue); box-shadow: none; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: clamp(80px, 9vw, 128px) 0; }
.shead { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .lede { margin-inline: auto; }

/* ---------- Proof ---------- */
/* first section after the hero sits closer to it */
.clocksec { padding-top: clamp(40px, 6vw, 80px); }
.proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat { padding: clamp(24px, 3.4vw, 42px); display: flex; flex-direction: column; }
.stat__num {
  display: flex; align-items: flex-start;
  font-family: var(--display); font-weight: 640;
  font-size: clamp(88px, 10.5vw, 148px); line-height: .9; letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.plus { color: var(--blue); opacity: 0; transform: translateY(18%) scale(.7); transition: opacity .6s var(--eo), transform .8s var(--eo); }
.stat.done .plus { opacity: 1; transform: none; }
.stat__label { margin-top: 14px; font-size: 18px; color: var(--ink-2); }
.stat__key { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.key { flex: none; display: inline-block; }
.key--tile { width: 10px; height: 10px; border-radius: 2px; background: var(--blue); }
.key--thumb { width: 18px; height: 10px; border-radius: 2px; background: var(--ink); }

.mosaic { position: relative; margin-top: 30px; display: grid; grid-template-columns: repeat(30, 1fr); gap: 4px; overflow: hidden; }
.mosaic i { aspect-ratio: 1; border-radius: 2.5px; background: #EDF0F6; transform: scale(.5); transition: transform .8s var(--eo), background-color .45s ease; }
.mosaic i.on { transform: none; background: var(--c, var(--blue)); }
.mosaic::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .75) 50%, transparent 65%);
  transform: translateX(-110%);
}
.mosaic.done::after { animation: gleam 4.5s var(--io) 0.4s infinite; }
@keyframes gleam { 0% { transform: translateX(-110%); } 45%, 100% { transform: translateX(110%); } }

.thumbs { margin-top: 30px; display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px 6px; }
.thumbs i { position: relative; aspect-ratio: 16 / 9; border-radius: 4px; background: #EDF0F6; overflow: hidden; transform: scale(.82); transition: transform .8s var(--eo), background-color .45s ease; }
.thumbs i.on { transform: none; background: linear-gradient(140deg, #103E6B, var(--ink) 70%); }
.thumbs i::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 6px; height: 7px; margin: -4px 0 0 -2px;
  background: #fff; clip-path: polygon(0 0, 100% 50%, 0 100%); opacity: 0; transition: opacity .4s ease .2s;
}
.thumbs i.on::before { opacity: .9; }
.thumbs i::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--blue-300); transform: scaleX(0); transform-origin: 0 50%; }
.thumbs i.on::after { animation: tprog var(--dur, 6s) linear var(--dl, 0s) infinite; }
@keyframes tprog { to { transform: scaleX(1); } }

.logos { margin-top: clamp(48px, 6vw, 72px); text-align: center; }
.logos__label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.logo-ph { display: grid; place-items: center; height: 48px; min-width: 150px; padding: 0 16px; border: 1.5px dashed #D2D8E5; border-radius: 12px; font-family: var(--mono); font-size: 11px; color: #9AA2B5; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: none; }
.step { padding: 12px 12px 26px; }
.step > :not(.step__vis) { padding-inline: 12px; }
.step__vis { position: relative; height: 210px; margin-bottom: 24px; border-radius: 13px; background: var(--mist); overflow: hidden; display: grid; place-items: center; }
.step__n { display: block; font-family: var(--mono); font-size: 12px; color: var(--blue); letter-spacing: .06em; margin-bottom: 8px; }
.step p { margin-top: 8px; color: var(--ink-2); font-size: 15.5px; }

/* brief */
.doc { width: 160px; padding: 16px; border-radius: 11px; background: #fff; box-shadow: 0 12px 26px -14px rgba(16, 32, 96, .35); display: flex; flex-direction: column; gap: 9px; margin-top: -26px; }
.doc__title { width: 58%; height: 10px; border-radius: 3px; background: var(--ink); }
.doc__line { height: 7px; border-radius: 3px; background: #DCE2EE; transform-origin: 0 50%; animation: docLine 5.4s var(--eo) infinite; animation-delay: calc(var(--i) * .3s); }
.doc__line--short { width: 55%; }
.doc__swatches { display: flex; gap: 6px; margin-top: 3px; }
.doc__swatches i { width: 16px; height: 16px; border-radius: 50%; animation: pop 5.4s var(--eo) infinite; }
.doc__swatches i:nth-child(1) { background: var(--blue); animation-delay: 1s; }
.doc__swatches i:nth-child(2) { background: var(--ink); animation-delay: 1.12s; }
.doc__swatches i:nth-child(3) { background: #C7E9FF; animation-delay: 1.24s; }
.doc__done { position: absolute; bottom: 20px; animation: pillIn 5.4s var(--eo) infinite; }
@keyframes docLine { 0% { transform: scaleX(0); } 14%, 86% { transform: scaleX(1); } 94%, 100% { transform: scaleX(0); } }
@keyframes pop { 0% { transform: scale(0); } 10%, 80% { transform: scale(1); } 88%, 100% { transform: scale(0); } }
@keyframes pillIn { 0%, 42% { opacity: 0; transform: translateY(10px) scale(.96); } 52%, 84% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; transform: translateY(-4px); } }

/* storyboard */
.board { display: flex; gap: 8px; margin-top: -18px; }
.frame { position: relative; width: 74px; height: 56px; border-radius: 8px; background: #fff; box-shadow: 0 10px 22px -14px rgba(16, 32, 96, .4); animation: frameIn 5.4s var(--eo) infinite; animation-delay: calc(var(--i) * .22s); }
.frame i { position: absolute; inset: 9px; border: 1.5px dashed #C3CBDC; border-radius: 4px; }
.frame i::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); opacity: .85; left: calc(8% + var(--i) * 28%); top: 50%; margin-top: -7px; }
.stamp {
  position: absolute; right: 16%; bottom: 26px; padding: 5px 11px; border: 2px solid var(--blue); border-radius: 7px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); background: rgba(255, 255, 255, .9);
  animation: stamp 5.4s var(--eo) infinite;
}
@keyframes frameIn { 0% { opacity: 0; transform: translateY(14px); } 12%, 86% { opacity: 1; transform: none; } 94%, 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes stamp { 0%, 44% { opacity: 0; transform: rotate(-8deg) scale(1.6); } 52%, 86% { opacity: 1; transform: rotate(-8deg) scale(1); } 94%, 100% { opacity: 0; transform: rotate(-8deg) scale(1); } }

/* video */
.player { position: relative; width: 210px; height: 118px; border-radius: 11px; overflow: hidden; margin-top: -26px; background: linear-gradient(140deg, #103E6B, var(--ink) 70%); box-shadow: 0 14px 28px -14px rgba(10, 15, 31, .5); }
.player__shape { position: absolute; left: 30px; top: 30px; width: 34px; height: 34px; border-radius: 9px; background: var(--blue); animation: shapeMove 5.4s var(--io) infinite; }
.player__bar { position: absolute; left: 12px; right: 12px; bottom: 11px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .2); overflow: hidden; }
.player__bar i { position: absolute; inset: 0; background: #fff; transform-origin: 0 50%; animation: playBar 5.4s linear infinite; }
.player__dl { position: absolute; bottom: 20px; animation: pillIn 5.4s var(--eo) infinite; animation-delay: .9s; }
@keyframes shapeMove {
  0% { transform: translate(0, 0) rotate(0); border-radius: 9px; }
  30% { transform: translate(120px, 8px) rotate(90deg); border-radius: 50%; }
  60% { transform: translate(60px, 20px) rotate(180deg) scale(1.3); border-radius: 9px; }
  100% { transform: translate(0, 0) rotate(270deg); border-radius: 9px; }
}
@keyframes playBar { 0% { transform: scaleX(0); } 70%, 100% { transform: scaleX(1); } }

/* 48h clock */
.clock { margin-top: 20px; display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(24px, 4vw, 52px); }
.clock__dial { position: relative; width: clamp(190px, 22vw, 250px); aspect-ratio: 1; }
.clock__dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.clock__track { fill: none; stroke: #EEF1F7; stroke-width: 9; }
.clock__fill { fill: none; stroke: var(--blue); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 552.92; stroke-dashoffset: 552.92; }
.clock__ticks line { stroke: #CDD4E2; stroke-width: 1.5; stroke-linecap: round; transition: stroke .3s; }
.clock__ticks line.on { stroke: var(--blue); }
.clock__read { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.clock__hrs { font-family: var(--display); font-weight: 640; font-size: clamp(56px, 6vw, 76px); letter-spacing: 0; line-height: .9; font-variant-numeric: tabular-nums; }
.clock__hrs small { font-size: .38em; color: var(--muted); margin-left: 2px; letter-spacing: 0; }
.clock__of { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 6px; }
.clock__h { font-size: clamp(22px, 2.4vw, 30px); max-width: 560px; }

/* One centring rule for every marker (stop dots, pulse ring, moving head): the marker's centre
   is placed on the track's centre line at --p, then pulled back by half its own size. */
.tline { --p: 0; --track: 4px; --gap: 16px; position: relative; margin-top: 34px; }
.tline__track { position: relative; height: var(--track); border-radius: var(--track); background: #EEF1F7; }
.tline__fill { position: absolute; inset: 0; border-radius: var(--track); background: var(--blue); transform-origin: 0 50%; transform: scaleX(var(--p)); }
.tline__head { position: absolute; top: 50%; left: calc(var(--p) * 100%); width: 16px; height: 16px; transform: translate(-50%, -50%); border-radius: 50%; background: #fff; border: 3.5px solid var(--blue); box-shadow: 0 0 0 5px rgba(10, 114, 194, .14); }
/* Labels: 20% wide is the most that can't collide given stops at 0 / 30% / 62% / 100%.
   Height is set by js/main.js to fit the tallest wrapped label (min-height is the no-JS fallback). */
.tline__stops { position: relative; min-height: 96px; margin-top: var(--gap); }
.tline__stops li { position: absolute; left: calc(var(--p) * 100%); top: 0; width: 20%; transform: translateX(-50%); text-align: center; font-size: 13px; line-height: 1.35; color: var(--muted); transition: color .4s; }
.tline__stops li:first-child { transform: none; text-align: left; }
.tline__stops li:last-child { transform: translateX(-100%); text-align: right; }
.tline__stops li b { display: block; font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--ink); }
/* Stop dot: x = the stop's --p point (middle of a centred label, start/end of the edge labels),
   y = the track's centre line, which sits (gap + track/2) above the label box. */
.tline__stops li::before, .clock.is-delivered .tline__stops li:last-child::after {
  --x: 50%;
  content: ""; position: absolute; left: var(--x); top: calc(-1 * (var(--gap) + var(--track) / 2));
  width: 10px; height: 10px; transform: translate(-50%, -50%); border-radius: 50%;
}
.tline__stops li::before { background: #fff; border: 2px solid #CDD4E2; transition: border-color .4s, background-color .4s; }
.tline__stops li:first-child::before { --x: 0%; }
.tline__stops li:last-child::before, .clock.is-delivered .tline__stops li:last-child::after { --x: 100%; }
.tline__stops li.on { color: var(--ink); }
.tline__stops li.on::before { border-color: var(--blue); background: var(--blue); }
/* "Video delivered" lands: one pulse on the final stop, the head and the readout */
.clock.is-delivered .tline__stops li:last-child::after { border: 2px solid var(--blue); animation: deliverRing .9s var(--eo) both; }
.clock.is-delivered .tline__stops li:last-child { animation: deliverText .7s var(--eo) both; }
.clock.is-delivered .tline__head { animation: deliverHead .7s var(--eo) both; }
.clock.is-delivered .clock__hrs { display: inline-block; animation: deliverNum .7s var(--eo) both; }
@keyframes deliverRing { from { transform: translate(-50%, -50%) scale(1); opacity: .9; } to { transform: translate(-50%, -50%) scale(3.4); opacity: 0; } }
@keyframes deliverText { 40% { color: var(--blue); } }
@keyframes deliverHead { 35% { box-shadow: 0 0 0 12px rgba(10, 114, 194, .2); } }
@keyframes deliverNum { 35% { transform: scale(1.08); color: var(--blue); } }
.clock__note { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); max-width: 620px; }

/* ---------- What's included ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feat { grid-column: span 2; padding: 12px 12px 26px; }
.feat--wide { grid-column: span 3; }
.feat > :not(.feat__vis) { padding-inline: 12px; }
.feat p { margin-top: 6px; color: var(--ink-2); font-size: 15px; }
.feat__vis { position: relative; height: 180px; margin-bottom: 22px; border-radius: 13px; background: var(--mist); overflow: hidden; display: grid; place-items: center; }
.feat--wide .feat__vis { height: 220px; }

.vis-4k__txt { font-family: var(--display); font-weight: 700; font-size: 92px; letter-spacing: 0; line-height: 1; animation: sharpen 4.4s var(--eo) infinite; }
.vis-4k__px { position: absolute; bottom: 16px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.br { position: absolute; left: 50%; top: 50%; width: 24px; height: 24px; border: 0 solid var(--blue); animation: focusIn 4.4s var(--eo) infinite; }
.br--tl { --dx: -1; --dy: -1; margin: -66px 0 0 -112px; border-top-width: 2.5px; border-left-width: 2.5px; border-top-left-radius: 6px; }
.br--tr { --dx: 1; --dy: -1; margin: -66px 0 0 88px; border-top-width: 2.5px; border-right-width: 2.5px; border-top-right-radius: 6px; }
.br--bl { --dx: -1; --dy: 1; margin: 42px 0 0 -112px; border-bottom-width: 2.5px; border-left-width: 2.5px; border-bottom-left-radius: 6px; }
.br--br { --dx: 1; --dy: 1; margin: 42px 0 0 88px; border-bottom-width: 2.5px; border-right-width: 2.5px; border-bottom-right-radius: 6px; }
@keyframes focusIn { 0% { transform: translate(calc(var(--dx) * 18px), calc(var(--dy) * 18px)); opacity: .2; } 30%, 80% { transform: none; opacity: 1; } 100% { transform: translate(calc(var(--dx) * 18px), calc(var(--dy) * 18px)); opacity: .2; } }
@keyframes sharpen { 0% { filter: blur(7px); opacity: .45; } 30%, 80% { filter: blur(0); opacity: 1; } 100% { filter: blur(7px); opacity: .45; } }

.fmt { position: relative; width: 192px; height: 108px; border: 2.5px solid var(--blue); border-radius: 10px; background: rgba(10, 114, 194, .06); animation: fmt 7.5s var(--io) infinite; }
.fmt__lbl i { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--mono); font-style: normal; font-size: 14px; color: var(--blue); opacity: 0; animation: fmtLbl 7.5s var(--eo) infinite; }
.fmt__lbl i:nth-child(2) { animation-delay: 2.5s; }
.fmt__lbl i:nth-child(3) { animation-delay: 5s; }
.fmt--static { animation: none; }
.fmt--static .fmt__lbl i { opacity: 1; animation: none; }
@keyframes fmt {
  0%, 28% { width: 192px; height: 108px; }
  33%, 61% { width: 76px; height: 136px; }
  66%, 94% { width: 124px; height: 124px; }
  100% { width: 192px; height: 108px; }
}
@keyframes fmtLbl { 0% { opacity: 0; transform: translateY(6px); } 6%, 27% { opacity: 1; transform: none; } 32%, 100% { opacity: 0; transform: translateY(-6px); } }

.wave { display: flex; align-items: center; gap: 4px; height: 90px; }
.wave i { width: 5px; height: 100%; border-radius: 3px; background: var(--blue); transform: scaleY(var(--h)); animation: wave 1.3s var(--io) var(--dl) infinite alternate; opacity: .9; }
.wave i:nth-child(3n) { background: var(--blue-300); }
@keyframes wave { to { transform: scaleY(calc(var(--h) * .35)); } }
.wave__head { position: absolute; top: 28px; bottom: 28px; left: 50%; width: 2px; margin-left: -94px; border-radius: 2px; background: var(--ink); animation: head 3.2s linear infinite; }
.wave__head::before { content: ""; position: absolute; top: -5px; left: -4px; width: 10px; height: 10px; border-radius: 3px; background: var(--ink); }
@keyframes head { from { transform: translateX(0); } to { transform: translateX(188px); } }

.rev__arrow { width: 84px; height: 84px; animation: spin 3s var(--io) infinite; }
.rev__arrow path { fill: none; stroke: var(--blue); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; }
.rev__n { position: absolute; font-family: var(--display); font-weight: 700; font-size: 30px; }
@keyframes spin { 0% { transform: rotate(0); } 40%, 100% { transform: rotate(360deg); } }

.vis-rights svg { width: 90px; height: 90px; }
.shield { fill: var(--ice); stroke: var(--blue); stroke-width: 3.5; stroke-linejoin: round; }
.shield__check { fill: none; stroke: var(--blue); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; animation: draw 3.6s var(--eo) infinite; }
@keyframes draw { 0%, 12% { stroke-dashoffset: 30; } 40%, 86% { stroke-dashoffset: 0; } 96%, 100% { stroke-dashoffset: 30; } }

/* ---------- Use cases ---------- */
.uses__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.use { padding: 10px 10px 24px; }
.use > :not(.use__vis) { padding-inline: 10px; }
.use__vis { position: relative; height: 176px; margin-bottom: 20px; border-radius: 12px; background: var(--mist); overflow: hidden; }
.use p { margin-top: 6px; font-size: 14.5px; color: var(--ink-2); }

.uv-launch__beam { position: absolute; left: 50%; top: -10px; width: 180px; height: 170px; margin-left: -90px; background: linear-gradient(to bottom, rgba(10, 114, 194, .22), rgba(10, 114, 194, 0)); clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%); animation: beam 4.8s var(--eo) infinite; }
.uv-launch__prod { position: absolute; left: 50%; bottom: 40px; width: 72px; height: 72px; margin-left: -36px; border-radius: 18px; background: linear-gradient(145deg, #36ADF7, var(--blue-600)); box-shadow: 0 16px 26px -12px rgba(10, 114, 194, .7), inset 0 1px 0 rgba(255, 255, 255, .3); display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 0 16px; animation: rise 4.8s var(--eo) infinite; }
.uv-launch__prod i { height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .9); }
.uv-launch__prod i + i { width: 60%; background: rgba(255, 255, 255, .5); }
.uv-launch__tag { position: absolute; left: 50%; bottom: 102px; margin-left: 22px; padding: 3px 9px; border-radius: 99px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; animation: tag 4.8s var(--eo) infinite; }
.uv-launch__floor { position: absolute; left: 50%; bottom: 28px; width: 90px; height: 10px; margin-left: -45px; border-radius: 50%; background: radial-gradient(rgba(10, 15, 31, .18), transparent 70%); animation: floor 4.8s var(--eo) infinite; }
@keyframes beam { 0%, 8% { opacity: 0; } 30%, 80% { opacity: 1; } 95%, 100% { opacity: 0; } }
@keyframes rise { 0%, 8% { opacity: 0; transform: translateY(46px) scale(.9); } 34%, 80% { opacity: 1; transform: none; } 94%, 100% { opacity: 0; transform: translateY(-10px); } }
@keyframes tag { 0%, 34% { opacity: 0; transform: translateY(8px) scale(.8); } 44%, 80% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes floor { 0%, 8% { opacity: 0; transform: scaleX(.4); } 34%, 80% { opacity: 1; transform: none; } 94%, 100% { opacity: 0; transform: scaleX(.6); } }

.phone { position: absolute; left: 50%; top: 18px; width: 100px; height: 176px; margin-left: -50px; padding: 20px 10px; border-radius: 18px; background: #fff; border: 2px solid var(--ink); }
.phone__row { position: relative; display: flex; align-items: center; gap: 7px; height: 26px; padding: 0 5px; margin-bottom: 7px; border-radius: 7px; }
.phone__row i { width: 13px; height: 13px; border-radius: 50%; background: #DCE2EE; flex: none; }
.phone__row b { flex: 1; height: 5px; border-radius: 3px; background: #E4E8F0; }
.phone__row--hit { animation: rowHit 4.4s ease infinite; }
.phone__row--hit b { flex: .7; }
.mini-toggle { position: relative; width: 20px; height: 11px; border-radius: 6px; background: #D2D8E5; flex: none; animation: mtBg 4.4s ease infinite; }
.mini-toggle::after { content: ""; position: absolute; left: 1.5px; top: 1.5px; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: mtKnob 4.4s var(--eo) infinite; }
.phone__tap { position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--blue); background: rgba(10, 114, 194, .18); animation: tap 4.4s var(--io) infinite; }
@keyframes tap {
  0% { opacity: 0; transform: translate(34px, 128px); }
  10% { opacity: 1; transform: translate(34px, 128px); }
  38% { opacity: 1; transform: translate(62px, 50px) scale(1); }
  42% { transform: translate(62px, 50px) scale(.75); }
  48% { opacity: 1; transform: translate(62px, 50px) scale(1.15); }
  60%, 100% { opacity: 0; transform: translate(62px, 50px) scale(1.4); }
}
@keyframes rowHit { 0%, 40% { background: transparent; } 46%, 88% { background: var(--ice); } 96%, 100% { background: transparent; } }
@keyframes mtBg { 0%, 42% { background: #D2D8E5; } 46%, 90% { background: var(--blue); } 96%, 100% { background: #D2D8E5; } }
@keyframes mtKnob { 0%, 42% { transform: translateX(0); } 50%, 90% { transform: translateX(9px); } 98%, 100% { transform: translateX(0); } }

/* Social ads: a 16:9 video post scrolling into a feed */
.feed { position: absolute; left: 50%; top: 14px; width: 184px; margin-left: -92px; display: flex; flex-direction: column; gap: 8px; animation: feedIn 6s var(--eo) infinite; }
.feed__post { display: flex; flex-direction: column; gap: 6px; padding: 8px; border-radius: 12px; background: #fff; box-shadow: 0 14px 26px -16px rgba(10, 15, 31, .45); }
.feed__head { display: flex; align-items: center; gap: 6px; height: 14px; }
.feed__avatar { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(140deg, #46B8FA, var(--blue)); flex: none; }
.feed__head b { width: 46px; height: 5px; border-radius: 3px; background: var(--ink); opacity: .8; }
.feed__head em { margin-left: auto; font-style: normal; font-family: var(--mono); font-size: 7px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.feed__media { position: relative; aspect-ratio: 16 / 9; border-radius: 7px; overflow: hidden; background: var(--ink); }
.feed__slide { position: absolute; inset: 0; }
.feed__slide--a { background: radial-gradient(45% 60% at 50% 50%, #46B8FA, transparent 70%), linear-gradient(160deg, #124375, var(--ink)); animation: kb 6s linear infinite; }
.feed__slide--b { background: radial-gradient(22% 38% at 50% 52%, #fff 0 40%, transparent 42%), linear-gradient(160deg, var(--blue), var(--blue-600)); animation: slideB 6s var(--eo) infinite; }
.feed__bar { position: absolute; left: 6px; right: 6px; bottom: 5px; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, .3); overflow: hidden; }
.feed__bar i { position: absolute; inset: 0; background: #fff; transform-origin: 0 50%; animation: feedBar 6s linear infinite; }
.feed__actions { display: flex; align-items: center; gap: 7px; height: 12px; }
.feed__actions > i { width: 11px; height: 11px; border-radius: 3px; border: 1.5px solid #C3CBDC; }
.feed__actions b { margin-left: auto; width: 26px; height: 5px; border-radius: 3px; background: #DCE2EE; transform-origin: 100% 50%; animation: feedCount 6s var(--eo) infinite; }
.feed__like { width: 13px; height: 13px; animation: feedLike 6s var(--eo) infinite; }
.feed__like svg { width: 100%; height: 100%; overflow: visible; }
.feed__like path { fill: transparent; stroke: #9AA2B5; stroke-width: 2.2; animation: feedLikeFill 6s ease infinite; }
.feed__post--next { opacity: .55; }
.feed__post--next .feed__media { background: #E6EAF2; }
@keyframes feedIn { 0% { opacity: 0; transform: translateY(26px); } 12%, 86% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; transform: translateY(-14px); } }
@keyframes feedBar { 0%, 10% { transform: scaleX(0); } 88%, 100% { transform: scaleX(1); } }
@keyframes feedLike { 0%, 58% { transform: none; } 63% { transform: scale(1.45); } 70%, 100% { transform: none; } }
@keyframes feedLikeFill { 0%, 59% { fill: transparent; stroke: #9AA2B5; } 61%, 94% { fill: var(--blue); stroke: var(--blue); } 100% { fill: transparent; stroke: #9AA2B5; } }
@keyframes feedCount { 0%, 60% { transform: scaleX(.7); background: #DCE2EE; } 66%, 94% { transform: none; background: #9CC7EA; } 100% { transform: scaleX(.7); background: #DCE2EE; } }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.18); } }
@keyframes slideB { 0%, 33% { transform: translateX(100%); } 40%, 64% { transform: none; } 70%, 100% { transform: translateX(-100%); } }

.uv-announce__txt { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: .22em; overflow: hidden; font-family: var(--display); font-weight: 680; font-size: 44px; letter-spacing: 0; }
.uv-announce__txt span { display: inline-block; animation: wordUp 4.6s var(--eo) infinite; }
.uv-announce__txt span + span { color: var(--blue); animation-delay: .1s; }
.uv-announce__ver { position: absolute; right: 16px; top: 16px; padding: 3px 9px; border-radius: 99px; background: var(--blue); color: #fff; font-family: var(--mono); font-size: 10px; animation: tag 4.6s var(--eo) infinite; }
.ring { position: absolute; left: 50%; top: 50%; width: 80px; height: 80px; margin: -40px 0 0 -40px; border-radius: 50%; border: 1.5px solid var(--blue); animation: ringOut 4.6s var(--eo) infinite; }
.ring--2 { animation-delay: .35s; }
@keyframes wordUp { 0% { transform: translateY(110%); } 16%, 80% { transform: none; } 94%, 100% { transform: translateY(-110%); } }
@keyframes ringOut { 0%, 10% { opacity: 0; transform: scale(.4); } 14% { opacity: .7; } 60%, 100% { opacity: 0; transform: scale(3); } }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(to bottom, #fff, var(--mist) 30%, var(--mist) 70%, #fff); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 440px)); justify-content: center; gap: 20px; }
.plan { position: relative; padding: clamp(24px, 3vw, 36px); overflow: hidden; }
.plan::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity .5s ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(10, 114, 194, .09), transparent 45%);
}
.plan:hover::before { opacity: 1; }
.plan > * { position: relative; z-index: 1; }
.plan--feature { border-color: transparent; box-shadow: 0 0 0 1.5px var(--blue), 0 34px 70px -34px rgba(10, 114, 194, .5); }
.plan__flag { position: absolute; top: 22px; right: 22px; padding: 5px 10px; border-radius: 99px; background: var(--ice); color: var(--blue); font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; }
.plan__len { display: flex; align-items: center; gap: 12px; }
.plan__secs { font-family: var(--display); font-weight: 680; font-size: 64px; line-height: .8; letter-spacing: 0; color: var(--blue); }
.plan__unit { font-size: 14px; line-height: 1.25; color: var(--ink-2); }
.plan__was { margin-top: 26px; font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1; color: var(--muted); }
.plan__was s { text-decoration-thickness: 2px; text-decoration-color: #D93A3A; }
.plan__was + .plan__price { margin-top: 6px; }
.plan__price { margin-top: 28px; font-family: var(--display); font-weight: 640; font-size: 60px; line-height: 1; letter-spacing: 0; }
.plan__cur, .plan__pence { font-size: .45em; vertical-align: .95em; letter-spacing: -.01em; }
.plan__cur { margin-right: 2px; }
.plan__pence { color: var(--muted); }
.plan__list { margin: 26px 0 28px; }
.plan__list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.plan__list li:first-child { color: var(--ink); font-weight: 600; }
.plan__list li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ice) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.3l2.5 2.4L13 6.3' fill='none' stroke='%230A72C2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/18px no-repeat;
}
.plan__guar { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--ink); text-align: center; }
.plan__guar svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.terms { max-width: 760px; margin: 36px auto 0; text-align: center; }
.terms p { font-size: 14.5px; color: var(--muted); }
.terms .terms__direct { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 10px 18px; border-radius: 99px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); font-weight: 600; }
.terms__ico { position: relative; width: 22px; height: 22px; border-radius: 50%; background: var(--ice); }
.terms__ico::before { content: ""; position: absolute; left: 50%; top: 5px; width: 7px; height: 7px; margin-left: -3.5px; border-radius: 50%; background: var(--blue); }
.terms__ico::after { content: ""; position: absolute; left: 50%; bottom: 4px; width: 12px; height: 5px; margin-left: -6px; border-radius: 6px 6px 2px 2px; background: var(--blue); }

/* ---------- Why ---------- */
.cmp { display: grid; grid-template-columns: 1fr 1px 1fr; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.cmp__col { padding: clamp(24px, 4vw, 48px); }
.cmp__col--them { background: var(--mist); }
.cmp__vs { position: relative; background: var(--line); font-size: 0; }
.cmp__vs::after { content: "vs"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--mono); font-size: 12px; color: var(--muted); z-index: 1; }
.cmp__who { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 15px; font-weight: 600; }
.cmp__col--them .cmp__who { color: var(--muted); }
.cmp dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); }
.cmp dt { font-size: 14px; color: var(--muted); }
.cmp dd { text-align: right; font-size: 17px; color: var(--ink-2); }
.cmp__col--us dd { font-family: var(--display); font-weight: 650; font-size: 24px; letter-spacing: 0; color: var(--ink); }
.cmp__col--us dl > div:nth-child(-n+2) dd { color: var(--blue); }
.days { display: grid; grid-template-columns: repeat(21, 1fr); gap: 4px; margin-top: 28px; }
.days i { height: 28px; border-radius: 5px; background: #E3E7EF; transform: scaleY(.35); transform-origin: 50% 100%; transition: transform .6s var(--eo), background-color .4s ease; }
.days--them { -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent); mask-image: linear-gradient(90deg, #000 55%, transparent); }
.days--them i.on { transform: none; background: #9AA3B8; }
.days--us i.on { transform: none; background: var(--blue); }
.days__cap { margin-top: 12px; font-size: 13px; color: var(--muted); }
.cmp__fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq .shead { position: sticky; top: 110px; margin-bottom: 0; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__item:first-child { border-top: 1px solid var(--line); }
.acc h3 { margin: 0; font-size: inherit; }
.acc__q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border: 0; background: none; cursor: pointer; text-align: left; font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.acc__icon { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--mist); transition: background-color .35s ease, transform .5s var(--eo); }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 2px; background: var(--ink); transition: transform .5s var(--eo), background-color .35s; }
.acc__icon::after { transform: rotate(90deg); }
.acc__q:hover .acc__icon { background: var(--ice); }
.acc__q[aria-expanded="true"] .acc__icon { background: var(--blue); transform: rotate(180deg); }
.acc__q[aria-expanded="true"] .acc__icon::before, .acc__q[aria-expanded="true"] .acc__icon::after { background: #fff; }
.acc__q[aria-expanded="true"] .acc__icon::after { transform: rotate(0); }
.acc__a { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .55s var(--eo), visibility 0s linear .55s; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding: 0 56px 26px 0; color: var(--ink-2); font-size: 16px; opacity: 0; transform: translateY(-6px); transition: opacity .4s ease, transform .55s var(--eo); }
.acc__item.open .acc__a { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows .55s var(--eo), visibility 0s; }
.acc__item.open .acc__a p { opacity: 1; transform: none; transition-delay: .08s; }

/* ---------- Final CTA ---------- */
.final { padding: 0 0 clamp(88px, 10vw, 140px); }
.final__panel {
  position: relative; overflow: hidden; isolation: isolate; text-align: center; color: #fff;
  padding: clamp(64px, 9vw, 128px) clamp(20px, 5vw, 64px);
  border-radius: 30px;
  background: radial-gradient(120% 140% at 50% 0%, #36ADF7 0%, var(--blue) 42%, #05519E 100%);
  box-shadow: 0 40px 80px -40px rgba(10, 114, 194, .7);
}
.final__panel::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
}
.final__lines { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.final__lines i { position: absolute; left: 0; width: 38%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent); animation: streak var(--t) linear var(--dl) infinite; transform: translateX(-110%); }
.final__lines i:nth-child(1) { top: 18%; --t: 5.5s; --dl: 0s; }
.final__lines i:nth-child(2) { top: 36%; --t: 7s; --dl: -2s; }
.final__lines i:nth-child(3) { top: 62%; --t: 6s; --dl: -4s; }
.final__lines i:nth-child(4) { top: 78%; --t: 8s; --dl: -1s; }
.final__lines i:nth-child(5) { top: 90%; --t: 6.5s; --dl: -3s; }
@keyframes streak { to { transform: translateX(300%); } }
.final__title { color: #fff; font-size: clamp(42px, 6.6vw, 88px); max-width: 920px; margin-inline: auto; }
.final__sub { margin: 22px auto 34px; font-size: 17px; color: rgba(255, 255, 255, .82); }

/* ---------- Footer ---------- */
.foot { padding: 52px 0 28px; border-top: 1px solid var(--line); }
.foot__inner { display: grid; grid-template-columns: 1fr auto auto; gap: 24px 48px; align-items: center; }
.foot__brand p { margin-top: 10px; font-size: 14px; color: var(--muted); }
.foot__links { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 14.5px; color: var(--ink-2); }
.foot__links a:hover, .foot__mail:hover { color: var(--blue); }
.foot__mail { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.foot__base { width: 100%; display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }

/* ==========================================================================
   ORDER: brief form panel
   ========================================================================== */
html.order-open { overflow: hidden; }
html.order-open body { overflow: hidden; }
.order__panel { -webkit-overflow-scrolling: touch; touch-action: pan-y; }
.order {
  position: fixed; inset: 0; width: 100%; max-width: none; height: 100%; max-height: none;
  margin: 0; padding: 0; border: 0; background: transparent; color: var(--ink);
}
.order::backdrop { background: rgba(10, 15, 31, .42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: fadeIn .35s ease both; }
.order.is-closing::backdrop { animation: fadeOut .26s ease both; }
.order__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(620px, 100%);
  overflow-y: auto; overscroll-behavior: contain;
  background: #fff; box-shadow: -30px 0 80px -30px rgba(10, 15, 31, .45);
  padding: clamp(24px, 4vw, 44px);
  display: flex; flex-direction: column;
  animation: panelIn .55s var(--eo) both;
}
.order.is-closing .order__panel { animation: panelOut .26s var(--qi) both; }
@keyframes panelIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes panelOut { to { transform: translateX(40px); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes fadeOut { to { opacity: 0; } }

.order__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.order__eyebrow { margin-bottom: 10px; }
.order__title { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 30px); line-height: 1.1; }
.order__clock { display: inline-flex; align-items: center; gap: 9px; margin-top: 12px; padding: 7px 12px; border-radius: 99px; background: var(--ice); color: var(--blue); font-size: 13.5px; font-weight: 600; }
.order__clock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.order__close { position: relative; flex: none; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--mist); cursor: pointer; transition: background-color .2s, transform .4s var(--eo); }
.order__close::before, .order__close::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; border-radius: 2px; background: var(--ink); transform: rotate(45deg); }
.order__close::after { transform: rotate(-45deg); }
.order__close:hover { background: var(--ice); transform: rotate(90deg); }

/* progress */
.osteps { --p: 0; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 28px 0 26px; padding-top: 14px; counter-reset: ostep; }
.osteps::before, .osteps::after { content: ""; position: absolute; top: 0; left: 0; height: 4px; border-radius: 4px; }
.osteps::before { right: 0; background: var(--line); }
.osteps::after { width: calc(12.5% + var(--p) * 75%); background: var(--blue); transition: width .6s var(--eo); }
.osteps li { counter-increment: ostep; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: center; transition: color .3s; }
.osteps li span::before { content: counter(ostep, decimal-leading-zero) " "; opacity: .6; }
.osteps li.is-current, .osteps li.is-done { color: var(--ink); }
.osteps li.is-current span::before { color: var(--blue); opacity: 1; }

/* fields */
.oform { display: flex; flex-direction: column; flex: 1; }
.ostep { display: none; margin: 0; padding: 0; border: 0; min-width: 0; }
.ostep.is-active { display: flex; flex-direction: column; gap: 18px; animation: stepIn .5s var(--eo) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } }
.orow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ofield { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.ofield__label { font-size: 14px; font-weight: 600; color: var(--ink); }
.ofield__label i { font-style: normal; color: var(--blue); }
.ofield__label small { margin-left: 6px; font-size: 12px; font-weight: 500; color: var(--muted); }
.ofield__hint { font-size: 12.5px; color: var(--muted); }
.oform input[type=text], .oform input[type=email], .oform input[type=url], .oform textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #D9DEE9; border-radius: 11px; background: #fff;
  font: inherit; font-size: 15.5px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.oform textarea { resize: vertical; min-height: 80px; line-height: 1.45; }
.oform input::placeholder, .oform textarea::placeholder { color: #9AA2B5; }
.oform input:focus, .oform textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 114, 194, .14); }
.oform input:user-invalid, .oform textarea:user-invalid { border-color: #D93A3A; }
.oform__trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.opkg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opkg__opt { position: relative; cursor: pointer; }
.opkg__opt input { position: absolute; opacity: 0; }
.opkg__opt span { display: flex; flex-direction: column; gap: 2px; height: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 13px; transition: border-color .2s, background-color .2s, box-shadow .2s; }
.opkg__opt b { font-size: 14px; }
.opkg__opt em { font-style: normal; font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--muted); }
.opkg__opt input:checked + span { border-color: var(--blue); background: var(--ice); box-shadow: 0 0 0 3px rgba(10, 114, 194, .12); }
.opkg__opt input:checked + span em { color: var(--blue); }
.opkg__opt input:focus-visible + span { outline: 3px solid rgba(10, 114, 194, .45); outline-offset: 2px; }

.olist { display: flex; flex-direction: column; gap: 8px; }
.olist label { position: relative; display: block; }
.olist__n { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--ice); color: var(--blue); font-family: var(--mono); font-size: 11px; }
.olist label input { padding-left: 44px !important; }

.ocheck { display: flex; align-items: flex-start; gap: 10px; margin-top: -8px; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.ocheck input, .ofmt input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); flex: none; }
.ofmt { display: flex; flex-wrap: wrap; gap: 8px; }
.ofmt label { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 99px; cursor: pointer; font-family: var(--mono); font-size: 13px; transition: border-color .2s, background-color .2s; }
.ofmt label:has(input:checked) { border-color: var(--blue); background: var(--ice); color: var(--blue); }

.oform__error { margin-top: 16px; padding: 12px 14px; border-radius: 11px; background: #FDEEEE; color: #A32424; font-size: 14px; }
.oform__nav { position: sticky; bottom: calc(-1 * clamp(24px, 4vw, 44px)); display: flex; align-items: center; gap: 12px; margin-top: auto; padding: 22px 0 clamp(24px, 4vw, 44px); background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 30%); }
.oform__nav .btn[type=submit], #oNext { margin-left: auto; min-width: 150px; }
.oform__count { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.ostep + .ostep { margin-top: 0; }

/* confirmation */
.odone { margin: auto 0; padding: 40px 0; text-align: center; display: flex; flex-direction: column; align-items: center; outline: none; animation: stepIn .6s var(--eo) both; }
.odone__tick { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 10px var(--ice); margin-bottom: 26px; }
.odone__tick svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; animation: tickDraw .7s var(--eo) .25s both; }
@keyframes tickDraw { from { stroke-dashoffset: 24; } to { stroke-dashoffset: 0; } }
.odone__title { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4vw, 36px); }
.odone p { max-width: 440px; margin-top: 14px; color: var(--ink-2); font-size: 16px; }
.odone .odone__q { font-size: 14.5px; color: var(--muted); }
.odone__q a { color: var(--blue); font-weight: 600; }
.odone .btn { margin-top: 28px; }
.odone .odone__auto { margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--muted); }

@media (max-width: 560px) {
  .orow, .opkg { grid-template-columns: 1fr; }
  .osteps li { font-size: 10px; letter-spacing: .04em; }
  .oform__count { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .order__panel, .order::backdrop, .ostep.is-active, .odone { animation: none; }
}

/* ==========================================================================
   LEGAL PAGES (terms, refunds, privacy)
   ========================================================================== */
.legal { padding: clamp(40px, 6vw, 80px) 0 clamp(72px, 9vw, 120px); }
.legal__wrap { max-width: 760px; }
.legal__title { font-size: clamp(36px, 5vw, 56px); }
.legal__meta { margin-top: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.legal__summary { margin-top: 32px; padding: 22px 24px; border-radius: 16px; background: var(--ice); color: var(--ink); }
.legal__summary h2 { font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.legal__summary ul { list-style: disc; padding-left: 20px; }
.legal__summary li { margin-top: 6px; color: var(--ink-2); }
.legal__body { margin-top: 12px; }
.legal__body h2 { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); font-family: var(--display); font-weight: 700; font-size: clamp(21px, 2.4vw, 25px); line-height: 1.2; }
.legal__body h3 { margin-top: 24px; font-size: 17px; font-weight: 600; }
.legal__body p, .legal__body li { color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.legal__body p { margin-top: 12px; }
.legal__body ul, .legal__body ol { margin-top: 12px; padding-left: 22px; }
.legal__body ul { list-style: disc; }
.legal__body ol { list-style: decimal; }
.legal__body li { margin-top: 6px; padding-left: 4px; }
.legal__body a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal__body strong { color: var(--ink); }
.legal__body code { font-family: var(--mono); font-size: .86em; padding: 1px 6px; border-radius: 6px; background: var(--mist); color: var(--ink); }
.legal__table { width: 100%; margin-top: 16px; border-collapse: collapse; font-size: 14.5px; }
.legal__table th, .legal__table td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; color: var(--ink-2); }
.legal__table th { font-weight: 600; color: var(--ink); font-size: 13px; }
.legal__tablewrap { overflow-x: auto; }
.legal__tablewrap .legal__table { min-width: 560px; }
.legal__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.legal__nav a { padding: 8px 14px; border-radius: 99px; box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; color: var(--ink-2); }
.legal__nav a[aria-current="page"] { background: var(--ink); color: #fff; box-shadow: none; }
.oform__legal { margin-top: -4px; font-size: 13px; color: var(--muted); }
.oform__legal a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   COOKIE BANNER (js/consent.js)
   ========================================================================== */
.cookie {
  position: fixed; left: 16px; bottom: 16px; z-index: 60;
  width: min(340px, calc(100% - 32px));
  display: flex; flex-direction: column; gap: 10px;
  padding: 12px 14px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 10px 30px -12px rgba(10, 15, 31, .25), 0 1px 3px rgba(10, 15, 31, .05);
  transform: translateY(12px); opacity: 0;
  transition: transform .6s var(--eo), opacity .45s ease;
}
.cookie.is-in { transform: none; opacity: 1; }
.cookie.is-in.is-dodging { transform: translateY(calc(100% + 24px)); opacity: 0; pointer-events: none; }
.cookie__text { font-size: 12.5px; line-height: 1.4; color: var(--ink-2); }
.cookie__text a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 6px; }
/* Accept and Reject are deliberately identical: neither is nudged */
.cookie__btn {
  flex: 1; height: 30px; padding: 0 12px; border-radius: 8px; cursor: pointer;
  border: 1px solid #CFD5E2; background: #fff; color: var(--ink);
  font: inherit; font-size: 12.5px; font-weight: 600;
  transition: background-color .2s, border-color .2s;
}
.cookie__btn:hover { background: var(--mist); border-color: var(--ink-2); }
/* Phone: slim bar across the bottom, one line of text over the two buttons */
@media (max-width: 560px) {
  .cookie { left: 0; right: 0; bottom: 0; width: 100%; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); border-radius: 0; border-width: 1px 0 0; box-shadow: 0 -6px 20px -12px rgba(10, 15, 31, .25); }
  .cookie__text { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cookie__btn { height: 28px; }
}
@media (prefers-reduced-motion: reduce) { .cookie { transition: none; } }

/* ==========================================================================
   Loops pause offscreen (JS toggles .is-playing on [data-loop])
   ========================================================================== */
html.js [data-loop] *, html.js [data-loop]::before, html.js [data-loop] *::before, html.js [data-loop] *::after { animation-play-state: paused; }
html.js [data-loop].is-playing *, html.js [data-loop].is-playing *::before, html.js [data-loop].is-playing *::after { animation-play-state: running; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .uses__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { gap: 22px; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .proof__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .feat, .feat--wide { grid-column: span 1; }
  .feat--wide { grid-column: span 2; }
  .faq__wrap { grid-template-columns: 1fr; }
  .faq .shead { position: static; }
  .foot__inner { grid-template-columns: 1fr; }
  .clock { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .clock__body { width: 100%; text-align: left; }
}

@media (max-width: 720px) {
  .plans { grid-template-columns: minmax(0, 1fr); }
  .cmp { grid-template-columns: 1fr; }
  .cmp__vs { height: 1px; }

  /* 48h timeline goes vertical */
  .tline { --gap: 22px; display: grid; grid-template-columns: var(--track) 1fr; column-gap: var(--gap); padding: 10px 0 22px; }
  .tline__track { height: auto; width: var(--track); }
  .tline__fill { transform-origin: 50% 0; transform: scaleY(var(--p)); }
  .tline__head { left: 50%; top: calc(var(--p) * 100%); }
  .tline__stops { height: 210px !important; min-height: 0; margin-top: 0; }
  .tline__stops li, .tline__stops li:first-child, .tline__stops li:last-child { left: 0; top: calc(var(--p) * 100%); width: 100%; transform: translateY(-0.5lh); text-align: left; }
  /* dot centre = track centre line (gap + track/2 to the left), at the stop's --p height */
  .tline__stops li::before, .clock.is-delivered .tline__stops li:last-child::after,
  .tline__stops li:first-child::before, .tline__stops li:last-child::before { left: calc(-1 * (var(--gap) + var(--track) / 2)); top: 0.5lh; }
}

@media (max-width: 640px) {
  .reel { padding: 6px; border-radius: 16px; }
  .reel__viewport { border-radius: 11px; }
  .reel__sound { right: 10px; bottom: 10px; height: 34px; padding: 0 11px 0 9px; font-size: 12px; }
  .reel__top { padding: 4px 6px 8px; }
  .reel__bar { gap: 10px; padding: 10px 6px 2px; }
  .reel__tc--dim { display: none; }
  .hero { padding-top: 32px; }
  .hero__title { font-size: clamp(26px, 7.8vw, 34px); }
  .hero__chip { margin-bottom: 20px; font-size: 12.5px; }
  .hero__lede { margin-top: 18px; font-size: 16.5px; }
  .hero__ctas { margin-top: 24px; flex-wrap: nowrap; gap: 10px; }
  .hero__ctas .btn { flex: 1 1 0; padding: 0 12px; }
  .hero__facts { gap: 6px 14px; margin-top: 18px; font-size: 13px; }
  .reel__head { margin-top: 28px; }
  .reel__title { font-size: 14px; }
  .reel__head + .reel { margin-top: 10px; }
  .reel__top { flex-wrap: wrap; row-gap: 6px; font-size: 10px; }
  .reel__live, .reel__next { letter-spacing: .08em; }
  .cmp__col--us dd { font-size: 20px; }
  .bento { grid-template-columns: 1fr; }
  .feat--wide { grid-column: span 1; }
  .uses__grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(20, 1fr); gap: 3px; }
  .thumbs { gap: 4px; }
  .thumbs i { border-radius: 3px; }
  .logo-ph { min-width: calc(50% - 6px); }
  .acc__q { font-size: 16.5px; padding: 20px 0; }
  .acc__a p { padding-right: 8px; }
  .plan__flag { position: static; display: inline-block; margin-bottom: 18px; }
  .foot__base { flex-direction: column; }
  .btn--lg { height: 52px; padding: 0 22px; }
  .hero__ctas { width: 100%; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
  html.js [data-split] .wi { transform: none; }
  .fmt__lbl i:first-child { opacity: 1; }
  .ring { opacity: 0; }
}
