/* palette: bg=#0b1119 fg=#eef4f8 accent=#5c9ec9 */
/* fonts: display="Archivo" body="Inter" mono="Space Mono" */

:root {
  --bg: #0b1119;          /* deep blue-black — dominant background from reference */
  --bg-alt: #0f1826;      /* alternating dark section */
  --bg-mist: #dbe6ee;     /* misty light band (inverted manifesto) */
  --fg: #eef4f8;          /* near-white primary text */
  --fg-soft: #c4d2dc;     /* soft foreground */
  --muted: #7d8f9e;       /* secondary text */
  --accent: #5c9ec9;      /* ice-blue accent from hero mist */
  --accent-deep: #3d7ea8; /* darker accent for hover */
  --line: rgba(238, 244, 248, 0.14);
  --line-dark: rgba(11, 17, 25, 0.14);
  --border: rgba(238, 244, 248, 0.14);

  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 32px);
}

*, *::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; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  flex: none;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  background: rgba(11, 17, 25, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
}
.brand__dot { color: var(--accent); }
.brand__b { color: var(--muted); }
.nav {
  display: none;
  gap: 34px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav a { color: var(--fg-soft); transition: color .25s var(--ease); position: relative; }
.nav a:hover { color: var(--fg); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease);
}
.nav a:hover::after { width: 100%; }

.header__cta {
  display: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.header__cta:hover { border-color: var(--accent); color: var(--accent); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--fg); transition: transform .3s 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: 0;
  z-index: 99;
  background: var(--bg);
  padding: 100px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg-soft);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__meta { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }

@media (min-width: 1024px) {
  .nav, .header__cta { display: flex; }
  .menu-toggle { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: -74px;
  padding-top: 74px;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,17,25,0.72) 0%, rgba(11,17,25,0.05) 34%, rgba(11,17,25,0.35) 72%, rgba(11,17,25,0.92) 100%);
}
.hero__top {
  position: absolute;
  top: 96px; left: 0; right: 0;
  display: flex; justify-content: center;
  padding-inline: var(--pad);
  text-align: center;
}
.hero__inner { padding-bottom: clamp(48px, 9vh, 110px); position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead {
  margin-top: 26px;
  max-width: 46ch;
  color: var(--fg-soft);
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  line-height: 1.7;
}
.hero__cta-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* floating micro-labels like the reference */
.hero__caption {
  position: absolute;
  bottom: clamp(48px, 9vh, 110px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  display: none;
}
.hero__caption--l { left: var(--pad); }
.hero__caption--r { right: var(--pad); text-align: right; color: var(--fg-soft); }
.hero__caption span { display: block; color: var(--muted); font-size: 10px; margin-top: 6px; }
@media (min-width: 1024px) {
  .hero__caption { display: block; bottom: auto; top: 42%; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #08121b;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 14px 40px -12px rgba(92,158,201,0.6); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; box-shadow: none; }
.link-arrow {
  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 .25s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-alt);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: scrollX 34s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track span::after { content: "◆"; color: var(--accent); font-size: 8px; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTION ---------- */
.section { padding-block: clamp(80px, 12vw, 160px); }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 820px; margin-bottom: clamp(44px, 6vw, 80px); }
.section__head .eyebrow { margin-bottom: 22px; }
.section h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 300;
}
.section__head p { margin-top: 22px; color: var(--fg-soft); font-size: clamp(1rem, 1.6vw, 1.14rem); max-width: 60ch; }

/* ---------- INTRO / MANIFESTO STATEMENT ---------- */
.statement { text-align: left; }
.statement p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 4.4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0;
}
.statement em { font-style: normal; color: var(--accent); }
.statement .statement__by { margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* inverted misty band */
.band-mist {
  background: var(--bg-mist);
  color: #12202c;
}
.band-mist .eyebrow { color: var(--accent-deep); }
.band-mist .eyebrow::before { background: var(--accent-deep); box-shadow: none; }
.band-mist .quote {
  font-family: var(--serif);
  font-weight: 300;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  position: relative;
}
.band-mist .quote::before {
  content: "“";
  display: block;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 24px;
}
.band-mist .quote em { font-style: normal; color: var(--accent-deep); }
.band-mist .quote__by { text-align: center; margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #5a6b78; }

/* ---------- TIMELINE / PROGRESSION ---------- */
.timeline { display: grid; gap: 0; }
.timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: clamp(34px, 5vw, 54px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.timeline__item:last-child { border-bottom: 1px solid var(--line); }
.timeline__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.timeline__body h3 {
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  letter-spacing: -0.02em;
  font-weight: 300;
  margin-bottom: 14px;
}
.timeline__body p { color: var(--fg-soft); max-width: 62ch; margin: 0; }
.timeline__tag { margin-top: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 768px) {
  .timeline__item { grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
}

/* ---------- SERVICES GRID ---------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  padding: clamp(30px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  transition: background .35s var(--ease);
}
.section--alt .card { background: var(--bg-alt); }
.card:hover { background: var(--bg-alt); }
.section--alt .card:hover { background: #13202f; }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--accent); }
.card h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); letter-spacing: -0.015em; font-weight: 400; margin-top: 6px; }
.card p { color: var(--fg-soft); font-size: 0.98rem; margin: 0; }
.card__foot { margin-top: auto; padding-top: 20px; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: clamp(30px, 4vw, 48px); }
.section--alt .stat { background: var(--bg-alt); }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.03em; line-height: 1; }
.stat__num em { font-style: normal; color: var(--accent); }
.stat__label { margin-top: 16px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- FEATURE SPLIT ---------- */
.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev .split__media { order: -1; } }
.split__media { overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split h2 { margin-bottom: 22px; }
.split p { color: var(--fg-soft); margin: 0 0 18px; }
.split__list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 14px; align-items: baseline; color: var(--fg-soft); }
.split__list li::before { content: "→"; color: var(--accent); flex: none; }

/* ---------- PRINCIPLES (text cards) ---------- */
.principles { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(2, 1fr); } }
.principle { background: var(--bg); padding: clamp(30px, 4vw, 48px); }
.section--alt .principle { background: var(--bg-alt); }
.principle__k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--accent); }
.principle h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 300; letter-spacing: -0.02em; margin: 14px 0; }
.principle p { color: var(--fg-soft); margin: 0; }

/* ---------- TEAM (monograms, no faces) ---------- */
.team { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { background: var(--bg); padding: clamp(28px, 3.5vw, 40px); display: flex; flex-direction: column; gap: 18px; }
.section--alt .member { background: var(--bg-alt); }
.avatar {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; letter-spacing: 0.02em;
  color: #08121b;
  border-radius: 4px;
}
.member h3 { font-size: 1.25rem; font-weight: 400; letter-spacing: -0.01em; }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }
.member p { color: var(--fg-soft); font-size: 0.95rem; margin: 6px 0 0; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 940px; }
.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: clamp(24px, 3vw, 34px) 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  letter-spacing: -0.015em;
  color: var(--fg);
}
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item[data-open="true"] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding-bottom: clamp(24px, 3vw, 34px); color: var(--fg-soft); max-width: 68ch; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 14vw, 180px);
  text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,17,25,0.86), rgba(11,17,25,0.94)); }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5.4rem); letter-spacing: -0.03em; line-height: 1; max-width: 16ch; margin: 0 auto; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { margin: 26px auto 0; max-width: 50ch; color: var(--fg-soft); }
