/* palette: bg=#FFFFFF fg=#0B0B0C accent=#1A22E8 */
/* fonts: display="Archivo" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F1F1EE;
  --ink: #1A22E8;          /* electric cobalt — the reference hero blue */
  --ink-deep: #0E14B8;
  --fg: #0B0B0C;
  --fg-soft: #232326;
  --muted: #6C6C72;
  --accent: #1A22E8;
  --accent-deep: #0E14B8;
  --hot: #FF3A1E;          /* warm gradient note from the display letters */
  --border: rgba(11, 11, 12, 0.14);
  --border-soft: rgba(11, 11, 12, 0.08);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grad: linear-gradient(96deg, #FF7A18 0%, #FF3A1E 20%, #E5238C 42%, #7A2BF5 62%, #17C0E8 82%, #34D67B 100%);
  --container: 1280px;
}

*, *::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; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 800; }
p { margin: 0; }

/* ── layout primitives ─────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: clamp(72px, 12vw, 160px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--light { color: rgba(255,255,255,0.66); }
.eyebrow--light::before { background: #fff; }

/* ── header ────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(11,11,12,0.06);
  border-bottom: 1px solid var(--border-soft);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand__mark {
  display: inline-flex;
  width: 22px; height: 22px;
  background: var(--accent);
  align-self: center;
}
.brand__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav { display: none; gap: 34px; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--fg);
  padding: 9px 20px !important;
  color: var(--fg) !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--fg); color: var(--bg) !important; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0 8px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 68px 0 0;
  z-index: 99;
  background: var(--accent);
  color: #fff;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.mobile-menu a span { font-family: var(--mono); font-size: 12px; font-weight: 500; opacity: 0.7; }

/* ── buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--onblue { background: #fff; color: var(--accent); border-color: #fff; }
.btn--onblue:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn .arw { transition: transform 0.25s var(--ease); }
.btn:hover .arw { transform: translate(3px, -3px); }

.txtlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.txtlink:hover { border-color: var(--accent); gap: 12px; }

/* ── hero ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 96px 0 0;
}
.hero__rail {
  display: none;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 92px;
  border-right: 1px solid rgba(255,255,255,0.2);
  flex-direction: column;
  padding: 96px 0 32px 20px;
  gap: 9px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.62);
  z-index: 3;
}
@media (min-width: 1024px) { .hero__rail { display: flex; } }
.hero__rail a { transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.hero__rail a:hover { color: #fff; transform: translateX(3px); }
.hero__rail .home { color: #fff; font-family: var(--serif); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px; }

.hero__inner { position: relative; z-index: 2; width: 100%; }
@media (min-width: 1024px) { .hero__inner { padding-left: 92px; } }

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: clamp(20px, 4vw, 40px);
}
.hero__display {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.03em;
  font-size: clamp(3.5rem, 15vw, 12rem);
  text-transform: uppercase;
  margin: 0;
}
.hero__display .line { display: block; }
.hero__display .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin-top: clamp(28px, 5vw, 52px);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
  line-height: 1.08;
  max-width: 22ch;
}
.hero__meta {
  margin-top: auto;
  padding: clamp(36px, 6vw, 60px) 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
@media (min-width: 700px) { .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.hero__meta strong { display: block; color: #fff; font-weight: 500; margin-top: 4px; }
.hero__zoom {
  position: absolute;
  right: -6%; top: 8%;
  width: 46vw; max-width: 620px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: heroZoom 8s var(--ease) forwards;
  z-index: 1;
  pointer-events: none;
}
.hero__zoom img { width: 100%; height: 100%; object-fit: cover; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ── generic section head ──────────────────────── */
.head { max-width: 900px; }
.head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.head h2 em { font-style: normal; color: var(--accent); }
.head p.lead {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 60ch;
}

/* ── numbered chapter / service grid ───────────── */
.chapters { border-top: 1px solid var(--border); margin-top: clamp(40px, 6vw, 72px); }
.chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 40px;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
@media (min-width: 860px) {
  .chapter { grid-template-columns: 92px 1fr 1.1fr auto; align-items: start; }
}
.chapter:hover { background: var(--bg-alt); }
.chapter__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); padding-top: 6px; }
.chapter__title { font-family: var(--serif); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.15rem); letter-spacing: -0.02em; line-height: 1.05; }
.chapter__desc { color: var(--fg-soft); font-size: 1rem; line-height: 1.7; }
.chapter__tags { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.chapter__tags span { border: 1px solid var(--border); padding: 5px 10px; }

/* ── cards grid ────────────────────────────────── */
.grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 640px) { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); border-color: var(--fg); }
.card__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); }
.card h3 { font-size: 1.35rem; letter-spacing: -0.01em; line-height: 1.12; }
.card p { color: var(--fg-soft); font-size: 0.98rem; line-height: 1.68; }

/* project / work covers */
.work { display: grid; grid-template-columns: 1fr; gap: 4px; margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 760px) { .work { grid-template-columns: repeat(2, 1fr); gap: 4px; } }
.work__item { position: relative; overflow: hidden; background: #000; }
.work__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s var(--ease), opacity 0.5s var(--ease); opacity: 0.92; }
.work__item:hover img { transform: scale(1.05); opacity: 0.7; }
.work__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 24px 26px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.work__cap h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
.work__cap span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; white-space: nowrap; }

