/* ───────────── Tokens ───────────── */
:root {
  --red: #de0506;          /* sampled from the character videos */
  --red-deep: #a60404;     /* video vignette edge */
  --ink: #160909;
  --paper: #fff6ec;
  --cream: #f1e6d8;
  --spark: #ffe08a;
  --muted: rgba(255, 246, 236, 0.74);   /* only on ink / deep surfaces */
  --line: rgba(255, 246, 236, 0.22);
  --glass: rgba(22, 9, 9, 0.3);
  --radius: 28px;
  --gutter: clamp(16px, 4vw, 40px);
  --f-display: "Bricolage Grotesque", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-grain: 60; --z-nav: 50; --z-menu: 45; --z-cursor: 70; --z-loader: 100;
}

/* ───────────── Base ───────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
body {
  margin: 0;
  background: var(--red);
  color: var(--paper);
  font: 400 17px/1.6 var(--f-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body::before { /* same soft vignette as the videos */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 95% 80% at 50% 42%, transparent 45%, rgba(70, 0, 0, 0.34) 100%);
}
main, .footer { position: relative; z-index: 1; }
img, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2.5px solid var(--paper); outline-offset: 3px; border-radius: 8px; }
[hidden] { display: none !important; }

.container { width: min(1240px, calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(96px, 13vw, 180px); }
.mono { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.ic { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip { position: absolute; left: 16px; top: -80px; z-index: 200; background: var(--paper); color: var(--ink); padding: 10px 18px; border-radius: 999px; font-weight: 600; text-decoration: none; }
.skip:focus { top: 16px; }

.grain {
  position: fixed; inset: 0; z-index: var(--z-grain); pointer-events: none; opacity: 0.045;
  background: url("../assets/img/noise.png") 0 0 / 160px 160px;
}

/* ───────────── Type ───────────── */
.kicker {
  display: flex; align-items: center; gap: 14px; margin: 0 0 22px;
  font: 500 13px/1 var(--f-mono); letter-spacing: 0.14em; text-transform: uppercase;
}
.kicker::before { content: ""; width: 32px; height: 1.5px; background: currentColor; }
.h2, .h3, .statement, .hero__title, .contact__title {
  font-family: var(--f-display); font-weight: 800; letter-spacing: -0.02em; margin: 0;
}
.h2 { font-size: clamp(40px, 6vw, 92px); line-height: 0.92; font-stretch: 80%; max-width: 16ch; }
.h3 { font-size: clamp(26px, 3vw, 40px); line-height: 1; font-stretch: 85%; }
.h2 em, .contact__title em, .hero__title span { font-style: normal; color: var(--ink); }
.lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; max-width: 52ch; margin: 24px 0 0; }

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 48px; padding: 12px 24px; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--ink); color: var(--paper); font-weight: 600; font-size: 15px; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  translate: var(--tx, 0) var(--ty, 0);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, translate 0.35s var(--ease-out);
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn .ic { transition: transform 0.3s var(--ease-out); }
.btn:hover .ic { transform: translate(2px, -2px); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; border-color: rgba(255, 246, 236, 0.45); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: 14px; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

.chip {
  min-height: 44px; padding: 10px 18px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid rgba(255, 246, 236, 0.4); background: transparent;
  font: 500 13px/1 var(--f-mono); letter-spacing: 0.05em; text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--paper); }
.chip[aria-pressed="true"] { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.tags li { font: 500 12px/1 var(--f-mono); letter-spacing: 0.04em; padding: 7px 10px; border-radius: 999px; border: 1px solid currentColor; opacity: 0.85; }

/* ───────────── Loader ───────────── */
.loader {
  position: fixed; inset: 0; z-index: var(--z-loader); background: var(--red);
  display: grid; place-content: center; text-align: center; overflow: hidden;
}
.loader__name { font: 800 clamp(52px, 11vw, 180px)/0.84 var(--f-display); font-stretch: 75%; text-transform: uppercase; letter-spacing: -0.02em; }
.loader__name span { display: inline-block; }
.loader__count { font-variant-numeric: tabular-nums; position: absolute; right: var(--gutter); bottom: 28px; font: 800 clamp(56px, 9vw, 140px)/0.8 var(--f-display); font-stretch: 75%; }
.loader__count small { font-size: 0.35em; margin-left: 4px; }
.loader__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255, 246, 236, 0.2); }
.loader__bar i { display: block; height: 100%; background: var(--paper); transform-origin: left; transform: scaleX(0); }
.no-js .loader, .is-ready .loader { opacity: 0; visibility: hidden; transition: opacity 0.6s, visibility 0.6s; }

/* Page progress */
.progress { position: fixed; left: 0; right: 0; top: 0; height: 3px; z-index: calc(var(--z-nav) + 1); pointer-events: none; }
.progress i { display: block; height: 100%; background: var(--paper); transform-origin: left; transform: scaleX(0); }

