:root {
  --bg: #071822;
  --bg-soft: #0d2431;
  --surface: #102d3c;
  --surface-2: #16394a;
  --text: #f4f8f9;
  --muted: #a8bbc3;
  --ink: #10232d;
  --ink-muted: #627680;
  --light: #f2f5f2;
  --white: #ffffff;
  --accent: #f2c037;
  --accent-dark: #cb9711;
  --danger: #d94b4b;
  --border: rgba(255,255,255,.12);
  --border-dark: rgba(16,35,45,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 82px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Oswald", Impact, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection {
  background: var(--accent);
  color: var(--ink);
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.section-light {
  background: var(--light);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(7,24,34,.9);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  color: var(--accent);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav > a {
  color: #d8e2e5;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.primary-nav > a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  padding: 11px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
}

.btn-primary:hover { background: #ffd052; }

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

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

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-light {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-full { width: 100%; }

.btn-disabled {
  min-height: 44px;
  color: var(--ink-muted);
  background: #dce3e1;
  pointer-events: none;
}

/* Hero */
.hero {
  min-height: 790px;
  padding-top: calc(var(--header-height) + 96px);
  padding-bottom: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(242,192,55,.14), transparent 31%),
    linear-gradient(130deg, #071822 0%, #0b2430 55%, #09202d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  bottom: -180px;
  border: 1px solid rgba(242,192,55,.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(242,192,55,.03),
    0 0 0 140px rgba(242,192,55,.02);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark { color: #8b6a12; }

.hero h1,
.section-heading h2,
.donation-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .98;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(50px, 6vw, 86px);
}

.hero h1 em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #c4d1d5;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(242,192,55,.12);
}

.hero-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(16,45,60,.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
}

.panel-kicker {
  padding: 28px 30px 17px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.path-list { padding: 0 16px 16px; }

.path-card {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 14px;
  border: 0;
  border-top: 1px solid var(--border);
  color: var(--white);
  text-align: left;
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}

.path-card:hover {
  background: rgba(255,255,255,.05);
  transform: translateX(3px);
}

.path-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 17px;
}

.path-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.path-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.path-arrow {
  font-size: 22px;
  color: var(--accent);
}

.panel-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.12);
}

.panel-footer span {
  padding: 15px 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.panel-footer span + span { border-left: 1px solid var(--border); }

/* Trust */
.trust-strip {
  background: var(--accent);
  color: var(--ink);
}

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

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 0 24px;
}

.trust-grid div + div { border-left: 1px solid rgba(16,35,45,.18); }

.trust-grid strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.trust-grid span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Headings */
.section-heading h2,
.donation-copy h2,
.final-cta h2 {
  font-size: clamp(40px, 5vw, 68px);
}

.section-heading p {
  max-width: 650px;
  margin: 24px auto 0;
  color: inherit;
  opacity: .7;
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.centered .eyebrow { justify-content: center; }

.split-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.large-copy {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}

.about-copy > p:not(.large-copy) {
  color: var(--ink-muted);
  font-size: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.values-grid article {
  padding: 22px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.55);
}

.values-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
}

.values-grid h3 {
  margin: 18px 0 8px;
  font-size: 15px;
}

.values-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
}

/* Directions */
.directions {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent),
    var(--bg);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.direction-card {
  position: relative;
  min-height: 275px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.direction-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,192,55,.45);
  background: rgba(255,255,255,.045);
}

.direction-card .card-index {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255,255,255,.14);
  font-family: var(--font-display);
  font-size: 28px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(242,192,55,.12);
  color: var(--accent);
  font-size: 23px;
}

.direction-card h3 {
  margin: 32px 0 13px;
  font-size: 18px;
}

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

/* Participation */
.participation {
  background: var(--light);
  color: var(--ink);
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.participation-card {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 30px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(16,35,45,.06);
}

.participation-card.featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-16px);
  box-shadow: 0 24px 65px rgba(16,35,45,.25);
}

.participation-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16,35,45,.08);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featured .tag {
  color: var(--accent);
  background: rgba(242,192,55,.12);
}

.big-number {
  color: rgba(16,35,45,.15);
  font-family: var(--font-display);
  font-size: 46px;
  line-height: .8;
}

