@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #08080a;
  --surface: rgba(20, 20, 24, 0.78);
  --surface-strong: #151519;
  --surface-soft: #101014;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #fafafa;
  --muted: #a1a1aa;
  --faint: #71717a;
  --accent: #f4f4f5;
  --accent-dark: #0a0a0c;
  --success: #87f7b0;
  --warning: #f8c66d;
  --danger: #ff9d9d;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: rgba(255, 255, 255, 0.22);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  isolation: isolate;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.27;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
  pointer-events: none;
}

.ambient-one {
  top: -260px;
  left: -180px;
  background: #8b5cf6;
  animation: drift 16s ease-in-out infinite alternate;
}

.ambient-two {
  top: 260px;
  right: -300px;
  background: #22d3ee;
  animation: drift 19s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  to { transform: translate3d(80px, 45px, 0) scale(1.08); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(8, 8, 10, 0.74);
  backdrop-filter: blur(22px);
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.brand-tag {
  color: var(--faint);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d4d4d8;
  font-size: 14px;
}

.desktop-nav a,
.text-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: white;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: white;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 21px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  background: #f4f4f5;
  color: #0a0a0c;
}

.button-primary {
  background: #f4f4f5;
  color: #09090b;
  box-shadow: 0 12px 35px rgba(255,255,255,0.08);
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255,255,255,0.035);
  color: white;
}

.button-light {
  background: white;
  color: #09090b;
  flex-shrink: 0;
}

.button-wide {
  width: 100%;
  min-height: 54px;
  border-radius: 15px;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
  align-items: center;
  min-height: 760px;
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero-copy {
  max-width: 690px;
}

.hero-pill,
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #d4d4d8;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-pill svg {
  color: var(--success);
}

.hero h1 {
  margin: 28px 0 22px;
  max-width: 790px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(50px, 6.7vw, 86px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: #a1a1aa;
}

.hero-copy > p {
  max-width: 640px;
  color: #b7b7bf;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: var(--faint);
  font-size: 12px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  color: var(--success);
}

.glass-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(30,30,35,0.86), rgba(12,12,15,0.72));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  border-radius: 30px;
  padding: 25px;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.1), transparent 34%);
}

.panel-kicker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 26px;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
}

.progress-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}

.live-status {
  padding: 6px 9px;
}

.live-status.is-live {
  color: var(--success);
  border-color: rgba(135,247,176,0.2);
  background: rgba(135,247,176,0.06);
}

.progress-money {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
}

.progress-money strong {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.055em;
}

.progress-money span {
  color: var(--muted);
  font-size: 13px;
}

.progress-track {
  position: relative;
  height: 12px;
  margin-top: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}

.progress-fill {
  position: relative;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d4d4d8, #ffffff);
  min-width: 2px;
}

.progress-glow {
  position: absolute;
  right: -3px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 24px rgba(255,255,255,0.9);
}

.progress-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.progress-stats div {
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}

.progress-stats strong,
.progress-stats span {
  display: block;
}

.progress-stats strong {
  font-size: 14px;
}

.progress-stats span {
  color: var(--faint);
  font-size: 10px;
  margin-top: 4px;
}

.recent-support {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
  font-size: 12px;
}

.recent-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px var(--success);
}

.panel-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.panel-roadmap > div {
  padding: 15px 13px;
  border-radius: 16px;
  background: #ececee;
  color: #111113;
}

.panel-roadmap svg,
.panel-roadmap span,
.panel-roadmap strong {
  display: block;
}

.panel-roadmap span {
  margin-top: 14px;
  color: #71717a;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-roadmap strong {
  margin-top: 3px;
  font-size: 11px;
}

.signal-strip {
  border-block: 1px solid rgba(255,255,255,0.065);
  background: rgba(255,255,255,0.018);
}