/* ───────────── Cursor ring ───────────── */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; position: fixed; left: 0; top: 0; z-index: var(--z-cursor); width: 0; height: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
  .cursor.is-visible { opacity: 1; }
  .cursor__ring {
    position: absolute; left: -19px; top: -19px; width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid var(--paper); will-change: transform;
    transition: transform 0.45s var(--ease-out), background-color 0.3s, border-color 0.3s;
  }
  .cursor.is-hover .cursor__ring { transform: scale(1.7); background: rgba(255, 246, 236, 0.14); }
  .cursor.has-label .cursor__ring { transform: scale(2.3); background: var(--paper); }
  .cursor.is-down .cursor__ring { transform: scale(0.8); }
  .cursor__label { position: absolute; left: 0; top: 0; translate: -50% -50%; font: 600 11px/1 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity 0.2s; white-space: nowrap; }
  .cursor.has-label .cursor__label { opacity: 1; }
}

/* ───────────── Nav ───────────── */
.nav {
  position: fixed; top: 14px; left: 50%; z-index: var(--z-nav);
  width: min(1120px, calc(100% - 24px)); translate: -50% 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 7px 7px 7px 22px; border-radius: 999px;
  background: var(--glass); border: 1px solid rgba(255, 246, 236, 0.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  transition: transform 0.5s var(--ease-out), background-color 0.3s;
}
.nav.is-hidden { transform: translateY(-150%); }
.nav__logo { font: 800 24px/1 var(--f-display); text-decoration: none; letter-spacing: -0.03em; }
.nav__logo span { color: var(--ink); }
.nav__links { display: flex; gap: 2px; }
.nav__links a { padding: 10px 15px; border-radius: 999px; font-size: 14px; font-weight: 500; text-decoration: none; transition: background-color 0.2s, color 0.2s; }
.nav__links a:hover { background: rgba(255, 246, 236, 0.14); }
.nav__links a.is-active { background: var(--paper); color: var(--ink); }
.nav__burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--ink); cursor: pointer; place-content: center; gap: 6px; }
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--paper); transition: transform 0.3s var(--ease-out); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.menu { position: fixed; inset: 0; z-index: var(--z-menu); background: var(--ink); display: grid; place-items: center; padding: 96px 24px 40px; }
.menu nav { display: grid; gap: 4px; text-align: center; }
.menu a { font: 800 clamp(40px, 11vw, 64px)/1.05 var(--f-display); font-stretch: 80%; text-decoration: none; }
.menu a:hover { color: var(--red); }
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; }
}

/* ───────────── Hero ───────────── */
.hero {
  --stage-h: min(86svh, 62vw);
  position: relative; height: 100svh; min-height: 640px; overflow: hidden; isolation: isolate;
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(520px circle at var(--gx, 50%) var(--gy, 40%), rgba(255, 110, 80, 0.22), transparent 65%);
}
.hero__word {
  position: absolute; left: 50%; top: 12svh; z-index: 1; translate: -50% 0;
  font: 800 clamp(120px, 30vw, 580px)/0.8 var(--f-display); font-stretch: 75%;
  letter-spacing: -0.035em; color: var(--paper); white-space: nowrap; user-select: none;
}
.hero__word .ch { display: inline-block; will-change: transform; }
.hero__stage {
  position: absolute; left: 50%; bottom: 0; z-index: 2;
  height: var(--stage-h); aspect-ratio: 960 / 964; translate: -47.3% 0; transform-origin: 50% 100%;
}
.hero__char { width: 100%; height: 100%; }
.hero__fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.js .hero__fallback { display: none; }
.hero__bubble {
  position: absolute; left: 66%; top: 9%; margin: 0; max-width: 220px;
  padding: 11px 16px; border-radius: 20px 20px 20px 4px;
  background: var(--paper); color: var(--ink); font: 600 15px/1.25 var(--f-body);
  box-shadow: 0 14px 30px -12px rgba(40, 0, 0, 0.6);
  opacity: 0; transform: translateY(8px) scale(0.85); transform-origin: 0 100%;
  transition: opacity 0.3s, transform 0.4s var(--ease-out); pointer-events: none;
}
.hero__bubble.is-on { opacity: 1; transform: none; }
.hero__intro, .hero__side { position: absolute; z-index: 3; bottom: clamp(96px, 14svh, 150px); }
.hero__intro { left: var(--gutter); width: min(400px, calc(50vw - var(--stage-h) * 0.473 - var(--gutter) - 16px)); }
.hero__side { right: var(--gutter); width: min(340px, calc(50vw - var(--stage-h) * 0.37 - var(--gutter) - 16px)); display: grid; gap: 14px; justify-items: start; }
.hero__side p { margin: 0; font-size: 16px; line-height: 1.5; }
.hero__title { font-size: clamp(30px, 2.8vw, 52px); line-height: 0.98; font-stretch: 85%; }
.status { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; font: 500 12px/1.3 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.status i { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--paper); flex: none; }
.status i::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--paper); animation: ping 2s var(--ease-out) infinite; }
@keyframes ping { from { transform: scale(0.4); opacity: 1; } to { transform: scale(1.6); opacity: 0; } }
.hero__scroll {
  position: absolute; z-index: 3; right: var(--gutter); top: 50%; translate: 0 -50%;
  display: grid; justify-items: center; gap: 12px; text-decoration: none;
  font: 500 11px/1 var(--f-mono); letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl;
}
.hero__scroll i { width: 1.5px; height: 64px; background: linear-gradient(var(--paper) 50%, transparent 50%); background-size: 100% 200%; animation: drip 1.8s linear infinite; }
@keyframes drip { from { background-position: 0 100%; } to { background-position: 0 -100%; } }

