/* palette: bg=#FFFFFF fg=#0C0D10 accent=#0A6CFF */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;          /* dominant background from reference */
  --bg-alt: #F4F6FA;      /* alternating light section */
  --fg: #0C0D10;          /* near-black text/foreground from reference dark band */
  --fg-soft: #24262E;     /* slightly lighter fg */
  --muted: #676C78;       /* secondary text */
  --accent: #0A6CFF;      /* electric blue from reference hero */
  --accent-deep: #0A50C4; /* darker accent for hover */
  --accent-soft: #E7F0FF; /* pale blue wash */
  --ink: #0C0D10;         /* dark band background */
  --line: #E4E7EE;
  --border: rgba(12, 13, 16, 0.12);
  --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);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  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; line-height: 1.05; }
p { margin: 0; }

/* ---------- 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; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow--light { color: rgba(255,255,255,0.72); }
.eyebrow--light::before { background: rgba(255,255,255,0.5); }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.7; color: var(--fg-soft); max-width: 60ch; }
.muted { color: var(--muted); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(12,13,16,0.06), 0 10px 30px -18px rgba(12,13,16,0.25);
  border-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -0.03em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff; font-family: var(--mono); font-size: 13px; font-weight: 600;
  box-shadow: 0 6px 18px -6px rgba(10,108,255,0.7);
}
.nav { display: none; gap: 34px; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { font-size: 14px; color: var(--fg-soft); position: relative; padding: 4px 0; transition: color .2s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -10px rgba(10,108,255,0.8); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--accent); }
.arrow-link span { transition: transform .25s var(--ease); }
.arrow-link:hover span { transform: translateX(5px); }

/* hamburger */
.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); transition: transform .3s var(--ease), opacity .3s var(--ease); border-radius: 2px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--bg);
  padding: 32px 24px 48px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--accent);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; animation: heroZoom 9s var(--ease) forwards; mix-blend-mode: luminosity; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 15% 12%, rgba(255,255,255,0.14), transparent 55%),
    linear-gradient(180deg, rgba(10,108,255,0.55) 0%, rgba(9,74,196,0.72) 100%);
}
@keyframes heroZoom { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__top { position: absolute; top: calc(-100vh + 130px); left: 0; right: 0; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.hero h1 {
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.92;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: #cfe0ff; }
.hero__row { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
@media (min-width: 860px) { .hero__row { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.hero__tagline { font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.55; max-width: 40ch; color: rgba(255,255,255,0.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); z-index: 2; }

/* ---------- stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 34px 26px; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.stat__label { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* ---------- section head ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head h2 { font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -0.03em; line-height: 1.02; }
.sec-head p { margin-top: 22px; }
.sec-head--between { display: flex; flex-direction: column; gap: 24px; max-width: none; }
@media (min-width: 860px) { .sec-head--between { flex-direction: row; align-items: flex-end; justify-content: space-between; } .sec-head--between > div { max-width: 640px; } }

/* ---------- services grid ---------- */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(12,13,16,0.14); border-color: transparent; }
.card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.card h3 { font-size: 1.4rem; letter-spacing: -0.02em; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.card__list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 8px; }
.card__list li { font-size: 14px; color: var(--fg-soft); padding-left: 20px; position: relative; }
.card__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---------- timeline (Skeleton D) ---------- */
.timeline { position: relative; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--accent), var(--line)); }
@media (min-width: 860px) { .timeline::before { left: 50%; transform: translateX(-1px); } }
.tl-item { position: relative; padding: 0 0 48px 52px; }
@media (min-width: 860px) {
  .tl-item { width: 50%; padding: 0 0 64px 0; }
  .tl-item:nth-child(odd) { left: 0; padding-right: 56px; text-align: right; }
  .tl-item:nth-child(even) { left: 50%; padding-left: 56px; }
}
.tl-item__dot {
  position: absolute; left: 8px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--accent); z-index: 1;
}
@media (min-width: 860px) {
  .tl-item:nth-child(odd) .tl-item__dot { left: auto; right: -8px; }
  .tl-item:nth-child(even) .tl-item__dot { left: -8px; }
}
.tl-item__step { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; }
.tl-item h3 { font-size: 1.5rem; margin: 10px 0 12px; letter-spacing: -0.02em; }
.tl-item p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ---------- manifesto (dark band) ---------- */
.manifesto { background: var(--ink); color: #fff; }
.manifesto .container { text-align: center; }
.manifesto__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.16; letter-spacing: -0.03em;
  max-width: 940px; margin: 0 auto;
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__mark { font-family: var(--serif); font-size: clamp(5rem, 12vw, 9rem); line-height: 0.4; color: var(--accent); display: block; height: 0.5em; }
.manifesto__by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 44px; }

/* dark section generic */
.dark { background: var(--ink); color: #fff; }
.dark .sec-head p, .dark .lead { color: rgba(255,255,255,0.72); }
.dark .card { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.dark .card:hover { border-color: rgba(255,255,255,0.22); box-shadow: none; }
.dark .card p { color: rgba(255,255,255,0.66); }
.dark .card__list li { color: rgba(255,255,255,0.8); }

/* ---------- work / cases ---------- */
.cases { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .cases { grid-template-columns: repeat(2, 1fr); } }
.case {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 3; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
}
.case img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.case::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,13,16,0) 30%, rgba(12,13,16,0.85) 100%); }
.case:hover img { transform: scale(1.05); }
.case__body { padding: 30px; width: 100%; }
.case__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.case__body h3 { font-size: 1.6rem; margin: 10px 0 6px; letter-spacing: -0.02em; }
.case__body p { font-size: 14px; color: rgba(255,255,255,0.78); }

/* ---------- team (monograms, no faces) ---------- */
.team { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team { grid-template-columns: repeat(4, 1fr); } }
.member { border: 1px solid var(--line); border-radius: 14px; padding: 26px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.member:hover { transform: translateY(-3px); border-color: var(--border); }
.avatar { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 18px; }
.member h3 { font-size: 1.15rem; }
.member__role { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 6px 0 12px; }
.member p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; background: var(--bg); }
.quote p { font-size: 16px; line-height: 1.65; color: var(--fg-soft); }
.quote footer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote__name { font-weight: 600; font-size: 14px; }
.quote__meta { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 26px 0; font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.4rem); letter-spacing: -0.015em; }
.faq__q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.faq__q .plus::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq__q .plus::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__item[data-open="true"] .plus::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a > div { padding: 0 0 26px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta { background: var(--accent); color: #fff; text-align: center; }
.cta h2 { font-size: clamp(2.3rem, 6vw, 4.2rem); letter-spacing: -0.03em; max-width: 16ch; margin: 0 auto; font-weight: 400; }
.cta p { margin: 24px auto 36px; max-width: 52ch; color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- contact / form ---------- */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 72px; } }
.info-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 26px; }
.info-list li { display: flex; flex-direction: column; gap: 4px; }
.info-list .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.info-list .v { font-size: 16px; color: var(--fg-soft); }
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.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: inherit; font-size: 15px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); color: var(--fg); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(10,108,255,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-content: center; margin-top: 6px; }
.form__note { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ---------- page hero (interior) ---------- */
.page-hero { background: var(--bg-alt); padding: clamp(120px, 16vw, 190px) 0 clamp(60px, 8vw, 96px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.8rem, 8vw, 6rem); letter-spacing: -0.035em; font-weight: 400; line-height: 0.98; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 26px; }

/* ---------- values / list rows ---------- */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 40px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .row { grid-template-columns: 0.5fr 1.5fr; gap: 40px; } }
.row__k { font-family: var(--serif); font-size: 1.5rem; letter-spacing: -0.02em; display: flex; gap: 14px; align-items: baseline; }
.row__k .n { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.row__v p { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ---------- prose (legal) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 48px 0 16px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 10px; }
.prose p { color: var(--fg-soft); margin: 0 0 16px; font-size: 16px; line-height: 1.75; }
.prose ul { color: var(--fg-soft); font-size: 16px; line-height: 1.75; padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #fff; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 44px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -0.03em; }
.footer__blurb { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; max-width: 42ch; margin-top: 20px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; font-weight: 400; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.78); font-size: 14.5px; padding: 6px 0; }
.footer__col a { transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-direction: column; gap: 14px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.5); }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.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__bg img { animation: none; }
}

/* ---------- 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: 14px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5); }
.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-size: 1.35rem; margin-bottom: 10px; }
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; border-radius: 999px; transition: background .2s, color .2s, transform .2s; }
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.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); }

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