/* palette: bg=#07182B fg=#EAF3FA accent=#2FE3E6 */
/* fonts: display="Space Grotesk" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #07182B;          /* deep navy — dominant background from reference */
  --bg-alt: #0B2238;      /* alternating section / card background */
  --bg-panel: #0E2A44;    /* raised panel */
  --fg: #EAF3FA;          /* primary text */
  --fg-soft: #C4D8E6;     /* slightly softer fg */
  --muted: #7E97AC;       /* secondary blue-grey text */
  --accent: #2FE3E6;      /* cyan — the CRT glow accent */
  --accent-deep: #15AEB6; /* darker cyan for hover */
  --magenta: #FF3DBE;     /* glitch RGB-split secondary */
  --lime: #B6FF3D;        /* error/lime micro-accent */
  --border: rgba(170, 210, 235, 0.14);
  --border-strong: rgba(170, 210, 235, 0.28);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 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 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.02em; }

/* ---------- scanline / CRT texture overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.018) 0px,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

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

section { position: relative; }
.section-pad { padding: clamp(80px, 12vw, 160px) 0; }

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

.lead { font-size: 18px; line-height: 1.78; color: var(--fg-soft); max-width: 56ch; }
@media (min-width: 768px) { .lead { font-size: 19px; } }

.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.section-head p { margin: 24px 0 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: #04111E;
  box-shadow: 0 0 0 1px var(--accent), 0 0 30px -6px var(--accent);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #51EEF0;
  box-shadow: 0 0 0 1px #51EEF0, 0 0 46px -4px var(--accent);
}
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 24, 43, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.8);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__mark {
  width: 13px; height: 13px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px -2px var(--accent);
  position: relative;
  top: 1px;
}
.brand span { color: var(--accent); }

.nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  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: -7px;
  width: 100%; height: 1px;
  background: var(--accent);
}
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }
.header__cta.btn { padding: 11px 22px; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: flex-end;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block; height: 1.5px; width: 26px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), width 0.3s var(--ease);
}
.menu-toggle span:nth-child(2) { width: 18px; }
.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); width: 26px; }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  border-top: 1px solid var(--border);
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  animation: heroZoom 9s var(--ease) both;
  filter: saturate(1.1) contrast(1.05);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 700px at 70% 30%, rgba(47, 227, 230, 0.16), transparent 60%),
    radial-gradient(800px 600px at 15% 80%, rgba(255, 61, 190, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(7,24,43,0.55) 0%, rgba(7,24,43,0.82) 60%, var(--bg) 100%);
}
/* neon CRT-glow frame, echoing the reference outline */
.hero__frame {
  position: absolute;
  inset: clamp(24px, 6vw, 80px);
  z-index: 1;
  border: 1px solid rgba(47, 227, 230, 0.4);
  border-radius: 6px;
  box-shadow: 0 0 60px -10px rgba(47, 227, 230, 0.35), inset 0 0 80px -40px rgba(47, 227, 230, 0.4);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__eyebrow { color: var(--accent); }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 300;
  max-width: 16ch;
  margin: 0 0 32px;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  text-shadow: 2px 0 var(--magenta), -2px 0 rgba(47, 227, 230, 0.5);
}
.hero__sub { max-width: 50ch; margin: 0 0 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__bleed {
  position: absolute;
  left: -2vw; bottom: 4%;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22vw;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(170, 210, 235, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero__stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stats .stat span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

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

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--bg-panel);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
}
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.card h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: 14px; line-height: 1.15; }
.card p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 22px; }
.card ul { list-style: none; padding: 0; margin: 0; }
.card ul li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  padding: 9px 0;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: baseline;
}
.card ul li::before { content: "›"; color: var(--accent); }

/* ---------- work / case studies ---------- */
.work-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -28px rgba(0,0,0,0.75); }
.work-card__media { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.work-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); filter: saturate(1) brightness(0.95); }
.work-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,24,43,0.7) 100%);
}
.work-card__body { padding: 26px 28px 30px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-size: 1.5rem; font-weight: 500; margin: 12px 0 10px; }
.work-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- manifesto / dark band ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}
.manifesto .container { max-width: 980px; }
.manifesto__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}
.manifesto__quote em { font-style: normal; color: var(--accent-deep); }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.6;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 10px;
}
.manifesto cite {
  display: block;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(7, 24, 43, 0.55);
}

/* ---------- process / numbered steps ---------- */
.steps { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .step { padding: 44px 40px 44px 0; }
  .step:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 56px; }
  .step:nth-child(even) { padding-left: 56px; }
}
.step__n {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 6px;
}
.step h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 16px; margin: 0; }

/* ---------- principles / team text cards ---------- */
.principle {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 30px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.principle:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: #04111E;
  letter-spacing: -0.02em;
}
.avatar--cyan { background: var(--accent); }
.avatar--magenta { background: var(--magenta); color: #fff; }
.avatar--lime { background: var(--lime); }
.avatar--panel { background: var(--bg-panel); color: var(--accent); border: 1px solid var(--border-strong); }
.principle h3 { font-size: 1.25rem; font-weight: 500; }
.principle .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: -8px; }
.principle p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.7; }

/* ---------- stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
@media (min-width: 820px) { .statband { grid-template-columns: repeat(4, 1fr); } }
.statband .cell { background: var(--bg); padding: 40px 28px; }
.statband .cell strong { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; line-height: 1; letter-spacing: -0.03em; color: var(--accent); }
.statband .cell span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 12px; display: block; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta__inner {
  border: 1px solid rgba(47, 227, 230, 0.35);
  border-radius: 10px;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(47, 227, 230, 0.12), transparent 70%),
    var(--bg-alt);
  box-shadow: inset 0 0 100px -50px rgba(47, 227, 230, 0.5);
}
.cta__inner h2 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 400; letter-spacing: -0.03em; line-height: 1.04; max-width: 18ch; margin: 0 auto 24px; }
.cta__inner p { max-width: 52ch; margin: 0 auto 36px; color: var(--fg-soft); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 28px; }
.contact-info dd { margin: 8px 0 0; font-size: 16px; color: var(--fg-soft); line-height: 1.6; }
.contact-info dd a:hover { color: var(--accent); }

.form { display: grid; gap: 22px; }
.form .row { display: grid; gap: 22px; }
@media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #50677B; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 227, 230, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-self: start; }
.form__note { font-size: 13px; color: var(--muted); margin: 0; }
.form__note a { color: var(--accent); }

/* ---------- page header (interior) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px); position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% -10%, rgba(47, 227, 230, 0.12), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 300; letter-spacing: -0.04em; line-height: 0.98; max-width: 18ch; }
.page-hero p { margin-top: 28px; }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 500; margin: 32px 0 12px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--fg); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: clamp(64px, 9vw, 110px) 0 40px; background: var(--bg); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand { font-size: 24px; }
.footer__brand p { color: var(--muted); max-width: 38ch; margin: 22px 0 0; font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 18px; }
.footer__col a { display: block; color: var(--fg-soft); padding: 7px 0; 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(--border);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- 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; }
  html { scroll-behavior: auto; }
}

/* ---------- 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.5); 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-panel); padding: 32px 36px; max-width: 480px; border-radius: 6px; border: 1px solid var(--border-strong); box-shadow: 0 0 50px -10px rgba(47,227,230,0.25); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }
.cookie-popup__card p a { color: var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border-strong); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.cookie-popup__actions button:first-child:hover { border-color: var(--fg-soft); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #04111E; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: #51EEF0; }

/* ---------- misc ---------- */
.skip-link { position: absolute; left: -999px; }
.divider-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