@media (min-width: 761px) and (max-width: 1100px) and (orientation: landscape) {
  .hero { --stage-h: min(84svh, 48vw); }
  .hero__title { font-size: clamp(24px, 3vw, 34px); }
  .hero__side p:not(.mono) { display: none; }
}
@media (max-width: 760px), (max-width: 1100px) and (orientation: portrait) {
  .hero { --stage-h: min(64svh, 118vw); min-height: 600px; }
  .hero__word { top: auto; bottom: calc(var(--stage-h) * 0.76); font-size: min(38vw, 30svh); }
  .hero__intro { top: 92px; bottom: auto; width: auto; right: var(--gutter); }
  .hero__title { font-size: clamp(30px, 8.6vw, 40px); }
  .hero__side { bottom: 76px; width: auto; }
  .hero__side p { display: none; }
  .hero__scroll { display: none; }
  .hero__bubble { left: 60%; top: 2%; font-size: 13px; max-width: 150px; }
}
@media (max-height: 700px) and (min-width: 761px) {
  .hero__side p:not(.mono) { display: none; }
}

/* Marquee band */
.band { position: relative; z-index: 5; margin: -54px -5vw 0; rotate: -2deg; background: var(--ink); overflow: hidden; padding: 18px 0; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6); }
.band__track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.band__track span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font: 800 clamp(22px, 2.6vw, 34px)/1 var(--f-display); font-stretch: 80%; text-transform: uppercase; white-space: nowrap; }
.band__track .ic { color: var(--red); width: 22px; height: 22px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ───────────── Reel (scroll-scrubbed video) ───────────── */
.reel { position: relative; }
.reel__pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; }
.reel__intro { position: absolute; z-index: 2; left: 0; right: 0; top: clamp(90px, 12vh, 130px); text-align: center; display: grid; justify-items: center; }
.reel__intro .kicker { justify-content: center; }
.reel__intro .h2 { max-width: none; font-size: clamp(36px, 5vw, 76px); }
.reel__frame {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; background: var(--red-deep);
  clip-path: inset(34% 24% 10% 24% round 28px); will-change: clip-path;
}
.reel__poster, .reel__canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__canvas { z-index: 1; }
.reel__shade { position: absolute; inset: 0; z-index: 2; opacity: 0; background: linear-gradient(to top, rgba(22, 9, 9, 0.78), rgba(22, 9, 9, 0) 55%), linear-gradient(to right, rgba(22, 9, 9, 0.5), rgba(22, 9, 9, 0) 60%); }
.reel__caps { position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter); bottom: clamp(56px, 11vh, 120px); margin: 0; padding: 0; list-style: none; height: 1px; }
.reel__caps li { position: absolute; left: 0; bottom: 0; max-width: 12ch; opacity: 0; will-change: transform, opacity; }
.reel__caps span { display: block; margin-bottom: 14px; }
.reel__caps b { display: block; font: 800 clamp(48px, 8vw, 132px)/0.88 var(--f-display); font-stretch: 75%; letter-spacing: -0.03em; }
.reel__bar { position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter); bottom: clamp(24px, 4vh, 40px); height: 2px; background: rgba(255, 246, 236, 0.25); opacity: 0; }
.reel__bar i { display: block; height: 100%; background: var(--paper); transform-origin: left; transform: scaleX(0); }
@media (max-width: 760px) {
  .reel__frame { clip-path: inset(38% 8% 14% 8% round 22px); }
}
.no-js .reel__pin, .reel.is-static .reel__pin { height: auto; padding: 120px 0; }
.reel.is-static .reel__intro, .no-js .reel__intro { position: relative; top: 0; }
.reel.is-static .reel__frame, .no-js .reel__frame { position: relative; inset: auto; clip-path: none; aspect-ratio: 16 / 9; width: min(1240px, calc(100% - var(--gutter) * 2)); margin: 40px auto 0; border-radius: var(--radius); }
.reel.is-static .reel__caps, .no-js .reel__caps { position: relative; height: auto; display: grid; gap: 24px; margin: 40px auto 0; width: min(1240px, calc(100% - var(--gutter) * 2)); }
.reel.is-static .reel__caps li, .no-js .reel__caps li { position: relative; opacity: 1; }

