/* =========================================================================
   eyestock — landing
   Palette is deliberately inverted from the brand deck: bone paper, ink type,
   electric indigo + coral used sparingly.
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  --bone: #e7e4dc;
  --bone-deep: #dedacf;
  --paper: #ffffff;
  --paper-2: #f6f5f1;
  --ink: #101014;
  --ink-2: #1b1b20;
  --muted: #74747e;
  --muted-2: #9a9aa2;
  --line: rgba(16, 16, 20, 0.1);
  --line-soft: rgba(16, 16, 20, 0.06);

  --indigo: #3d2bf0;
  --indigo-deep: #2a1bc4;
  --indigo-wash: #eeebff;
  --coral: #ff5c39;
  --coral-wash: #ffeee9;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-visual: clamp(32px, 5vw, 64px);
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 16, 20, 0.05), 0 8px 24px -16px rgba(16, 16, 20, 0.28);
  --shadow-md: 0 2px 6px rgba(16, 16, 20, 0.05), 0 28px 60px -34px rgba(16, 16, 20, 0.4);
  --shadow-lg: 0 4px 12px rgba(16, 16, 20, 0.05), 0 60px 120px -50px rgba(16, 16, 20, 0.52);

  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(84px, 11vw, 156px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --z-raise: 5;
  --z-nav: 60;
  --z-splash: 90;

  --font: 'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html.is-booting { overflow: hidden; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--ink); color: var(--paper); }

.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--pill);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout primitives ---------- */
.sheet {
  background: var(--paper);
  border-radius: clamp(20px, 2.4vw, 36px);
  margin: clamp(8px, 1vw, 14px);
  overflow: clip;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 20px 60px -40px rgba(16, 16, 20, 0.5);
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(56px, 7vw, 104px); }
.section--wash { background: var(--paper-2); }

.measure { max-width: 62ch; }
.measure-wide { max-width: 84ch; }
.center { text-align: center; margin-inline: auto; }

.rule {
  height: 1px;
  background: var(--line-soft);
  border: 0;
  margin: 0;
}

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}
.eyebrow--coral::before { background: var(--coral); }

.display {
  font-size: clamp(2.65rem, 7.4vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}

.h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.02;
  text-wrap: balance;
}

.h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.12;
  text-wrap: balance;
}

.lead {
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  color: var(--muted);
  line-height: 1.5;
  text-wrap: pretty;
}

.body { color: var(--muted); line-height: 1.62; text-wrap: pretty; }

.meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.num {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ink-indigo { color: var(--indigo); }
.ink-coral { color: var(--coral); }

/* handwritten-feeling emphasis: a drawn underline, not a highlighter block */
.underlined {
  position: relative;
  white-space: nowrap;
}
.underlined::after {
  content: '';
  position: absolute;
  left: 2%; right: 2%;
  bottom: 0.06em;
  height: 0.09em;
  border-radius: var(--pill);
  background: var(--coral);
  transform: scaleX(var(--u, 1));
  transform-origin: left;
}

/* ---------- controls ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease),
    color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ink:hover { background: var(--ink-2); box-shadow: var(--shadow-md); }

.btn--indigo { --btn-bg: var(--indigo); }
.btn--indigo:hover {
  --btn-bg: var(--indigo-deep);
  box-shadow: 0 18px 40px -20px rgba(61, 43, 240, 0.8);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--paper-2); }

.btn--quiet {
  --btn-bg: transparent;
  --btn-fg: var(--muted);
  padding: 10px 6px;
}
.btn--quiet:hover { --btn-fg: var(--ink); }

.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }

.btn__icon { width: 16px; height: 16px; flex: none; }

.linkline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.linkline span {
  box-shadow: inset 0 -1px 0 var(--line);
  transition: box-shadow 0.2s var(--ease);
}
.linkline i {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.linkline i svg { width: 9px; height: 9px; }
.linkline:hover span { box-shadow: inset 0 -1px 0 var(--ink); }
.linkline:hover i {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: translateX(2px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.actions--center { justify-content: center; }

/* ---------- mark / wordmark ---------- */
.mark { width: 100%; height: 100%; overflow: visible; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__mark { width: 21px; height: 30px; flex: none; }
.brand__word {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: lowercase;
}

/* =========================================================================
   splash
   Pure-CSS timeline: even if the script never runs, it plays out and lifts.
   ========================================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: var(--z-splash);
  display: grid;
  place-items: center;
  background: var(--bone);
  border-radius: 0 0 clamp(20px, 3vw, 44px) clamp(20px, 3vw, 44px);
  animation: splash-lift 0.85s var(--ease-out) 2.1s forwards;
}
.splash::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}

.splash__inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 24px;
}

.splash__mark {
  width: clamp(84px, 10.5vw, 116px);
  height: clamp(119px, 14.9vw, 165px);
  position: relative;
}
/* plates fly in bottom → top; 9 polygons, grouped per bar */
.splash__mark polygon { opacity: 0; animation: bar-in 0.66s var(--ease-out) forwards; }
.splash__mark polygon:nth-child(-n + 4) { animation-delay: 0.1s; }
.splash__mark polygon:nth-child(n + 5):nth-child(-n + 7) { animation-delay: 0.26s; }
.splash__mark polygon:nth-child(n + 8) { animation-delay: 0.42s; }

.splash__word {
  overflow: hidden;
  line-height: 1;
}
.splash__word span {
  display: block;
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  transform: translateY(110%);
  animation: word-rise 0.7s var(--ease-out) 0.72s forwards;
}

.splash__bar {
  width: clamp(120px, 18vw, 190px);
  height: 2px;
  border-radius: var(--pill);
  background: rgba(16, 16, 20, 0.12);
  overflow: hidden;
}
.splash__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  animation: bar-fill 1.25s var(--ease) 0.7s forwards;
}

.splash__note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  opacity: 0;
  animation: fade-in 0.5s ease 1s forwards;
}

