/* palette: bg=#0A0A0B fg=#ECECEC accent=#5FA8D3 */
/* fonts: display="Fraunces" body="Space Grotesk" mono="IBM Plex Mono" */

:root {
  --bg: #0A0A0B;        /* dominant near-black background from reference */
  --bg-alt: #121214;    /* alternating section background */
  --bg-lift: #17171A;   /* raised card surface */
  --fg: #ECECEC;        /* primary off-white text */
  --fg-soft: #C4C4C6;   /* slightly softer foreground */
  --muted: #7C7C82;     /* secondary text */
  --accent: #5FA8D3;    /* cool blue glow from the reference hero orb */
  --accent-deep: #3E7CA8; /* darker accent for hover */
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- shared layout ---------- */
.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--alt { background: var(--bg-alt); }

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

.h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 300;
}
.lead {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.78;
  color: var(--fg-soft);
  max-width: 62ch;
}
.muted { color: var(--muted); }
em.accent, .accent-text { color: var(--accent); font-style: normal; }

/* subtle blueprint grid over dark surfaces */
.grid-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 85%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #06121B; }
.btn--primary:hover { background: #7EBDE2; transform: translateY(-2px); }
.btn--ghost { border-color: var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.35s var(--ease), gap 0.35s var(--ease);
}
.arrow-link:hover { color: var(--accent); gap: 14px; }
.arrow-link .ar { transition: transform 0.35s var(--ease); }
.arrow-link:hover .ar { transform: translateX(3px); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(10, 10, 11, 0.90);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.9);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.nav { display: none; gap: 34px; }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.3s var(--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: 1px; background: var(--accent);
}
.header__cta { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--fg); transition: transform 0.35s var(--ease), opacity 0.35s 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); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(95, 168, 211, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(10,10,11,0.72) 0%, rgba(10,10,11,0.28) 42%, rgba(10,10,11,0.94) 100%);
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }

.hero__top {
  position: absolute;
  top: clamp(90px, 16vh, 150px);
  left: 0; right: 0;
  z-index: 2;
}
.hero__corners {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__corners .col { max-width: 30%; }
.hero__corners .col--r { text-align: right; }
.hero__corners strong { color: var(--fg-soft); font-weight: 500; display: block; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: clamp(64px, 12vh, 130px);
}
.hero__eyebrow { justify-content: center; margin-bottom: 26px; }
.hero__eyebrow::before { display: none; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__sub { margin: 26px auto 0; color: var(--fg-soft); font-size: clamp(15px, 2vw, 18px); max-width: 46ch; }
.hero__scroll {
  margin: clamp(36px, 6vh, 60px) auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll .ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll .ring::after { content: "↓"; color: var(--accent); font-size: 13px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- inner page hero (compact) ---------- */
.page-hero {
  position: relative;
  padding: clamp(130px, 20vh, 220px) 0 clamp(70px, 10vw, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.30; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.6), var(--bg)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  max-width: 16ch;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero .lead { margin-top: 28px; }

/* ---------- section header ---------- */
.sec-head { display: grid; gap: 22px; margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head .h2 { max-width: 20ch; }
@media (min-width: 900px) {
  .sec-head--split { grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 48px; }
  .sec-head--split .lead { justify-self: end; }
}

/* ---------- manifesto ---------- */
.manifesto { text-align: center; }
.manifesto__mark { font-family: var(--serif); font-size: clamp(5rem, 12vw, 9rem); line-height: 0.6; color: var(--accent); opacity: 0.5; }
.manifesto p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 30px auto 0;
}
.manifesto p em { color: var(--accent); font-style: normal; }
.manifesto__cite { margin-top: 34px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- services / cards grid ---------- */
.cards { display: grid; gap: 20px; }
@media (min-width: 640px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--bg-lift);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
  min-height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent-deep); background: #1B1B1F; }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--accent); }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.55rem; letter-spacing: -0.01em; line-height: 1.15; }
.card p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.72; }
.card ul.card__list { display: grid; gap: 8px; margin-top: 4px; }
.card__list li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); padding-left: 16px; position: relative; }
.card__list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ---------- feature / work cards with image ---------- */
.work { display: grid; gap: 24px; }
@media (min-width: 900px) { .work { grid-template-columns: repeat(3, 1fr); } }
.work__card { display: block; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--bg-lift); transition: border-color 0.5s var(--ease), transform 0.5s var(--ease); }
.work__card:hover { border-color: var(--accent-deep); transform: translateY(-4px); }
.work__media { aspect-ratio: 4 / 3; overflow: hidden; }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); filter: grayscale(0.2) brightness(0.9); }
.work__card:hover .work__media img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.work__body { padding: 24px 24px 28px; display: grid; gap: 10px; }
.work__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.work__body h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.2; }
.work__body p { color: var(--fg-soft); font-size: 15px; }

