/* ==========================================================================
   DO GOOD NATION — Global Stylesheet
   Static site. Brand purple is the ONLY purple: #6f21cd.
   Headlines: League Gothic (condensed, uppercase). Body: DM Sans.
   ========================================================================== */

/* ---- Fonts -------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=League+Gothic&display=swap');

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --purple: #6f21cd;
  --purple-soft: rgba(111, 33, 205, 0.16);
  --purple-line: rgba(111, 33, 205, 0.55);

  --black: #07060a;
  --panel: #0e0b16;
  --panel-2: #140f20;
  --white: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.74);
  --ink-mute: rgba(255, 255, 255, 0.52);
  --border: rgba(255, 255, 255, 0.12);

  --head: "League Gothic", "Arial Narrow", sans-serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --radius: 0;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: var(--black);
  background-image:
    radial-gradient(120% 80% at 80% -5%, var(--purple-soft) 0%, transparent 55%),
    radial-gradient(90% 60% at -10% 105%, var(--purple-soft) 0%, transparent 50%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; }

:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---- Layout helpers ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.panel { background: var(--panel); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---- Typography --------------------------------------------------------- */
.kicker {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 1.1rem;
}
.kicker::after {
  content: "";
  display: block;
  width: 34px; height: 4px;
  background: var(--purple);
  margin-top: 0.7rem;
}
.center .kicker { margin-inline: auto; }
.center .kicker::after { margin-inline: auto; }

.display {
  font-family: var(--head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin: 0;
}
.headline {
  font-family: var(--head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}
.subhead {
  font-family: var(--head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}
.accent { color: var(--purple); }
.lead {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 1.5rem;
}
.body-text { color: var(--ink-soft); }
.mute { color: var(--ink-mute); }

.divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, var(--purple-line), transparent);
  border: 0; margin: 0;
}
.rule {
  width: 150px; height: 4px;
  background: var(--purple);
  margin: 1.4rem 0;
}
@media (max-width: 560px) { .rule { width: 100px; } }
.center .rule { margin-inline: auto; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--purple); color: var(--white); }
.btn--primary:hover { filter: brightness(1.12); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.center .btn-row { justify-content: center; }

/* ---- Image placeholders ------------------------------------------------- */
.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  border: 1px dashed var(--purple-line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(111,33,205,0.06) 0 12px, transparent 12px 24px),
    var(--panel-2);
  color: var(--ink-mute);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.5rem;
}
.img-placeholder span { max-width: 26ch; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 10, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.85rem clamp(1.25rem, 5vw, 3rem);
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img { display: block; }
/* Header wordmark — square source (2400×2400) shown full at 82×82. */
.site-logo { width: 82px; height: 82px; object-fit: contain; }
@media (max-width: 480px) { .site-logo { width: 64px; height: 64px; } }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta { display: inline-flex; gap: 0.75rem; align-items: center; }
/* Header CTA: sized closer to the nav links, not a big button */
.nav-cta .btn { padding: 0.5rem 1.05rem; font-size: 0.78rem; letter-spacing: 0.06em; line-height: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 26px; background: var(--white); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
    display: none;
  }
  .nav.is-open .nav-menu { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.1rem; width: 100%; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 82vh, 800px);
  padding-block: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,6,10,0.72) 0%, rgba(7,6,10,0.90) 70%, var(--black) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero .display { margin-bottom: 1.1rem; }
.hero-tag {
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  margin: 0 0 1.6rem;
}
.hero .lead { max-width: 52ch; }

/* ==========================================================================
   TWO-COLUMN SPLIT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .media { order: -1; }
.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .media { order: 0; }
}

/* ==========================================================================
   STEPS (the full experience)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 2rem;
}
.step-num { font-family: var(--head); font-size: 2.4rem; line-height: 1; color: var(--purple); display: block; margin-bottom: 0.6rem; }
.step h3 { font-family: var(--head); text-transform: uppercase; font-size: 1.55rem; letter-spacing: 0.02em; margin: 0 0 0.7rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2.5rem; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats { grid-template-columns: 1fr; } }
.stat { text-align: center; padding: 1.6rem 1rem; background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-num { font-family: var(--head); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--white); display: block; }
.stat-label { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-mute); margin-top: 0.6rem; display: block; }

/* ==========================================================================
   PATHS (get involved)
   ========================================================================== */
.paths { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 980px) { .paths { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .paths { grid-template-columns: 1fr; } }
.path { background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.5rem; transition: border-color 0.2s ease, transform 0.2s ease; }
.path:hover { border-color: var(--purple-line); transform: translateY(-3px); }
.path-num { font-family: var(--head); font-size: 1.6rem; color: var(--purple); }
.path h3 { font-family: var(--head); text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.02em; margin: 0.4rem 0 0.7rem; }
.path p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   SPONSOR / PARTNER BAND
   ========================================================================== */
.band { background: linear-gradient(135deg, rgba(111,33,205,0.22), transparent 60%), var(--panel); border-block: 1px solid var(--border); }
.band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(3rem, 7vw, 5rem); flex-wrap: wrap; }
.band-text { max-width: 60ch; }
.band .headline { margin-bottom: 0.7rem; }

