/* palette: bg=#0A0C12 fg=#EAECF3 accent=#FF2E9A */
/* fonts: display="Orbitron" body="Inter" mono="Space Mono" */

:root {
  --bg: #0A0C12;          /* dominant graphite-chrome ground */
  --bg-alt: #10131C;      /* alternating section background */
  --bg-elev: #161A25;     /* elevated card surface */
  --fg: #EAECF3;          /* primary silver-white text */
  --fg-soft: #C6CAD6;     /* slightly softer fg */
  --muted: #868C9E;       /* secondary text */
  --accent: #FF2E9A;      /* Y2K magenta accent */
  --accent-deep: #C71778; /* darker magenta for hover */
  --chrome-1: #F4F6FB;
  --chrome-2: #AEB4C6;
  --chrome-3: #6C7286;
  --border: rgba(174, 180, 198, 0.16);
  --border-strong: rgba(174, 180, 198, 0.32);
  --serif: 'Orbitron', ui-sans-serif, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --chrome-grad: linear-gradient(178deg, #FFFFFF 0%, #DDE1EC 30%, #9096AC 52%, #6C7286 60%, #C6CBDA 78%, #FFFFFF 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- background field ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(255, 46, 154, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(110, 130, 255, 0.08), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(174,180,198,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,180,198,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { position: relative; }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- typography helpers ---------- */
.chrome-text {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h1, h2, h3 { font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; margin: 0; }
h2.display { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
p { margin: 0 0 1.2em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.72; color: var(--fg-soft); }

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  background: rgba(10, 12, 18, 0.55);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(10, 12, 18, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,0.8);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; gap: 38px; align-items: center; }
  .nav a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-soft);
    position: relative;
    padding: 6px 0;
    transition: color .3s var(--ease);
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width .35s var(--ease);
  }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
  .nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
}
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: flex-end;
  padding: 0 4px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--fg); transition: transform .35s var(--ease), opacity .3s var(--ease); }
.menu-toggle span:nth-child(2) { width: 18px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 10, 15, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: #0A0C12;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255,46,154,0.4), 0 12px 34px -12px rgba(255,46,154,0.7);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 18px 44px -12px rgba(255,46,154,0.75); }
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: #fff; }
.link-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--accent); gap: 12px; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
  animation: heroZoom 9s var(--ease) forwards;
  filter: saturate(1.15) contrast(1.05);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,18,0.55) 0%, rgba(10,12,18,0.35) 40%, rgba(10,12,18,0.92) 100%),
    radial-gradient(900px 520px at 70% 30%, rgba(255,46,154,0.16), transparent 65%);
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__inner { padding: 140px 0 120px; max-width: 960px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); text-shadow: 0 0 44px rgba(255,46,154,0.5); }
.hero__sub { max-width: 560px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--fg-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll::before { content:""; width:1px; height:34px; background: linear-gradient(var(--accent), transparent); }

/* ================= MARQUEE ================= */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-alt);
}
.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.marquee__track span::after { content: "\25C8"; color: var(--accent); font-size: 0.8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================= SECTION HEADER ================= */
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 84px); }
.section-head h2 { font-family: var(--serif); font-weight: 400; }
.section-head p { margin-top: 22px; }
.section-head--split { display: grid; gap: 28px; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.1fr 0.9fr; align-items: end; max-width: none; }
  .section-head--split p { margin: 0; }
}

/* ================= SERVICES GRID ================= */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 30px 38px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.4);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 22px 50px -18px rgba(0,0,0,0.7); }
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 26px;
  display: block;
}
.card h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; letter-spacing: 0; margin-bottom: 14px; line-height: 1.15; }
.card p { font-size: 0.98rem; color: var(--muted); margin: 0; }
.card__list { list-style: none; margin: 22px 0 0; padding: 0; }
.card__list li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--fg-soft);
  padding: 9px 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.card__list li::before { content: "\25B8"; color: var(--accent); }

/* ================= WORK / CASES ================= */
.work-grid { display: grid; gap: 22px; }
@media (min-width: 800px) { .work-grid { grid-template-columns: 1fr 1fr; } }
.work-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.work-card__img { aspect-ratio: 16 / 11; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(1.1); }
.work-card:hover .work-card__img img { transform: scale(1.06); }
.work-card__body { padding: 26px 28px 30px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.work-card__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 12px 0 12px; letter-spacing: 0; }
.work-card__body p { color: var(--muted); font-size: 0.98rem; margin: 0 0 20px; }
.work-card__metrics { display: flex; gap: 30px; border-top: 1px solid var(--border); padding-top: 20px; }
.work-card__metrics div span { display: block; }
.work-card__metrics .m-num { font-family: var(--serif); font-size: 1.5rem; color: var(--fg); }
.work-card__metrics .m-lab { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ================= MANIFESTO ================= */
.manifesto { background: var(--fg); color: var(--bg); text-align: center; }
.manifesto .container { max-width: 980px; }
.manifesto .eyebrow { color: var(--accent-deep); }
.manifesto .eyebrow::before { background: var(--accent-deep); }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}
.manifesto__quote em { font-style: normal; color: var(--accent-deep); }
.manifesto__mark { font-family: var(--serif); font-size: 5rem; color: var(--accent); line-height: 0.4; display: block; margin-bottom: 10px; }
.manifesto__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(10,12,18,0.55); margin-top: 34px; }