.featured .big-number { color: rgba(255,255,255,.16); }

.participation-card h3 {
  margin: 38px 0 16px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
}

.participation-card > p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.featured > p { color: var(--muted); }

.participation-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.participation-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 13px;
}

.featured li { color: #d7e0e3; }

.participation-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8e741d;
  font-weight: 900;
}

.featured li::before { color: var(--accent); }

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--border-dark);
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.featured .text-link {
  border-color: var(--border);
  color: var(--white);
}

.text-link span { color: var(--accent-dark); font-size: 20px; }
.featured .text-link span { color: var(--accent); }

/* Donation */
.donation-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 40%, rgba(242,192,55,.1), transparent 28%),
    var(--bg-soft);
}

.donation-layout {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 90px;
  align-items: center;
}

.donation-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.donation-principles {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.donation-principles div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.donation-principles strong {
  color: var(--accent);
  font-size: 13px;
}

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

.donation-widget {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.widget-head,
.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.widget-head > span:first-child {
  font-size: 18px;
  font-weight: 800;
}

.secure-label {
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.donation-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin: 26px 0 22px;
  padding: 5px;
  border-radius: 11px;
  background: #edf1f0;
}

.donation-tabs button,
.amount-grid button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-muted);
  font-weight: 800;
}

.donation-tabs button {
  min-height: 42px;
  font-size: 12px;
}

.donation-tabs button.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 5px 15px rgba(16,35,45,.08);
}

.field-label {
  display: block;
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.donation-widget select,
.amount-input,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(16,35,45,.18);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.donation-widget select {
  height: 48px;
  padding: 0 12px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 18px;
}

.amount-grid button {
  min-height: 44px;
  border: 1px solid rgba(16,35,45,.14);
  font-size: 12px;
}

.amount-grid button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.amount-input {
  display: flex;
  align-items: center;
  padding-right: 14px;
}

.amount-input input {
  min-width: 0;
  height: 46px;
  flex: 1;
  border: 0;
  padding: 0 12px;
  outline: none;
  background: transparent;
}

.amount-input span { color: var(--ink-muted); font-weight: 800; }

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

.checkbox-row input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--ink);
}

.widget-disclaimer {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

/* Transparency */
.transparency-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.transparency-board {
  padding: 30px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(16,35,45,.08);
}

.mini-label {
  color: #8b6a12;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.board-top h3 {
  margin: 6px 0 0;
  font-size: 20px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #edf2ef;
  color: var(--ink-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-dark);
}

.report-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
}

.report-preview div { padding: 22px 18px; }
.report-preview div + div { border-left: 1px solid var(--border-dark); }

.report-preview span,
.report-preview small {
  display: block;
  color: var(--ink-muted);
  font-size: 9px;
}

.report-preview strong {
  display: block;
  margin: 7px 0;
  font-family: var(--font-display);
  font-size: 32px;
}

.roadmap-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 0;
}

.roadmap-line span {
  position: relative;
  padding-top: 20px;
  color: var(--ink-muted);
  font-size: 9px;
  text-align: center;
}

.roadmap-line span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #dce3e1;
}

.roadmap-line span::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #dce3e1;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
}

.roadmap-line span.done { color: var(--ink); font-weight: 800; }
.roadmap-line span.done::before { background: var(--accent); }
.roadmap-line span.done::after { border-color: var(--accent-dark); background: var(--accent); }

/* Process */
.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid article {
  min-height: 250px;
  padding: 32px;
}

.process-grid article + article { border-left: 1px solid var(--border); }

.process-grid article > span {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 26px;
}

.process-grid h3 {
  margin: 50px 0 12px;
  font-size: 17px;
}

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

/* FAQ */
.faq-section {
  background: var(--light);
  color: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.accordion-item {
  border-bottom: 1px solid var(--border-dark);
}

.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
}

.accordion-item button span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-size: 18px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 52px 23px 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.accordion-item.active .accordion-content { max-height: 220px; }

/* CTA */
.final-cta {
  background:
    linear-gradient(120deg, rgba(242,192,55,.06), transparent 35%),
    var(--surface);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.final-cta h2 { max-width: 830px; }

.final-cta p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 245px;
}

