:root {

  --bg: #000000;
  --bg-2: #050507;
  --surface: #0b0c10;
  --surface-2: #101219;

  --fg: #ffffff;
  --muted: #a2a7b4;
  --dim: #848b99;

  --accent: #3b82f6;
  --accent-hi: #5b9bff;
  --accent-soft: rgba(59, 130, 246, .14);

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --s1: 12px;
  --s2: 24px;
  --s3: 28px;
  --s4: 32px;
  --s5: 96px;
  --s6: 128px;
  --gap: 24px;
  --sec-y: 112px;

  --container: 1240px;
  --pad: clamp(24px, 4vw, 32px);
  --nav-h: 72px;

  --r-card: 0px;
  --r-pill: 9999px;
  --r-glass: 14px;

  --hair: .8px;
  --line: rgba(255, 255, 255, .2);
  --line-soft: rgba(255, 255, 255, .1);

  --t: 200ms;
  --t-fast: 150ms;
  --t-slow: 300ms;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }

.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;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: fixed; top: -120px; left: var(--s1); z-index: 2000;
  background: #fff; color: #000;
  padding: var(--s1) var(--s2); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  transition: top var(--t) var(--ease);
}
.skip-link:focus { top: var(--s1); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-size: 14px; font-weight: 500; line-height: 20px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}

.sub-h {
  font-size: 14px; font-weight: 500; line-height: 20px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  padding-bottom: var(--s1); border-bottom: var(--hair) solid var(--line-soft);
  margin: 0 0 var(--s4);
}

.ed { color: var(--dim); font-style: italic; }

.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  height: var(--nav-h);
  border-bottom: var(--hair) solid transparent;
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.nav.stuck {
  background: rgba(8, 9, 13, .82);
  border-bottom-color: var(--line-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.nav-inner {
  height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: var(--s4);
}

.brand { display: flex; align-items: center; gap: var(--s1); margin-right: auto; }
.brand-logo { width: 28px; height: 28px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.brand-text span { font-size: 10px; font-weight: 500; letter-spacing: .18em; color: var(--dim); }

.nav-links { display: flex; align-items: center; gap: var(--s3); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  position: relative; display: block; padding: 8px 0;
  font-size: 14px; font-weight: 500; line-height: 20px; color: var(--muted);
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0;
  background: var(--accent); transition: width var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--fg); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: var(--hair) solid var(--line); border-radius: var(--r-pill);
  color: var(--muted);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.icon-btn:hover { color: var(--fg); border-color: var(--accent); background: var(--accent-soft); }

.icon-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.nav-toggle { display: none; }
.bars { display: grid; gap: 4px; }
.bars i { display: block; width: 15px; height: 1.5px; background: currentColor; border-radius: var(--r-pill); }

.search-panel {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 5, 8, .8);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: 12vh var(--pad) 0;
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.search-panel[hidden] { display: none; }
body.search-open .search-panel { opacity: 1; }

.search-box { max-width: 640px; margin: 0 auto; }
.search-field {
  display: flex; align-items: center; gap: var(--s1);
  background: var(--surface); border: var(--hair) solid var(--line);
  border-radius: var(--r-pill); padding: 6px 6px 6px var(--s2);
}
.search-field svg { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: var(--dim); stroke-width: 1.5; stroke-linecap: round; }
.search-field input {
  flex: 1; background: none; border: 0; color: var(--fg);
  font-family: var(--font); font-size: 16px; padding: var(--s1) 0;
}
.search-field input:focus { outline: none; }
.search-field input::placeholder { color: var(--dim); }

.search-results { list-style: none; margin: var(--s1) 0 0; padding: 0; max-height: 52vh; overflow-y: auto; }
.search-results li + li { border-top: var(--hair) solid var(--line-soft); }
.search-results a {
  display: block; padding: var(--s1) var(--s2); background: var(--surface);
  transition: background-color var(--t-fast) var(--ease);
}
.search-results li:first-child a { border-radius: var(--r-glass) var(--r-glass) 0 0; }
.search-results li:last-child a { border-radius: 0 0 var(--r-glass) var(--r-glass); }
.search-results a:hover, .search-results a:focus-visible { background: var(--surface-2); }
.r-sec {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
}
.r-txt { display: block; font-size: 14px; line-height: 20px; color: var(--muted); }
.search-results mark { background: var(--accent-soft); color: var(--fg); border-radius: 3px; }
.search-empty { margin-top: var(--s2); text-align: center; color: var(--dim); }

.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;

  padding: calc(var(--nav-h) + 24px) 0 var(--s2);
  overflow: hidden;
}

#shader {
  position: absolute; inset: 0; z-index: -3;
  display: block; width: 100%; height: 100%;
  pointer-events: none;
}

#field {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  width: 100%; height: 100%;
}

