/* ============================================================
   Zenolot — website (dark modern edition)
   Midnight #0B0633 base · Coral #FF4949 · Blush #E5B7D2
   Playfair Display + Inter + IBM Plex Mono
   ============================================================ */

:root {
  --coral: #FF4949;
  --coral-deep: #D93030;
  --coral-glow: rgba(255,73,73,0.32);
  --blush: #E5B7D2;
  --midnight: #0B0633;
  --void: #070321;        /* deepest section bg */
  --ink-2: #130B40;       /* raised surface */
  --ink-3: #1C1452;       /* hover surface */
  --paper: #FBFAF8;
  --tx: #F2F0FA;                     /* primary text */
  --tx-mut: rgba(242,240,250,0.66); /* secondary */
  --tx-dim: rgba(242,240,250,0.42); /* tertiary */
  --line: rgba(242,240,250,0.10);
  --line-strong: rgba(242,240,250,0.20);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(.2,.7,.2,1); /* @kind other */
  --ease-out: cubic-bezier(.2,.9,.1,1); /* @kind other */

  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--tx);
  font: 400 17px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--coral); color: #fff; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: transparent; pointer-events: none;
}
.scroll-progress i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--coral), var(--blush));
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Typography ---------- */
.eyebrow {
  font: 600 12px/1.2 var(--font-body);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--coral);
}

h1, .h1 { font: 700 clamp(44px, 6.2vw, 86px)/1.04 var(--font-display); letter-spacing: -0.015em; text-wrap: balance; }
h2, .h2 { font: 700 clamp(34px, 4.2vw, 56px)/1.08 var(--font-display); letter-spacing: -0.012em; text-wrap: balance; }
h3, .h3 { font: 600 clamp(24px, 2.6vw, 32px)/1.2 var(--font-display); letter-spacing: -0.008em; }
.lead { font: 400 clamp(18px, 1.6vw, 21px)/1.62 var(--font-body); color: var(--tx-mut); text-wrap: pretty; }
.small { font: 400 14px/1.55 var(--font-body); color: var(--tx-dim); }
.mono { font: 500 13px/1.4 var(--font-mono); }
.accent-i { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--coral); }
.blush-i { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--blush); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; border-bottom: 1px solid transparent;
  transition: background 280ms var(--ease), border-color 280ms var(--ease); }
