/* palette: bg=#0A1626 fg=#F4F8FC accent=#2BA6E0 */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */
:root {
  --bg: #0A1626;
  --bg-alt: #0F2036;
  --bg-band: #102A44;
  --fg: #F4F8FC;
  --fg-soft: #C6D4E4;
  --muted: #8494A9;
  --accent: #2BA6E0;
  --accent-deep: #1B7FB5;
  --accent-glow: rgba(43, 166, 224, 0.16);
  --border: rgba(196, 212, 228, 0.14);
  --border-soft: rgba(196, 212, 228, 0.08);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::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;
  -moz-osx-font-smoothing: grayscale;
  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 { font-family: var(--serif); font-weight: 500; margin: 0; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { padding: clamp(80px, 12vw, 160px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  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); opacity: 0.7; }
.lead { color: var(--fg-soft); font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.75; max-width: 60ch; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.stagger.is-visible > * { opacity: 1; transform: none; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 38, 0.72);
  -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), background 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 8px 40px -20px rgba(0,0,0,0.7);
  background: rgba(10, 22, 38, 0.88);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav a { font-size: 14px; color: var(--fg-soft); position: relative; transition: color 0.25s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  padding: 13px 26px; border-radius: 9999px;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), opacity 0.25s var(--ease);
}
.btn--primary { background: var(--accent); color: #041018; box-shadow: 0 10px 30px -12px var(--accent-glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--accent-glow); background: var(--accent-deep); color: #fff; }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 15px; }

.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--accent); font-family: var(--mono); letter-spacing: 0.02em; transition: gap 0.25s var(--ease); }
.arrow-link:hover { gap: 14px; }

/* ---------- mobile menu ---------- */
.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; 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: 72px 0 0; z-index: 99;
  background: rgba(8, 18, 32, 0.98);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 40px 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); 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-size: 1.7rem; padding: 14px 0; border-bottom: 1px solid var(--border-soft); color: var(--fg-soft); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(43,166,224,0.22), transparent 55%),
    linear-gradient(180deg, rgba(10,22,38,0.55) 0%, rgba(10,22,38,0.82) 55%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 940px; }
.hero h1 {
  font-size: clamp(3.1rem, 9vw, 6.6rem);
  line-height: 1.02; letter-spacing: -0.03em; font-weight: 400;
  margin: 0 0 28px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { color: var(--fg-soft); font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 58ch; line-height: 1.7; margin: 0 0 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__meta { margin-top: 64px; display: flex; flex-wrap: wrap; gap: 40px; border-top: 1px solid var(--border-soft); padding-top: 32px; }
.hero__meta div span { display: block; font-family: var(--serif); font-size: 2rem; letter-spacing: -0.02em; }
.hero__meta div small { color: var(--muted); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--mono); }

/* ---------- section head ---------- */
.sec-head { max-width: 760px; margin-bottom: 64px; }
.sec-head h2 { font-size: clamp(2.3rem, 6vw, 4rem); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 24px; font-weight: 400; }
.sec-head h2 em { font-style: normal; color: var(--accent); }

/* ---------- trust band ---------- */
.trust { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 48px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__grid div span { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; color: var(--fg); }
.trust__grid div small { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; }

/* ---------- services grid ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg-alt); border: 1px solid var(--border-soft);
  border-radius: 14px; padding: 34px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(43,166,224,0.4); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.6); }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.card__icon { width: 44px; height: 44px; margin: 4px 0 20px; color: var(--accent); }
.card h3 { font-size: 1.32rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.card p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.7; margin: 0 0 18px; }
.card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.card ul li { color: var(--muted); font-size: 14px; padding-left: 20px; position: relative; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border: 1px solid var(--accent); transform: rotate(45deg); }

/* ---------- manifesto (accent band) ---------- */
.manifesto { background: var(--bg-band); position: relative; overflow: hidden; }
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 90% 0%, rgba(43,166,224,0.18), transparent 60%);
  pointer-events: none;
}
.manifesto__inner { position: relative; max-width: 940px; margin: 0 auto; text-align: center; }
.manifesto .quote-mark { font-family: var(--serif); font-size: 6rem; line-height: 0.6; color: var(--accent); opacity: 0.35; display: block; margin-bottom: 10px; }
.manifesto p { font-family: var(--serif); font-size: clamp(1.7rem, 4.6vw, 3.1rem); line-height: 1.22; letter-spacing: -0.015em; font-weight: 400; margin: 0; }
.manifesto p em { font-style: normal; color: var(--accent); }
.manifesto cite { display: block; margin-top: 32px; font-style: normal; font-family: var(--mono); font-size: 13px; letter-spacing: 0.05em; color: var(--muted); }