@keyframes bar-in {
  from { opacity: 0; transform: translate(14px, -10px); }
  to { opacity: 1; transform: none; }
}
@keyframes word-rise { to { transform: none; } }
@keyframes bar-fill { to { transform: scaleX(1); } }
@keyframes fade-in { to { opacity: 1; } }
@keyframes splash-lift {
  to { transform: translateY(-101%); }
}

/* =========================================================================
   nav
   ========================================================================= */
.nav {
  position: fixed;
  top: clamp(10px, 1.6vw, 20px);
  left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  justify-content: center;
  padding-inline: clamp(10px, 3vw, 24px);
  pointer-events: none;
}

.nav__bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(1140px, 100%);
  padding: 9px 9px 9px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.nav.is-stuck .nav__bar {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav__links a {
  padding: 9px 14px;
  border-radius: var(--pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--paper-2); }
.nav__links a.is-active { color: var(--ink); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: transparent;
  cursor: pointer;
  place-items: center;
}
.nav__toggle i,
.nav__toggle i::before,
.nav__toggle i::after {
  content: '';
  display: block;
  width: 15px; height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle i::before { transform: translateY(-5px); }
.nav__toggle i::after { transform: translateY(3.5px); }
.nav.is-open .nav__toggle i { background: transparent; }
.nav.is-open .nav__toggle i::before { transform: rotate(45deg); }
.nav.is-open .nav__toggle i::after { transform: translateY(-1.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__bar { flex-wrap: wrap; }
  .nav__toggle { display: grid; }
  .nav__cta { display: none; }
  .nav__links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 6px 4px 8px;
    display: none;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: 12px 14px; font-size: 16px; }
  .nav__links .nav__mobile-cta { display: block; }
}
.nav__mobile-cta { display: none; }

/* =========================================================================
   hero
   ========================================================================= */
.hero { padding-top: clamp(124px, 15vw, 190px); }

.hero__head {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}
.hero__head .lead { max-width: 46ch; }
.hero .actions { margin-top: 6px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 10px;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.hero__trust svg { width: 13px; height: 13px; color: var(--indigo); flex: none; }

/* stage: dark showpiece on paper */
.stage {
  position: relative;
  margin-top: clamp(48px, 6vw, 82px);
  padding: clamp(26px, 4.5vw, 58px);
  border-radius: var(--r-visual);
  background: linear-gradient(168deg, #17171c 0%, #0c0c10 62%, #101014 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 18% -10%, rgba(61, 43, 240, 0.28), transparent 55%),
    radial-gradient(90% 70% at 92% 108%, rgba(255, 92, 57, 0.2), transparent 58%);
  pointer-events: none;
}
.stage > * { position: relative; }

.stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 900px) {
  .stage__grid { grid-template-columns: minmax(0, 1fr); }
}

.stage__copy { color: rgba(255, 255, 255, 0.62); display: grid; gap: 18px; }
.stage__copy .eyebrow { color: rgba(255, 255, 255, 0.5); }
.stage__copy h2 { color: #fff; }
.stage__copy p { max-width: 44ch; }

.chipline { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pill);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
}
.chip--live { display: inline-flex; align-items: center; gap: 8px; }
.chip--live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 92, 57, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255, 92, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 57, 0); }
}