/* ================= PROCESS ================= */
.process { display: grid; gap: 0; }
.process__step {
  display: grid;
  gap: 14px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
@media (min-width: 800px) { .process__step { grid-template-columns: 120px 1fr 1.3fr; gap: 40px; align-items: baseline; } }
.process__step:last-child { border-bottom: 1px solid var(--border); }
.process__num { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); }
.process__step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; letter-spacing: -0.01em; }
.process__step p { color: var(--muted); margin: 0; }

/* ================= STATS ================= */
.stats { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat__lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ================= PRINCIPLES / TEAM (text-only) ================= */
.principles { display: grid; gap: 20px; }
@media (min-width: 800px) { .principles { grid-template-columns: 1fr 1fr; } }
.principle {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 30px;
  background: var(--bg-elev);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.avatar {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: #0A0C12;
  letter-spacing: 0.04em;
}
.principle h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin-bottom: 4px; letter-spacing: 0; }
.principle .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.principle p { color: var(--muted); font-size: 0.96rem; margin: 12px 0 0; }

/* ================= FAQ ================= */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq__q .ic { flex: none; width: 26px; height: 26px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content:""; position:absolute; top:50%; left:50%; width:14px; height:1.5px; background: var(--accent); transform: translate(-50%,-50%); transition: transform .35s var(--ease); }
.faq__q .ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[data-open="true"] .ic::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { color: var(--muted); padding: 0 40px 28px 0; margin: 0; }
.faq__item[data-open="true"] .faq__a { max-height: 320px; }

/* ================= CTA ================= */
.cta {
  text-align: center;
  background:
    radial-gradient(700px 420px at 50% 0%, rgba(255,46,154,0.16), transparent 65%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
}
.cta h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.03em; max-width: 900px; margin: 0 auto 26px; line-height: 1.02; }
.cta p { max-width: 560px; margin: 0 auto 38px; color: var(--fg-soft); }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================= FORM ================= */
.form-wrap { display: grid; gap: 40px; }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 0.98rem;
  color: var(--fg);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,46,154,0.14); }
.field textarea { min-height: 130px; resize: vertical; }
.form .btn { justify-content: center; margin-top: 8px; }
.form-aside__item { padding: 22px 0; border-top: 1px solid var(--border); }
.form-aside__item:first-child { border-top: 0; }
.form-aside__item .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.form-aside__item .val { font-size: 1.05rem; margin-top: 6px; color: var(--fg); }

/* ================= FOOTER ================= */
.footer { border-top: 1px solid var(--border); padding: clamp(60px, 8vw, 100px) 0 40px; background: var(--bg); }
.footer__grid { display: grid; gap: 44px; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 300px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; font-weight: 400; }
.footer__col a, .footer__col p { display: block; color: var(--fg-soft); font-size: 0.95rem; padding: 6px 0; margin: 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--fg-soft);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

/* ================= PAGE HERO (inner pages) ================= */
.page-hero { padding: clamp(130px, 16vw, 200px) 0 clamp(60px, 8vw, 96px); position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 400px at 80% 0%, rgba(255,46,154,0.12), transparent 60%);
}
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -0.03em; line-height: 0.98; max-width: 12ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { max-width: 620px; margin-top: 28px; }
.crumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.crumb a:hover { color: var(--accent); }

/* ================= PROSE (legal) ================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 48px 0 16px; letter-spacing: -0.01em; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1rem; line-height: 1.8; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose .updated { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ================= THANKS ================= */
.thanks { min-height: 82vh; display: flex; align-items: center; text-align: center; }
.thanks .mark { width: 88px; height: 88px; margin: 0 auto 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--accent); box-shadow: 0 0 40px -8px rgba(255,46,154,0.6); }
.thanks .mark svg { width: 34px; height: 34px; color: var(--accent); }
.thanks h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.03em; margin-bottom: 22px; }
.thanks p { max-width: 520px; margin: 0 auto 34px; color: var(--fg-soft); }

/* ================= COOKIE POPUP ================= */
.cookie-popup { position:fixed; inset:0; z-index:9999; display:flex; align-items:flex-end; justify-content:flex-start; padding:24px; background:rgba(0,0,0,0.4); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); opacity:0; pointer-events:none; transition:opacity .3s; }
.cookie-popup[data-open="true"] { opacity:1; pointer-events:all; }
.cookie-popup__card { background:var(--bg-elev); border:1px solid var(--border-strong); padding:32px 36px; max-width:480px; border-radius:14px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.cookie-popup__label { font-family:var(--mono); font-size:10px; letter-spacing:0.24em; text-transform:uppercase; color:var(--accent); margin-bottom:14px; }
.cookie-popup__card h3 { font-family:var(--serif); font-weight:400; font-size:1.3rem; margin:0 0 12px; letter-spacing:0; }
.cookie-popup__card p { font-size:0.92rem; color:var(--muted); margin:0; line-height:1.65; }
.cookie-popup__actions { display:flex; gap:12px; margin-top:22px; }
.cookie-popup__actions button { padding:11px 24px; border:1px solid var(--border-strong); border-radius:999px; cursor:pointer; font-family:var(--mono); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--fg); transition: all .3s var(--ease); }
.cookie-popup__actions button:hover { border-color:var(--accent); }
.cookie-popup__actions button:last-child { background:var(--accent); color:#0A0C12; border-color:var(--accent); font-weight:700; }
.cookie-popup__actions button:last-child:hover { background:var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