/* ==========================================================================
   FOUNDER CARD
   ========================================================================== */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; } }
.founder-media .img-placeholder { height: 100%; border: 0; border-radius: 0; min-height: 340px; }
.founder-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.founder-body { padding: clamp(1.8rem, 4vw, 3rem); }
.founder-role { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin: 0.2rem 0 1.2rem; }
.quote { font-family: var(--head); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.05; margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.quote cite { display: block; font-family: var(--body); font-style: normal; text-transform: none; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--ink-mute); margin-top: 0.9rem; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 980px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.member-photo { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.member-photo .img-placeholder { height: 100%; min-height: 0; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member h3 { font-family: var(--head); text-transform: uppercase; font-size: 1.45rem; letter-spacing: 0.02em; margin: 0; }
.member-role { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--purple); margin: 0.25rem 0 0; }

/* ==========================================================================
   PILLARS
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 700px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 1.6rem 1.5rem; border-left: 3px solid var(--purple); background: var(--panel-2); border-radius: 0 var(--radius) var(--radius) 0; }
.pillar h3 { font-family: var(--head); text-transform: uppercase; font-size: 1.4rem; margin: 0 0 0.5rem; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.contact-list .kicker::after { display: none; }
.contact-list li { margin-bottom: 1.3rem; }
.contact-list a { color: var(--white); font-size: 1.1rem; }
.contact-list a:hover { color: var(--purple); }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--white);
  background: var(--panel-2); border: 1px solid var(--border);
  border-radius: 0; padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { display: none; padding: 0.9rem 1.1rem; border-radius: 0; font-size: 0.95rem; }
.form-status.is-success { display: block; background: var(--purple-soft); border: 1px solid var(--purple-line); color: var(--white); }
.form-status.is-error { display: block; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--white); }

/* ==========================================================================
   LEGAL / PROSE PAGES
   ========================================================================== */
.prose { max-width: 70ch; }
.prose h2 { font-family: var(--head); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.2rem 0 0.8rem; }
.prose h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--purple); text-decoration: underline; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { min-height: 70vh; display: flex; align-items: center; }
.notfound .display { font-size: clamp(5rem, 18vw, 12rem); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--black); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-top .footer-logo { margin-inline: auto; }
}
.footer-logo { width: 250px; max-width: 70%; height: auto; }
.site-footer h4 { font-weight: 600; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.7rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--white); }
.footer-blurb { color: var(--ink-soft); max-width: 38ch; margin-top: 1rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.5rem; border-top: 1px solid var(--border); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-mute); }
.footer-bottom .eyebrow { text-transform: uppercase; letter-spacing: 0.18em; }
.tag { color: var(--purple); text-transform: uppercase; letter-spacing: 0.18em; }
.footer-legal a { color: var(--ink-mute); margin-left: 1rem; }
.footer-legal a:hover { color: var(--white); }
@media (max-width: 820px) {
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  .footer-legal a { margin: 0 0.5rem; }
}

/* ==========================================================================
   STATEMENT BAND (founding belief / pull quote)
   ========================================================================== */
.statement { background: linear-gradient(135deg, rgba(111,33,205,0.18), transparent 65%), var(--panel); border-block: 1px solid var(--border); }
.statement .wrap { max-width: 980px; }
.statement-quote {
  font-family: var(--head);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0;
}
.statement-quote .accent { color: var(--purple); }

/* ==========================================================================
   IMPACT STATS (the case for doing good)
   ========================================================================== */
.impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (max-width: 820px) { .impact { grid-template-columns: 1fr; } }
.impact-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple);
  padding: 2.1rem 1.7rem 2.3rem;
  display: flex; flex-direction: column;
}
.impact-num {
  font-family: var(--head);
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--purple);
  display: block;
  margin-bottom: 1.1rem;
}
.impact-card p { color: var(--ink-soft); margin: 0; font-size: 1rem; }
.impact-card sup { font-size: 0.62em; vertical-align: super; color: var(--ink-mute); }
.impact-refs { margin-top: 1.8rem; font-size: 0.78rem; line-height: 1.7; color: var(--ink-mute); }
.impact-refs sup { margin-right: 0.2rem; }
.impact-refs a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.impact-refs a:hover { color: var(--purple); }

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq { max-width: 820px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0;
  font-family: var(--head); text-transform: uppercase;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem); letter-spacing: 0.02em;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--body); font-weight: 400;
  font-size: 1.8rem; line-height: 1; color: var(--purple);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--purple); }
.faq-answer { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 70ch; }
.faq-answer p { margin: 0; }

/* ==========================================================================
   COOKIE CONSENT (injected by main.js when GA4 is enabled)
   ========================================================================== */
.consent {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin-inline: auto;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.consent-text { margin: 0; color: var(--ink-soft); font-size: 0.92rem; max-width: 60ch; }
.consent-text a { color: var(--purple); text-decoration: underline; }
.consent-actions { display: flex; gap: 0.7rem; }
.consent-actions .btn { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
@media (max-width: 560px) { .consent-actions { width: 100%; } .consent-actions .btn { flex: 1; justify-content: center; } }

/* ---- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
