:root {
  --bg: #05030a;
  --bg-soft: #0f0c18;
  --panel: rgba(22, 17, 35, 0.86);
  --panel-strong: rgba(30, 22, 46, 0.94);
  --text: #fff8ff;
  --muted: #d8cce3;
  --navy: #0e1120;
  --cream: #fff3e8;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  --radius: 1.9rem;
  --max-width: 1180px;
  --font-display: "Franklin Gothic Medium", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Trebuchet MS", "Aptos", "Segoe UI", sans-serif;
}

body[data-angle="balanced"] {
  --accent: #ff4fb6;
  --accent-2: #ff90d8;
  --accent-soft: #ffd0eb;
}

body[data-angle="civic"] {
  --accent: #ff627f;
  --accent-2: #ffd36c;
  --accent-soft: #ffe3bc;
}

body[data-angle="supporter"] {
  --accent: #ff3aa8;
  --accent-2: #8d7cff;
  --accent-soft: #ffd3f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 182, 0.14), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(141, 124, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #0a0711 0%, #05030a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: url("assets/bg-spotlights.svg") center top / cover no-repeat;
  opacity: 0.36;
  mix-blend-mode: screen;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 90%);
  opacity: 0.26;
}

.shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(5, 3, 10, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.1rem;
}

.brand {
  width: min(26rem, 62vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
}

.site-nav a {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 34px rgba(255, 79, 182, 0.22);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 4.25rem 0 2.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.visual-panel,
.pillar-card,
.roadmap-card,
.content-panel,
.action-card,
.update-card,
.faq-item,
.final-card {
  animation: rise-in 0.85s ease both;
}

.hero-copy {
  animation-delay: 0.06s;
  padding-right: 0.4rem;
}

.visual-panel {
  animation-delay: 0.16s;
}

.eyebrow,
.panel-kicker,
.roadmap-step,
.footer-label,
.stat-label,
.switcher-label {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.panel-kicker,
.roadmap-step,
.switcher-label {
  color: var(--accent-soft);
}

.dark-eyebrow {
  color: #d22f8f;
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(3.25rem, 9vw, 6.6rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.hero-subheadline,
.lead,
.section-copy,
.panel-copy p,
.action-card p,
.update-card p,
.footer-brand p,
.footer-links p,
.faq-item p {
  color: var(--muted);
}

.hero-subheadline {
  max-width: 41rem;
  margin: 1rem 0 0;
  font-size: 1.18rem;
}

.hero-cta-row,
.share-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-cta-row {
  margin: 1.7rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.mode-chip:hover,
.mode-chip:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 20px 38px rgba(255, 79, 182, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
}

.hero-note {
  margin: 0;
  color: var(--accent-soft);
  max-width: 36rem;
  font-size: 1.02rem;
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0.15rem;
}

.ribbon-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff3fb;
  font-size: 0.92rem;
  font-weight: 700;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.stat-card,
.pillar-card,
.roadmap-card,
.content-panel,
.action-card,
.update-card,
.faq-item,
.visual-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.stat-value {
  display: block;
  font-size: 1.03rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% 8% -10%;
  height: 42%;
  background: radial-gradient(circle, rgba(255, 79, 182, 0.42) 0%, rgba(255, 79, 182, 0) 70%);
  filter: blur(42px);
  opacity: 0.9;
  animation: pulse-glow 5s ease-in-out infinite;
}

.hero-banner {
  border-radius: calc(var(--radius) - 0.45rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-float {
  position: absolute;
  right: 1.3rem;
  bottom: 1.35rem;
  left: 1.3rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background: rgba(6, 5, 14, 0.82);
}

.badge-float img {
  width: 5.25rem;
  flex: 0 0 auto;
}

.badge-title {
  margin: 0;
  font-weight: 700;
}

.badge-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.donate-shell {
  overflow: hidden;
}

.donate-shell::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 182, 0.18) 0%, rgba(255, 79, 182, 0) 72%);
  pointer-events: none;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.donate-copy {
  position: relative;
  z-index: 1;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.impact-card,
.donate-widget {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.impact-card {
  min-height: 14rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 79, 182, 0.16), transparent 44%);
}

.impact-card h3 {
  margin-bottom: 0.7rem;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
}

.donate-widget {
  padding: 1.4rem;
  border-radius: 1.95rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0%, rgba(141, 124, 255, 0.2), transparent 35%),
    rgba(7, 5, 14, 0.92);
}

.donate-mode-row {
  display: inline-flex;
  gap: 0.55rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.mode-toggle,
.amount-chip {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mode-toggle {
  min-height: 2.7rem;
  padding: 0.62rem 1rem;
  font-weight: 700;
}

.mode-toggle.is-active,
.amount-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 79, 182, 0.22), rgba(141, 124, 255, 0.22));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 26px rgba(255, 79, 182, 0.16);
}

.widget-kicker,
.donate-footnote,
.donate-status {
  margin: 0;
}

.widget-kicker {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.donate-widget h3 {
  margin-top: 0.6rem;
}

.widget-copy {
  margin: 0.85rem 0 1rem;
  color: var(--muted);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.amount-chip {
  min-height: 3.15rem;
  padding: 0.8rem 0.65rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.amount-chip:hover,
.amount-chip:focus-visible,
.mode-toggle:hover,
.mode-toggle:focus-visible {
  transform: translateY(-2px);
}

.donate-primary,
.donate-secondary {
  width: 100%;
}

.donate-secondary {
  margin-top: 0.7rem;
}

.donate-primary.is-disabled {
  opacity: 0.74;
  cursor: default;
  box-shadow: none;
}

.donate-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.donate-status {
  margin-top: 0.5rem;
  min-height: 1.3rem;
  color: var(--accent-soft);
  font-size: 0.92rem;
}

.donate-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #f7eaf5;
  font-size: 0.88rem;
}

.angle-switcher {
  margin-top: 1rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
}

.switcher-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mode-chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.72rem 0.98rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.mode-chip.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 28px rgba(255, 79, 182, 0.2);
}

.section-shell {
  position: relative;
  padding: 2.8rem 0;
}

.section-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 20%, rgba(255, 255, 255, 0.02) 80%, transparent 100%);
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 1.55rem;
}

.section-heading h2 {
  margin-bottom: 0.85rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  min-height: 15rem;
  padding: 1.4rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 79, 182, 0.18), transparent 44%);
}

.pillar-card h3 {
  margin-bottom: 0.65rem;
}

.contrast-shell {
  background:
    linear-gradient(135deg, rgba(255, 224, 238, 0.88), rgba(255, 243, 232, 0.96)),
    var(--cream);
  color: var(--navy);
}

.contrast-shell::after {
  background: linear-gradient(90deg, transparent 0%, rgba(17, 19, 28, 0.18) 30%, rgba(17, 19, 28, 0.06) 80%, transparent 100%);
}

.contrast-title,
.contrast-shell .lead {
  color: #11131c;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.quote-card {
  padding: 1.6rem;
  border-radius: 1.7rem;
  background: #11131c;
  box-shadow: 0 26px 70px rgba(10, 14, 28, 0.26);
}

.quote-mark {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.8;
  color: var(--accent-2);
}

.quote-text {
  margin: -0.9rem 0 0.9rem;
  font-size: 1.18rem;
  line-height: 1.45;
  color: #fff4fb;
}

.quote-source {
  margin: 0;
  color: #d0bfd9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.roadmap-card {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  padding: 1.25rem 1.25rem 1.4rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0%, rgba(255, 79, 182, 0.2), transparent 40%);
}

.roadmap-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
}

