/* palette: bg=#FFFFFF fg=#16181D accent=#E01E37 */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F3F4F7;
  --fg: #16181D;
  --fg-soft: #3B3E47;
  --muted: #6C7079;
  --accent: #E01E37;
  --accent-deep: #B4142A;
  --border: rgba(22, 24, 29, 0.12);
  --border-soft: rgba(22, 24, 29, 0.07);

  /* category tile palette — cloned from reference multicolor tiles */
  --tile-1: #6B2FD6;
  --tile-2: #C217B8;
  --tile-3: #00A578;
  --tile-4: #0A6CE0;
  --tile-5: #0093B0;
  --tile-6: #22242B;

  --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);
  font-size: 17px;
  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: 400; letter-spacing: -0.02em; margin: 0; }
p { margin: 0 0 1.1em; }

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

section { padding: clamp(72px, 12vw, 152px) 0; }
.section-alt { background: var(--bg-alt); }

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

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 62ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), opacity .35s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--dark { background: var(--fg); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); opacity: .9; }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: #fff; }
.btn--light { background: #fff; color: var(--fg); }
.btn--light:hover { transform: translateY(-2px); opacity: .92; }

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(22,24,29,0.06);
  border-bottom-color: var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand__mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.brand__mark em { color: var(--accent); font-style: normal; }
.brand__tag {
  display: none;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 900px) { .brand__tag { display: inline; } }

.nav { display: none; align-items: center; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav__cta { color: var(--accent) !important; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px 3px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--fg);
  transition: transform .35s var(--ease), opacity .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 {
  position: fixed;
  inset: 70px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  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 {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:last-child { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  background: var(--bg);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: 48px; align-items: center; width: 100%; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 64px; } }
.hero h1 {
  font-size: clamp(3rem, 9vw, 7.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 8px 0 28px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}
.hero__meta div span {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.02em;
}
.hero__meta div small {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
.hero__visual::after {
  content: attr(data-note);
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(22,24,29,0.72);
  padding: 6px 12px;
  backdrop-filter: blur(6px);
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

/* ---------- section head ---------- */
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 22px;
}
.section-head--split {
  display: grid;
  gap: 24px;
  max-width: none;
  align-items: end;
}
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1.4fr 1fr; } }

/* ---------- tiles (signature clone) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
@media (min-width: 768px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile {
  position: relative;
  aspect-ratio: 1 / 1.05;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
  transition: transform .5s var(--ease);
}
@media (min-width: 768px) { .tile { aspect-ratio: 1 / 1.12; padding: 30px 28px; } }
.tile:nth-child(1) { background: var(--tile-1); }
.tile:nth-child(2) { background: var(--tile-2); }
.tile:nth-child(3) { background: var(--tile-3); }
.tile:nth-child(4) { background: var(--tile-4); }
.tile:nth-child(5) { background: var(--tile-5); }
.tile:nth-child(6) { background: var(--tile-6); }
.tile:hover { transform: translateY(-4px); }
.tile__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.75;
}
.tile__body h3 { font-size: 1.45rem; font-weight: 500; line-height: 1.08; margin: 0 0 10px; color: #fff; }
.tile__body p { font-size: 14px; line-height: 1.55; margin: 0; color: rgba(255,255,255,0.86); }
.tile__mark {
  position: absolute;
  top: -18px; right: -14px;
  font-family: var(--serif);
  font-size: 128px;
  line-height: 1;
  font-weight: 300;
  opacity: 0.10;
  pointer-events: none;
}

/* ---------- manifesto (dark band) ---------- */
.manifesto {
  background: var(--fg);
  color: #fff;
  text-align: center;
}
.manifesto .container { max-width: 960px; }
.manifesto .eyebrow { color: #fff; opacity: 0.55; justify-content: center; }
.manifesto .eyebrow::before { background: #fff; opacity: 0.6; }
.manifesto p.statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
}
.manifesto p.statement em { color: #fff; font-style: normal; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.manifesto .quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.4;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

/* ---------- work / case cards ---------- */
.work-grid { display: grid; gap: 2px; background: var(--border-soft); }
@media (min-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease);
}
.work-card:hover { transform: translateY(-4px); }
.work-card__img { aspect-ratio: 16/10; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .work-card__img img { transform: scale(1.05); }
.work-card__body { padding: 28px 28px 34px; }
.work-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.work-card__tags span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
}
.work-card h3 { font-size: 1.6rem; font-weight: 500; margin: 0 0 10px; }
.work-card p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.6; margin: 0 0 18px; }

/* ---------- process ---------- */
.process-grid { display: grid; gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { background: var(--bg); padding: 34px 28px 40px; min-height: 240px; display: flex; flex-direction: column; }
.process-step__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 22px;
}
.process-step h3 { font-size: 1.2rem; font-weight: 500; margin: 0 0 12px; }
.process-step p { font-size: 14.5px; color: var(--fg-soft); line-height: 1.6; margin: 0; }

/* ---------- partners strip ---------- */
.partners { padding: clamp(48px, 7vw, 80px) 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.partners__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 30px; }
.partners__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 48px; }
.partners__row span {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  opacity: 0.42;
  transition: opacity .3s var(--ease);
}
.partners__row span:hover { opacity: 0.9; }

/* ---------- stats band ---------- */
.stats { background: var(--bg-alt); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg-alt); padding: 40px 26px; }
.stat span { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; }
.stat span em { color: var(--accent); font-style: normal; }
.stat small { display: block; margin-top: 14px; font-size: 14px; color: var(--fg-soft); line-height: 1.45; }

/* ---------- CTA ---------- */
.cta-band { background: var(--fg); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 300; line-height: 1.04; margin: 0 0 24px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 56ch; margin: 0 auto 34px; }
.cta-band .btn--light { }

/* ---------- form ---------- */
.contact-layout { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 0.9fr 1.1fr; gap: 72px; } }
.contact-info h3 { font-size: 1.05rem; font-weight: 500; margin: 0 0 6px; font-family: var(--sans); }
.contact-info dl { margin: 0 0 30px; }
.contact-info dt { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 6px; }
.contact-info dd { margin: 0 0 20px; font-size: 16px; color: var(--fg-soft); line-height: 1.55; }
.contact-info dd a:hover { color: var(--accent); }

