/* palette: bg=#0B0B0C fg=#EAEAEA accent=#FF2E97 */
/* fonts: display="Orbitron" body="Space Grotesk" mono="Space Mono" */

:root {
  --bg: #0B0B0C;
  --bg-alt: #121215;
  --bg-invert: #ECEDEF;
  --fg: #EAEAEA;
  --fg-soft: #C7C8CC;
  --muted: #6E6F77;
  --muted-dim: #45464D;
  --accent: #FF2E97;
  --accent-deep: #D01277;
  --chrome-1: #F4F5F7;
  --chrome-2: #A9AEB8;
  --chrome-3: #7C818C;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.22);
  --serif: 'Orbitron', ui-sans-serif, sans-serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 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;
  -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; }
::selection { background: var(--accent); color: #fff; }

/* ---------- 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; position: relative; }
.section.bg-alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  display: inline-block;
}
.eyebrow::before { content: "["; margin-right: 6px; color: var(--accent); }
.eyebrow::after { content: "]"; margin-left: 6px; color: var(--accent); }

.h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.7; color: var(--fg-soft); max-width: 60ch; }

/* ---------- 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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  background: rgba(11, 11, 12, 0.9);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--fg);
  white-space: nowrap;
}
.brand .slash { color: var(--accent); }
.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.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.header__right { display: flex; align-items: center; gap: 18px; }
.header__cta {
  display: none;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg); padding: 8px 4px; position: relative;
}
@media (min-width: 900px) { .header__cta { display: inline-block; } }
.header__cta::before { content: "[ "; color: var(--accent); }
.header__cta::after { content: " ]"; color: var(--accent); }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; width: 30px; padding: 6px 0;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { height: 1.5px; width: 26px; 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(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--fg-soft);
}
.mobile-menu a:hover { color: var(--fg); }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px;
  background: var(--accent); color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 0 0 rgba(255, 46, 151, 0);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 12px 40px -12px rgba(255, 46, 151, 0.6); }
.btn--ghost {
  background: transparent; color: var(--fg); border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); color: var(--fg); box-shadow: none; border-color: var(--fg-soft); }
.link-arrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border-strong); padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow .arw { transition: transform 0.3s var(--ease); color: var(--accent); }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh; position: relative; display: flex; flex-direction: column;
  justify-content: space-between; padding: 110px 0 44px; overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 80%);
}
.hero__top { position: relative; z-index: 2; }
.hero__scroll { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.hero__scroll::before { content: "["; color: var(--accent); margin-right: 6px; }
.hero__scroll::after { content: "]"; color: var(--accent); margin-left: 6px; }

.hero__word {
  position: relative; z-index: 1;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.5rem, 15vw, 13rem);
  line-height: 0.9; letter-spacing: -0.01em; margin: 0;
  text-align: center;
  background: linear-gradient(176deg, var(--chrome-1) 0%, var(--chrome-2) 42%, var(--chrome-3) 60%, #EDEDEF 78%, var(--chrome-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: heroZoom 8s var(--ease) both;
  padding: min(6vw, 40px) 0;
}
.hero__word .slash { -webkit-text-fill-color: var(--accent); color: var(--accent); }
@keyframes heroZoom { from { transform: scale(1.08); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.hero__bottom {
  position: relative; z-index: 2; display: grid; gap: 40px; align-items: end;
}
@media (min-width: 900px) { .hero__bottom { grid-template-columns: 1.3fr 1fr; gap: 60px; } }
.hero__statement {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.6rem); line-height: 1.04; letter-spacing: -0.025em; margin: 0;
  color: var(--fg);
}
.hero__statement em { font-style: normal; color: var(--accent); }
.hero__statement .reg { font-size: 0.5em; vertical-align: super; color: var(--muted); }
.hero__aside { font-family: var(--mono); font-size: 14px; line-height: 1.7; color: var(--fg-soft); }
.hero__aside p { margin: 0 0 18px; }

/* ---------- services numbered list ---------- */
.svc-head { display: grid; gap: 28px; margin-bottom: clamp(48px, 7vw, 88px); }
@media (min-width: 900px) { .svc-head { grid-template-columns: 1fr 1fr; align-items: end; } }
.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px;
  padding: clamp(26px, 3.4vw, 40px) 0; border-bottom: 1px solid var(--border);
  position: relative; transition: padding-left 0.4s var(--ease);
}
.svc-row::before {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--accent); transition: width 0.55s var(--ease);
}
.svc-row:hover::before { width: 100%; }
@media (min-width: 768px) { .svc-row:hover { padding-left: 22px; } }
.svc-row__title {
  font-family: var(--mono); font-size: clamp(1.15rem, 3vw, 1.9rem); font-weight: 400;
  color: var(--muted); letter-spacing: -0.01em; transition: color 0.35s var(--ease); margin: 0;
}
.svc-row:hover .svc-row__title { color: var(--fg); }
.svc-row__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted-dim); }
.svc-row__desc {
  grid-column: 1 / -1; max-width: 62ch; color: var(--muted); font-size: 15px; line-height: 1.7;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease); margin-top: 0;
}
.svc-row:hover .svc-row__desc { max-height: 120px; opacity: 1; margin-top: 16px; }
@media (max-width: 767px) { .svc-row__desc { max-height: none; opacity: 1; margin-top: 14px; color: var(--fg-soft); } }

