/* palette: bg=#EDEEEA fg=#101512 accent=#C8F65A */
/* fonts: display="Space Grotesk" body="Manrope" mono="Space Mono" */

:root {
  --bg: #EDEEEA;
  --bg-alt: #0C130E;
  --bg-panel: #F5F6F2;
  --fg: #101512;
  --fg-soft: #3B433D;
  --muted: #737A72;
  --accent: #C8F65A;
  --accent-deep: #A5D63C;
  --accent-ink: #14210A;
  --line: rgba(16, 21, 18, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 28px;
  --radius-lg: 40px;
  --shadow: 0 4px 24px -4px rgba(12, 19, 14, 0.10);
  --shadow-hover: 0 20px 50px -12px rgba(12, 19, 14, 0.20);
}

*, *::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 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- 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(72px, 12vw, 160px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted);
  margin: 0 0 22px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent-deep); display: inline-block;
}
.eyebrow--light { color: rgba(255,255,255,0.6); }
.eyebrow--light::before { background: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 9999px;
  font-weight: 600; font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(12,19,14,0.5); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn--ghost { border: 1px solid var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid var(--line-dark); }
.btn--light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  transition: gap .3s var(--ease);
}
.arrow-link svg { transition: transform .3s var(--ease); }
.arrow-link:hover { gap: 12px; }
.arrow-link:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .4s var(--ease), background .4s ease;
  background: rgba(237, 238, 234, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.header[data-scrolled="true"] { box-shadow: 0 1px 0 var(--line), 0 8px 30px -18px rgba(12,19,14,0.3); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 12px;
  background: var(--fg); color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 15px; font-weight: 700;
}
.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { font-size: 15px; color: var(--fg-soft); font-weight: 500; transition: color .25s ease; position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--accent-deep); border-radius: 2px;
}
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s 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: 74px 0 0; z-index: 99;
  background: var(--bg);
  padding: 30px 24px 40px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 26px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(30px, 6vw, 60px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
}
.hero__ghost {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(4rem, 17vw, 15rem); letter-spacing: -0.04em;
  color: rgba(16,21,18,0.05); white-space: nowrap; pointer-events: none; z-index: 0;
  text-transform: uppercase;
}
.hero__head { position: relative; z-index: 2; text-align: center; max-width: 940px; margin: 0 auto clamp(34px, 5vw, 54px); }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.98; letter-spacing: -0.035em; font-weight: 400;
  margin: 0 0 26px;
}
.hero h1 em { font-style: normal; color: var(--accent-deep); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--fg-soft); max-width: 580px; margin: 0 auto 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero__stage {
  position: relative; z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-hover);
}
.hero__stage img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.72;
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(12,19,14,0.85) 0%, rgba(12,19,14,0.25) 55%, rgba(12,19,14,0.6) 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(20px, 4vw, 44px);
  color: #fff;
}
.hero__badge {
  align-self: flex-start;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  background: var(--accent); color: var(--accent-ink);
  padding: 8px 16px; border-radius: 9999px; font-weight: 700;
}
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 48px); }
.hero__stat { }
.hero__stat b { font-family: var(--mono); font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; color: var(--accent); display: block; letter-spacing: -0.02em; }
.hero__stat span { font-size: 13px; color: rgba(255,255,255,0.72); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: slide 32s linear infinite; }
.marquee__track span { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after { content: "◇"; color: var(--accent-deep); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.03; }
.sec-head p { margin-top: 20px; color: var(--fg-soft); font-size: 1.08rem; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.card__icon {
  width: 54px; height: 54px; border-radius: 18px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; margin: 18px 0 22px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { color: var(--fg-soft); font-size: 1rem; }
.card ul { list-style: none; padding: 0; margin: 20px 0 0; }
.card li { font-size: 0.95rem; color: var(--fg-soft); padding: 8px 0; border-top: 1px solid var(--line); display: flex; gap: 10px; }
.card li::before { content: "→"; color: var(--accent-deep); }

/* ---------- Feature split ---------- */
.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; } .split--rev > :first-child { order: 2; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); background: var(--bg-alt); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 20px; }
.split p { color: var(--fg-soft); margin-bottom: 18px; }
.checklist { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.checklist svg { flex: none; margin-top: 3px; color: var(--accent-deep); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--bg-alt); color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 60px); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,246,90,0.22), transparent 70%);
  top: -140px; right: -120px; filter: blur(20px);
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 20px; position: relative; }
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat b { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 500; display: block; letter-spacing: -0.03em; }
.stat b em { font-style: normal; color: var(--accent); }
.stat span { color: rgba(255,255,255,0.62); font-size: 0.95rem; }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--bg-alt); color: #fff; text-align: center; overflow: hidden; }
.manifesto .container { position: relative; z-index: 2; }
.manifesto__blob {
  position: absolute; width: 640px; height: 640px; border-radius: 46% 54% 60% 40% / 55% 48% 52% 45%;
  background: radial-gradient(circle at 40% 40%, rgba(200,246,90,0.16), transparent 68%);
  filter: blur(30px); z-index: 0;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.manifesto blockquote { margin: 0; max-width: 940px; margin-inline: auto; }
.manifesto__quote { font-size: 5rem; line-height: 0.4; font-family: var(--serif); color: var(--accent); display: block; height: 40px; }
.manifesto p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem); line-height: 1.18; letter-spacing: -0.02em;
  margin: 20px 0 0;
}
.manifesto p em { font-style: normal; color: var(--accent); }
.manifesto cite { display: block; margin-top: 34px; font-style: normal; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: 20px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-panel); }
.step__n { font-family: var(--mono); font-size: 13px; color: var(--accent-deep); font-weight: 700; }
.step h3 { font-size: 1.25rem; margin: 14px 0 10px; }
.step p { font-size: 0.95rem; color: var(--fg-soft); }