.signal-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 25px;
  color: #85858e;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-soft {
  background: linear-gradient(to bottom, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
  border-block: 1px solid rgba(255,255,255,0.055);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 90px;
  align-items: start;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: #b6b6be;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.final-cta h2 {
  margin: 14px 0 18px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-list {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 15px;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(135,247,176,0.09);
  color: var(--success);
}

.benefit-item strong {
  font-size: 15px;
}

.benefit-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-callout {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  padding: 18px;
  border: 1px solid rgba(248,198,109,0.18);
  border-radius: 17px;
  background: rgba(248,198,109,0.05);
  color: var(--warning);
}

.legal-callout strong {
  color: #f9dba5;
  font-size: 13px;
}

.legal-callout p {
  margin: 3px 0 0;
  color: #b8aa91;
  font-size: 12px;
}

.support-card-wrap {
  position: sticky;
  top: 104px;
}

.support-form {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  background: #111114;
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.form-heading h2 {
  margin: 5px 0 0;
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.form-heading svg {
  color: var(--success);
}

.amount-field > span,
.text-field > span {
  display: block;
  margin-bottom: 8px;
  color: #d4d4d8;
  font-size: 12px;
  font-weight: 700;
}

.text-field em {
  color: var(--faint);
  font-style: normal;
  font-weight: 400;
}

.amount-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  border: 1px solid var(--border-strong);
  border-radius: 17px;
  padding: 0 18px;
  background: #09090b;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.amount-input-wrap:focus-within,
.text-field input:focus {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}

.amount-input-wrap > span {
  color: var(--muted);
  font-size: 25px;
}

.amount-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 38px;
  font-weight: 700;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.amount-options button {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255,255,255,0.025);
  color: #bcbcc3;
  cursor: pointer;
}

.amount-options button:hover,
.amount-options button.selected {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.09);
  color: white;
}

.field-help {
  color: var(--faint);
  font-size: 11px;
  line-height: 1.55;
  margin: 11px 1px 18px;
}

.field-help strong {
  color: #d4d4d8;
}

.text-field input {
  width: 100%;
  height: 49px;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: 0;
  background: #09090b;
  color: white;
  padding: 0 14px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  margin-top: 14px;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: white;
  margin-top: 0;
}

.checkbox-row a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-check {
  margin-block: 20px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin-bottom: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(255,157,157,0.2);
  border-radius: 11px;
  background: rgba(255,157,157,0.06);
  color: var(--danger);
  font-size: 11px;
}

.secure-note {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 7px;
  margin-top: 12px;
  color: var(--faint);
  font-size: 10px;
  text-align: center;
}

.allocation-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  margin-top: 55px;
}

.allocation-card {
  border-radius: 24px;
  padding: 25px;
}

.allocation-row {
  display: grid;
  grid-template-columns: 190px 1fr 44px;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.065);
}

.allocation-row:last-child {
  border-bottom: 0;
}

.allocation-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.allocation-label > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  color: #d4d4d8;
}

.allocation-meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.065);
  overflow: hidden;
}

.allocation-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #e4e4e7;
}

.allocation-row > strong {
  text-align: right;
  font-size: 12px;
}

.milestone-grid {
  display: grid;
  gap: 12px;
}

.milestone-card {
  position: relative;
  min-height: 132px;
  padding: 21px 22px 18px 76px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #111114;
}

.milestone-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f4f4f5;
  color: #111113;
}

.milestone-card small {
  color: var(--faint);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.milestone-card h3 {
  margin: 4px 0 5px;
  font-size: 17px;
}

.milestone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.council-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 86px;
  align-items: center;
}

.council-principles {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.council-principles > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
}

.council-principles span {
  grid-row: span 2;
  color: var(--faint);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
}

.council-principles strong {
  font-size: 15px;
}

.council-principles p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.meeting-card {
  border-radius: 25px;
  padding: 24px;
}

.meeting-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.meeting-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #f4f4f5;
  color: #101012;
}

.meeting-top small {
  color: var(--faint);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.meeting-top h3 {
  margin: 2px 0 0;
  font-size: 17px;
}

.meeting-agenda {
  padding-block: 10px;
}

.meeting-agenda > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.meeting-agenda span {
  color: var(--faint);
  font-family: monospace;
  font-size: 10px;
}

.meeting-agenda p {
  margin: 0;
  color: #d4d4d8;
  font-size: 12px;
}

.meeting-footer {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.transparency-section {
  border-block: 1px solid rgba(255,255,255,0.05);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.055), transparent 36%),
    #0b0b0e;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 50px;
}

