/* ═══════════════════════════════════════════════════════════
   GOATEDX — obsidian luxury design system
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #050505;
  --bg-2: #0a0a0c;
  --bg-3: #101014;
  --ink: #f2f0ea;
  --ink-dim: #8a877e;
  --accent: #3b9dff;
  --accent-bright: #7cc8ff;
  --accent-deep: #1857c2;
  --green: #3ddc84;
  --red: #ff3b4e;
  --hairline: rgba(59, 157, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.07);
  --font-display: "Clash Display", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* clip, not hidden — `hidden` here would make html a scroll container and
   break ScrollTrigger's pinning in the journey section */
html { scroll-behavior: auto; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

::selection { background: var(--accent); color: #050505; }

main { position: relative; z-index: 2; }
section { position: relative; padding: clamp(90px, 14vh, 160px) clamp(20px, 6vw, 96px); }

em { font-style: normal; color: var(--accent); }

/* ── grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

/* ── ambient dust canvas ───────────────────────────────── */
.dust {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.6;
}

/* ── custom cursor ─────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(59, 157, 255, 0.7);
  border-radius: 50%;
  pointer-events: none; z-index: 300;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor--active {
  width: 64px; height: 64px;
  background: rgba(59, 157, 255, 0.12);
}
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none; z-index: 301;
  transform: translate(-50%, -50%);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ── preloader ─────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.loader__inner { text-align: center; width: min(320px, 80vw); }
.loader__logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 56px; letter-spacing: 0.02em;
}
.loader__logo span { color: var(--accent); }
.loader__count {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--ink-dim);
  margin: 18px 0 10px;
}
.loader__bar {
  height: 1px; background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
}
.loader__tag {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.35em; color: var(--ink-dim);
}

/* ── nav ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 48px);
  opacity: 0;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav--scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav__logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; letter-spacing: 0.05em;
  color: var(--ink); text-decoration: none;
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; gap: clamp(16px, 3vw, 40px); }
.nav__links a {
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--accent); }
.nav__est {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--ink-dim);
}
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ── scroll progress ───────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 101;
}
.progress__fill {
  height: 100%; width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
}

/* ── section head kicker ───────────────────────────────── */
.section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(36px, 6vh, 64px);
}
.section-head__num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--accent);
  border: 1px solid var(--hairline);
  padding: 4px 9px; border-radius: 100px;
}
.section-head__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.35em; color: var(--ink-dim);
}
.section-head::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--hairline), transparent);
}
.section-head--overlay {
  position: absolute; top: clamp(90px, 12vh, 140px);
  left: clamp(20px, 6vw, 96px); right: clamp(20px, 6vw, 96px);
  z-index: 5;
}

/* ═══ 01 HERO ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding-top: 0; padding-bottom: 0;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero__content { position: relative; z-index: 2; pointer-events: none; }
.hero__kicker {
  font-family: var(--font-mono); font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.4em; color: var(--accent);
  margin-bottom: clamp(16px, 3vh, 30px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero__title em { color: var(--accent); }
.hero__title .char { display: inline-block; }
.hero__sub {
  margin-top: clamp(20px, 4vh, 40px);
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--ink-dim);
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__scroll-cue {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.4em; color: var(--ink-dim);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-pulse 1.8s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0); opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ═══ 02 PROOF ══════════════════════════════════════════ */
.proof { background: var(--bg); }
.proof__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin-bottom: clamp(48px, 8vh, 90px);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.proof__item {
  background: var(--bg);
  padding: clamp(28px, 4vw, 56px) clamp(20px, 2.5vw, 40px);
  transition: background 0.5s;
}
.proof__item:hover { background: var(--bg-2); }
.proof__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 7.5vw, 110px);
  line-height: 1; color: var(--ink);
  display: flex; align-items: baseline;
}
.proof__prefix, .proof__suffix {
  font-size: 0.45em; color: var(--accent);
  font-weight: 600;
}
.proof__suffix { margin-left: 4px; }
.proof__label {
  margin-top: 16px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px);
}
.proof__note {
  margin-top: 6px;
  font-size: 13px; color: var(--ink-dim);
}

/* ═══ 03 MANIFESTO ══════════════════════════════════════ */
.manifesto {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-2);
}
.manifesto__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 4vw, 58px);
  line-height: 1.28; letter-spacing: -0.01em;
  max-width: 1200px;
}
.manifesto__text .word { opacity: 0.12; display: inline-block; }

/* ═══ 04 JOURNEY ════════════════════════════════════════ */
.journey { padding: 0; background: var(--bg); }
.journey__pin {
  height: 100vh; height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}