.stage { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
#scene { width: 100%; height: 100%; display: block; }
.logo-static { display: none; }

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, .55), rgba(0, 0, 0, .68) 60%, rgba(0, 0, 0, .88));
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, var(--bg) 98%);
}

.hero-inner {
  width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 var(--pad);
  display: flex; flex-direction: column; align-items: center;

  margin-top: calc(var(--logo-bottom, 61vh) + 8px);
}

.hero-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500; line-height: 1.15;
  letter-spacing: .12em;
  cursor: default;
  transition: text-shadow var(--t-slow) var(--ease);
}

.tw-row { display: block; }
.tw-row-sub {
  margin-top: .58em;

  font-size: max(12px, .4em);
  font-weight: 400;
  letter-spacing: .36em;

  color: rgba(255, 255, 255, .72);
  transition: color var(--t-slow) var(--ease), text-shadow var(--t-slow) var(--ease);
}
.tw-line { position: relative; display: inline-block; text-align: left; margin-right: -.12em; }
.tw-row-sub .tw-line { margin-right: -.36em; }

.tw-out { display: none; position: absolute; left: 0; top: 0; white-space: pre; }
.tw-on .tw-ghost { visibility: hidden; }
.tw-on .tw-out { display: block; }

.tw-cursor {
  display: inline-block; margin-left: .08em;
  font-weight: 300; color: var(--accent-hi);
  animation: tw-blink 1.05s step-end infinite;
}
@keyframes tw-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.tw-nocaret .tw-cursor { animation: tw-caret-out var(--t-slow) var(--ease) forwards; }
@keyframes tw-caret-out { from { opacity: 1; } to { opacity: 0; } }

.hero-title:hover {
  text-shadow:
    0 0 14px rgba(255, 255, 255, .38),
    0 0 38px rgba(91, 155, 255, .28);
}
.hero-title:hover .tw-row-sub {
  color: rgba(255, 255, 255, .95);
  text-shadow:
    0 0 12px rgba(120, 175, 255, .55),
    0 0 34px rgba(59, 130, 246, .32);
}

.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s1); margin-top: 42px;
}

