/* ============================================================
   BlckPanda Creative cosmic neon design system
   Neon is for display type, borders, accents, CTAs only.
   Body/UI text stays high-contrast for WCAG AA on dark.
   ============================================================ */

/* ---- Fonts (self-hosted, font-display: swap) ---- */
@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --bg-base: #0a0710;
  --bg-raise: #120a1f;
  --nebula-1: #2d1b4e;
  --nebula-2: #3b0f4a;
  --text: #f5f3fa;
  --text-dim: #c4bcd6; /* lifted slightly from spec #B7AECB to clear AA on raised panels */
  --neon-blue: #2e9bff;
  --neon-magenta: #ff2d78;
  --neon-violet: #8b3dff;
  --white: #ffffff;

  --grad-cta: linear-gradient(100deg, #ff2d78, #8b3dff);
  --grad-cta-hover: linear-gradient(100deg, #ff4a8c, #9d57ff);

  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 16px;
  --radius-sm: 10px;

  --glass-fill: rgba(18, 10, 31, 0.6);
  --glass-border: rgba(139, 61, 255, 0.4);
  --hairline: rgba(245, 243, 250, 0.1);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset / base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Shared cosmic background plate (one cached request, used on every page). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("/assets/img/bg-plate.jpg") center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
a {
  color: var(--neon-blue);
  text-decoration: none;
}
a:hover {
  color: var(--white);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}
h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}
p {
  margin: 0 0 1rem;
}
:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Layout primitives ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin: 0 0 1rem;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  max-width: 60ch;
}
.center {
  text-align: center;
}
.center .lead {
  margin-inline: auto;
}

/* ---- Atmosphere / nebula backgrounds ---- */
.nebula {
  position: relative;
  isolation: isolate;
}
.nebula::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(45, 27, 78, 0.55), transparent 70%),
    radial-gradient(55% 45% at 90% 20%, rgba(59, 15, 74, 0.5), transparent 70%),
    radial-gradient(70% 60% at 50% 110%, rgba(139, 61, 255, 0.14), transparent 70%);
  pointer-events: none;
}