.journey__track {
  display: flex; gap: clamp(20px, 3vw, 48px);
  padding: 0 clamp(20px, 6vw, 96px);
  will-change: transform;
}
.journey__card {
  flex: 0 0 auto;
  width: min(78vw, 520px);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: clamp(28px, 3.5vw, 52px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.journey__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at 20% 0%, rgba(59, 157, 255, 0.08), transparent 55%);
  pointer-events: none;
}
.journey__year {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(59, 157, 255, 0.55);
  margin-bottom: 24px;
}
.journey__card--now .journey__year {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.journey__card h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 12px;
}
.journey__card p { color: var(--ink-dim); font-size: clamp(14px, 1.3vw, 16px); }

/* ═══ 05 PORTFOLIO ══════════════════════════════════════ */
.portfolio { background: var(--bg-2); }
.portfolio__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.05;
}
.portfolio__sub {
  margin: 18px 0 clamp(40px, 6vh, 64px);
  color: var(--ink-dim); max-width: 560px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}
.bento__card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: clamp(24px, 2.6vw, 40px);
  position: relative;
  transform-style: preserve-3d;
  transition: border-color 0.4s;
  overflow: hidden;
}
.bento__card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(59, 157, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento__card:hover { border-color: rgba(59, 157, 255, 0.35); }
.bento__card:hover::after { opacity: 1; }
.bento__card--tall { grid-row: span 2; }
.bento__card--wide { grid-column: span 2; }
.bento__icon {
  font-size: 26px; color: var(--accent);
  margin-bottom: 18px;
}
.bento__card h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 10px;
}
.bento__card p { color: var(--ink-dim); font-size: 14px; max-width: 420px; }
.bento__tag {
  position: absolute; bottom: 22px; left: clamp(24px, 2.6vw, 40px);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; color: var(--accent);
}
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--tall { grid-row: auto; }
  .bento__card--wide { grid-column: auto; }
  .bento__card { min-height: 200px; padding-bottom: 62px; }
}

/* ═══ 06 TRAFFIC ENGINES ════════════════════════════════ */
.traffic { background: var(--bg); text-align: center; overflow: hidden; }
.traffic .section-head { text-align: left; }
.traffic__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.05;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.ring-wrap {
  perspective: 1400px;
  height: clamp(320px, 46vw, 480px);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: clamp(30px, 5vh, 60px);
}
.ring {
  position: relative;
  width: 0; height: 0;
  transform-style: preserve-3d;
}
.ring__item {
  --radius: clamp(190px, 26vw, 340px);
  position: absolute;
  top: 0; left: 0;
  width: 132px; height: 132px;
  margin: -66px 0 0 -66px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: rgba(10, 10, 12, 0.82);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: rotateY(calc(var(--i) * 60deg)) translateZ(var(--radius));
  transition: border-color 0.4s, box-shadow 0.4s;
}
.ring__item:hover {
  border-color: var(--brand, var(--accent));
  box-shadow: 0 0 44px -8px var(--brand, var(--accent));
}
.ring__item svg { width: 44px; height: 44px; }
.ring__item span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim);
}
.ring__core {
  position: absolute; top: 0; left: 0;
  width: 110px; height: 110px;
  margin: -55px 0 0 -55px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: radial-gradient(circle at 35% 30%, #0a1220, var(--bg));
  box-shadow: 0 0 80px -20px rgba(59, 157, 255, 0.5);
}
.ring__core span { color: var(--accent); }
.traffic__caption {
  color: var(--ink-dim);
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
}

/* ═══ 07 BY THE NUMBERS ═════════════════════════════════ */
.numbers { background: var(--bg-2); }
.numbers__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.05;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dash__card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: clamp(22px, 2.4vw, 36px);
  display: flex; flex-direction: column; justify-content: center;
  min-height: 150px;
  transition: border-color 0.4s;
}
.dash__card:hover { border-color: rgba(59, 157, 255, 0.3); }
.dash__card--chart {
  grid-column: span 2; grid-row: span 2;
  justify-content: space-between;
}
.dash__card-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.25em; color: var(--ink-dim);
  margin-bottom: 18px;
}
.dash__badge {
  border: 1px solid var(--hairline);
  color: var(--accent);
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.1em;
}
.dash__chart { width: 100%; height: auto; flex: 1; }
.dash__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px); line-height: 1;
  color: var(--ink);
}
.dash__label { margin-top: 10px; color: var(--ink-dim); font-size: 13px; }
.dash__card--quote {
  grid-column: span 2;
  border-color: rgba(59, 157, 255, 0.25);
  background: linear-gradient(120deg, rgba(59, 157, 255, 0.06), transparent 60%);
}
.dash__card--quote p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.3;
}
@media (max-width: 860px) {
  .dash { grid-template-columns: 1fr 1fr; }
  .dash__card--chart { grid-column: span 2; grid-row: auto; min-height: 260px; }
  .dash__card--quote { grid-column: span 2; }
}