.pill-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--s1) var(--s2);
  border: var(--hair) solid var(--line); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; line-height: 20px; color: var(--fg);
}
.pill-badge i {
  width: 6px; height: 6px; border-radius: var(--r-pill);
  background: var(--accent); flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .22);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: var(--s1) var(--s2);
  border: var(--hair) solid var(--line); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; line-height: 20px; color: var(--fg);
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.btn-primary { background: #fff; border-color: #fff; color: #000; }
.btn-primary:hover { background: #e8eaef; border-color: #e8eaef; color: #000; }
.btn-secondary { border-color: var(--line); color: var(--fg); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255, 255, 255, .8);
  transition: color var(--t-fast) var(--ease);
}
.scroll-cue i { display: block; width: 1px; height: 22px; background: linear-gradient(var(--accent), transparent); }
.scroll-cue:hover { color: var(--fg); }

.section {
  position: relative;
  padding: var(--sec-y) 0;
  border-top: var(--hair) solid var(--line-soft);
  background: rgba(8, 9, 13, .93);
}
.section:nth-of-type(even) { background: rgba(11, 13, 19, .93); }
.section-end { background: rgba(6, 7, 10, .94); }

.sec-head { margin-bottom: var(--s5); }
.sec-head .eyebrow { margin-bottom: var(--s1); }
.sec-title {
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 500; line-height: 1;
  letter-spacing: -.025em;
}
.sec-lead { margin-top: var(--s1); max-width: 72ch; color: var(--muted); font-size: 14px; line-height: 21px; }

.sec-title.kinetic { perspective: 800px; }
.sec-title.kinetic .char {
  display: inline-block; white-space: pre;
  opacity: 0; transform: var(--transform-from);
  backface-visibility: hidden; will-change: transform, opacity;
}
.sec-title.kinetic.in .char {
  animation: fly-in .8s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--d, 0s);
}
@keyframes fly-in {
  from { opacity: 0; transform: var(--transform-from); }
  to   { opacity: 1; transform: translateZ(0) rotateX(0deg) rotateY(0deg); }
}
.sec-head.centered {
  border-left: 0; padding-left: 0; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.sec-head.centered::after {
  content: ""; display: block; width: 96px; height: 2px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: var(--s2);
}

.section .sub-h { margin-top: var(--s5); }
.section .sub-h:first-of-type { margin-top: 0; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.tight { gap: 16px; margin-top: var(--s2); }

.card {
  position: relative; background: var(--surface);
  border: var(--hair) solid var(--line); border-radius: var(--r-card);
  padding: var(--s3);
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.card:hover { border-color: var(--accent); background: var(--surface-2); }
.card-idx {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  color: var(--accent); margin-bottom: var(--s1);
}
.card h4 { font-size: 16px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; line-height: 20px; }

.card-head { display: flex; align-items: center; gap: var(--s1); margin-bottom: var(--s1); }
.card-head h4 { margin: 0; }
.card-ico {
  flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px;
  border: var(--hair) solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.03); color: var(--fg);
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.card:hover .card-ico { border-color: var(--line); }
.card-ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.card::before {
  content: ""; position: absolute; inset: -7px; z-index: 2; pointer-events: none;
  opacity: 0; transition: opacity .25s var(--ease);
  background:
    linear-gradient(#fff, #fff) top left / 10px 10px no-repeat,
    linear-gradient(#fff, #fff) top right / 10px 10px no-repeat,
    linear-gradient(#fff, #fff) bottom left / 10px 10px no-repeat,
    linear-gradient(#fff, #fff) bottom right / 10px 10px no-repeat;
}
.card:hover::before { opacity: 1; }

.showcase {
  margin: 0 0 var(--s5);
  overflow: hidden;
}
.showcase video { width: 100%; height: auto; display: block; }
.spec-spot {
  --dot: 6px;
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px 5px 9px;
  border: var(--hair) solid rgba(255,255,255,.22);
  border-radius: var(--r-pill);
  background: rgba(10,12,18,.62);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  font: 500 11px/1 var(--font);
  letter-spacing: .02em; white-space: nowrap;
  cursor: default; pointer-events: none; user-select: none;
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.spec-spot::before {
  content: ""; width: var(--dot); height: var(--dot); border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
  flex: 0 0 auto;
}
.showcase.spots-in .spec-spot { opacity: 1; transform: none; }
.showcase.spots-in .spec-spot:nth-of-type(2) { transition-delay: .07s; }
.showcase.spots-in .spec-spot:nth-of-type(3) { transition-delay: .14s; }
.showcase.spots-in .spec-spot:nth-of-type(4) { transition-delay: .21s; }
.showcase.spots-in .spec-spot:nth-of-type(5) { transition-delay: .28s; }
.showcase.spots-in .spec-spot:nth-of-type(6) { transition-delay: .35s; }
.spec-spot[data-visible="false"] { opacity: .28; }
@media (max-width: 720px) {
  .spec-spot { font-size: 10px; padding: 4px 9px 4px 7px; }
}

.showcase model-viewer {
  width: 100%; height: clamp(340px, 56vw, 560px); display: block;
  background: transparent;
  --poster-color: transparent;
}
.showcase figcaption {
  padding: var(--s1) var(--s2); border-top: var(--hair) solid var(--line-soft);
  font-size: 12px; color: var(--dim);
}

.split { display: grid; grid-template-columns: minmax(180px, 260px) 1fr; gap: var(--s4); align-items: start; }
.split .sub-h { margin: 0; border: 0; padding: 0; }
.spec-list dl { margin: 0; border-top: var(--hair) solid var(--line-soft); }
.spec-list div {
  display: grid; grid-template-columns: minmax(140px, 240px) 1fr; gap: var(--s2);
  padding: var(--s1) 0; border-bottom: var(--hair) solid var(--line-soft);
}
.spec-list dt { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.spec-list dd { margin: 0; font-size: 14px; line-height: 20px; }

.decisions { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--gap); }
.decisions > li { border-left: var(--hair) solid var(--line-soft); padding-left: var(--s2); }
.d-num { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.decisions h4 { font-size: clamp(18px, 2vw, 22px); font-weight: 500; letter-spacing: -.02em; margin-bottom: var(--s1); }
.decisions > li > p:not(.d-num) { color: var(--muted); }
@media (max-width: 640px) { .decisions { grid-template-columns: 1fr; gap: var(--s4); } }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); }
.steps li { counter-increment: s; border-top: 2px solid var(--line-soft); padding-top: var(--s2); transition: border-color var(--t) var(--ease); }
.steps li:hover { border-top-color: var(--accent); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .14em; color: var(--accent); margin-bottom: var(--s1);
}
.steps h4 { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.steps p { color: var(--muted); }

.stepper { list-style: none; margin: 0; padding: 0; display: flex; }
.step { position: relative; flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 10px; }
.step-dot {
  position: relative; z-index: 1;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: var(--hair) solid var(--line);
  color: var(--dim); font-size: 12px; font-weight: 500; flex: 0 0 auto;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.step-num, .step-check { grid-area: 1 / 1; transition: opacity var(--t) var(--ease), transform var(--t) var(--ease); }
.step-check { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transform: scale(.4); }
.step-body { margin-top: var(--s1); }
.step-title { display: block; font-size: 15px; font-weight: 500; color: var(--fg); transition: color var(--t) var(--ease); }
.step-desc { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 19px; }

.step-sep {
  position: absolute; z-index: 0; top: 15px;
  left: calc(50% + 15px); width: calc(100% - 30px); height: 2px;
  background: var(--line-soft); transition: background var(--t) var(--ease);
}

.step[data-state="active"] .step-dot,
.step[data-state="completed"] .step-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.step[data-state="completed"] .step-num { opacity: 0; transform: scale(.4); }
.step[data-state="completed"] .step-check { opacity: 1; transform: scale(1); }
.step[data-state="completed"] .step-sep { background: var(--accent); }
.step[data-state="inactive"] .step-title { color: var(--muted); }

@media (max-width: 640px) {
  .stepper { flex-direction: column; }
  .step { flex-direction: row; align-items: flex-start; text-align: left; padding: 0 0 var(--s4); gap: var(--s2); }
  .step-body { margin-top: 2px; }
  .step-sep { top: 30px; left: 15px; width: 2px; height: calc(100% - 30px); }
}

.table-wrap { overflow-x: auto; border: var(--hair) solid var(--line); border-radius: var(--r-card); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.table th, .table td { text-align: left; padding: var(--s1) var(--s2); border-bottom: var(--hair) solid var(--line-soft); }
.table thead th {
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); background: var(--surface);
}
.table tbody tr:last-child td { border-bottom: 0; }
.table td:first-child { color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap); margin: 0 0 var(--s5);
}
.stats > div {
  padding: var(--s2);
  background: var(--surface);
  border: var(--hair) solid var(--line);
  border-radius: var(--r-glass);
}
.stats dt { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: 8px; }
.stats dd { margin: 0; font-size: clamp(18px, 2.2vw, 24px); font-weight: 500; letter-spacing: -.02em; }

.stats > div, .card, .statement, .post, .sponsors a {
  --start: 0; --active: 0; --spread: 40; --glow-w: 1.5px;
  --gradient:
    radial-gradient(circle, #dd7bbb 10%, #dd7bbb00 20%),
    radial-gradient(circle at 40% 40%, #d79f1e 5%, #d79f1e00 15%),
    radial-gradient(circle at 60% 60%, #5a922c 10%, #5a922c00 20%),
    radial-gradient(circle at 40% 60%, #4c7894 10%, #4c789400 20%),
    repeating-conic-gradient(from 236.84deg at 50% 50%,
      #dd7bbb 0%, #d79f1e 5%, #5a922c 10%, #4c7894 15%, #dd7bbb 20%);
  position: relative;
}
.stats > div::after, .card::after, .statement::after, .post::after, .sponsors a::after {
  content: ""; pointer-events: none;
  position: absolute; inset: 0;
  border: var(--glow-w) solid transparent; border-radius: inherit;

  background: var(--gradient);
  opacity: var(--active); transition: opacity .3s;
  -webkit-mask-clip: padding-box, border-box; mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in; mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(#0000, #0000),
    conic-gradient(from calc((var(--start) - var(--spread)) * 1deg),
      #00000000 0deg, #fff, #00000000 calc(var(--spread) * 2deg));
  mask-image:
    linear-gradient(#0000, #0000),
    conic-gradient(from calc((var(--start) - var(--spread)) * 1deg),
      #00000000 0deg, #fff, #00000000 calc(var(--spread) * 2deg));
}

.people { list-style: none; margin: 0; padding: 0; }
.people-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: var(--s4) var(--gap); }
.person { display: flex; flex-direction: column; gap: var(--s1); }
.people:not(.people-grid) .person { flex-direction: row; align-items: center; gap: var(--s2); }
.portrait {
  position: relative; overflow: hidden; background: var(--surface);
  border: var(--hair) solid var(--line); border-radius: 20px;
}
.people-grid .portrait { aspect-ratio: 1 / 1; }

.people:not(.people-grid) .portrait { width: 124px; height: 124px; flex: 0 0 auto; }
.portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.person:hover .portrait img { filter: none; transform: scale(1.03); }
.person-body h4 { font-size: 16px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 4px; }
.role { color: var(--muted); }
.tags { margin-top: 6px; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }

.statement {
  border: var(--hair) solid var(--line); border-radius: 22px;
  background: var(--surface); padding: var(--s3);
  transition: border-color var(--t) var(--ease);
}
.statement:hover { border-color: var(--accent); }
.statement h3 {
  font-size: 14px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: var(--s1);
}
.statement p { color: var(--muted); font-size: 14px; line-height: 21px; }

.folder-wrap { display: flex; flex-direction: column; align-items: center; gap: 76px; margin-bottom: var(--s5); }

.fld-tip {
  position: relative; background: #1f1d22; color: #fff;
  padding: 14px 26px; border-radius: 20px;
  font-size: clamp(16px, 2.4vw, 22px); font-weight: 600; letter-spacing: -.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.fld-tip .accent { color: var(--accent-hi); }
.fld-tip::after {
  content: ""; position: absolute; left: 50%; bottom: -11px; transform: translateX(-50%);
  border-left: 11px solid transparent; border-right: 11px solid transparent;
  border-top: 12px solid #1f1d22;
}

.fld-folder {
  position: relative; width: 280px; height: 240px;
  perspective: 900px; cursor: pointer;
  border: 0; background: none; padding: 0;
}
.fld-folder > span { position: absolute; }
.fld-folder:focus-visible { outline: 2px solid var(--accent); outline-offset: 8px; border-radius: 14px; }

.fld-aura {
  left: -35px; right: -35px; top: 50px; bottom: -40px; z-index: 0;
  pointer-events: none; border-radius: 999px;
  background: radial-gradient(ellipse 80% 70% at 50% 60%,
    rgba(16, 12, 22, .70) 0%, rgba(22, 16, 30, .40) 42%, rgba(14, 10, 20, .14) 68%, transparent 100%);
  filter: blur(24px);
}
.fld-back { left: 18px; right: 18px; top: 18px; bottom: 14px; z-index: 2; }
.fld-svg { width: 100%; height: 100%; display: block; overflow: visible; }

.fld-page {
  top: 16px; left: 50%; width: 108px; height: 144px; margin-left: -54px;
  display: block; overflow: hidden; border-radius: 13px;
  background: linear-gradient(to bottom, #f6f5fa, #e4e2ef 60%, #d2d0e0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .30), 0 1px 4px rgba(0, 0, 0, .14);
  transition: transform .55s cubic-bezier(.34, 1.4, .64, 1);
}

.fld-page::before {
  content: ""; position: absolute; inset: 11px 11px 9px; border-radius: 3px;
  background: repeating-linear-gradient(to bottom, #b6b4ca 0 2px, transparent 2px 9px);
}
.fld-page.p1 { transform: translate(-38px, 4px) rotate(-3.5deg); z-index: 4; }
.fld-page.p2 { transform: translate(0, 0) rotate(0deg); z-index: 5; }
.fld-page.p3 { transform: translate(42px, 3px) rotate(4deg); z-index: 4; }
.fld-folder.open .fld-page.p1 { transform: translate(-84px, -66px) rotate(-14deg); }
.fld-folder.open .fld-page.p2 { transform: translate(2px, -74px) rotate(2deg); }
.fld-folder.open .fld-page.p3 { transform: translate(84px, -66px) rotate(14deg); }

.fld-flap {
  left: 17px; right: 17px; bottom: 13px; height: 150px; z-index: 8;
  transform-origin: bottom center; transform: rotateX(0deg);
  transition: transform .52s cubic-bezier(.34, 1.4, .64, 1);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .25));
}
.fld-folder.open .fld-flap { transform: rotateX(-45deg); }
.fld-spec {
  position: absolute; top: 22px; left: 0; width: 55%; height: 45%; pointer-events: none;
  background: radial-gradient(ellipse at 18% 8%, rgba(255, 255, 255, .14) 0%, transparent 70%);
}
.fld-drop {
  bottom: -10px; left: 20%; right: 20%; height: 16px; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse, rgba(6, 2, 14, .35) 0%, transparent 78%);
  filter: blur(7px);
}

.workshop { --wk-cw: 260px; --wk-ch: 196px; overflow: hidden; isolation: isolate; }

.wk-stage { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.wk-stage:not(.wk-on) .wk-card { position: relative; width: 100%; aspect-ratio: 4 / 3; }

.wk-stage.wk-on {
  display: block; position: relative; height: 300px;
  touch-action: pan-y;
}
.wk-stage.wk-on:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.wk-stage.wk-on .wk-card {
  position: absolute; top: 50%; left: 50%;
  width: var(--wk-cw); height: var(--wk-ch);
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, opacity;
}

.wk-card {
  overflow: hidden; border-radius: 14px;
  background: var(--surface); border: var(--hair) solid var(--line);
}
.wk-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wk-overlay { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; }

.wk-grad { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.2) 50%, transparent); }
.wk-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.95); color: #000;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.wk-meta { position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff; }
.wk-title { font-size: 16px; font-weight: 500; letter-spacing: -.01em; }

.wk-drag { position: absolute; inset: 0; z-index: 50; cursor: grab; }
.wk-drag:active { cursor: grabbing; }

.wk-controls { display: flex; align-items: center; justify-content: center; gap: var(--s2); margin-top: var(--s4); }
.wk-btn {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: var(--hair) solid var(--line); border-radius: var(--r-pill);
  color: var(--muted); font-size: 20px; line-height: 1;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.wk-btn:hover { color: var(--fg); border-color: var(--accent); background: var(--accent-soft); }
.wk-dots { display: flex; align-items: center; gap: 8px; }
.wk-dot {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--line); transition: background-color var(--t) var(--ease), width var(--t) var(--ease);
}
.wk-dot.on { background: var(--accent); width: 22px; }

@media (min-width: 640px) {
  .workshop { --wk-cw: 340px; --wk-ch: 256px; }
  .wk-stage.wk-on { height: 360px; }
}
@media (min-width: 1024px) {
  .workshop { --wk-cw: 420px; --wk-ch: 316px; }
  .wk-stage.wk-on { height: 430px; }
}

.ph-media {
  min-height: 210px; border: var(--hair) dashed var(--line);
  border-radius: var(--r-card);
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .014) 0 12px, transparent 12px 24px);
}

.flight-video {
  position: relative; margin: 0; padding: 0; overflow: hidden;
  background: #000; border-style: solid;
}
.flight-video video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.posts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gap);
}
.post {
  display: flex; flex-direction: column;
  background: var(--surface); border: var(--hair) solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.post:hover { border-color: var(--accent); background: var(--surface-2); }

.post-cover {
  min-height: 0; aspect-ratio: 5 / 2;

  margin: var(--s1) var(--s1) 0;
  border: 0; border-bottom: var(--hair) dashed var(--line); border-radius: 0;
}

.post-cover.has-cover {
  border-bottom: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.post-empty { border: var(--hair) dashed var(--line); }
.post-body { display: flex; flex-direction: column; gap: var(--s1); padding: var(--s3); flex: 1; }
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px var(--s1);
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
}
.post-cat { color: var(--accent); }
.post h3 { font-size: 18px; font-weight: 500; letter-spacing: -.01em; }
.post-excerpt { color: var(--muted); font-size: 14px; line-height: 20px; }
.post-more {
  margin-top: auto; display: inline-flex; align-items: center;
  color: var(--accent); font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}
.post-more:hover { text-decoration: underline; text-underline-offset: 4px; }

.sponsors {
  list-style: none; margin: 0 auto; padding: 0; max-width: 980px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap);
}
.sponsors a {
  display: grid; place-items: center; min-height: 150px; padding: var(--s3);
  background: var(--surface); border: var(--hair) solid var(--line);
  border-radius: var(--r-card);
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
.sponsors a:hover { border-color: var(--accent); background: var(--surface-2); }
.sponsors img {
  max-height: 72px; width: auto; object-fit: contain;
  filter: grayscale(1) brightness(1.7); opacity: .78;
  transition: filter var(--t-slow) var(--ease), opacity var(--t-slow) var(--ease);
}

.sponsors img[src*="specson"],
.sponsors img[src*="gumusova"] { max-height: 92px; }
.sponsors img[src*="aselsan"] { max-height: 92px; }
.sponsors a:has(img[src*="aselsan"]) { padding-left: var(--s1); padding-right: var(--s1); }
.sponsors a:hover img { filter: none; opacity: 1; }
.note { margin-top: var(--s4); text-align: center; color: var(--muted); }
.note a { color: var(--accent); }
.note a:hover { text-decoration: underline; text-underline-offset: 4px; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--gap); max-width: 1000px; margin: 0 auto; }
.panel {
  background: var(--surface); border: var(--hair) solid var(--line);
  border-radius: var(--r-card); padding: clamp(24px, 3vw, 32px);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--s2); }
.field label { font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  background: var(--bg); border: var(--hair) solid var(--line); color: var(--fg);
  border-radius: var(--r-card);
  font-family: var(--font); font-size: 14px; padding: var(--s1);
  transition: border-color var(--t-fast) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.form-actions { display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap; }
.form-note { color: var(--muted); }

.contact-list { margin: 0; }
.contact-list > div + div { margin-top: var(--s2); padding-top: var(--s2); border-top: var(--hair) solid var(--line-soft); }
.contact-list dt { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.contact-list dd { margin: 0; font-size: 14px; line-height: 21px; }
.contact-list a { color: var(--fg); transition: color var(--t-fast) var(--ease); }
.contact-list a:hover { color: var(--accent); }

.footer {
  position: relative; isolation: isolate; overflow: hidden;
  border-top: var(--hair) solid var(--line-soft);
  padding: var(--s6) 0 var(--s4);
  background: #000;
}

.bloom {
  position: absolute; z-index: -1; pointer-events: none;
  left: 50%; bottom: -46%;
  width: 150%; height: 92%;
  transform: translateX(-50%);
  background:
    radial-gradient(closest-side, rgba(59, 130, 246, .85), rgba(59, 130, 246, .30) 55%, transparent 78%);
  filter: blur(46px);
}

.footer::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: 0; right: 0; bottom: 0; height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .55) 45%, transparent);
}

.footer-top {
  display: grid; grid-template-columns: minmax(200px, 1fr) 2.4fr;
  gap: var(--s5) var(--s4); align-items: start;
}
.foot-name { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.foot-social { display: flex; gap: var(--s1); list-style: none; margin: var(--s2) 0 0; padding: 0; }
.foot-social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border: var(--hair) solid var(--line); border-radius: var(--r-pill); color: var(--muted);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.foot-social a:hover { color: var(--fg); border-color: var(--accent); }
.foot-social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linejoin: round; }

.foot-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--s4); }
.foot-cols h2 { font-size: 15px; font-weight: 500; color: var(--fg); margin-bottom: var(--s2); }
.foot-cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s1); }
.foot-cols a { color: var(--muted); transition: color var(--t-fast) var(--ease); }
.foot-cols a:hover { color: var(--fg); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--s1) var(--s3);
  align-items: center; justify-content: space-between;
  margin-top: var(--s5); padding-top: var(--s2);
  border-top: var(--hair) solid var(--line-soft);
  color: var(--fg);
}
.foot-meta { color: rgba(255, 255, 255, .78); }

.foot-wordmark {
  position: absolute; z-index: -1; pointer-events: none;
  left: 50%; bottom: clamp(24px, 4vw, 72px);
  transform: translateX(-50%);
  font-size: clamp(82px, 18vw, 260px);
  font-weight: 700; letter-spacing: -0.05em; line-height: 1;
  white-space: nowrap; user-select: none;
  background-image: radial-gradient(ellipse 100% 100% at 50% 30%,
    rgba(255,255,255,.88) 0%, rgba(255,255,255,.62) 24%,
    rgba(255,255,255,.34) 50%, rgba(255,255,255,.16) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 38%, rgba(0,0,0,.55) 76%, rgba(0,0,0,.30) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 38%, rgba(0,0,0,.55) 76%, rgba(0,0,0,.30) 100%);

  opacity: .12;
  transition: opacity var(--t-slow) var(--ease);
}
.footer:hover .foot-wordmark { opacity: .92; }

.vp video { cursor: pointer; }
.vp:fullscreen video, .vp:-webkit-full-screen video { object-fit: contain; }

.vp-center {
  position: absolute; inset: 0; z-index: 10; display: grid; place-items: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.vp.paused .vp-center { opacity: 1; pointer-events: auto; }
.vp-center span {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: grid; place-items: center; color: rgba(255,255,255,.9);
}
.vp-center svg { width: 13px; height: 13px; }

.vp-bar {
  position: absolute; left: 3%; width: 94%; bottom: 6px; z-index: 20;
  background: rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  padding: 4px 6px; display: flex; flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.vp.show .vp-bar { opacity: 1; transform: none; pointer-events: auto; }

.vp-progress { position: relative; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; cursor: pointer; transition: height .12s; }
.vp-progress:hover, .vp.scrubbing .vp-progress { height: 4px; }
.vp-played { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: rgba(255,255,255,.72); border-radius: 2px; }
.vp-thumb {
  position: absolute; top: 50%; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; transform: translate(-50%, -50%); box-shadow: 0 1px 3px rgba(0,0,0,.3);
  opacity: 0; transition: opacity .12s;
}
.vp-progress:hover .vp-thumb, .vp.scrubbing .vp-thumb { opacity: 1; }

.vp-row { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.vp-left, .vp-right { display: flex; align-items: center; gap: 3px; }
.vp-btn { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 5px; color: rgba(255,255,255,.6); transition: background .12s, color .12s; }
.vp-btn:hover { color: #fff; background: rgba(255,255,255,.14); }
.vp-btn svg { width: 10px; height: 10px; }
.vp-play { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }

.vp-vol { display: flex; align-items: center; gap: 3px; }
.vp-volbar { width: 32px; height: 2px; background: rgba(255,255,255,.14); border-radius: 2px; cursor: pointer; position: relative; }
.vp-volfill { position: absolute; left: 0; top: 0; height: 100%; width: 100%; background: rgba(255,255,255,.5); border-radius: 2px; }

.vp-time { font-size: 8px; color: rgba(255,255,255,.5); font-variant-numeric: tabular-nums; white-space: nowrap; margin-left: 1px; }

.vp-speeds { display: flex; background: rgba(255,255,255,.06); border-radius: 6px; padding: 1px; }
.vp-speed { font-size: 8px; font-weight: 500; padding: 2px 4px; border-radius: 4px; color: rgba(255,255,255,.35); font-variant-numeric: tabular-nums; transition: color .15s, background .15s; }
.vp-speed.on { color: #fff; background: rgba(255,255,255,.14); }

.vp.compact .vp-volbar { display: none; }
.vp.tiny .vp-speeds { display: none; }

@media (max-width: 1000px) {
  :root { --sec-y: 96px; }
  .split { grid-template-columns: 1fr; gap: var(--s2); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8, 9, 13, .97);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: var(--hair) solid var(--line-soft);
    max-height: 0; overflow: hidden;
    transition: max-height var(--t-slow) var(--ease);
  }
  .nav-links.open { max-height: 70vh; }
  .nav-links li { border-top: var(--hair) solid var(--line-soft); }
  .nav-links a { padding: 16px var(--pad); }
  .nav-links a::after { display: none; }

  .spec-list div { grid-template-columns: 1fr; gap: 4px; }
  .people:not(.people-grid) .person { flex-direction: column; align-items: flex-start; }
  .people:not(.people-grid) .portrait { width: 132px; height: 132px; }
  .shot img { height: 200px; }
  .footer-top { grid-template-columns: 1fr; gap: var(--s4); }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }

  .foot-cols a { display: inline-block; padding: 7px 0; }
  .foot-social a { width: 42px; height: 42px; }
}

@media (max-height: 780px), (max-width: 640px) {
  .scroll-cue { display: none; }
}

@media (max-width: 520px) {
  :root { --sec-y: 80px; }

  .hero-actions { gap: 10px; margin-top: 12px; }
  .hero-actions .btn,
  .hero-actions .pill-badge { width: 100%; justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .glass { padding: var(--s2); }
}

.post-page #shader { position: fixed; z-index: -3; }
.article { position: relative; z-index: 0; max-width: 760px; margin: 0 auto; padding: var(--s6) var(--pad); }
.back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px; margin-bottom: var(--s4);
  transition: color var(--t-fast) var(--ease);
}
.back:hover { color: var(--fg); }
.article-meta {
  color: var(--dim); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s1);
}
.article h1 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 500;
  letter-spacing: -.025em; line-height: 1.05; margin-bottom: var(--s2);
}
.article-cover {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border: var(--hair) solid var(--line); border-radius: var(--r-glass);
  margin: var(--s2) 0 var(--s4);
}
.article-body { color: var(--muted); font-size: 16px; line-height: 1.7; }
.article-body h2 {
  color: var(--fg); font-size: 22px; font-weight: 500;
  letter-spacing: -.01em; margin: var(--s4) 0 var(--s1);
}
.article-body p { margin: 0 0 var(--s2); }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body img {
  width: 100%; border: var(--hair) solid var(--line);
  border-radius: var(--r-glass); margin: var(--s2) 0;
}
.article-body ul, .article-body ol { margin: 0 0 var(--s2) 1.2em; padding: 0; }
.article-body li { margin-bottom: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .stage { display: none; }
  .logo-static {
    display: block; position: absolute; z-index: -1;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: min(52vw, 420px); opacity: .5;
  }
}