.nav.scrolled {
  background: rgba(11,6,51,0.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; height: 76px; display: flex; align-items: center; gap: 36px; }
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-brand img { width: 30px; height: 30px; }
.nav-brand span { font: 700 21px/1 var(--font-display); letter-spacing: -0.01em; color: var(--paper); }
.nav-links { display: flex; gap: 28px; margin-left: 16px; }
.nav-links a { font: 500 14.5px/1 var(--font-body); color: var(--tx-mut); padding: 6px 2px; position: relative; transition: color 180ms var(--ease); }
.nav-links a:hover { color: var(--paper); }
.nav-links a.current { color: var(--paper); }
.nav-links a.current::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--coral); border-radius: 2px; }
.nav-spacer { flex: 1; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 15px/1 var(--font-body);
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 0 36px var(--coral-glow); }
.btn-coral:hover { background: var(--coral-deep); box-shadow: 0 0 52px var(--coral-glow); }
.btn-ghost { border-color: var(--line-strong); color: var(--paper); border-radius: 12px; }
.btn-ghost:hover { background: rgba(242,240,250,0.06); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn .arr { transition: transform 200ms var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 200px 0 120px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -28%; right: -16%; width: 74vw; height: 74vw; max-width: 980px; max-height: 980px;
  background: radial-gradient(closest-side, rgba(255,73,73,0.16), rgba(229,183,210,0.07) 48%, transparent 74%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(242,240,250,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(242,240,250,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 35%, transparent 75%);
}
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 { max-width: 1060px; color: var(--paper); }
.hero .lead { max-width: 660px; margin-top: 30px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

.stagger .w { display: inline-block; opacity: 0; transform: translateY(0.6em); }
.stagger.go .w { animation: wordUp 700ms var(--ease-out) forwards; }
@keyframes wordUp { to { opacity: 1; transform: none; } }

/* ---------- Marquee ticker ---------- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; background: var(--void);
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 28px;
  font: 600 15px/1 var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx-dim);
  white-space: nowrap;
}
.marquee-item::after { content: ""; width: 7px; height: 7px; background: var(--coral); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: none; }
[data-reveal="zoom"] { transform: scale(0.94); }
[data-reveal="zoom"].in { transform: none; }

/* ---------- Scroll-highlight text (word-by-word) ---------- */
.scrolltext { font: 600 clamp(26px, 3.2vw, 44px)/1.32 var(--font-display); letter-spacing: -0.01em; max-width: 940px; text-wrap: pretty; }
.scrolltext .sw { color: rgba(242,240,250,0.16); transition: color 320ms var(--ease); }
.scrolltext .sw.lit { color: var(--paper); }
.scrolltext .sw.lit.em { color: var(--coral); }

/* ---------- Sections ---------- */
section { position: relative; }
.sect { padding: 110px 0; }
.sect-head { max-width: 780px; margin-bottom: 64px; }
.sect-head .eyebrow { margin-bottom: 20px; }
.sect-head .lead { margin-top: 20px; }
.sect-head h2 { color: var(--paper); }
.sect-void { background: var(--void); }

/* ---------- Pinned scroll tour ---------- */
.tour-track { position: relative; }
.tour-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.tour-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; max-width: var(--max); margin: 0 auto; padding: 0 32px; width: 100%; }
.tour-copy { position: relative; min-height: 400px; }
.tour-stage {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 18px;
  opacity: 0; transform: translateY(22px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
  pointer-events: none;
}
.tour-stage.active { opacity: 1; transform: none; pointer-events: auto; }
.tour-stage .stage-no { font: 500 14px/1 var(--font-mono); color: var(--coral); letter-spacing: 0.1em; }
.tour-stage h3 { font-size: clamp(28px, 2.8vw, 38px); color: var(--paper); }
.tour-stage .sub { font: 600 16px/1.4 var(--font-body); color: var(--blush); }
.tour-stage p { color: var(--tx-mut); font-size: 16px; max-width: 360px; text-wrap: pretty; }

.tour-rail { display: flex; flex-direction: column; margin-top: 30px; }
.rail-item { display: flex; align-items: center; gap: 12px; padding: 9px 0; cursor: pointer; }
.rail-item .bar { width: 34px; height: 2px; background: var(--line-strong); border-radius: 2px; position: relative; overflow: hidden; }
.rail-item .bar i { position: absolute; inset: 0; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform 200ms linear; display: block; }
.rail-item .lbl { font: 600 12px/1 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-dim); transition: color 200ms var(--ease); }
.rail-item.active .lbl { color: var(--paper); }

.tour-shots { position: relative; aspect-ratio: 16/10; }
.tour-shot { position: absolute; inset: 0; opacity: 0; transform: translateY(30px) scale(0.97); transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out); }
.tour-shot.active { opacity: 1; transform: none; }
.tour-shot.prev { opacity: 0; transform: translateY(-24px) scale(0.985); }

/* glowing frame */
.frame { background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 80px rgba(255,73,73,0.10), 0 40px 90px rgba(0,0,0,0.5); }
.frame-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 14px; background: var(--void); border-bottom: 1px solid var(--line); }
.frame-bar i { width: 9px; height: 9px; border-radius: 999px; background: var(--line-strong); display: block; }
.frame-bar .url { margin-left: 10px; flex: 1; max-width: 320px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; font: 400 11px/1 var(--font-mono); color: var(--tx-dim); padding: 4px 10px; }
.frame img { width: 100%; }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}
.card:hover { border-color: rgba(255,73,73,0.4); transform: translateY(-3px); box-shadow: 0 0 50px rgba(255,73,73,0.08); background: var(--ink-3); }
.card .stage-no { font: 500 13px/1 var(--font-mono); color: var(--coral); letter-spacing: 0.08em; }
.card h3 { margin: 16px 0 12px; font-size: 23px; color: var(--paper); }
.card p { color: var(--tx-mut); font-size: 15.5px; text-wrap: pretty; }
.card .sub2 { font: 600 15px/1.45 var(--font-body); color: var(--blush); margin: 14px 0 8px; }