/* ── manifesto / pull-quote (inverted blue band) ─ */
.manifesto { background: var(--accent); color: #fff; }
.manifesto__mark { font-family: var(--serif); font-weight: 800; font-size: clamp(5rem, 14vw, 11rem); line-height: 0.6; color: rgba(255,255,255,0.5); height: 0.5em; overflow: visible; display: block; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 20ch;
  margin: 20px 0 32px;
}
.manifesto__quote em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.manifesto__by { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); }

/* dark ink band (near-black) */
.band-dark { background: var(--fg); color: #fff; }
.band-dark .head h2 em { color: var(--hot); }

/* ── stats ─────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 34px 26px; }
.band-dark .stats { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.14); }
.band-dark .stat { background: var(--fg); }
.stat__num { font-family: var(--serif); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); letter-spacing: -0.03em; line-height: 1; }
.band-dark .stat__num { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat__lbl { margin-top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.band-dark .stat__lbl { color: rgba(255,255,255,0.6); }

/* ── team / principles (text-only, no faces) ───── */
.people { display: grid; grid-template-columns: 1fr; gap: 4px; margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--border); }
@media (min-width: 700px) { .people { grid-template-columns: repeat(2, 1fr); gap: 4px; } }
@media (min-width: 1000px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; transition: background 0.3s var(--ease); }
.person:hover { background: var(--bg-alt); }
.avatar {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 20px; color: #fff;
  letter-spacing: -0.02em;
}
.person h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.person__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-top: -8px; }
.person p { color: var(--fg-soft); font-size: 0.95rem; line-height: 1.66; }

/* ── testimonials ──────────────────────────────── */
.quotes { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { border-top: 2px solid var(--accent); padding: 26px 4px 0; }
.quote blockquote { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 1.16rem; line-height: 1.42; letter-spacing: -0.01em; }
.quote__meta { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quote__meta .avatar { width: 40px; height: 40px; font-size: 15px; }
.quote__meta b { display: block; font-size: 0.92rem; }
.quote__meta small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.placeholder-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 28px; }

/* ── FAQ ───────────────────────────────────────── */
.faq { margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 44px 26px 0;
  position: relative;
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.42rem);
  letter-spacing: -0.01em; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 24px; font-family: var(--sans); font-size: 26px; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 44px 30px 0; color: var(--fg-soft); line-height: 1.72; max-width: 74ch; }

/* ── CTA ───────────────────────────────────────── */
.cta { background: var(--accent); color: #fff; text-align: left; }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5.5rem); letter-spacing: -0.03em; line-height: 0.98; }
.cta h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.cta p { margin-top: 24px; max-width: 52ch; color: rgba(255,255,255,0.82); font-size: 1.12rem; line-height: 1.68; }
.cta__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

/* ── contact / form ────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 72px); margin-top: clamp(40px, 6vw, 64px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-block { display: flex; flex-direction: column; gap: 28px; }
.info-item { border-top: 1px solid var(--border); padding-top: 18px; }
.info-item .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.info-item .v { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; margin-top: 6px; line-height: 1.4; }

form.lead-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--fg);
  border-radius: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-consent { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.form-consent a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ── footer ────────────────────────────────────── */
.footer { background: var(--fg); color: #fff; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand .brand { color: #fff; font-size: 26px; }
.footer__brand p { margin-top: 22px; color: rgba(255,255,255,0.6); max-width: 40ch; line-height: 1.7; font-size: 0.98rem; }
.footer__col h4 { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: rgba(255,255,255,0.82); font-size: 0.98rem; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.footer__col a:hover { color: #fff; padding-left: 6px; }
.footer__bottom {
  margin-top: clamp(48px, 8vw, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.5);
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a:hover { color: #fff; }

/* ── legal pages ───────────────────────────────── */
.legal { padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 9vw, 120px); }
.legal__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.legal__head h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.02em; line-height: 1; }
.legal__head p { margin-top: 18px; color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; }
.legal__body { max-width: 760px; }
.legal__body h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.01em; margin: 48px 0 16px; }
.legal__body h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal__body p, .legal__body li { color: var(--fg-soft); line-height: 1.75; font-size: 1rem; }
.legal__body ul { padding-left: 20px; margin: 12px 0; }
.legal__body li { margin-bottom: 8px; }
.legal__body a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ── thanks page ───────────────────────────────── */
.thanks { min-height: 78vh; display: flex; align-items: center; background: var(--accent); color: #fff; }
.thanks h1 { font-size: clamp(2.8rem, 9vw, 6.5rem); letter-spacing: -0.03em; line-height: 0.94; }
.thanks h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.thanks p { margin-top: 26px; max-width: 46ch; color: rgba(255,255,255,0.85); font-size: 1.14rem; line-height: 1.7; }

/* ── reveal ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[style*="--i:"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__zoom { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── 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); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border: 1px solid var(--fg); box-shadow: 0 20px 60px -12px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.92rem; line-height: 1.62; color: var(--fg-soft); }
.cookie-popup__card p a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--fg); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* small utilities */
.mono-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.on-blue .mono-tag { color: rgba(255,255,255,0.7); }
.two-col-text { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
@media (min-width: 760px) { .two-col-text { grid-template-columns: 1fr 1fr; gap: 48px; } }
.two-col-text p { color: var(--fg-soft); line-height: 1.78; font-size: 1.04rem; }
