/* palette: bg=#E9EDF4 fg=#191B2C accent=#F26A4B */
/* fonts: display="Space Grotesk" body="Inter" mono="Space Mono" */

:root {
  --bg: #E9EDF4;
  --bg-alt: #F2EFF3;
  --bg-clear: #F5F7FB;
  --fg: #191B2C;
  --fg-soft: #33364A;
  --muted: #6C6F86;
  --accent: #F26A4B;
  --accent-deep: #D9482C;
  --accent-soft: #FF9E6D;
  --border: rgba(25, 27, 44, 0.12);
  --border-soft: rgba(25, 27, 44, 0.07);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bg-rgb: 233, 237, 244;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.76;
  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: 400; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ambient blobs — biomorphic gradient shapes floating behind everything */
.blob-field { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.blob--1 { width: 46vw; height: 46vw; top: -12vw; right: -10vw;
  background: radial-gradient(circle at 40% 40%, rgba(255,158,109,.55), rgba(242,106,75,0)); }
.blob--2 { width: 40vw; height: 40vw; bottom: -14vw; left: -12vw;
  background: radial-gradient(circle at 50% 50%, rgba(160,178,220,.5), rgba(160,178,220,0)); }
.blob--3 { width: 30vw; height: 30vw; top: 45%; left: 55%;
  background: radial-gradient(circle at 50% 50%, rgba(255,206,178,.4), rgba(255,206,178,0)); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--clear { background: var(--bg-clear); }

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

.lede { color: var(--fg-soft); font-size: clamp(1.05rem, 2vw, 1.2rem); max-width: 620px; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(var(--bg-rgb), 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border-soft), 0 10px 40px -20px rgba(25,27,44,.3);
  background: rgba(var(--bg-rgb), 0.92);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--serif); font-size: 1.42rem; letter-spacing: -0.03em; font-weight: 500; }
.brand span { color: var(--accent); }
.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-soft); position: relative; padding: 6px 0; transition: color .25s;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 9999px;
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(25,27,44,.5); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(242,106,75,.6); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.header .btn { display: none; }
@media (min-width: 900px) { .header .btn { display: inline-flex; } }

.link-arrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  color: var(--accent-deep); display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.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: rgba(var(--bg-rgb), 0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 40px 24px; display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .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.9rem; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.98; letter-spacing: -0.035em; font-weight: 300;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { margin-top: 34px; max-width: 520px; color: var(--fg-soft); font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero__actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta {
  position: absolute; z-index: 3; right: 20px; bottom: 40px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-align: right; line-height: 2;
}
@media (min-width: 768px) { .hero__meta { right: 32px; } }

/* the glowing biomorphic orb */
.orb-stage {
  position: absolute; z-index: 1;
  top: 50%; right: 4%; transform: translateY(-50%);
  width: min(52vw, 620px); aspect-ratio: 1;
  display: grid; place-items: center;
  pointer-events: none;
}
@media (max-width: 900px) { .orb-stage { opacity: 0.42; right: -14%; top: 32%; width: 80vw; } }
.orb {
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #FFF0DC 0%, #FFC79A 16%, #FF9364 34%, #F5623F 56%, #E1442A 74%, #B8341C 100%);
  box-shadow: 0 0 120px 20px rgba(242,106,75,.45), inset -30px -34px 90px rgba(150,40,20,.55), inset 22px 24px 70px rgba(255,240,220,.4);
  animation: orbFloat 9s ease-in-out infinite;
  position: relative;
}
.orb::after {
  content: ""; position: absolute; inset: -6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,180,140,.35), rgba(255,180,140,0) 62%);
  mix-blend-mode: screen;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.02); }
}
.ring {
  position: absolute; border: 1px solid var(--border-soft); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ring--1 { width: 78%; height: 78%; }
.ring--2 { width: 100%; height: 100%; }
.ring--3 { width: 128%; height: 128%; border-color: rgba(25,27,44,.05); }
.ring__dot { position: absolute; top: -3px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); transform: translateX(-50%); }
.ring--spin { animation: ringSpin 26s linear infinite; }
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border-soft); border-radius: 28px; overflow: hidden; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 28px; }
.section--alt .stat { background: var(--bg-alt); }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num span { color: var(--accent); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- section header ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.025em; font-weight: 300; }
.sec-head p { margin-top: 24px; }
.sec-head--split { display: grid; gap: 28px; max-width: none; align-items: end; }
@media (min-width: 900px) { .sec-head--split { grid-template-columns: 1.3fr 1fr; } }

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

.card {
  background: var(--bg); border: 1px solid var(--border-soft);
  border-radius: 28px; padding: 40px 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.section--alt .card { background: var(--bg); }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -18px rgba(25,27,44,.22); border-color: transparent; }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--accent-deep); letter-spacing: 0.1em; }
.card__icon {
  width: 54px; height: 54px; border-radius: 18px; margin-bottom: 26px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--accent-soft), var(--accent));
  color: #fff;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.5rem; margin-bottom: 14px; letter-spacing: -0.02em; }
.card p { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }
.card ul { margin: 18px 0 0; padding: 0; list-style: none; }
.card ul li { font-size: 15px; color: var(--muted); padding: 7px 0 7px 22px; position: relative; border-top: 1px solid var(--border-soft); }
.card ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ---------- manifesto (dark inverted) ---------- */
.manifesto { background: var(--fg); color: var(--bg); position: relative; overflow: hidden; }
.manifesto .blob { opacity: 0.35; }
.manifesto__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.16; letter-spacing: -0.02em;
  max-width: 940px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
}
.manifesto__quote em { font-style: normal; color: var(--accent-soft); }
.manifesto__mark { font-family: var(--serif); font-size: 8rem; line-height: 0; color: var(--accent); display: block; height: 60px; text-align: center; }
.manifesto__by { text-align: center; margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(233,237,244,.6); position: relative; z-index: 2; }