/* ---------- Horizontal pin (capabilities) ---------- */
.hpin-track { position: relative; }
.hpin-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hpin-head { max-width: var(--max); margin: 0 auto; padding: 0 32px 40px; width: 100%; }
.hpin-row { display: flex; gap: 24px; padding: 0 max(32px, calc((100vw - var(--max)) / 2 + 32px)); will-change: transform; }
.hcard {
  flex: none; width: 420px; min-height: 300px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 18px; padding: 38px 34px;
  display: flex; flex-direction: column; gap: 16px;
}
.hcard .idx { font: 500 13px/1 var(--font-mono); color: var(--coral); letter-spacing: 0.1em; }
.hcard h3 { font-size: 24px; color: var(--paper); }
.hcard p { color: var(--tx-mut); font-size: 15.5px; text-wrap: pretty; }
.hcard .rule { height: 1px; background: var(--line); margin-top: auto; }
.hcard .foot { font: 500 12px/1.5 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--tx-dim); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat { padding: 32px 0; border-top: 1px solid var(--line-strong); }
.stat .num { font: 700 clamp(44px, 4.6vw, 68px)/1 var(--font-display); letter-spacing: -0.01em; color: var(--paper); }
.stat .num .unit { font-size: 0.5em; color: var(--coral); }
.stat .cap { font: 500 14px/1.5 var(--font-body); color: var(--tx-mut); margin-top: 12px; max-width: 300px; }

/* ---------- Matrix (ambition × readiness) ---------- */
.matrix-wrap { display: grid; grid-template-columns: 56px 1fr; gap: 0; max-width: 980px; margin: 0 auto; }
.matrix-ylab { display: flex; align-items: center; justify-content: center; }
.matrix-ylab span { transform: rotate(180deg); writing-mode: vertical-rl; font: 600 13px/1 var(--font-body); letter-spacing: 0.22em; text-transform: uppercase; color: var(--tx-dim); }
.matrix { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.matrix-xlab { grid-column: 2; text-align: center; padding-top: 18px; font: 600 13px/1 var(--font-body); letter-spacing: 0.22em; text-transform: uppercase; color: var(--tx-dim); }
.quad {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px; min-height: 240px;
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}
.quad:hover { background: var(--ink-3); }
.quad .pos { font: 500 11.5px/1.4 var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--tx-dim); }
.quad h3 { font-size: 22px; color: var(--paper); }
.quad ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 2px; }
.quad ul li { display: flex; gap: 10px; align-items: flex-start; font: 400 14.5px/1.5 var(--font-body); color: var(--tx-mut); }
.quad ul li::before { content: ""; flex: none; width: 5px; height: 5px; margin-top: 8px; background: var(--blush); transform: rotate(45deg); }
.quad.hot { border-color: rgba(255,73,73,0.5); box-shadow: 0 0 60px rgba(255,73,73,0.10); }
.quad.hot .pos { color: var(--coral); }
.quad .verdict { margin-top: auto; font: 600 13px/1.5 var(--font-body); color: var(--blush); padding-top: 12px; border-top: 1px solid var(--line); }