/* Footer */
.site-footer {
  padding: 75px 0 28px;
  background: #041016;
  color: var(--text);
}

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

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

.footer-grid p {
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button,
.footer-grid > div > span,
.footer-grid > div > small {
  display: block;
  margin: 10px 0;
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  text-align: left;
}

.footer-grid a:hover,
.footer-grid button:hover { color: var(--accent); }

.footer-grid > div > small {
  margin-top: 18px;
  color: #62747b;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: #6f8188;
  font-size: 9px;
}

.footer-bottom div { display: flex; gap: 22px; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,11,16,.82);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: min(90vh, 880px);
  overflow-y: auto;
  padding: 38px;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
  transform: translateY(24px) scale(.98);
  transition: transform .25s ease;
}

.modal.is-open .modal-dialog { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #edf1f0;
  color: var(--ink);
  font-size: 24px;
}

.modal-kicker {
  color: #8b6a12;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.modal-intro h2 {
  max-width: 580px;
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.03;
  text-transform: uppercase;
}

.modal-intro p {
  margin: 0 0 26px;
  color: var(--ink-muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.form-field > span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
}

.form-field b,
.consent-row b { color: #aa2f2f; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 13px;
  font-size: 13px;
}

.form-field input,
.form-field select { height: 48px; }

.form-field textarea {
  resize: vertical;
  min-height: 128px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(242,192,55,.15);
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--danger);
}

.field-error,
.form-global-error {
  display: block;
  min-height: 15px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 9px;
}

.field-counter {
  position: absolute;
  right: 9px;
  bottom: 24px;
  color: var(--ink-muted);
  font-size: 9px;
}

.conditional-fields {
  margin: 4px 0 16px;
  padding: 16px;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  background: #f7f9f8;
}

.consent-row { margin-top: 6px; }
.consent-row.invalid { color: var(--danger); }

.submit-button {
  position: relative;
  overflow: hidden;
}

.button-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(16,35,45,.28);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.submit-button.loading .button-text { display: none; }
.submit-button.loading .button-loader { display: block; }

.form-note {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 9px;
  text-align: center;
}

.form-note code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #edf1f0;
}

.form-success {
  padding: 35px 0 12px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
}

.form-success h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.form-success p {
  max-width: 500px;
  margin: 0 auto 24px;
  color: var(--ink-muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1040px) {
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(7,24,34,.98);
    box-shadow: var(--shadow);
  }

  .primary-nav.open { display: flex; }

  .primary-nav > a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav .btn { margin-top: 12px; }

  .menu-toggle { display: block; }

  .hero-layout,
  .donation-layout,
  .transparency-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout { gap: 55px; }
  .hero-panel { max-width: 650px; }
  .donation-layout { gap: 55px; }
  .donation-widget { max-width: 680px; }
  .transparency-layout { gap: 45px; }

  .split-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .participation-card.featured { transform: none; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .process-grid article:nth-child(4) { border-top: 1px solid var(--border); }

  .final-cta-inner { grid-template-columns: 1fr; }
  .cta-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

@media (max-width: 720px) {
  :root { --header-height: 72px; }

  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 80px 0; }

  .brand-mark { width: 40px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 8px; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 65px);
  }

  .hero h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero-lead { font-size: 15px; }

  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(16,35,45,.18); }
  .trust-grid div:nth-child(4) { border-top: 1px solid rgba(16,35,45,.18); }

  .values-grid,
  .direction-grid,
  .participation-grid {
    grid-template-columns: 1fr;
  }

  .participation-card { min-height: auto; }

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

  .donation-principles div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .report-preview {
    grid-template-columns: 1fr;
  }

  .report-preview div + div {
    border-left: 0;
    border-top: 1px solid var(--border-dark);
  }

  .roadmap-line {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .roadmap-line span {
    padding: 0 0 0 30px;
    text-align: left;
  }

  .roadmap-line span::before {
    top: -15px;
    bottom: -15px;
    left: 7px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .roadmap-line span::after {
    top: 4px;
    left: 8px;
  }

  .process-grid { grid-template-columns: 1fr; }
  .process-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .cta-actions { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 7px; }

  .modal { padding: 8px; }
  .modal-dialog { padding: 30px 18px 22px; border-radius: 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }

  .toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}