/* ---------- stats ---------- */
.stats { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 40px 30px; display: grid; gap: 8px; }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.02em; color: var(--fg); }
.stat__num em { color: var(--accent); font-style: normal; }
.stat__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- numbered process ---------- */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  display: grid;
  gap: 12px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) { .step { grid-template-columns: 90px 1fr 1.2fr; gap: 40px; align-items: baseline; } }
.step__n { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: -0.01em; }
.step p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.74; }

/* ---------- dark quote band (inverted) ---------- */
.band {
  background: var(--fg);
  color: #0A0A0B;
}
.band .eyebrow { color: var(--accent-deep); }
.band .eyebrow::before { background: var(--accent-deep); }
.band__quote { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 4.5vw, 3.4rem); line-height: 1.2; letter-spacing: -0.015em; max-width: 24ch; }
.band__quote em { color: var(--accent-deep); font-style: normal; }
.band__meta { margin-top: 30px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #55555C; }

/* ---------- CTA ---------- */
.cta { position: relative; text-align: center; overflow: hidden; }
.cta h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.02em; line-height: 1.05; max-width: 18ch; margin: 0 auto; }
.cta h2 em { color: var(--accent); font-style: normal; }
.cta .lead { margin: 26px auto 40px; text-align: center; }
.cta__actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 30px 0; font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 400; letter-spacing: -0.01em; transition: color 0.3s var(--ease); }
.faq__q:hover { color: var(--accent); }
.faq__q .sign { font-family: var(--mono); font-size: 1.4rem; color: var(--accent); transition: transform 0.4s var(--ease); flex: none; }
.faq__item[data-open="true"] .sign { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a p { color: var(--fg-soft); font-size: 16px; line-height: 1.75; padding-bottom: 30px; max-width: 70ch; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.info-list { display: grid; gap: 28px; margin-top: 8px; }
.info-item .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.info-item .v { font-size: 17px; color: var(--fg-soft); line-height: 1.6; }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; 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-lift);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #55555C; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: #1B1B1F; }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__note a { color: var(--accent); }

/* ---------- footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: clamp(70px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 44px; }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { font-size: 18px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer__col a { display: block; padding: 7px 0; color: var(--fg-soft); font-size: 15px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; margin: 48px 0 16px; }
.prose h3 { font-family: var(--sans); font-weight: 500; font-size: 1.1rem; margin: 30px 0 10px; }
.prose p { color: var(--fg-soft); font-size: 16.5px; line-height: 1.8; margin-bottom: 16px; }
.prose ul { display: grid; gap: 10px; margin: 8px 0 20px; padding-left: 22px; list-style: disc; }
.prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.7; }
.prose a { color: var(--accent); }
.prose .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- thanks page ---------- */
.thanks { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 120px 20px; }
.thanks__ring { width: 74px; height: 74px; border-radius: 50%; border: 1px solid var(--accent); display: grid; place-items: center; margin: 0 auto 32px; color: var(--accent); font-size: 30px; }
.thanks h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -0.02em; }
.thanks p { color: var(--fg-soft); max-width: 48ch; margin: 22px auto 36px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.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__bg img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- 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-lift); border: 1px solid var(--line); padding: 30px 32px; max-width: 460px; border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--fg-soft); font-size: 14px; line-height: 1.7; }
.cookie-popup__card p a { color: var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 22px; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:hover { border-color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #06121B; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: #7EBDE2; }

/* selection */
::selection { background: var(--accent); color: #06121B; }