/* ───────────── Keyed character videos ───────────── */
.keyed { display: block; max-width: none; pointer-events: none; aspect-ratio: 16 / 9; }
.keyed--fallback { object-fit: cover; -webkit-mask-image: radial-gradient(ellipse 58% 72% at 50% 58%, #000 55%, transparent 100%); mask-image: radial-gradient(ellipse 58% 72% at 50% 58%, #000 55%, transparent 100%); }
.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; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ───────────── About ───────────── */
.about__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.statement { font-size: clamp(28px, 3.4vw, 54px); line-height: 1.06; font-stretch: 88%; max-width: 24ch; }
.statement .word { display: inline-block; }
.stats { list-style: none; margin: clamp(40px, 5vw, 64px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 clamp(16px, 2vw, 28px); }
.stats li { border-top: 1.5px solid var(--line); padding: 20px 0 0; }
.stats b { display: block; font: 800 clamp(48px, 5.4vw, 88px)/0.86 var(--f-display); font-stretch: 75%; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stats span { display: block; margin-top: 10px; font: 500 12px/1.35 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.about__visual { position: relative; aspect-ratio: 4 / 5; }
.arch {
  position: absolute; left: 11%; right: 11%; top: 47%; bottom: 0; border-radius: 999px 999px 30px 30px;
  background: radial-gradient(120% 80% at 50% 0%, #3a1111, var(--ink) 62%);
  box-shadow: inset 0 0 0 1.5px rgba(255, 246, 236, 0.12), 0 50px 90px -40px rgba(40, 0, 0, 0.9);
}
.arch__ring { position: absolute; left: 12%; width: 76%; aspect-ratio: 1; top: -58%; border-radius: 50%; border: 1.5px dashed rgba(255, 246, 236, 0.4); animation: spin 48s linear infinite; }
.arch__ring--2 { left: -2%; width: 104%; top: -76%; border: 1.5px solid rgba(255, 246, 236, 0.14); animation-duration: 80s; animation-direction: reverse; }
.about__char { position: absolute; z-index: 2; bottom: 0; width: 170%; left: -28%; }
.sticker {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 999px;
  background: var(--paper); color: var(--ink); font: 600 14px/1 var(--f-body); white-space: nowrap;
  box-shadow: 0 16px 34px -14px rgba(40, 0, 0, 0.7);
}
.sticker .ic { width: 16px; height: 16px; color: var(--red); }
.sticker--a { left: -6%; top: 24%; transform: rotate(-8deg); }
.sticker--b { right: -4%; top: 40%; transform: rotate(7deg); background: var(--ink); color: var(--paper); }
.sticker--c { left: -2%; bottom: 18%; transform: rotate(5deg); background: var(--spark); }
.sticker--d { right: 0; bottom: 5%; transform: rotate(-5deg); }

/* ───────────── Now: screen + callouts ───────────── */
.now__head { display: grid; justify-items: center; text-align: center; }
.now__head .kicker { justify-content: center; }
.now__head .h2 { max-width: 17ch; }
.now__head .lead { text-align: center; }
.now__stage { position: relative; width: min(1320px, calc(100% - var(--gutter) * 2)); margin: clamp(56px, 7vw, 100px) auto 0; perspective: 1600px; }
.screen { width: min(980px, 74%); margin-inline: auto; transform-origin: 50% 100%; will-change: transform; }
.screen__glass {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 22px; background: var(--ink);
  box-shadow: 0 0 0 10px var(--ink), 0 0 0 11.5px rgba(255, 246, 236, 0.16), 0 70px 120px -40px rgba(40, 0, 0, 0.95);
}
.screen__glass::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 32%); }
.screen__video { width: 100%; height: 100%; object-fit: cover; }
.screen__hud { position: absolute; z-index: 1; left: 16px; right: 16px; top: 14px; display: flex; justify-content: space-between; gap: 12px; font-size: 11px; }
.screen__hud span { padding: 6px 10px; border-radius: 999px; background: rgba(22, 9, 9, 0.7); display: inline-flex; align-items: center; gap: 7px; }
.screen__hud i { width: 7px; height: 7px; border-radius: 50%; background: #ff3b30; animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }
.callouts { list-style: none; margin: 0; padding: 0; }
.callout {
  position: absolute; z-index: 2; width: 272px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px;
  border-radius: 20px; background: rgba(22, 9, 9, 0.9); border: 1px solid rgba(255, 246, 236, 0.14);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
}
.callout__icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--red); }
.callout__icon .ic { width: 20px; height: 20px; }
.callout h3 { margin: 2px 0 6px; font-size: 16px; font-weight: 600; line-height: 1.2; }
.callout p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--muted); }
.callout--1 { left: 0; top: 2%; }
.callout--2 { left: -1%; top: 44%; }
.callout--3 { left: 6%; bottom: -6%; }
.callout--4 { right: 0; top: 8%; }
.callout--5 { right: -1%; bottom: 6%; }
.now__meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px; margin-top: clamp(56px, 6vw, 88px); }
@media (max-width: 1100px) {
  .screen { width: 100%; }
  .callouts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
  .callout { position: relative; inset: auto; width: auto; }
}

