/* palette: bg=#E7E3D8 fg=#191713 accent=#FF4D00 */
/* fonts: display="Archivo" body="Space Grotesk" mono="Space Mono" */

:root {
  --bg: #E7E3D8;        /* warm concrete beige — dominant background */
  --bg-alt: #DCD7C9;    /* alternating section tone */
  --fg: #191713;        /* near-black, primary text */
  --fg-soft: #34302A;   /* slightly lighter foreground */
  --muted: #6E685C;     /* secondary text on concrete */
  --accent: #FF4D00;    /* signal orange — used sparingly */
  --accent-deep: #CC3D00;
  --ink: #131110;       /* dark inverted band */
  --line: #191713;
  --border: rgba(25, 23, 19, 0.16);
  --border-strong: rgba(25, 23, 19, 0.42);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1280px;
}

*, *::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-family: var(--serif); font-weight: 800; }
p { margin: 0; }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }

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

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(231, 227, 216, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom: 1px solid var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__mark {
  width: 14px; height: 14px;
  background: var(--accent);
  display: inline-block;
}
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; gap: 34px; align-items: center; }
  .nav a {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding: 4px 0;
    color: var(--fg-soft);
    transition: color 0.2s var(--ease);
  }
  .nav a::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width 0.28s var(--ease);
  }
  .nav a:hover { color: var(--fg); }
  .nav a:hover::after { width: 100%; }
  .nav a.is-current::after { width: 100%; }
}
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 24px; height: 2px; background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.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 ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 90px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu__foot {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 26px;
  background: var(--fg);
  color: var(--bg);
  border: 2px solid var(--fg);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--fg);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg);
  border-bottom: 2px solid var(--fg);
  padding-bottom: 3px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.arrow-link:hover { color: var(--accent); border-color: var(--accent); gap: 14px; }

/* ---------- SECTIONS ---------- */
section { padding: clamp(80px, 12vw, 160px) 0; }
.section-head { max-width: 820px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-head p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-soft);
  max-width: 620px;
}

/* ---------- HERO (brutalist label grid) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0;
  border-bottom: 2px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
@media (min-width: 768px) { .hero__inner { padding: 120px 32px 48px; } }
.hero__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.hero__tag {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: right;
  line-height: 1.6;
}
.hero h1 {
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--line);
}
@media (min-width: 720px) { .hero__grid { grid-template-columns: repeat(4, 1fr); } }
.hero__cell {
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s var(--ease);
}
@media (min-width: 720px) {
  .hero__cell { border-bottom: 0; border-right: 1px solid var(--border); padding: 22px 20px; }
  .hero__cell:last-child { border-right: 0; }
}
.hero__cell .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.hero__cell .v {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__cell:hover .v { color: var(--accent); }
.hero__media {
  position: relative;
  height: clamp(220px, 34vw, 420px);
  overflow: hidden;
  border: 2px solid var(--line);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__media::after {
  content: "SYS://OQELVIX-SEC";
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: #fff; mix-blend-mode: difference;
}

/* ---------- MARQUEE ---------- */
.marquee {
  padding: 0;
  border-bottom: 2px solid var(--line);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 18px 0;
  animation: marq 32s linear infinite;
  font-family: var(--serif);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track span::after { content: "◆"; color: var(--accent); font-size: 14px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SERVICES GRID ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}
@media (min-width: 700px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 34px 30px 40px;
  background: var(--bg);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card:hover { background: var(--ink); color: var(--bg); }
.card__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 26px;
}
.card h3 {
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.card:hover p { color: rgba(231,227,216,0.72); }
.card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.card ul li { padding: 7px 0; border-top: 1px solid var(--border); }
.card:hover ul li { border-color: rgba(231,227,216,0.2); }

/* ---------- MANIFESTO (dark band) ---------- */
.manifesto {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
}
.manifesto .wrap { max-width: 980px; }
.manifesto .quote-mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.manifesto p.statement {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.manifesto p.statement em { font-style: normal; color: var(--accent); }
.manifesto .sig {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(231,227,216,0.6);
}

/* ---------- STATS ---------- */
.stats { background: var(--bg-alt); }
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}
@media (min-width: 800px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 40px 26px;
}
.stat .num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.stat .num em { font-style: normal; color: var(--accent); }
.stat .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 14px;
  text-transform: uppercase;
}

/* ---------- LIBRARY / TOPICS ---------- */
.topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}
@media (min-width: 640px) { .topics__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .topics__grid { grid-template-columns: repeat(3, 1fr); } }
.topic {
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 30px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  transition: background 0.25s var(--ease);
}
.topic:hover { background: var(--bg-alt); }
.topic .tk {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.topic h3 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: -0.01em; }
.topic p { color: var(--muted); font-size: 15px; }
.topic .arrow-link { margin-top: auto; align-self: flex-start; }