/* ---- Gradient + glow text utilities ---- */
.grad-text {
  background: linear-gradient(100deg, var(--neon-blue), var(--neon-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glow-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 6px rgba(46, 155, 255, 0.5), 0 0 22px rgba(46, 155, 255, 0.35);
}
.glow-magenta {
  color: var(--neon-magenta);
  text-shadow: 0 0 6px rgba(255, 45, 120, 0.5), 0 0 24px rgba(255, 45, 120, 0.35);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  text-align: center;
}
.btn--primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 45, 120, 0.3), 0 8px 30px rgba(255, 45, 120, 0.35);
}
.btn--primary:hover {
  background: var(--grad-cta-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 74, 140, 0.5), 0 12px 40px rgba(255, 45, 120, 0.5);
}
.btn--ghost {
  background: rgba(245, 243, 250, 0.04);
  color: var(--text);
  border-color: rgba(245, 243, 250, 0.25);
}
.btn--ghost:hover {
  color: var(--white);
  border-color: var(--neon-blue);
  box-shadow: 0 0 18px rgba(46, 155, 255, 0.35);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.06rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

/* ---- Glass cards ---- */
.glass {
  background: var(--glass-fill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(139, 61, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---- Announcement bar ---- */
.announce {
  background: linear-gradient(90deg, rgba(139, 61, 255, 0.18), rgba(255, 45, 120, 0.18));
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--text);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.55rem var(--gutter);
  text-align: center;
}
.announce a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}
.announce__close {
  position: absolute;
  right: var(--gutter);
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.announce__inner {
  position: relative;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 7, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
/* Level 1: logo left, CTA right */
.site-header__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.7rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.brand img {
  height: 38px;
  width: auto;
}
/* Level 2: navigation row */
.site-header__nav-row {
  border-top: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding-block: 0.7rem;
}
.nav a {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav a:hover {
  color: var(--white);
}
.header-cta {
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  color: var(--text);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-header__nav-row {
    display: none;
  }
  .site-header.open .site-header__nav-row {
    display: block;
  }
  .site-header.open .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.6rem var(--gutter) 1rem;
  }
  .site-header.open .nav a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.92;
  margin: 0.4rem 0 0.8rem;
}
.hero__title span {
  display: block;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--text-dim);
  max-width: 46ch;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.hero-badge__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(139, 61, 255, 0.15);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 14px rgba(139, 61, 255, 0.4);
  color: var(--neon-blue);
}

/* hero centerpiece (spine) + floating callouts */
.hero__stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.hero__spine {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(46, 155, 255, 0.45)) drop-shadow(0 0 60px rgba(255, 45, 120, 0.3));
  animation: float 7s var(--ease) infinite;
}
.hero__spine-fallback {
  width: min(70%, 260px);
  aspect-ratio: 1 / 1.6;
  border-radius: 200px;
  background: radial-gradient(circle at 50% 30%, rgba(46, 155, 255, 0.35), transparent 60%),
    radial-gradient(circle at 50% 75%, rgba(255, 45, 120, 0.3), transparent 60%);
  filter: blur(2px);
  animation: float 7s var(--ease) infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.callout {
  position: absolute;
  width: min(230px, 60%);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
}
.callout strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.callout p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.4;
}
.callout--1 { top: 4%; left: -6%; }
.callout--2 { top: 42%; right: -8%; }
.callout--3 { bottom: 2%; left: 0%; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  /* Remove the floating spine on mobile; keep the service callout cards. */
  .hero__spine,
  .hero__spine-fallback { display: none; }
  .hero__stage { min-height: 0; display: grid; gap: 0.6rem; margin-top: 1.4rem; }
  .callout { position: static; width: 100%; }
}

/* ---- Pillar hero with motif ---- */
.pillar-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.pillar-hero__media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(139, 61, 255, 0.25);
}
@media (max-width: 820px) {
  .pillar-hero { grid-template-columns: 1fr; }
  .pillar-hero__media { order: -1; }
}

/* ---- Service cards ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.scard {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.scard:hover {
  transform: translateY(-4px);
  border-color: var(--neon-magenta);
  box-shadow: 0 0 34px rgba(255, 45, 120, 0.25);
}
.scard__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 155, 255, 0.12);
  border: 1px solid var(--glass-border);
  color: var(--neon-blue);
  margin-bottom: 1rem;
}
.scard h3 {
  margin-bottom: 0.4rem;
}
.scard p {
  color: var(--text-dim);
  flex: 1;
}
.scard__link {
  font-weight: 700;
  margin-top: 0.8rem;
}

/* ---- Logo wall ---- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin: 1.6rem auto 0;
  max-width: 940px;
}
.logo-chip {
  display: grid;
  place-items: center;
  height: 120px;
  padding: 1.5rem 1.7rem;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.logo-chip:hover {
  box-shadow: 0 0 28px rgba(139, 61, 255, 0.35), 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
.client-logo {
  max-height: 66px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.preferred-vendor {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.7rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(139, 61, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.9rem;
}
.preferred-vendor::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-magenta);
  box-shadow: 0 0 10px rgba(255, 45, 120, 0.8);
}
.preferred-vendor a {
  color: var(--white);
  font-weight: 700;
}

/* ---- Stat band ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--bg-raise);
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
}
.stat__value.is-placeholder {
  color: var(--text-dim);
  opacity: 0.5;
}
.stat__label {
  font-weight: 700;
  font-size: 0.95rem;
}
.stat__context {
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ---- Process timeline ---- */
.steps {
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
.step {
  position: relative;
  padding: 1.4rem 1.3rem;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--white);
  background: rgba(139, 61, 255, 0.18);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 16px rgba(139, 61, 255, 0.45);
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.step p { color: var(--text-dim); margin: 0; font-size: 0.95rem; }

/* ---- FAQ accordion ---- */
.faq {
  display: grid;
  gap: 0.7rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--bg-raise);
  overflow: hidden;
}
.faq details[open] {
  border-color: var(--glass-border);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--neon-magenta);
  font-size: 1.4rem;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { content: "\2013"; }
.faq__a {
  padding: 0 1.2rem 1.15rem;
  color: var(--text-dim);
}

/* ---- Browse grid (states / cities) ---- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.7rem;
}
.tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--bg-raise);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.tile:hover {
  color: var(--white);
  border-color: var(--neon-blue);
  box-shadow: 0 0 18px rgba(46, 155, 255, 0.3);
}
.tile span {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ---- Breadcrumbs ---- */
.crumbs {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-top: 1.4rem;
}
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--white); }

/* ---- Prose (article/content body) ---- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { color: var(--text-dim); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.answer-block {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--text);
  border-left: 3px solid var(--neon-magenta);
  padding-left: 1.1rem;
  margin-bottom: 1.8rem;
}

/* ---- Deliverables list ---- */
.deliver {
  display: grid;
  gap: 1.4rem;
}
.deliver__group h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.deliver__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.deliver__group li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-dim);
}
.deliver__group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 8px rgba(46, 155, 255, 0.6);
}

/* ---- Comparison table ---- */
.cmp {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp th, .cmp td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
}
.cmp th {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: var(--white);
  background: var(--bg-raise);
}
.cmp td { color: var(--text-dim); }
.cmp tr:last-child td { border-bottom: none; }

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
}
.cta-band .glass {
  padding: clamp(2rem, 5vw, 3.5rem);
}
.cta-band h2 { margin-bottom: 0.5rem; }

/* ---- Placeholder note ---- */
.placeholder {
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  color: var(--text-dim);
  background: rgba(139, 61, 255, 0.05);
  font-size: 0.95rem;
}

/* ---- Sticky mobile CTA ---- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 0.6rem var(--gutter);
  background: rgba(10, 7, 16, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 760px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 4.5rem; }
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding-block: 3rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols { display: contents; }
.footer__col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer__col a { color: var(--text); font-size: 0.92rem; }
.footer__col a:hover { color: var(--neon-blue); }
.footer__brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 32ch; }
.footer__bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- Cookie consent ---- */
.consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 460px;
  z-index: 70;
  padding: 1.1rem 1.2rem;
  font-size: 0.9rem;
}
.consent[hidden] { display: none; }
.consent p { margin: 0 0 0.8rem; color: var(--text-dim); }
.consent__row { display: flex; gap: 0.6rem; }
.consent .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__spine,
  .hero__spine-fallback { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
