/* palette: bg=#0A0E0A fg=#F3F7EE accent=#A6FF3B */
/* fonts: display="Space Grotesk" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #0A0E0A;          /* dominant near-black background from reference */
  --bg-alt: #10160F;      /* alternating section background */
  --card: #121712;        /* dark card surface */
  --card-2: #161D15;      /* raised card surface */
  --fg: #F3F7EE;          /* primary text */
  --fg-soft: #CBD4C2;     /* slightly softer fg */
  --muted: #8A9384;       /* secondary muted text */
  --accent: #A6FF3B;      /* neon lime accent from hero/CTA */
  --accent-deep: #7DD416; /* darker accent for hover */
  --accent-soft: rgba(166, 255, 59, 0.12);
  --border: rgba(243, 247, 238, 0.10);
  --border-strong: rgba(243, 247, 238, 0.18);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains 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);
  font-size: 17px;
  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; line-height: 1.08; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

section { padding: clamp(72px, 12vw, 150px) 0; }

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

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.btn--primary { background: var(--accent); color: #0A0E0A; }
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.btn svg { width: 16px; height: 16px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.textlink:hover { gap: 14px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 10, 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);
  background: rgba(10, 14, 10, 0.9);
  box-shadow: 0 10px 40px -16px rgba(0, 0, 0, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
}
.brand__mark svg { width: 30px; height: 30px; }
.nav { display: none; gap: 34px; align-items: center; }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  font-weight: 500;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--accent);
}
.header__cta { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.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); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 74px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 24px; justify-content: center; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
  opacity: 0.28;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(166, 255, 59, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(10,14,10,0.6) 0%, rgba(10,14,10,0.85) 60%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 900px; }
.hero h1 {
  font-size: clamp(3.1rem, 9.5vw, 7.4rem);
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 26px 0 0;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead {
  margin-top: 28px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--fg-soft);
  max-width: 620px;
  line-height: 1.7;
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.hero__stat .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  display: block;
  letter-spacing: -0.02em;
}
.hero__stat .lbl { font-size: 13px; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after { content: "◆"; color: var(--accent); font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head h2 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
  margin-top: 20px;
  font-weight: 400;
}
.sec-head p { margin-top: 22px; color: var(--fg-soft); font-size: 1.05rem; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ---------- Service / feature grid ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.7);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.card__icon svg { width: 26px; height: 26px; stroke: var(--accent); }
.card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.97rem; line-height: 1.7; }
.card__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

/* ---------- Feature split ---------- */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 72px; } }
.split--rev .split__media { order: -1; }
@media (min-width: 960px) { .split--rev .split__media { order: 0; } }
.split__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; font-weight: 400; }
.split__list { margin-top: 30px; display: grid; gap: 18px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; color: var(--fg-soft); }
.split__list svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--accent); margin-top: 2px; }
.split__list strong { color: var(--fg); font-weight: 600; }

/* ---------- Manifesto / dark band ---------- */
.manifesto {
  background: var(--accent);
  color: #0A0E0A;
}
.manifesto .container { text-align: center; }
.manifesto blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 980px;
  margin: 0 auto;
}
.manifesto .quote-mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.4;
  display: block;
  margin-bottom: 30px;
  opacity: 0.6;
}
.manifesto cite {
  display: block;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.75;
}