/* phone */
.phone {
  position: relative;
  width: min(300px, 100%);
  margin-inline: auto;
  aspect-ratio: 300 / 600;
  border-radius: 42px;
  padding: 9px;
  background: linear-gradient(180deg, #2b2b33, #141419);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.07) inset;
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #08080b;
}
.phone__notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 20px;
  border-radius: var(--pill);
  background: #0b0b0f;
  z-index: 3;
}
.phone__viewfinder { position: absolute; inset: 0; }
.phone__viewfinder svg { width: 100%; height: 100%; }

.scan-sweep {
  position: absolute;
  left: 0; right: 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(61, 43, 240, 0.22) 70%, rgba(255, 255, 255, 0.28));
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  animation: sweep 3.6s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  pointer-events: none;
}
@keyframes sweep {
  0% { top: -42%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.phone__hud {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(10, 10, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.phone__hud small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 3px;
}
.phone__hud b {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.phone__hud em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--coral);
}

.phone__topbar {
  position: absolute;
  top: 40px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* =========================================================================
   vision
   ========================================================================= */
.vision__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .vision__grid { grid-template-columns: minmax(0, 1fr); }
}

.vision__lead { display: grid; gap: 20px; }
.vision__lead .actions { margin-top: 6px; }

.vision__text {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.6;
  text-wrap: pretty;
}
.vision__text .w {
  color: rgba(16, 16, 20, 0.26);
  transition: color 0.45s var(--ease);
}
.vision__text .w.on { color: var(--ink); }

.principles { display: grid; }
.principles li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px clamp(16px, 2.4vw, 30px);
  padding-block: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--line-soft);
}
.principles li:last-child { border-bottom: 1px solid var(--line-soft); }

.principles__idx {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  padding-top: 5px;
  transition: color 0.3s var(--ease);
}
.principles li:nth-child(1):hover .principles__idx { color: var(--indigo); }
.principles li:nth-child(3):hover .principles__idx { color: var(--coral); }

.principles__title {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 7px;
}
.principles .body { font-size: 15px; max-width: 42ch; }

/* =========================================================================
   showcase carousel  (layout follows the reference board)
   ========================================================================= */
.showcase__head {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.carousel { position: relative; }

.carousel__viewport {
  overflow: hidden;
  padding-block: 20px;
  margin-block: -20px;
}

.carousel__track {
  display: flex;
  gap: clamp(16px, 2.2vw, 28px);
  will-change: transform;
  transition: transform 0.72s var(--ease-out);
}

.slide {
  /* narrower than the viewport so the neighbouring steps peek in at the edges */
  flex: 0 0 calc(100% - clamp(24px, 10vw, 150px));
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  gap: clamp(14px, 2vw, 24px);
  opacity: 0.32;
  transform: scale(0.955);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-out);
}
.slide.is-active { opacity: 1; transform: none; }
.slide:not(.is-active) { pointer-events: none; }

@media (max-width: 860px) {
  .slide { grid-template-columns: minmax(0, 1fr); }
}

.slide__visual {
  position: relative;
  border-radius: var(--r-visual);
  background: linear-gradient(160deg, #1c1c22 0%, #0b0b0f 70%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.slide__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 60% at 30% 12%, rgba(255, 255, 255, 0.12), transparent 62%);
  pointer-events: none;
}
.slide__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.slide__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 3.4vw, 46px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-visual);
  background: var(--paper-2);
}

.slide__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.slide__brand span:last-child { color: var(--muted-2); font-weight: 500; }
.slide__brand .brand__mark { width: 13px; height: 19px; }

