/* palette: bg=#0A0A14 fg=#F4F4FA accent=#8B5CF6 */
/* fonts: display="Fraunces" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #0A0A14;          /* dominant background */
  --bg-alt: #10101E;      /* alternating section background */
  --bg-card: #14142433;   /* translucent card fill */
  --fg: #F4F4FA;          /* primary text */
  --fg-soft: #CDCDDD;     /* slightly softer fg */
  --muted: #8A8AA6;       /* secondary text */
  --accent: #8B5CF6;      /* violet brand accent */
  --accent-cyan: #22D3EE; /* cyan gradient end */
  --accent-deep: #6D28D9; /* darker accent for hover */
  --grad: linear-gradient(118deg, #8B5CF6 0%, #6366F1 42%, #22D3EE 100%);
  --grad-soft: linear-gradient(118deg, rgba(139,92,246,0.16), rgba(34,211,238,0.10));
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --serif: 'Fraunces', ui-serif, Georgia, 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);
  --container: 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;
  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; }
::selection { background: var(--accent); color: #fff; }

/* subtle ambient glow on the page */
body::before {
  content: "";
  position: fixed;
  top: -20vh; left: 50%;
  width: 90vw; height: 70vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.16), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

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

.section { position: relative; z-index: 1; padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
}
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; }
.h1 { font-size: clamp(3.1rem, 9vw, 7.5rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 300; }
.h2 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.02em; }
.h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.12; letter-spacing: -0.01em; }
em.accent {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.72; color: var(--fg-soft); }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.3s;
  will-change: transform;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px -10px rgba(139,92,246,0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -12px rgba(139,92,246,0.85); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); }
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--fg);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.arrow-link::after { content: "→"; transition: transform 0.3s var(--ease); color: var(--accent-cyan); }
.arrow-link:hover { color: var(--accent-cyan); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ---------- announcement bar ---------- */
.topbar {
  position: relative; z-index: 101;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 20px; text-align: center; }
.topbar__side { display: none; }
.topbar strong { color: var(--accent-cyan); font-weight: 500; }
@media (min-width: 900px) {
  .topbar__inner { justify-content: space-between; }
  .topbar__side { display: inline-flex; gap: 22px; }
  .topbar__side a:hover { color: var(--fg); }
}

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 20, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  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;
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px -16px rgba(0,0,0,0.8);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 20px;
}
@media (min-width: 768px) { .header__inner { padding: 18px 32px; } }
.brand {
  grid-column: 2;
  justify-self: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding-left: 0.32em; /* optical centering for tracking */
  white-space: nowrap;
}
.brand span { color: var(--accent); }
.header__left { grid-column: 1; justify-self: start; }
.header__right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 26px; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; gap: 30px; }
  .nav-desktop a {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--fg-soft); transition: color 0.3s; font-weight: 500;
  }
  .nav-desktop a:hover { color: var(--accent-cyan); }
}
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: -10px;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--fg); transition: transform 0.35s var(--ease), opacity 0.35s; }
.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); }
.menu-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-soft); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 120px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  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-cyan); }
.mobile-menu__foot { margin-top: 36px; font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 2; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(10,10,20,0.35), rgba(10,10,20,0.86) 78%),
    linear-gradient(180deg, rgba(10,10,20,0.5), rgba(10,10,20,0.55));
}
.hero__inner { position: relative; z-index: 2; width: 100%; text-align: center; padding: 120px 0 80px; }
.hero h1 { max-width: 14ch; margin: 0 auto 28px; }
.hero .lead { max-width: 56ch; margin: 0 auto 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.hero__scroll::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--accent-cyan), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- editorial split (heritage) ---------- */
.split { display: grid; gap: 36px; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split__title { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 300; }
.split__body p { margin: 0 0 22px; color: var(--fg-soft); }
.split__body p:last-child { margin-bottom: 0; }

/* full-bleed band */
.bleed { position: relative; z-index: 1; height: clamp(320px, 52vw, 620px); overflow: hidden; }
.bleed img { width: 100%; height: 100%; object-fit: cover; }
.bleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,20,0.5), rgba(10,10,20,0.15) 30%, rgba(10,10,20,0.55)); }
.bleed__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(28px, 5vw, 56px);
}
.bleed__caption .h3 { max-width: 22ch; }

/* ---------- section head ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin: 22px 0 0; }

/* ---------- services grid ---------- */
.cards { display: grid; gap: 20px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  position: relative;
  padding: 34px 30px 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7); }
.card:hover::before { transform: scaleX(1); }
.card__no { font-family: var(--mono); font-size: 12px; color: var(--accent-cyan); letter-spacing: 0.1em; }
.card h3 { margin: 18px 0 12px; font-size: 1.4rem; }
.card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.7; }
.card__tag { display: inline-block; margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--fg-soft); text-transform: uppercase; }

/* ---------- stats ---------- */
.stats { display: grid; gap: 8px; border-top: 1px solid var(--border); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 40px 8px 40px 0; border-bottom: 1px solid var(--border); }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 28ch; }