/* ---------- Feature split rows ---------- */
.feat-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: center; padding: 84px 0; }
.feat-row.flip .feat-copy { order: 2; }
.feat-row.flip .feat-media { order: 1; }
.feat-copy .eyebrow { margin-bottom: 18px; }
.feat-copy h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 8px; color: var(--paper); }
.feat-copy .sub { font: 600 16px/1.5 var(--font-body); color: var(--blush); margin-bottom: 14px; }
.feat-copy p { color: var(--tx-mut); font-size: 16.5px; text-wrap: pretty; }
.feat-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font: 500 15px/1.5 var(--font-body); color: var(--tx); }
.feat-list li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 7px; background: var(--coral); transform: rotate(45deg); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 880px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline .progress { position: absolute; left: 19px; top: 8px; width: 2px; height: 0; background: var(--coral); z-index: 1; box-shadow: 0 0 14px var(--coral-glow); }
.tl-item { position: relative; padding: 0 0 64px 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 8px; top: 4px; width: 24px; height: 24px; border-radius: 999px; background: var(--midnight); border: 2px solid var(--line-strong); z-index: 2; transition: border-color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease); }
.tl-item.lit .tl-dot { border-color: var(--coral); background: var(--coral); box-shadow: 0 0 0 5px rgba(255,73,73,0.18), 0 0 24px var(--coral-glow); }
.tl-week { font: 500 13px/1 var(--font-mono); color: var(--coral); letter-spacing: 0.06em; }
.tl-item h3 { margin: 12px 0 10px; font-size: 26px; color: var(--paper); }
.tl-item p { color: var(--tx-mut); font-size: 16px; max-width: 620px; text-wrap: pretty; }
.tl-deliver { margin-top: 18px; display: inline-flex; align-items: flex-start; gap: 12px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; max-width: 620px; }
.tl-deliver .k { font: 600 11px/1.5 var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--blush); white-space: nowrap; padding-top: 2px; }
.tl-deliver .v { font: 500 14.5px/1.5 var(--font-body); color: var(--tx); }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.f-field { display: flex; flex-direction: column; gap: 8px; }
.f-field label { font: 600 13px/1 var(--font-body); color: var(--tx-mut); }
.f-field input, .f-field select, .f-field textarea {
  font: 400 15px/1.5 var(--font-body); color: var(--tx);
  background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 13px 16px; outline: none; width: 100%;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,73,73,0.22); }
.f-field textarea { resize: vertical; min-height: 120px; }
.f-field ::placeholder { color: var(--tx-dim); }

/* ---------- Footer ---------- */
.footer { background: var(--void); color: var(--paper); padding: 84px 0 44px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; align-items: start; }
.footer .brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer .brand img { width: 28px; height: 28px; }
.footer .brand span { font: 700 20px/1 var(--font-display); }
.footer .tag { font: 500 14px/1.6 var(--font-display); font-style: italic; color: var(--tx-dim); }
.footer h5 { font: 600 12px/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--tx-dim); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font: 500 14.5px/1 var(--font-body); color: var(--tx-mut); transition: color 160ms var(--ease); }
.footer ul a:hover { color: #fff; }
.footer-base { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font: 400 13px/1.5 var(--font-body); color: var(--tx-dim); }

/* ---------- Misc ---------- */
.pill-note { display: inline-flex; align-items: center; gap: 8px; font: 500 12.5px/1 var(--font-body); color: var(--tx-mut); border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px; }
.pill-note i { width: 6px; height: 6px; border-radius: 999px; background: var(--coral); display: block; }
[data-parallax] { will-change: transform; }
[data-tilt] { transition: transform 300ms var(--ease); transform-style: preserve-3d; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; gap: 28px; }
  .tour-copy { min-height: 0; position: static; }
  .tour-stage { position: static; display: none; }
  .tour-stage.active { display: flex; }
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .feat-row.flip .feat-copy { order: 1; }
  .feat-row.flip .feat-media { order: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .matrix-wrap { grid-template-columns: 1fr; }
  .matrix-ylab { display: none; }
  .matrix { grid-template-columns: 1fr; grid-template-rows: none; }
  .matrix-xlab { display: none; }
  .hcard { width: 84vw; }
  .nav-links { display: none; }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav-burger i { width: 22px; height: 2px; background: var(--paper); display: block; border-radius: 2px; transition: transform 240ms var(--ease), opacity 240ms var(--ease); }
  .nav.open .nav-burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-burger i:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-spacer { display: none; }
  .nav .btn { display: none; }
  .nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 24px; background: rgba(11,6,51,0.97); border-bottom: 1px solid var(--line); }
  .nav.open .nav-mobile { display: flex; }
  .nav-mobile a { font: 600 18px/1 var(--font-body); padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--paper); }
  .nav-mobile .btn { display: inline-flex; margin-top: 16px; align-self: flex-start; }
  .hero { padding: 150px 0 80px; }
  .sect { padding: 72px 0; }
}
@media (min-width: 981px) { .nav-mobile { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .stagger .w { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .tour-shot, .tour-stage { transition: none; }
  .scrolltext .sw { color: var(--paper) !important; }
}