/* ---------- STEPS (numbered process) ---------- */
.steps { border-top: 2px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 40px 0;
  border-bottom: 2px solid var(--line);
}
@media (min-width: 800px) { .step { grid-template-columns: 120px 1fr 1fr; gap: 40px; align-items: start; } }
.step__n {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}
.step h3 { font-size: 1.7rem; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.02; }
.step p { color: var(--fg-soft); font-size: 17px; }

/* ---------- IMAGE BAND ---------- */
.band {
  position: relative;
  height: clamp(300px, 46vw, 560px);
  overflow: hidden;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 0;
}
.band img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); }
.band__cap {
  position: absolute; left: 24px; bottom: 24px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; mix-blend-mode: difference;
}

/* ---------- FAQ ---------- */
.faq__item {
  border-bottom: 2px solid var(--line);
  padding: 30px 0;
}
.faq__item:first-child { border-top: 2px solid var(--line); }
.faq__item h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
}
.faq__item h3 .q { font-family: var(--mono); font-size: 13px; color: var(--accent); padding-top: 8px; }
.faq__item p { color: var(--fg-soft); font-size: 17px; max-width: 760px; }

/* ---------- TESTIMONIALS ---------- */
.quotes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}
@media (min-width: 800px) { .quotes__grid { grid-template-columns: 1fr 1fr; } }
.quote {
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 36px 30px;
}
.quote p {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.quote .who {
  margin-top: 26px;
  display: flex; align-items: center; gap: 14px;
}
.avatar {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 15px;
  color: #fff; background: var(--accent);
}
.quote .who .meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); line-height: 1.5; }
.quote .who .meta strong { color: var(--fg); font-weight: 700; display: block; }

/* ---------- CTA ---------- */
.cta {
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 16ch;
  margin: 0 auto;
}
.cta p { margin: 26px auto 40px; max-width: 560px; font-size: 18px; color: rgba(255,255,255,0.9); }
.cta .btn { background: var(--fg); border-color: var(--fg); color: var(--bg); }
.cta .btn:hover { background: #fff; border-color: #fff; color: var(--fg); }

/* ---------- CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 2px solid var(--line); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-info { padding: 48px 30px; border-bottom: 2px solid var(--line); }
@media (min-width: 900px) { .contact-info { border-bottom: 0; border-right: 2px solid var(--line); } }
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-top: 28px;
}
.contact-info dd { margin: 6px 0 0; font-size: 17px; font-family: var(--serif); font-weight: 600; }
.form { padding: 48px 30px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--fg);
  background: var(--bg-alt);
  border: 2px solid var(--line);
  border-radius: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- LEGAL ---------- */
.legal { padding-top: 140px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.98; margin-bottom: 20px; }
.legal h2 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.01em; margin: 44px 0 14px; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16.5px; line-height: 1.8; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal .updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* page hero for inner pages */
.page-hero {
  padding: 150px 0 clamp(60px, 8vw, 100px);
  border-bottom: 2px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { margin-top: 26px; max-width: 640px; font-size: 19px; color: var(--fg-soft); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(231,227,216,0.16);
}
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand { color: var(--bg); font-size: 26px; margin-bottom: 18px; }
.footer__brand p { color: rgba(231,227,216,0.6); font-size: 15px; max-width: 320px; }
.footer h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(231,227,216,0.5); margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 15px; color: rgba(231,227,216,0.85); transition: color 0.2s var(--ease); }
.footer ul a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 30px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: rgba(231,227,216,0.5);
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  .marquee__track { animation: none; }
}

/* ---------- COOKIE POPUP ---------- */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end;
  padding: 24px;
  background: rgba(19,17,16,0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 34px;
  max-width: 480px;
  border: 2px solid var(--line);
  border-radius: 0;
}
.cookie-popup__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.cookie-popup__card h3 { font-size: 1.35rem; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14.5px; color: var(--fg-soft); line-height: 1.7; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 12px 24px;
  border: 2px solid var(--line);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