.trust-card {
  min-height: 220px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: rgba(255,255,255,0.025);
}

.trust-card > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
}

.trust-card h3 {
  margin: 44px 0 8px;
  font-size: 15px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  max-width: 850px;
}

.faq-list {
  margin-top: 46px;
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: '+';
  color: var(--faint);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list p {
  max-width: 690px;
  margin: 13px 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 130px;
  padding: 56px;
  border-radius: 28px;
  background: #eeeeef;
  color: #101012;
}

.final-cta > div {
  max-width: 720px;
}

.final-cta .eyebrow {
  color: #71717a;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p {
  margin: 0;
  color: #5d5d65;
}

.footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--border);
  background: #070709;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.footer-brand {
  margin-bottom: 18px;
}

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

.max-copy {
  max-width: 330px;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--faint);
  font-size: 10px;
}

.legal-page {
  background: #09090b;
}

.legal-layout {
  max-width: 820px;
  padding-top: 105px;
  padding-bottom: 120px;
}

.legal-header {
  padding-bottom: 35px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  margin: 12px 0 8px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-header p {
  margin: 0;
  color: var(--faint);
}

.legal-summary {
  margin: 35px 0;
  padding: 20px;
  border: 1px solid rgba(248,198,109,0.2);
  border-radius: 16px;
  background: rgba(248,198,109,0.05);
}

.legal-summary strong {
  color: #f4d497;
}

.legal-summary p {
  margin: 5px 0 0;
  color: #b9ad96;
  font-size: 13px;
}

.legal-content {
  display: grid;
  gap: 38px;
}

.legal-content section {
  scroll-margin-top: 100px;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.legal-content p {
  margin: 10px 0 0;
  color: #b3b3bb;
  font-size: 14px;
  line-height: 1.75;
}

.legal-content a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.result-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.08), transparent 35%),
    #09090b;
}

.result-wrap {
  min-height: 680px;
  display: grid;
  place-items: center;
  padding-block: 100px;
}

.result-card {
  width: min(600px, 100%);
  border-radius: 27px;
  padding: 48px;
  text-align: center;
}

.result-card > svg {
  color: var(--success);
}

.result-card h1 {
  margin: 17px 0 10px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(34px, 6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

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

.result-note {
  margin: 24px 0;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
  color: var(--faint);
  font-size: 11px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
}

.not-found h1 {
  margin: 20px 0 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 45px;
  letter-spacing: -0.05em;
}

.not-found p {
  margin: 0 0 25px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 55px;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .split-section,
  .council-grid,
  .allocation-layout {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 55px;
  }

  .support-card-wrap {
    position: static;
  }

  .council-grid {
    gap: 55px;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    height: 68px;
  }

  .brand-tag,
  .desktop-only,
  .nav-actions > .button-small {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    display: grid;
    gap: 1px;
    padding: 7px 14px 14px;
    border-top: 1px solid var(--border);
    background: #0d0d10;
  }

  .mobile-nav a {
    padding: 12px;
    border-radius: 10px;
    color: #d4d4d8;
    font-size: 13px;
  }

  .mobile-nav a:hover {
    background: rgba(255,255,255,0.05);
  }

  .hero {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(47px, 15vw, 68px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .hero-panel {
    padding: 18px;
  }

  .panel-kicker {
    align-items: flex-start;
  }

  .verified {
    display: none;
  }

  .progress-money {
    display: block;
  }

  .progress-money span {
    display: block;
  }

  .progress-stats {
    grid-template-columns: 1fr;
  }

  .panel-roadmap {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 110px;
    gap: 14px;
    font-size: 9px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 39px;
  }

  .support-form {
    padding: 19px;
  }

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

  .allocation-row {
    grid-template-columns: 1fr 42px;
  }

  .allocation-meter {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .allocation-row > strong {
    grid-column: 2;
    grid-row: 1;
  }

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

  .trust-card {
    min-height: 185px;
  }

  .trust-card h3 {
    margin-top: 27px;
  }

  .final-cta {
    display: grid;
    padding: 32px 25px;
    margin-bottom: 80px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .result-card {
    padding: 34px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