/* ---------- Stats band ---------- */
.statband { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.statband__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 20px; text-align: center; }
@media (min-width: 768px) { .statband__grid { grid-template-columns: repeat(4, 1fr); } }
.statband .num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); color: var(--accent); letter-spacing: -0.02em; display: block; }
.statband .lbl { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ---------- Process ---------- */
.steps { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.step { background: var(--card); padding: 38px 32px; display: grid; gap: 12px; }
.step__n { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.step h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 0.97rem; }
@media (min-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Work / case cards ---------- */
.work-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.work-card__media { aspect-ratio: 16 / 11; overflow: hidden; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card__body { padding: 26px 26px 30px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-size: 1.35rem; margin: 12px 0 10px; letter-spacing: -0.01em; }
.work-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.quote-card p { font-size: 1.08rem; line-height: 1.65; color: var(--fg-soft); }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 16px;
  color: #0A0E0A; flex-shrink: 0;
}
.who .name { font-weight: 600; font-size: 0.95rem; }
.who .role { font-size: 0.82rem; color: var(--muted); }
.placeholder-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--muted); opacity: 0.6; text-transform: uppercase; }

/* ---------- Team / principles ---------- */
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; }
.team-card .avatar { width: 58px; height: 58px; font-size: 20px; margin-bottom: 20px; }
.team-card h3 { font-size: 1.25rem; }
.team-card .role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 6px 0 14px; }
.team-card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.faq__q .ico { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s; }
.faq__q .ico::before, .faq__q .ico::after { content: ""; position: absolute; background: var(--accent); }
.faq__q .ico { position: relative; }
.faq__q .ico::before { width: 12px; height: 2px; }
.faq__q .ico::after { width: 2px; height: 12px; transition: transform 0.3s var(--ease); }
.faq__item[data-open="true"] .ico::after { transform: scaleY(0); }
.faq__item[data-open="true"] .ico { background: var(--accent-soft); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a-inner { padding: 0 0 28px; color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 90%; }

/* ---------- CTA ---------- */
.cta { background: var(--bg-alt); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(166,255,59,0.14), transparent 65%);
}
.cta .container { position: relative; text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.02em; font-weight: 400; max-width: 900px; margin: 18px auto 0; }
.cta p { color: var(--fg-soft); max-width: 560px; margin: 24px auto 0; }
.cta__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.info-block { margin-bottom: 30px; }
.info-block .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.info-block .v { color: var(--fg-soft); font-size: 1.02rem; }
.form { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 36px 32px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 9px; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; max-width: 320px; }
.footer__col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; font-weight: 500; }
.footer__col a { display: block; color: var(--fg-soft); font-size: 0.95rem; padding: 7px 0; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--fg-soft); }

/* ---------- Legal pages ---------- */
.legal { padding-top: 140px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); letter-spacing: -0.02em; font-weight: 400; }
.legal .updated { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-top: 16px; }
.legal h2 { font-size: 1.5rem; margin-top: 48px; letter-spacing: -0.01em; }
.legal p, .legal li { color: var(--fg-soft); margin-top: 16px; font-size: 1rem; line-height: 1.75; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal li { margin-top: 8px; }
.legal a { color: var(--accent); }

/* ---------- Thanks ---------- */
.thanks { min-height: 80vh; display: grid; place-items: center; text-align: center; padding-top: 120px; }
.thanks__icon { width: 88px; height: 88px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; margin: 0 auto 32px; }
.thanks__icon svg { width: 42px; height: 42px; stroke: var(--accent); }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: -0.02em; font-weight: 400; }
.thanks p { color: var(--fg-soft); max-width: 480px; margin: 22px auto 36px; }

/* ---------- 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; transition-delay: calc(var(--i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- Cookie popup ---------- */
.cookie-popup { position:fixed; inset:0; z-index:9999; display:flex; align-items:flex-end; justify-content:center; padding:24px; background:rgba(0,0,0,0.55); 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(--card); border:1px solid var(--border); padding:32px 36px; max-width:480px; border-radius:16px; }
.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.4rem; letter-spacing:-0.01em; }
.cookie-popup__card p { color:var(--muted); font-size:0.92rem; margin-top:12px; line-height:1.65; }
.cookie-popup__actions { display:flex; gap:12px; margin-top:24px; }
.cookie-popup__actions button { padding:12px 24px; border:1px solid var(--border-strong); border-radius:9999px; cursor:pointer; font-size:14px; font-weight:600; flex:1; transition:background 0.25s, transform 0.25s; }
.cookie-popup__actions button:hover { transform:translateY(-1px); }
.cookie-popup__actions button:last-child { background:var(--accent); color:#0A0E0A; border-color:var(--accent); }

@media (min-width: 768px) { .cookie-popup { align-items:center; } }