/* ───────────── Stack: orbit ───────────── */
.stack__head { display: grid; justify-items: center; text-align: center; }
.stack__head .kicker { justify-content: center; }
.stack__head .h2 { max-width: 16ch; }
.orbit { --h: min(86vh, 58vw); position: relative; height: var(--h); margin-top: clamp(8px, 2vw, 32px); overflow: hidden; }
.orbit__char { position: absolute; z-index: 2; top: 0; height: 100%; left: 50%; margin-left: calc(var(--h) * -0.8889); -webkit-mask-image: linear-gradient(to top, transparent, #000 14%); mask-image: linear-gradient(to top, transparent, #000 14%); }
.orbit__track { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.orbit__track--front { z-index: 3; }
.orbit__word { position: absolute; left: 0; top: 0; font: 800 clamp(15px, 2.5vw, 40px)/1 var(--f-display); font-stretch: 80%; text-transform: uppercase; letter-spacing: -0.01em; white-space: nowrap; will-change: transform, opacity; opacity: 0; }
.orbit__track--front .orbit__word { text-shadow: 0 8px 24px rgba(60, 0, 0, 0.45); }
.stack__explorer { margin-top: clamp(40px, 5vw, 72px); }
.stack__bar { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.stack__bar .lead { margin: 0; max-width: 40ch; }
.skills { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 24px; margin-top: 40px; }
.skills h3 { margin: 0 0 14px; padding-bottom: 12px; border-bottom: 1.5px solid var(--line); font: 500 12px/1 var(--f-mono); letter-spacing: 0.14em; text-transform: uppercase; }
.skills ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.skill {
  position: relative; padding: 11px 15px; border-radius: 14px; font-weight: 600; font-size: 15px; line-height: 1.1;
  background: var(--glass); border: 1px solid rgba(255, 246, 236, 0.14); cursor: default;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s, transform 0.3s var(--ease-out);
}
.skill:hover { transform: translateY(-3px); }
.skill.is-hit { background: var(--paper); color: var(--ink); }
.skill.is-dim { opacity: 0.3; }
.skill::after {
  content: attr(data-at); position: absolute; left: 50%; bottom: calc(100% + 8px); translate: -50% 4px; z-index: 5;
  padding: 7px 10px; border-radius: 10px; background: var(--ink); color: var(--paper); white-space: nowrap;
  font: 500 11px/1 var(--f-mono); letter-spacing: 0.04em; opacity: 0; pointer-events: none; transition: opacity 0.2s, translate 0.2s;
}
.skill:hover::after { opacity: 1; translate: -50% 0; }
.marquee { margin-top: clamp(96px, 11vw, 150px); display: grid; gap: 4px; overflow: hidden; }
.marquee__row { display: flex; width: max-content; will-change: transform; }
.marquee__row span { font: 800 clamp(64px, 11vw, 190px)/0.95 var(--f-display); font-stretch: 75%; text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap; padding-right: 0.35em; }
.marquee__row--outline span { color: transparent; -webkit-text-stroke: 2px var(--paper); }

/* ───────────── Services ───────────── */
.services { position: relative; padding-block: clamp(96px, 12vw, 160px); }
.services__intro { margin-inline: var(--gutter); max-width: 560px; }
.services__hint { display: inline-flex; align-items: center; gap: 10px; margin: 36px 0 0; }
.services__hint .ic { transform: rotate(45deg); animation: nudge 1.6s var(--ease-out) infinite; }
@keyframes nudge { 50% { translate: 6px 0; } }
.services__cards { list-style: none; margin: 0; padding: 40px var(--gutter) 8px; display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.services__cards::-webkit-scrollbar { display: none; }
.services__progress { display: none; position: absolute; left: max(var(--gutter), calc((100vw - 1240px) / 2)); right: max(var(--gutter), calc((100vw - 1240px) / 2)); bottom: 48px; height: 2px; background: var(--line); }
.services__progress i { display: block; height: 100%; background: var(--paper); transform-origin: left; transform: scaleX(0); }
.svc {
  flex: none; width: min(82vw, 350px); min-height: 460px; scroll-snap-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius);
  background: linear-gradient(160deg, #2a0f0f, var(--ink) 55%); color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 236, 0.1), 0 40px 70px -40px rgba(40, 0, 0, 0.9);
  transition: background-color 0.35s, color 0.35s, transform 0.45s var(--ease-out);
}
.svc::before { content: ""; position: absolute; inset: 0; background: var(--paper); opacity: 0; transition: opacity 0.35s; }
.svc > * { position: relative; }
.svc:hover { color: var(--ink); transform: translateY(-10px) rotate(-1deg); }
.svc:hover::before { opacity: 1; }
.svc__num { font: 500 13px/1 var(--f-mono); letter-spacing: 0.1em; opacity: 0.7; }
.svc__icon { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin: 44px 0 28px; background: var(--red); color: var(--paper); box-shadow: 0 14px 30px -10px rgba(222, 5, 6, 0.7); transition: transform 0.5s var(--ease-out); }
.svc:hover .svc__icon { transform: rotate(-10deg) scale(1.1); }
.svc__icon .ic { width: 28px; height: 28px; }
.svc h3 { margin: 0 0 12px; font: 800 32px/0.95 var(--f-display); font-stretch: 85%; letter-spacing: -0.02em; }
.svc p { margin: 0 0 28px; font-size: 16px; line-height: 1.5; opacity: 0.82; }
.svc .tags { margin-top: auto; }
.svc__big { position: absolute !important; right: -8px; bottom: -34px; font: 800 170px/1 var(--f-display); font-stretch: 75%; opacity: 0.07; pointer-events: none; }
@media (max-width: 960px) { .services__hint { display: none; } }
@media (min-width: 961px) {
  .services { overflow-x: auto; scrollbar-width: none; }
  .services.is-pinned { overflow: hidden; height: 100vh; padding-block: 0; display: flex; align-items: center; }
  .services.is-pinned .services__progress { display: block; }
  .services__track { display: flex; align-items: center; gap: 40px; width: max-content; padding-inline: max(var(--gutter), calc((100vw - 1240px) / 2)); }
  .services__intro { margin: 0; width: 520px; flex: none; }
  .services__cards { overflow: visible; padding: 0; gap: 20px; }
  .svc { width: 360px; min-height: 520px; }
}

/* ───────────── Games: portal + chapters ───────────── */
.fr { --teal: #0b2924; --teal-deep: #051411; --cyan: #37e6ff; --mint: #e8fff9; position: relative; }
.portal { position: relative; height: 100vh; height: 100svh; overflow: hidden; }
.portal__intro { position: absolute; left: 0; right: 0; top: clamp(90px, 12vh, 140px); z-index: 1; display: grid; justify-items: center; text-align: center; }
.portal__intro .kicker { justify-content: center; }
.portal__intro .h2 { max-width: 15ch; }
.portal__intro .lead { text-align: center; }
.portal__world { position: absolute; inset: 0; z-index: 2; background: var(--teal); clip-path: circle(0px at 50% 58%); will-change: clip-path; color: var(--mint); }
.portal__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 58%; }
.portal__world::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, var(--teal) 0%, rgba(11, 41, 36, 0.7) 22%, transparent 55%); pointer-events: none; }
.portal__caption { position: absolute; left: 0; right: 0; bottom: clamp(28px, 7vh, 72px); z-index: 2; }
.portal__caption p:last-child { max-width: 46ch; margin: 16px 0 0; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5; }
.portal__title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.fr__tag { display: inline-flex; align-items: center; gap: 9px; margin: 0; padding: 8px 14px; border-radius: 999px; background: rgba(55, 230, 255, 0.12); border: 1px solid rgba(55, 230, 255, 0.45); color: var(--cyan); font-size: 12px; }
.fr__tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: blink 1.6s steps(2) infinite; }
.portal__ring {
  position: absolute; left: 50%; top: 58%; z-index: 3; width: 200px; height: 200px; margin: 0; border-radius: 50%;
  pointer-events: none; opacity: 0; will-change: transform, opacity; transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 0 0 2px #aff6ff, 0 0 26px 6px rgba(55, 230, 255, 0.85), 0 0 80px 22px rgba(55, 230, 255, 0.35), inset 0 0 28px 6px rgba(55, 230, 255, 0.6);
}
.portal__ring i {
  position: absolute; inset: -8px; border-radius: 50%; animation: spin 2.8s linear infinite;
  background: conic-gradient(from 0deg, transparent, rgba(175, 246, 255, 0.95) 12%, transparent 28%, rgba(55, 230, 255, 0.7) 52%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, transparent 60%, #000 63%, #000 69%, transparent 72%); mask-image: radial-gradient(circle, transparent 60%, #000 63%, #000 69%, transparent 72%);
}
.portal.is-static { height: auto; }
.portal.is-static .portal__intro { position: relative; top: 0; padding: 120px 0 48px; }
.portal.is-static .portal__world { position: relative; clip-path: none; aspect-ratio: 16 / 9; max-height: 100vh; width: 100%; }
.portal.is-static .portal__ring { display: none; }

.fr__body { position: relative; z-index: 2; color: var(--mint); background: linear-gradient(var(--teal), var(--teal-deep)); border-radius: 0 0 44px 44px; padding: clamp(72px, 9vw, 130px) 0 clamp(96px, 11vw, 160px); }
.fr__body::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0.5; background-image: linear-gradient(rgba(55, 230, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(55, 230, 255, 0.06) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent); mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent); }
.fr__grid { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.fr__sticky { position: sticky; top: 100px; }
.gscreen { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: #031210; box-shadow: 0 0 0 1px rgba(55, 230, 255, 0.3), 0 0 70px -12px rgba(55, 230, 255, 0.4), 0 60px 100px -40px #000; }
.gscreen::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 3px); }
.gclip { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity 0.7s, transform 1.4s var(--ease-out); }
.gclip.is-on { opacity: 1; transform: none; }
.gscreen__hud { position: absolute; z-index: 2; left: 18px; right: 18px; top: 14px; display: flex; justify-content: space-between; gap: 12px; font-size: 11px; color: var(--cyan); text-shadow: 0 0 10px rgba(55, 230, 255, 0.7); }
.gscreen__corner { position: absolute; z-index: 2; width: 20px; height: 20px; border: 2px solid var(--cyan); opacity: 0.8; }
.gscreen__corner--tl { left: 8px; top: 8px; border-right: 0; border-bottom: 0; }
.gscreen__corner--tr { right: 8px; top: 8px; border-left: 0; border-bottom: 0; }
.gscreen__corner--bl { left: 8px; bottom: 8px; border-right: 0; border-top: 0; }
.gscreen__corner--br { right: 8px; bottom: 8px; border-left: 0; border-top: 0; }
.gticks { list-style: none; display: flex; gap: 10px; margin: 20px 0 0; padding: 0; }
.gticks li { flex: 1; padding-top: 12px; border-top: 2px solid rgba(232, 255, 249, 0.16); color: rgba(232, 255, 249, 0.5); font: 500 12px/1.3 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.4s, border-color 0.4s; }
.gticks li span { display: block; margin-bottom: 4px; }
.gticks li.is-on { border-color: var(--cyan); color: var(--cyan); }
.gstep { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; opacity: 0.25; transition: opacity 0.6s; }
.gstep.is-on { opacity: 1; }
.gstep .mono { margin: 0; color: var(--cyan); }
.gstep h3 { margin: 14px 0 18px; font: 800 clamp(40px, 4.6vw, 74px)/0.92 var(--f-display); font-stretch: 80%; letter-spacing: -0.02em; }
.gstep p:last-child { margin: 0; max-width: 38ch; font-size: 18px; line-height: 1.6; color: rgba(232, 255, 249, 0.8); }
.gstep--foot { min-height: auto; opacity: 1; gap: 18px; justify-content: flex-start; padding-top: 12px; }
.gstep--foot .tags li { border-color: rgba(55, 230, 255, 0.5); color: var(--mint); }
.gstep--foot .btn { align-self: flex-start; }
.btn--glow { background: var(--cyan); color: #04211d; box-shadow: 0 0 36px -4px rgba(55, 230, 255, 0.7); }
.btn--glow:hover { background: var(--mint); color: #04211d; }

/* ───────────── Journey ───────────── */
.journey__head .h2 { max-width: 20ch; }
.journey__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); margin-top: clamp(48px, 6vw, 88px); align-items: start; }
.yearbox { position: sticky; top: 120px; }
.yearbox__num { overflow: hidden; margin-top: 10px; font: 800 clamp(96px, 12.5vw, 210px)/0.86 var(--f-display); font-stretch: 75%; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.yearbox__num span { display: inline-block; will-change: transform; }
.yearbox__co { margin: 14px 0 0; min-height: 1.2em; font: 700 22px/1.2 var(--f-display); font-stretch: 90%; }
.yearbox__rail { margin-top: 28px; width: 2px; height: 180px; background: var(--line); }
.yearbox__rail i { display: block; height: 100%; background: var(--paper); transform-origin: top; transform: scaleY(0); }
.timeline__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.tl__card { padding: clamp(24px, 3vw, 38px); border-radius: var(--radius); background: var(--ink); box-shadow: inset 0 0 0 1px rgba(255, 246, 236, 0.08); transition: box-shadow 0.5s; }
.tl.is-on .tl__card { box-shadow: inset 0 0 0 1.5px rgba(255, 246, 236, 0.35), 0 40px 80px -40px rgba(40, 0, 0, 0.9); }
.tl__when { margin: 0 0 14px; color: var(--muted); }
.tl__card h3 { margin: 0; font: 800 clamp(28px, 3vw, 42px)/0.95 var(--f-display); font-stretch: 85%; letter-spacing: -0.02em; }
.tl__role { margin: 10px 0 0; font-weight: 600; font-size: 18px; }
.tl__place { margin: 6px 0 0; color: var(--muted); font: 500 12px/1.4 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.tl__card ul.pts { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 10px; }
.tl__card ul.pts li { position: relative; padding-left: 26px; color: var(--muted); line-height: 1.5; }
.tl__card ul.pts .ic { position: absolute; left: 0; top: 5px; width: 13px; height: 13px; color: var(--red); }
.tl--origin .tl__card { background: transparent; box-shadow: none; border: 1.5px dashed rgba(255, 246, 236, 0.5); }
.tl--origin .tl__card ul.pts li { color: var(--paper); }
.reduced .yearbox { display: none; }
.reduced .journey__grid { grid-template-columns: 1fr; }

/* ───────────── Learning ───────────── */
.learning__head { display: grid; justify-items: center; text-align: center; }
.learning__head .kicker { justify-content: center; }
.learning__head .h2 { max-width: 16ch; }
.learn-stage { --h: min(92vh, 64vw); position: relative; height: var(--h); overflow: hidden; margin-top: clamp(8px, 2vw, 24px); }
.learn-stage__words { position: absolute; left: 0; right: 0; top: 6%; z-index: 1; display: grid; justify-items: center; font: 800 min(23vw, 33vh)/0.82 var(--f-display); font-stretch: 75%; letter-spacing: -0.035em; text-transform: uppercase; white-space: nowrap; }
.learn-stage__words span { display: block; will-change: transform; }
.learn-stage__words span:last-child { color: transparent; -webkit-text-stroke: 2px var(--paper); }
.learn-stage__char { position: absolute; z-index: 2; bottom: 0; height: 96%; left: 50%; margin-left: calc(var(--h) * 0.96 * -0.8889); -webkit-mask-image: linear-gradient(to top, transparent, #000 16%); mask-image: linear-gradient(to top, transparent, #000 16%); }
.degrees { position: relative; z-index: 3; list-style: none; margin: clamp(-110px, -7vw, -40px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.degree {
  display: flex; flex-direction: column; min-height: 250px; padding: 26px; border-radius: 24px;
  background: var(--paper); color: var(--ink); box-shadow: 0 40px 70px -35px rgba(40, 0, 0, 0.8);
  transition: transform 0.45s var(--ease-out);
}
.degree:nth-child(odd):hover { transform: translateY(-8px) rotate(-1.5deg); }
.degree:nth-child(even):hover { transform: translateY(-8px) rotate(1.5deg); }
.degree__badge { align-self: flex-start; padding: 8px 12px; border-radius: 999px; background: var(--red); color: var(--paper); font: 600 12px/1 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.degree h3 { margin: 26px 0 8px; font: 800 26px/0.98 var(--f-display); font-stretch: 85%; letter-spacing: -0.01em; }
.degree p { margin: 0; font-size: 15px; line-height: 1.4; }
.degree time { margin-top: auto; padding-top: 18px; font: 500 12px/1 var(--f-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.certs { margin-top: clamp(80px, 9vw, 120px); }
.certs__head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.certs__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); gap: 12px; }
.cert { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; border-radius: 18px; background: rgba(22, 9, 9, 0.42); border: 1px solid rgba(255, 246, 236, 0.1); transition: transform 0.35s var(--ease-out), background-color 0.3s; }
.cert:hover { transform: translateY(-4px); background: rgba(22, 9, 9, 0.62); }
.cert b { font-weight: 600; font-size: 16px; line-height: 1.3; }
.cert span { color: var(--muted); font: 500 12px/1.3 var(--f-mono); letter-spacing: 0.04em; text-transform: uppercase; }
.langs { margin-top: clamp(80px, 9vw, 120px); }
.langs__list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px clamp(24px, 4vw, 56px); }
.langs__list b { font: 800 clamp(34px, 4vw, 54px)/1 var(--f-display); font-stretch: 80%; }
.langs__list span { display: block; margin: 6px 0 14px; font: 500 12px/1 var(--f-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.langs__bar { height: 6px; border-radius: 6px; background: rgba(255, 246, 236, 0.2); overflow: hidden; }
.langs__bar i { display: block; height: 100%; background: var(--paper); transform-origin: left; }

/* ───────────── Contact ───────────── */
.contact { padding-top: clamp(64px, 8vw, 120px); padding-bottom: clamp(48px, 6vw, 80px); }
.contact__stage { position: relative; height: min(78vh, 54vw); overflow: hidden; display: flex; justify-content: center; align-items: flex-end; }
.contact__words { position: absolute; left: 0; right: 0; top: 3%; z-index: 1; display: flex; justify-content: center; gap: 0.16em; font: 800 min(18.5vw, 32vh)/0.8 var(--f-display); font-stretch: 75%; letter-spacing: -0.04em; text-transform: uppercase; white-space: nowrap; }
.contact__words span { display: block; }
.contact__words span:last-child { color: var(--ink); }
.contact__char { position: relative; z-index: 2; height: 90%; width: auto; max-width: none; -webkit-mask-image: linear-gradient(to top, transparent, #000 14%); mask-image: linear-gradient(to top, transparent, #000 14%); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; margin-top: clamp(32px, 4vw, 64px); }
.contact__title { font-size: clamp(48px, 6.4vw, 104px); line-height: 0.88; font-stretch: 78%; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.contact__where { display: flex; align-items: center; gap: 8px; margin: 26px 0 0; }
.form { display: grid; gap: 22px; padding: clamp(24px, 4vw, 44px); border-radius: var(--radius); background: var(--ink); box-shadow: 0 40px 80px -40px rgba(50, 0, 0, 0.8); }
.field label { display: block; margin-bottom: 6px; color: var(--muted); font: 500 12px/1 var(--f-mono); letter-spacing: 0.12em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 0 12px; border: 0; border-radius: 0; background: transparent; font-size: 17px;
  border-bottom: 1.5px solid rgba(255, 246, 236, 0.3); transition: border-color 0.2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--paper); box-shadow: 0 1.5px 0 var(--paper); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23fff6ec' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 4px center no-repeat; }
.field select option { background: var(--ink); }
.field input:user-invalid, .field textarea:user-invalid { border-bottom-color: #ff8a80; }
.hp { position: absolute; left: -9999px; }
.form__submit { justify-self: start; }
.form__status { margin: 0; min-height: 1.4em; font: 500 13px/1.4 var(--f-mono); letter-spacing: 0.04em; }
.form__status.is-ok { color: #b9f6ca; }
.form__status.is-err { color: #ff8a80; }

/* ───────────── Footer ───────────── */
.footer { padding-top: 40px; overflow: hidden; }
.footer__row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px 24px; padding-top: 26px; border-top: 1.5px solid var(--line); font-size: 14px; }
.footer__row p { margin: 0; }
.footer__top { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 600; }
.footer__top .ic { transform: rotate(-45deg); }
.footer__word { margin-top: 36px; text-align: center; white-space: nowrap; color: var(--ink); font: 800 16vw/0.78 var(--f-display); font-stretch: 75%; letter-spacing: -0.035em; transform: translateY(8%); user-select: none; }

/* ───────────── Responsive ───────────── */
@media (max-width: 960px) {
  .about__grid, .fr__grid, .journey__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { width: 100%; max-width: 460px; margin: 24px auto 0; }
  .stats, .skills, .degrees { grid-template-columns: 1fr 1fr; }
  .yearbox { display: none; }
  .fr__sticky { top: 0; z-index: 3; margin-inline: calc(var(--gutter) * -1); padding: 16px var(--gutter) 16px; background: var(--teal); }
  .gstep { min-height: 56vh; }
}
@media (max-width: 760px) {
  .orbit { --h: 118vw; }
  .learn-stage { --h: 122vw; }
  .contact__stage { height: 104vw; }
  .gticks li { font-size: 10px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .degrees, .langs__list, .skills, .callouts { grid-template-columns: 1fr; }
  .contact__actions .btn { flex: 1 1 auto; }
  .band { margin-top: -40px; padding: 14px 0; }
  .sticker { font-size: 12px; padding: 9px 13px; }
}

/* ───────────── Motion preferences ───────────── */
@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; }
  .grain { display: none; }
}