/* ---------- feature split ---------- */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } .split--rev .split__media { order: 2; } }
.split__media { border-radius: 32px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px -30px rgba(25,27,44,.4); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; font-weight: 300; margin-bottom: 24px; }
.split p + p { margin-top: 18px; }
.split .lede { margin-bottom: 28px; }

/* ---------- community / spotlight ---------- */
.spotlight { border: 1px solid var(--border-soft); border-radius: 28px; padding: 36px 32px; background: var(--bg); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.spotlight:hover { transform: translateY(-5px); box-shadow: 0 22px 50px -18px rgba(25,27,44,.2); }
.avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; color: #fff; letter-spacing: -0.02em; margin-bottom: 22px; }
.spotlight h3 { font-size: 1.3rem; }
.spotlight__role { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-deep); margin: 6px 0 16px; }
.spotlight p { font-size: 15px; color: var(--fg-soft); line-height: 1.68; }

/* ---------- events ---------- */
.event { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 28px 4px; border-top: 1px solid var(--border); transition: padding .3s var(--ease); }
.event:last-child { border-bottom: 1px solid var(--border); }
.event:hover { padding-left: 14px; }
.event__date { font-family: var(--serif); text-align: center; min-width: 66px; }
.event__date b { display: block; font-size: 2rem; font-weight: 400; line-height: 1; letter-spacing: -0.03em; }
.event__date span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.event__body h3 { font-size: 1.35rem; }
.event__body p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.event__tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; padding: 7px 14px; border: 1px solid var(--border); border-radius: 9999px; color: var(--fg-soft); white-space: nowrap; }
@media (max-width: 640px) { .event { grid-template-columns: auto 1fr; } .event__tag { display: none; } }

/* ---------- discussion preview ---------- */
.thread { background: var(--bg); border: 1px solid var(--border-soft); border-radius: 22px; padding: 26px 28px; margin-bottom: 16px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.thread:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -20px rgba(25,27,44,.24); }
.thread__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.thread__meta .avatar { width: 34px; height: 34px; font-size: 0.85rem; margin: 0; }
.thread__meta span { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.thread h3 { font-size: 1.18rem; margin-bottom: 8px; }
.thread p { font-size: 15px; color: var(--fg-soft); }
.thread__foot { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; gap: 20px; }
.thread__foot b { color: var(--accent-deep); font-weight: 400; }

/* ---------- CTA ---------- */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta__card {
  background: var(--fg); color: var(--bg); border-radius: 40px;
  padding: clamp(56px, 9vw, 110px) 28px; position: relative; overflow: hidden;
}
.cta__card .blob { opacity: 0.4; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); font-weight: 300; line-height: 1.02; max-width: 16ch; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 em { font-style: normal; color: var(--accent-soft); }
.cta p { max-width: 500px; margin: 26px auto 40px; color: rgba(233,237,244,.72); position: relative; z-index: 2; }
.cta .btn { position: relative; z-index: 2; }

/* ---------- forms ---------- */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 16px; padding: 15px 18px;
  border: 1px solid var(--border); border-radius: 16px; background: var(--bg);
  color: var(--fg); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(242,106,75,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 13px; color: var(--muted); }

.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.contact-info dl { margin: 0; display: grid; gap: 26px; }
.contact-info dt { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-deep); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.05rem; color: var(--fg-soft); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--border); padding: 8px 0; }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); position: relative; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.7rem; color: var(--accent); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 40px 24px 0; color: var(--fg-soft); font-size: 16px; }

/* ---------- footer ---------- */
.footer { background: var(--fg); color: var(--bg); padding: clamp(64px, 9vw, 110px) 0 40px; position: relative; overflow: hidden; }
.footer .blob { opacity: 0.3; }
.footer__top { display: grid; gap: 44px; position: relative; z-index: 2; }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand { font-family: var(--serif); font-size: 1.8rem; letter-spacing: -0.03em; }
.footer__brand span { color: var(--accent-soft); }
.footer__tag { margin-top: 18px; color: rgba(233,237,244,.66); max-width: 320px; font-size: 15px; }
.footer h4 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(233,237,244,.5); font-weight: 400; margin-bottom: 20px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a { color: rgba(233,237,244,.82); font-size: 15px; transition: color .25s; }
.footer ul a:hover { color: var(--accent-soft); }
.footer__bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(233,237,244,.14); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; position: relative; z-index: 2; font-size: 13px; color: rgba(233,237,244,.55); }
.footer__bottom a { color: rgba(233,237,244,.7); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: clamp(120px, 18vw, 200px) 0 clamp(60px, 9vw, 110px); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); font-weight: 300; line-height: 0.98; letter-spacing: -0.035em; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lede { margin-top: 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; }
  .orb, .ring--spin { 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(25,27,44,.4); 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: 24px; box-shadow: 0 30px 80px -20px rgba(25,27,44,.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-deep); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 12px 24px; border: 1px solid var(--border); cursor: pointer; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 9999px; transition: transform .25s var(--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); }

/* ---------- legal ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; margin: 48px 0 16px; letter-spacing: -0.02em; }
.legal h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.75; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