/* ---------- manifesto (inverted) ---------- */
.manifesto { position: relative; z-index: 1; background: var(--fg); color: var(--bg); padding: clamp(90px, 13vw, 180px) 0; }
.manifesto .container { text-align: center; }
.manifesto__quote { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: 1.18; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; }
.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__quote em { font-style: italic; color: var(--accent-deep); }
.manifesto__by { margin-top: 40px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #5a5a72; }

/* ---------- featured work ---------- */
.work-list { display: grid; gap: 0; }
.work {
  display: grid; gap: 14px; align-items: center;
  padding: 34px 0; border-top: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease);
}
.work:last-child { border-bottom: 1px solid var(--border); }
.work:hover { padding-left: 14px; }
@media (min-width: 860px) { .work { grid-template-columns: 0.4fr 1.3fr 1fr auto; gap: 30px; } }
.work__no { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.work__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; letter-spacing: -0.01em; }
.work__desc { font-size: 15px; color: var(--muted); }
.work__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-cyan); }

/* ---------- community / how we work ---------- */
.steps { display: grid; gap: 22px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border-top: 1px solid var(--border-strong); padding-top: 22px; }
.step__no { font-family: var(--mono); font-size: 12px; color: var(--accent-cyan); }
.step h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.step p { margin: 0; font-size: 15px; color: var(--muted); }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 22px; }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px 30px; background: var(--grad-soft); }
.quote-card p { font-family: var(--serif); font-weight: 300; font-size: 1.25rem; line-height: 1.45; letter-spacing: -0.01em; margin: 0 0 26px; }
.quote-card footer { display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 500; font-size: 1rem; color: #fff; flex: none; }
.quote-card cite { font-style: normal; }
.quote-card cite b { display: block; font-weight: 600; font-size: 14px; }
.quote-card cite span { font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--border); padding: 4px 0; }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 40px 26px 0; position: relative;
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.01em; transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 26px; font-family: var(--mono); color: var(--accent-cyan); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent-cyan); }
.faq p { margin: 0 0 26px; max-width: 70ch; color: var(--fg-soft); }

/* ---------- CTA ---------- */
.cta-band { position: relative; z-index: 1; text-align: center; }
.cta-band .h2 { max-width: 18ch; margin: 0 auto 20px; }
.cta-band p { max-width: 52ch; margin: 0 auto 36px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-cyan); margin-top: 28px; }
.contact-info dd { margin: 8px 0 0; font-size: 16px; color: var(--fg-soft); }
.form { display: grid; gap: 18px; }
.field { display: grid; 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 {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.03); color: var(--fg);
  border: 1px solid var(--border); border-radius: 12px;
  font-family: var(--sans); font-size: 16px; transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: #565670; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: rgba(139,92,246,0.06); }
.field textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; gap: 18px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form button[type="submit"] { justify-self: start; margin-top: 6px; }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 1; background: var(--bg-alt); border-top: 1px solid var(--border); padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand .brand { justify-self: start; padding-left: 0; margin-bottom: 18px; }
.footer__brand p { max-width: 34ch; color: var(--muted); font-size: 15px; }
.footer__col h4 { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col a, .footer__col span { display: block; font-size: 15px; color: var(--fg-soft); padding: 7px 0; transition: color 0.3s; }
.footer__col a:hover { color: var(--accent-cyan); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase;
}

/* ---------- legal / article pages ---------- */
.doc { max-width: 800px; margin: 0 auto; }
.doc h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; letter-spacing: -0.02em; margin-bottom: 12px; }
.doc .doc__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 48px; letter-spacing: 0.06em; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 48px 0 16px; letter-spacing: -0.01em; }
.doc p, .doc li { color: var(--fg-soft); }
.doc p { margin: 0 0 18px; }
.doc ul { padding-left: 20px; margin: 0 0 18px; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--accent-cyan); }

/* ---------- thanks ---------- */
.thanks { min-height: 76vh; display: grid; place-items: center; text-align: center; position: relative; z-index: 1; }
.thanks__inner { max-width: 600px; padding: 80px 20px; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 22px; }
.thanks p { color: var(--fg-soft); margin: 0 auto 34px; max-width: 44ch; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s 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__media 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.5); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-alt); border: 1px solid var(--border-strong); padding: 30px 32px; max-width: 460px; border-radius: 18px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.cookie-popup__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; margin-bottom: 12px; letter-spacing: -0.01em; }
.cookie-popup__card p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--muted); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { flex: 1; padding: 12px 22px; border: 1px solid var(--border-strong); border-radius: 9999px; font-size: 13px; font-weight: 500; transition: transform 0.3s var(--ease), border-color 0.3s; }
.cookie-popup__actions button:hover { transform: translateY(-2px); }
.cookie-popup__actions button:last-child { background: var(--grad); color: #fff; border-color: transparent; }

@media (min-width: 600px) { .cookie-popup { align-items: flex-end; justify-content: flex-end; } }