/* ---------- timeline / progression ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline__row { position: relative; display: grid; grid-template-columns: 1fr; gap: 8px; padding: 0 0 48px 44px; }
.timeline__row::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: -8px; width: 1px; background: var(--border); }
.timeline__row:last-child::before { display: none; }
.timeline__row::after {
  content: ""; position: absolute; left: 8px; top: 6px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px rgba(43,166,224,0.1);
}
.timeline__step { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.timeline__row h3 { font-size: 1.5rem; letter-spacing: -0.01em; margin: 6px 0 10px; }
.timeline__row p { color: var(--fg-soft); font-size: 16px; line-height: 1.72; margin: 0; max-width: 60ch; }
@media (min-width: 768px) {
  .timeline__row { grid-template-columns: 160px 1fr; gap: 32px; padding-left: 56px; }
  .timeline__row::before { left: 19px; }
  .timeline__row::after { left: 12px; }
  .timeline__step { padding-top: 8px; }
}

/* ---------- split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.split--rev .split__media { order: -1; }
@media (min-width: 900px) { .split--rev .split__media { order: 0; } }
.split__media { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-soft); }
.split__media img { aspect-ratio: 4/3.2; object-fit: cover; width: 100%; }
.split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,22,38,0.5)); }
.split h2 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 22px; font-weight: 400; }
.split p { color: var(--fg-soft); font-size: 17px; line-height: 1.75; margin: 0 0 18px; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.feature-list li { position: relative; padding-left: 30px; color: var(--fg-soft); font-size: 15.5px; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  border-radius: 4px; background: var(--accent-glow); border: 1px solid rgba(43,166,224,0.4);
}
.feature-list li strong { color: var(--fg); font-weight: 600; }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border-soft); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; padding: 26px 0; font-family: var(--serif); font-size: clamp(1.1rem, 2.6vw, 1.4rem); color: var(--fg); }
.faq__q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--accent); transition: transform 0.3s var(--ease); }
.faq__q .plus::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq__q .plus::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__item[data-open="true"] .plus::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { color: var(--fg-soft); font-size: 16px; line-height: 1.75; margin: 0 0 26px; max-width: 68ch; }

/* ---------- cta band ---------- */
.cta { background: var(--bg-alt); position: relative; overflow: hidden; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 120%, rgba(43,166,224,0.2), transparent 60%); }
.cta__inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -0.02em; line-height: 1.06; margin-bottom: 22px; font-weight: 400; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { color: var(--fg-soft); font-size: 18px; margin: 0 auto 36px; max-width: 54ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 72px; } }
.contact-info h3 { font-size: 1.3rem; margin: 32px 0 8px; }
.contact-info p, .contact-info a { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }
.contact-info a:hover { color: var(--accent); }
.contact-info .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 16px; color: var(--fg); font-family: var(--sans); font-size: 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(132,148,169,0.7); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__note a { color: var(--accent); }

/* ---------- values / principles ---------- */
.principles { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(2, 1fr); } }
.principle { background: var(--bg); padding: 40px 34px; }
.principle span { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.principle h3 { font-size: 1.4rem; margin: 14px 0 12px; letter-spacing: -0.01em; }
.principle p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.72; margin: 0; }

/* ---------- team (monograms) ---------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member { background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: 14px; padding: 32px 30px; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.member:hover { border-color: rgba(43,166,224,0.35); transform: translateY(-4px); }
.avatar--mono { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: #041018; margin-bottom: 22px; }
.member h3 { font-size: 1.2rem; margin-bottom: 4px; }
.member .role { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 14px; }
.member p { color: var(--fg-soft); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ---------- page hero (inner) ---------- */
.page-hero { padding: 150px 0 90px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border-soft); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 85% -10%, rgba(43,166,224,0.16), transparent 55%); pointer-events: none; }
.page-hero__inner { position: relative; max-width: 820px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.03; letter-spacing: -0.03em; font-weight: 400; margin-bottom: 24px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--fg-soft); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 58ch; }

/* ---------- footer ---------- */
.footer { background: #071120; border-top: 1px solid var(--border-soft); padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; } }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 34ch; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 400; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer__col a { color: var(--fg-soft); font-size: 15px; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--border-soft); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; }
.footer__bottom p { color: var(--muted); font-size: 13px; margin: 0; }
.footer__bottom .legal-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__bottom .legal-links a { color: var(--muted); font-size: 13px; }
.footer__bottom .legal-links a:hover { color: var(--accent); }

/* ---------- legal pages ---------- */
.legal { padding: 140px 0 100px; }
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; margin-bottom: 14px; font-weight: 400; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.05em; margin-bottom: 48px; display: block; }
.legal h2 { font-size: 1.5rem; margin: 44px 0 16px; letter-spacing: -0.01em; }
.legal h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.78; }
.legal ul { padding-left: 22px; display: grid; gap: 8px; }
.legal a { color: var(--accent); }

/* ---------- 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.5); -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-alt); border: 1px solid var(--border); padding: 32px 34px; max-width: 460px; border-radius: 16px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--fg-soft); font-size: 14px; line-height: 1.65; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--border); border-radius: 9999px; font-size: 14px; transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #041018; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); color: #fff; }

/* ---------- misc ---------- */
.thanks { min-height: 78vh; display: flex; align-items: center; text-align: center; }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks .check { width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; color: var(--accent); }
.thanks h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.02em; margin-bottom: 20px; font-weight: 400; }
.thanks p { color: var(--fg-soft); font-size: 18px; margin: 0 auto 36px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}