.roadmap-card p {
  color: var(--muted);
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.content-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  padding: 1.45rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0%, rgba(141, 124, 255, 0.18), transparent 38%);
}

.content-panel:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 0% 100%, rgba(255, 79, 182, 0.18), transparent 45%);
}

.panel-copy h3 {
  margin-bottom: 0.85rem;
}

.panel-copy p {
  margin: 0 0 0.85rem;
}

.panel-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.panel-list li {
  margin-bottom: 0.7rem;
}

.panel-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.panel-quote {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.panel-quote-title {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-quote-copy {
  margin: 0;
  color: #fff5fb;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.action-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 12% 20%, rgba(255, 79, 182, 0.14), transparent 28%);
}

.action-shell::before,
.updates-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.action-shell::before {
  background: radial-gradient(circle at 85% 28%, rgba(141, 124, 255, 0.12), transparent 24%);
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.45rem;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 79, 182, 0.16), transparent 44%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.action-card img {
  width: 4.25rem;
  height: 4.25rem;
}

.spotlight-card {
  transform: translateY(-0.6rem);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 50% 0%, rgba(255, 79, 182, 0.24), transparent 46%);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.32);
}

.mini-form {
  display: grid;
  gap: 0.8rem;
}

.mini-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.mini-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(7, 6, 16, 0.8);
}

.mini-form input::placeholder {
  color: #b9abc7;
}

.action-note,
.feedback {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.feedback {
  color: var(--accent-soft);
  min-height: 1.2rem;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.updates-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 82% 12%, rgba(141, 124, 255, 0.12), transparent 24%);
}

.update-card {
  overflow: hidden;
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.update-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.update-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.update-tag {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.3rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 1.15rem 1.2rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-soft);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.85rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 79, 182, 0.16), rgba(141, 124, 255, 0.16)),
    rgba(255, 255, 255, 0.05);
}

@media (hover: hover) {
  .action-card:hover,
  .update-card:hover {
    transform: translateY(-4px);
  }
}

.site-footer {
  padding: 2.2rem 0 3rem;
  background: rgba(0, 0, 0, 0.24);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.55fr 0.9fr;
  gap: 1.2rem;
}

.footer-brand img {
  width: min(19rem, 82%);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  color: var(--muted);
}

.footer-label {
  color: var(--accent-soft);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .pillar-grid,
  .impact-grid,
  .updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-card:last-child {
    grid-column: 1 / -1;
  }

  .donate-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    background: rgba(10, 8, 17, 0.96);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .donate-grid,
  .why-grid,
  .content-panel,
  .final-card {
    grid-template-columns: 1fr;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badge-float {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 720px) {
  .section-shell {
    padding: 2.2rem 0;
  }

  .pillar-grid,
  .impact-grid,
  .roadmap-grid,
  .action-grid,
  .updates-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    transform: none;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--max-width), calc(100% - 1.15rem));
  }

  .hero {
    padding-top: 3.25rem;
  }

  .brand {
    width: min(18rem, 68vw);
  }

  .hero-subheadline {
    font-size: 1.05rem;
  }

  .hero-cta-row,
  .hero-ribbon,
  .share-actions,
  .final-actions {
    flex-direction: column;
  }

  .button,
  .mode-chip,
  .amount-chip {
    width: 100%;
  }

  .badge-float {
    flex-direction: column;
    align-items: flex-start;
  }

  .amount-grid {
    grid-template-columns: 1fr 1fr;
  }

  .donate-mode-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

.thanks-page {
  padding: 4rem 0 5rem;
}

.thanks-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0%, rgba(255, 79, 182, 0.22), transparent 34%);
  box-shadow: var(--shadow);
}

.thanks-copy p {
  color: var(--muted);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.thanks-panel {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
}

.thanks-panel p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .thanks-card {
    grid-template-columns: 1fr;
  }
}