/* ---------- Case cards ---------- */
.cases { display: grid; gap: 22px; }
@media (min-width: 800px) { .cases { grid-template-columns: repeat(2, 1fr); } }
.case {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 3/2; background: var(--bg-alt);
}
.case img { width: 100%; height: 100%; object-fit: cover; opacity: 0.66; transition: transform .6s var(--ease), opacity .5s ease; }
.case:hover img { transform: scale(1.05); opacity: 0.55; }
.case__body { position: absolute; inset: 0; padding: clamp(24px, 4vw, 40px); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(180deg, transparent 30%, rgba(12,19,14,0.82)); }
.case__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.case h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 12px 0 8px; }
.case p { color: rgba(255,255,255,0.78); font-size: 0.98rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 20px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; }
.quote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; letter-spacing: -0.01em; }
.quote__foot { margin-top: auto; padding-top: 24px; display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--accent-ink); flex: none; }
.quote__foot b { display: block; font-size: 0.95rem; }
.quote__foot span { font-size: 0.85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 1.5rem; color: var(--accent-deep); transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--fg-soft); padding: 0 0 26px; max-width: 720px; }

/* ---------- CTA ---------- */
.cta-band { background: var(--accent); border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(20,33,10,0.10); filter: blur(4px);
}
.cta-band::before { width: 260px; height: 260px; top: -120px; left: -60px; }
.cta-band::after { width: 200px; height: 200px; bottom: -110px; right: -40px; }
.cta-band .inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); color: var(--accent-ink); line-height: 1.02; }
.cta-band p { color: rgba(20,33,10,0.78); margin: 20px auto 32px; max-width: 520px; }
.cta-band .btn--primary { background: var(--accent-ink); color: var(--accent); }

/* ---------- Contact / Form ---------- */
.contact-grid { display: grid; gap: clamp(36px, 5vw, 60px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 22px; }
.info-list li { display: grid; gap: 4px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.info-list .lbl { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.info-list .val { font-size: 1.1rem; }

.form { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px;
  font: inherit; background: var(--bg); color: var(--fg); transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent-deep); box-shadow: 0 0 0 4px rgba(200,246,90,0.28); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); color: rgba(255,255,255,0.72); padding: clamp(56px, 8vw, 96px) 0 40px; }
.footer__top { display: grid; gap: 40px; }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer .brand { color: #fff; margin-bottom: 20px; }
.footer .brand__mark { background: var(--accent); color: var(--accent-ink); }
.footer__blurb { max-width: 320px; font-size: 0.98rem; }
.footer h4 { color: #fff; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer a { color: rgba(255,255,255,0.72); font-size: 0.96rem; transition: color .25s ease; }
.footer a:hover { color: var(--accent); }
.footer__bottom { margin-top: clamp(48px, 6vw, 72px); padding-top: 28px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin-bottom: 12px; }
.legal .lead { color: var(--fg-soft); font-size: 1.1rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.legal p, .legal li { color: var(--fg-soft); margin-bottom: 14px; }
.legal ul { padding-left: 20px; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Thanks ---------- */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.thanks__mark { width: 84px; height: 84px; border-radius: 28px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; margin: 0 auto 28px; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); margin-bottom: 18px; }
.thanks p { color: var(--fg-soft); max-width: 480px; margin: 0 auto 30px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__stage img { animation: none; }
  .marquee__track { animation: none; }
}

/* ---------- 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(12,19,14,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); padding: 32px 36px; max-width: 480px; border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 0.94rem; color: var(--fg-soft); }
.cookie-popup__card p a { text-decoration: underline; color: var(--fg); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 26px; border: 1px solid var(--line); border-radius: 9999px; cursor: pointer; font-size: 14px; font-weight: 600; transition: transform .25s ease, background .25s ease; }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-cta { margin-top: clamp(48px, 7vw, 90px); }
.lede { font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.5; color: var(--fg-soft); max-width: 760px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-list span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; padding: 8px 16px; border: 1px solid var(--line); border-radius: 9999px; color: var(--fg-soft); }