/* ---------- manifesto (inverted light band) ---------- */
.manifesto { background: var(--bg-invert); color: #101013; }
.manifesto .container { text-align: center; }
.manifesto .eyebrow { color: #55565C; }
.manifesto .eyebrow::before, .manifesto .eyebrow::after { color: var(--accent-deep); }
.manifesto__quote {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.18; letter-spacing: -0.02em;
  max-width: 950px; margin: 0 auto; color: #101013;
}
.manifesto__quote em { font-style: normal; color: var(--accent-deep); }
.manifesto__mark {
  font-family: var(--serif); font-size: clamp(4rem, 12vw, 9rem); line-height: 0.5;
  color: var(--accent); display: block; margin-bottom: 10px;
}
.manifesto__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #55565C; margin-top: 40px; }

/* ---------- work grid ---------- */
.work-grid { display: grid; gap: 26px; margin-top: clamp(48px, 6vw, 80px); }
@media (min-width: 700px) { .work-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.work-card { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--bg-alt); }
.work-card__media { overflow: hidden; aspect-ratio: 16 / 11; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.05); transition: transform 0.9s var(--ease), filter 0.6s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.06); filter: grayscale(0) contrast(1.08); }
.work-card__body { padding: 24px 26px 28px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.work-card__title { font-family: var(--sans); font-weight: 500; font-size: 1.5rem; letter-spacing: -0.02em; margin: 12px 0 10px; }
.work-card__title .reg { color: var(--muted); }
.work-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- stats ---------- */
.stats { display: grid; gap: 8px; border-top: 1px solid var(--border); }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.stat { padding: 36px 0; border-bottom: 1px solid var(--border); }
@media (min-width: 700px) { .stat { padding: 44px 28px 44px 0; border-bottom: 0; border-right: 1px solid var(--border); } .stat:last-child { border-right: 0; } }
.stat__num { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: -0.01em; color: var(--fg); }
.stat__num span { color: var(--accent); }
.stat__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ---------- approach / steps ---------- */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--bg); padding: 40px 32px 48px; }
.step__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.step__title { font-family: var(--sans); font-weight: 500; font-size: 1.35rem; letter-spacing: -0.01em; margin: 18px 0 12px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- team / principles cards ---------- */
.people { display: grid; gap: 24px; margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 640px) { .people { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person { border: 1px solid var(--border); padding: 30px 28px 32px; background: var(--bg-alt); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.person:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.avatar {
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 1.15rem; color: #0B0B0C; letter-spacing: 0.02em; margin-bottom: 22px;
}
.person__name { font-family: var(--sans); font-weight: 500; font-size: 1.25rem; letter-spacing: -0.01em; margin: 0 0 4px; }
.person__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent); text-transform: uppercase; }
.person p { color: var(--muted); font-size: 15px; margin: 16px 0 0; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--border); margin-top: clamp(40px, 5vw, 64px); }
.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(--sans); font-weight: 500; font-size: clamp(1.1rem, 2.4vw, 1.4rem); letter-spacing: -0.01em; color: var(--fg-soft);
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--fg); }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 24px; font-family: var(--mono); font-size: 1.4rem; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 44px 28px 0; color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 74ch; }
.faq__a p { margin: 0 0 14px; }

/* ---------- cta band ---------- */
.cta-band { border-top: 1px solid var(--border); }
.cta-band .container { display: grid; gap: 36px; }
@media (min-width: 860px) { .cta-band .container { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.cta-band h2 { font-family: var(--sans); font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.02; letter-spacing: -0.025em; margin: 0; }
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- form ---------- */
.form-wrap { display: grid; gap: 44px; margin-top: clamp(40px, 6vw, 72px); }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 28px; }
.contact-info dd { margin: 6px 0 0; font-size: 1.05rem; color: var(--fg-soft); }
.contact-info dd a:hover { color: var(--accent); }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.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 {
  font-family: var(--sans); font-size: 16px; color: var(--fg);
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 2px; padding: 14px 16px;
  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: #171718; }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__consent input { margin-top: 3px; accent-color: var(--accent); }
.form__consent a { color: var(--fg-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 180px) 0 clamp(48px, 7vw, 88px); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero__grid { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 100% at 20% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 20% 0%, #000, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(3rem, 9vw, 7rem); line-height: 0.98; letter-spacing: -0.03em; margin: 0; max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead { margin-top: 30px; }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--sans); font-weight: 500; font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -0.01em; margin: 52px 0 16px; }
.prose h3 { font-family: var(--sans); font-weight: 500; font-size: 1.2rem; margin: 32px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }

/* ---------- thanks ---------- */
.thanks { min-height: 82vh; display: flex; align-items: center; text-align: center; }
.thanks .container { max-width: 720px; }
.thanks__mark { font-family: var(--serif); font-size: clamp(3rem, 8vw, 5rem); color: var(--accent); }
.thanks h1 { font-family: var(--sans); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.03em; margin: 24px 0 20px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: clamp(64px, 8vw, 100px) 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand-mark {
  font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 7vw, 4.5rem); letter-spacing: 0.02em; line-height: 1; color: var(--fg); margin: 0 0 20px;
}
.footer__brand-mark .slash { color: var(--accent); }
.footer__tag { color: var(--muted); max-width: 34ch; font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 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__col p { color: var(--fg-soft); font-size: 15px; margin: 0 0 12px; line-height: 1.6; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--muted);
}
.footer__bottom a:hover { color: var(--fg); }

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-end; padding: 24px; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-alt); border: 1px solid var(--border-strong); padding: 30px 32px; max-width: 460px; border-radius: 4px; box-shadow: 0 24px 80px -20px rgba(0,0,0,0.8); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--sans); font-weight: 500; font-size: 1.25rem; letter-spacing: -0.01em; margin: 0 0 12px; }
.cookie-popup__card p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin: 0; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 22px; border: 1px solid var(--border-strong); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--fg-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- misc ---------- */
.divider-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-dim); display: flex; align-items: center; gap: 16px; }
.divider-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; }