.cta__row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FORM ---------- */
.form-wrap { display: grid; gap: clamp(40px, 6vw, 72px); }
@media (min-width: 900px) { .form-wrap { grid-template-columns: 0.9fr 1.1fr; } }
.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 {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color .25s 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__row { display: grid; gap: 20px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.contact-aside { display: grid; gap: 28px; align-content: start; }
.contact-block h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: 8px; }
.contact-block p { margin: 0; color: var(--fg-soft); }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(60px, 8vw, 96px); }
.footer__mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 14vw, 11rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.footer__mark span { color: var(--muted); }
.footer__grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: var(--fg-soft); margin-bottom: 10px; font-size: 0.95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted);
}

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

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { padding-top: clamp(120px, 16vh, 200px); padding-bottom: clamp(50px, 8vw, 90px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.8rem, 9vw, 6.5rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 300; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 26px; max-width: 54ch; color: var(--fg-soft); font-size: clamp(1rem, 2vw, 1.18rem); }
.page-hero .eyebrow { margin-bottom: 24px; }

/* ---------- LEGAL ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 300; letter-spacing: -0.02em; margin: 48px 0 16px; }
.legal h3 { font-size: 1.15rem; font-weight: 400; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 1rem; line-height: 1.8; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--fg); font-weight: 600; }

/* ---------- COOKIE POPUP ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(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-alt); border: 1px solid var(--line); padding: 32px 36px; max-width: 480px; border-radius: 6px; }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.cookie-popup__card p { color: var(--fg-soft); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.cookie-popup__card p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--line); cursor: pointer; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; transition: border-color .25s, background .25s; }
.cookie-popup__actions button:hover { border-color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #08121b; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

::selection { background: var(--accent); color: #08121b; }