/* ═══ 08 PRINCIPLES ═════════════════════════════════════ */
.principles { background: var(--bg); }
.principles__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.05;
  margin-bottom: clamp(40px, 6vh, 70px);
}
.principles__list { list-style: none; }
.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 4vw, 60px);
  padding: clamp(26px, 4vh, 44px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
  transition: padding-left 0.5s var(--ease-out);
}
.principle:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.principle:hover { padding-left: 18px; }
.principle__num {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--accent);
}
.principle__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 3.6vw, 52px);
  line-height: 1.1;
  transition: color 0.4s;
}
.principle:hover .principle__name { color: var(--accent); }
.principle__detail {
  grid-column: 2;
  color: var(--ink-dim);
  max-width: 640px;
  font-size: clamp(14px, 1.3vw, 16px);
  margin-top: 10px;
}
@media (max-width: 640px) {
  .principle { grid-template-columns: 44px 1fr; }
}

/* ═══ 09 OUTRO ══════════════════════════════════════════ */
.outro {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(1200px circle at 50% 120%, rgba(59, 157, 255, 0.07), var(--bg) 60%);
}
.outro__kicker {
  font-family: var(--font-mono); font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.4em; color: var(--ink-dim);
  margin-bottom: clamp(20px, 4vh, 36px);
}
.outro__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 6.6vw, 104px);
  line-height: 1.04; letter-spacing: -0.01em;
}
.outro__title .char { display: inline-block; }
.outro__sub {
  margin-top: clamp(20px, 4vh, 36px);
  color: var(--ink-dim);
  max-width: 560px;
}
.outro__mark {
  margin-top: clamp(30px, 6vh, 56px);
  font-size: 44px;
  user-select: none;
  transition: transform 0.3s var(--ease-out);
}
.outro__mark:hover { transform: scale(1.2) rotate(-8deg); }
.footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 22px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--ink-dim);
}
.footer__hint { opacity: 0.35; transition: opacity 0.4s; }
.footer__hint:hover { opacity: 1; color: var(--accent); }
@media (max-width: 640px) {
  .footer { flex-direction: column; gap: 8px; }
}

/* ═══ GOAT RUN game overlay ═════════════════════════════ */
.game {
  position: fixed; inset: 0; z-index: 500;
  background: #030304;
  display: none;
}
.game--open { display: block; }
.game canvas { width: 100%; height: 100%; display: block; }
.game__close {
  position: absolute; top: 20px; right: 24px;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--accent);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em;
  padding: 10px 18px; border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.game__close:hover { background: var(--accent); color: #050505; }

/* ═══ fx canvas (comet trail + click ripples) ═══════════ */
.fx {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 250;
  mix-blend-mode: screen;
}
@media (hover: none), (pointer: coarse) {
  .fx { display: none; }
}

/* ═══ nav right cluster + sound toggle ══════════════════ */
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__sound {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink-dim);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em;
  padding: 7px 12px; border-radius: 100px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.nav__sound:hover { color: var(--accent); }
.nav__sound--on { color: var(--accent); border-color: var(--accent); }

/* ═══ marquee tickers ═══════════════════════════════════ */
.marquee {
  overflow: hidden;
  padding: clamp(18px, 3vh, 30px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg);
  position: relative; z-index: 2;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 4vw, 56px);
  text-transform: uppercase; letter-spacing: 0.01em;
}
.marquee__track i {
  font-style: normal; color: var(--accent);
  font-size: 0.5em;
}
.marquee__ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(59, 157, 255, 0.6);
}

/* ═══ ghost section numerals ════════════════════════════ */
/* ghosts bleed past the right edge on purpose — the sections holding them
   must clip, or the whole page gains a horizontal scrollbar */
.proof, .manifesto, .portfolio, .traffic, .numbers, .principles {
  overflow-x: clip;
}
.section-ghost {
  position: absolute;
  top: 4%; right: -3vw;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(160px, 28vw, 460px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(59, 157, 255, 0.07);
  pointer-events: none; user-select: none;
  z-index: 0;
}
section > *:not(.section-ghost) { position: relative; z-index: 1; }

/* ═══ cursor label (e.g. PLAY over the goat) ════════════ */
.cursor--label { mix-blend-mode: normal; background: var(--accent); border-color: var(--accent); }
.cursor--label::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; color: #050505; font-weight: 700;
}

/* ═══ journey progress line ═════════════════════════════ */
.journey__progress {
  position: absolute; bottom: 9vh;
  left: clamp(20px, 6vw, 96px); right: clamp(20px, 6vw, 96px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
}
.journey__progress-fill {
  height: 100%; width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
  box-shadow: 0 0 12px rgba(59, 157, 255, 0.8);
}

/* ═══ reveal defaults (JS toggles) ══════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(36px); }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; transform: none; }

/* ═══ reduced motion ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .grain, .dust { display: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .manifesto__text .word { opacity: 1 !important; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}