.slide__panel .body { max-width: 46ch; }
.slide__panel .linkline { margin-top: auto; align-self: flex-start; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.stats dt {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stats dd {
  margin: 7px 0 0;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.35;
}
.stats > div:nth-child(2) dt { color: var(--indigo); }
.stats > div:nth-child(3) dt { color: var(--coral); }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(26px, 3.4vw, 40px);
}

.dots { display: flex; align-items: center; gap: 7px; }
.dots button {
  width: 7px; height: 7px;
  padding: 0;
  border: 0;
  border-radius: var(--pill);
  background: rgba(16, 16, 20, 0.16);
  cursor: pointer;
  transition: width 0.4s var(--ease-out), background 0.3s var(--ease);
}
.dots button.is-active { width: 26px; background: var(--ink); }

.arrow {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  color: var(--ink);
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.arrow svg { width: 13px; height: 13px; }
.arrow:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.arrow:active { transform: scale(0.94); }

.carousel__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 3vw, 38px);
}

/* =========================================================================
   video
   ========================================================================= */
.video__head {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.frame {
  position: relative;
  border-radius: var(--r-visual);
  padding: clamp(8px, 1vw, 14px);
  background: linear-gradient(150deg, rgba(61, 43, 240, 0.16), rgba(255, 92, 57, 0.14));
  box-shadow: var(--shadow-lg);
}
.frame__inner {
  position: relative;
  border-radius: calc(var(--r-visual) - 10px);
  overflow: hidden;
  background: #0b0b0f;
  aspect-ratio: 16 / 9;
}
.frame__inner iframe,
.frame__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.frame__poster {
  object-fit: cover;
  transition: opacity 0.7s var(--ease);
  filter: saturate(0.9) contrast(1.02);
}
.frame.is-playing .frame__poster { opacity: 0; }
.frame__inner iframe { pointer-events: none; }

.frame__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 11, 0.15), rgba(8, 8, 11, 0.55));
  pointer-events: none;
}

.frame__badge {
  position: absolute;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: var(--pill);
  background: rgba(10, 10, 14, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
}

.frame__fallback {
  position: absolute;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  display: none;
}
.frame.is-blocked .frame__fallback { display: inline-flex; }

/* =========================================================================
   download
   ========================================================================= */
.download__card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
  padding: clamp(42px, 6.5vw, 92px) clamp(24px, 5vw, 72px);
  border-radius: var(--r-visual);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.download__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 50% 120%, rgba(255, 92, 57, 0.3), transparent 62%),
    radial-gradient(55% 60% at 12% -20%, rgba(61, 43, 240, 0.32), transparent 60%);
  pointer-events: none;
}
.download__card > * { position: relative; }
.download__card .eyebrow { color: rgba(255, 255, 255, 0.55); }
.download__card .lead { color: rgba(255, 255, 255, 0.62); max-width: 44ch; }
.download__card .btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
}
.download__card .btn--light:hover { --btn-bg: #ece9ff; }

.download__note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.download__specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 8px;
}
.download__specs li {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================================
   contact
   ========================================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: minmax(0, 1fr); }
}

.contact__aside { display: grid; gap: 18px; }
.contact__aside .h2 { margin-top: 4px; }

.contact__direct { display: grid; gap: 10px; margin-top: 8px; }
.contact__direct a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.contact__direct a:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact__direct svg { width: 17px; height: 17px; color: var(--indigo); flex: none; }
.contact__direct small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact__direct b { font-weight: 500; font-size: 15px; letter-spacing: -0.01em; }

.form { display: grid; gap: 16px; }
.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 560px) { .form__row { grid-template-columns: minmax(0, 1fr); } }

.field { display: grid; gap: 7px; }
.field > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(61, 43, 240, 0.12);
}
.field.has-error input,
.field.has-error textarea { border-color: var(--coral); }
.field__error {
  display: none;
  font-size: 12.5px;
  color: var(--coral);
}
.field.has-error .field__error { display: block; }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.form__hint { font-size: 12.5px; color: var(--muted-2); max-width: 34ch; }

.form__status {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--indigo);
  min-height: 20px;
}

/* =========================================================================
   footer
   ========================================================================= */
.footer {
  padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line-soft);
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer__links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer__links a:hover { color: var(--ink); }
.footer__legal {
  width: 100%;
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  font-size: 12.5px;
  color: var(--muted-2);
}

/* =========================================================================
   scroll reveal
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================================
   reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .splash { display: none; }
}