.form-grid { display: grid; gap: 22px; }
@media (min-width: 620px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 14px 16px;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.form-consent { font-size: 13px; color: var(--muted); grid-column: 1/-1; line-height: 1.5; }
.form-consent a { color: var(--accent); text-decoration: underline; }

/* ---------- values / list ---------- */
.value-list { display: grid; gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 768px) { .value-list { grid-template-columns: repeat(3, 1fr); } }
.value { background: var(--bg); padding: 34px 28px 40px; }
.value h3 { font-size: 1.25rem; font-weight: 500; margin: 0 0 12px; }
.value h3 span { font-family: var(--mono); font-size: 12px; color: var(--accent); display: block; margin-bottom: 10px; }
.value p { font-size: 15px; color: var(--fg-soft); line-height: 1.62; margin: 0; }

/* ---------- team text cards (no faces) ---------- */
.team-grid { display: grid; gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: var(--bg); padding: 30px 26px 34px; display: flex; flex-direction: column; gap: 16px; }
.avatar {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 20px; color: #fff;
  letter-spacing: 0.02em;
}
.team-card h3 { font-size: 1.2rem; font-weight: 500; margin: 0; }
.team-card .role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.team-card p { font-size: 14.5px; color: var(--fg-soft); line-height: 1.6; margin: 8px 0 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border); padding: 26px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 1.2rem; font-weight: 500; margin: 0 0 12px; display: flex; gap: 16px; }
.faq-item h3 span { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.faq-item p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.65; margin: 0; padding-left: 30px; }

/* ---------- footer ---------- */
.footer { background: var(--fg); color: rgba(255,255,255,0.62); padding: 72px 0 34px; }
.footer__top { display: grid; gap: 40px; margin-bottom: 52px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand .brand__mark { color: #fff; font-size: 24px; }
.footer__brand .brand__mark em { color: var(--accent); }
.footer__brand p { margin: 18px 0 0; font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.footer h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin: 0 0 18px; font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 12px; font-size: 14.5px; }
.footer li a { transition: color .3s var(--ease); }
.footer li a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: rgba(255,255,255,0.42);
}
.footer__bottom a:hover { color: #fff; }

/* ---------- 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__visual img { animation: none; }
}

/* ---------- page hero (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(48px, 8vw, 96px); border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.page-hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, var(--border-soft) 1px, transparent 1px), linear-gradient(to bottom, var(--border-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
}
.page-hero__inner { position: relative; max-width: 900px; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 300; line-height: 1; letter-spacing: -0.03em; margin: 8px 0 24px; }
.page-hero h1 em { color: var(--accent); font-style: normal; }

/* legal */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.5rem; font-weight: 500; margin: 44px 0 16px; }
.legal h3 { font-size: 1.15rem; font-weight: 500; margin: 28px 0 12px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.72; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* thanks */
.thanks { min-height: 76vh; display: flex; align-items: center; text-align: center; }
.thanks__icon { width: 72px; height: 72px; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; }
.thanks__icon svg { width: 34px; height: 34px; stroke: var(--accent); }
.thanks h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 300; margin: 0 0 20px; }

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; padding: 24px; background: rgba(0,0,0,0.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: 4px; box-shadow: 0 20px 60px -12px rgba(0,0,0,0.4); }
.cookie-popup__label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.25rem; font-weight: 500; margin: 0 0 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.6; margin: 0; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 10px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; transition: background .3s var(--ease), color .3s var(--ease); }
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }
