/* Fundathon — landing site
   Mirrors the iOS app palette (Item.swift / FTheme) */

:root {
  --navy-deep: #050B23;
  --navy-mid:  #0B173B;
  --navy-top:  #12234F;
  --gold-hi:   #FFEA8A;
  --gold-mid:  #FCCA48;
  --gold-low:  #D5941E;
  --gold-deep: #8D580A;
  --text:      #ffffff;
  --muted:     rgba(255, 255, 255, 0.62);
  --hairline:  rgba(255, 255, 255, 0.08);
  --card-bg:   rgba(255, 255, 255, 0.04);
  --gold-grad: linear-gradient(135deg, #FFEA8A 0%, #FCCA48 45%, #D5941E 100%);
  --bg-grad:   linear-gradient(180deg, #12234F 0%, #0B173B 45%, #050B23 100%);
  --radius:    18px;
  --container: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy-deep);
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

a { color: var(--gold-hi); text-decoration: none; }
a:hover { color: #ffffff; }

/* ---------- App background (subtle dot grid + radial gold glow) ---------- */
.bg-shell {
  position: relative;
  min-height: 100vh;
  background: var(--bg-grad);
  overflow: hidden;
}
.bg-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(252, 202, 72, 0.22), rgba(252, 202, 72, 0.06) 30%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(252, 202, 72, 0.12), transparent 45%);
  pointer-events: none;
}
.bg-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black, transparent 80%);
}

.container {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  z-index: 1;
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2.2px;
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.logo .star {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 1px 0 2px;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.6 6.3 6.8.6-5.2 4.5 1.6 6.6L12 16.9 6.2 20l1.6-6.6L2.6 8.9l6.8-.6L12 2z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.6 6.3 6.8.6-5.2 4.5 1.6 6.6L12 16.9 6.2 20l1.6-6.6L2.6 8.9l6.8-.6L12 2z'/></svg>") center/contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(252,202,72,0.8));
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}
.nav a {
  color: rgba(255,255,255,0.78);
}
.nav a:hover { color: var(--gold-hi); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-hi);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(252,202,72,0.45);
  box-shadow: 0 0 28px rgba(252,202,72,0.18);
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.05;
  margin: 22px auto 14px;
  max-width: 880px;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero h1 .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(252,202,72,0.35));
}
.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--gold-grad);
  color: #2A1A02;
  box-shadow: 0 12px 30px rgba(252,202,72,0.35), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(252,202,72,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* App Store download button */
.btn-appstore {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 10px 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.btn-appstore::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(252,202,72,0.35), transparent 40%);
  pointer-events: none;
  opacity: 0.6;
}
.btn-appstore:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(252,202,72,0.35); color: #fff; }
.btn-appstore svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-appstore-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.btn-appstore-text small { font-size: 10px; font-weight: 500; letter-spacing: 0.5px; opacity: 0.85; text-transform: uppercase; }
.btn-appstore-text strong { font-size: 17px; font-weight: 700; letter-spacing: 0.2px; }
.btn-appstore[aria-disabled="true"] { opacity: 0.78; }

.launch-note {
  color: var(--gold-hi) !important;
  opacity: 0.85 !important;
  font-weight: 600;
  margin-top: 14px !important;
}

/* Trophy showpiece */
.trophy {
  margin: 50px auto 0;
  width: 220px;
  height: 220px;
  position: relative;
}
.trophy::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,202,72,0.55), rgba(252,202,72,0.12) 45%, transparent 70%);
  filter: blur(6px);
  animation: pulse 2.6s ease-in-out infinite;
}
.trophy svg {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.45)) drop-shadow(0 0 18px rgba(252,202,72,0.55));
  animation: float 3.8s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%,100% { transform: scale(0.95); opacity: 0.85; } 50% { transform: scale(1.06); opacity: 1; } }

/* ---------- Sections ---------- */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.section .lede {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 0 40px;
}
.section.center { text-align: center; }
.section.center .lede { margin-left: auto; margin-right: auto; }

.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 12px;
}

/* ---------- Step cards (How it works) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(252,202,72,0.4);
}
.step::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 18px;
  font-size: 96px;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0.18;
  line-height: 1;
}
.step .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(252,202,72,0.12);
  border: 1px solid rgba(252,202,72,0.35);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step .icon svg {
  width: 22px; height: 22px;
  fill: var(--gold-hi);
}
.step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Feature row ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.feature {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  text-align: left;
}
.feature h4 {
  margin: 12px 0 4px;
  font-size: 15px;
  font-weight: 800;
}
.feature p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.feature .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 14px rgba(252,202,72,0.7);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
details.qa {
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
  transition: border-color .2s ease;
}
details.qa[open] { border-color: rgba(252,202,72,0.4); }
details.qa summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  color: var(--gold-mid);
  font-size: 22px;
  font-weight: 900;
  transition: transform .2s ease;
}
details.qa[open] summary::after { content: "−"; }
details.qa p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal h1 {
  font-size: 38px;
  font-weight: 900;
  margin: 0 0 8px;
}
.legal .updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 36px 0 10px;
  color: var(--gold-hi);
}
.legal p, .legal li {
  color: rgba(255,255,255,0.82);
  font-size: 15.5px;
}
.legal ul { padding-left: 22px; }

/* ---------- Final CTA strip ---------- */
.cta-strip {
  margin: 80px 0 0;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(252,202,72,0.18), rgba(252,202,72,0.04));
  border: 1px solid rgba(252,202,72,0.35);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(252,202,72,0.35), transparent 60%);
  pointer-events: none;
}
.cta-strip h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  margin: 0 0 10px;
}
.cta-strip p {
  color: var(--muted);
  margin: 0 0 24px;
}

/* ---------- Footer (legacy) ---------- */
.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--hairline);
  margin-top: 60px;
  font-size: 13px;
  color: var(--muted);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .links { display: flex; gap: 18px; }
.footer .links a { color: var(--muted); }
.footer .links a:hover { color: var(--gold-hi); }

/* ---------- Site footer (multi-column) ---------- */
.site-footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--hairline);
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
}
.site-footer .footer-brand .logo { font-size: 20px; }
.site-footer .footer-tag { color: var(--muted); margin: 14px 0 16px; font-size: 14px; max-width: 340px; line-height: 1.55; }
.site-footer .footer-meta { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0 0 16px; }
.site-footer .footer-meta strong { color: rgba(255,255,255,0.88); font-weight: 700; }
.site-footer .footer-stripe { font-size: 12px; color: var(--muted); max-width: 340px; line-height: 1.55; margin: 0; }
.site-footer .footer-links h5 {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-mid); margin: 0 0 16px; font-weight: 800;
}
.site-footer .footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer .footer-links a { color: rgba(255,255,255,0.78); font-weight: 500; }
.site-footer .footer-links a:hover { color: var(--gold-hi); }
.site-footer .footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 720px) {
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Trust badges ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.trust-badge {
  padding: 18px 14px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  transition: border-color .2s ease, transform .2s ease;
}
.trust-badge:hover { border-color: rgba(252,202,72,0.4); transform: translateY(-2px); }
.trust-badge .ti {
  width: 32px; height: 32px;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: rgba(252,202,72,0.12);
  border: 1px solid rgba(252,202,72,0.4);
  display: grid; place-items: center;
  color: var(--gold-hi);
  font-weight: 900;
  font-size: 13px;
}
@media (max-width: 720px) { .trust-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Launch CTA (waitlist + download) ---------- */
.launch-cta {
  margin: 80px 0 0;
  padding: 56px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(252,202,72,0.18), rgba(252,202,72,0.04));
  border: 1px solid rgba(252,202,72,0.35);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.launch-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(252,202,72,0.35), transparent 60%);
  pointer-events: none;
}
.launch-cta h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 10px; font-weight: 900; }
.launch-cta p { color: var(--muted); margin: 0 0 26px; }
.launch-cta .cta-row { justify-content: center; }
.launch-cta .small { font-size: 12.5px; margin-top: 18px; opacity: 0.8; }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 620px;
  margin: 40px auto 0;
  padding: 32px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.contact-form label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(252,202,72,0.6);
  box-shadow: 0 0 0 3px rgba(252,202,72,0.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.contact-form .check input { accent-color: var(--gold-mid); width: 16px; height: 16px; margin-top: 2px; }
.contact-form button { align-self: flex-start; margin-top: 4px; }

/* ---------- Split panels ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
@media (max-width: 720px) { .split { grid-template-columns: 1fr; } }
.panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.panel:hover { border-color: rgba(252,202,72,0.35); transform: translateY(-2px); }
.panel h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.panel p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.panel strong { color: rgba(255,255,255,0.92); }

/* ---------- Allow / Deny list cards ---------- */
.list-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
@media (max-width: 720px) { .list-cards { grid-template-columns: 1fr; } }
.list-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--hairline);
}
.list-card.allow { border-color: rgba(80, 220, 140, 0.35); background: linear-gradient(180deg, rgba(80,220,140,0.06), rgba(255,255,255,0.02)); }
.list-card.deny  { border-color: rgba(255, 110, 110, 0.35); background: linear-gradient(180deg, rgba(255,110,110,0.06), rgba(255,255,255,0.02)); }
.list-card h3 { margin: 0 0 16px; font-size: 18px; font-weight: 800; }
.list-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.list-card li { padding-left: 26px; position: relative; font-size: 14.5px; color: rgba(255,255,255,0.86); }
.list-card.allow li::before { content: "✓"; position: absolute; left: 0; color: #4cd886; font-weight: 900; }
.list-card.deny  li::before { content: "✕"; position: absolute; left: 0; color: #ff7a7a; font-weight: 900; }

html { scroll-behavior: smooth; }

/* ---------- Hero fade-in + trust text ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp .9s ease-out both; }
.trophy.fade-in { animation-delay: .15s; }
.hero-trust {
  margin-top: 18px !important;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.btn-hero {
  padding: 16px 28px;
  font-size: 16px;
  box-shadow: 0 16px 40px rgba(252,202,72,0.45), 0 0 0 1px rgba(252,202,72,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
  animation: heroGlow 3.4s ease-in-out infinite;
}
@keyframes heroGlow {
  0%,100% { box-shadow: 0 16px 40px rgba(252,202,72,0.4), 0 0 0 1px rgba(252,202,72,0.5), inset 0 1px 0 rgba(255,255,255,0.5); }
  50%     { box-shadow: 0 20px 56px rgba(252,202,72,0.6), 0 0 0 1px rgba(252,202,72,0.7), inset 0 1px 0 rgba(255,255,255,0.55); }
}

/* ---------- Trust cards (3-up premium) ---------- */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}
.trust-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.trust-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(252,202,72,0.0), rgba(252,202,72,0.3), rgba(252,202,72,0.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252,202,72,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 30px rgba(252,202,72,0.18);
}
.trust-card:hover::before { opacity: 1; }
.trust-card .tc-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(252,202,72,0.12);
  border: 1px solid rgba(252,202,72,0.4);
  color: var(--gold-hi);
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(252,202,72,0.18);
}
.trust-card .tc-icon svg { width: 22px; height: 22px; }
.trust-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 800; }
.trust-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 880px) { .trust-cards { grid-template-columns: 1fr; } }

/* ---------- Donate form ---------- */
.donate-form {
  max-width: 460px;
  margin: 28px auto 0;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.donate-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.donate-form input[type="text"],
.donate-form input[type="email"],
.donate-form input[type="number"] {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.donate-form input:focus {
  outline: none;
  border-color: rgba(252,202,72,0.55);
  box-shadow: 0 0 0 3px rgba(252,202,72,0.18);
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.amt {
  padding: 14px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease, background .15s ease;
}
.amt:hover { transform: translateY(-1px); border-color: rgba(252,202,72,0.4); }
.amt.selected {
  background: var(--gold-grad);
  color: #2A1A02;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(252,202,72,0.35);
}
.donate-form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.donate-form .check input { margin-top: 3px; accent-color: #FCCA48; }
.donate-submit { width: 100%; justify-content: center; margin-top: 8px; }
.pay-error {
  color: #ff8a8a;
  font-size: 13.5px;
  margin: 4px 0 0;
  min-height: 1em;
}
@media (max-width: 520px) {
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0 30px; }
  .nav { display: none; }
}
@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .trophy { width: 170px; height: 170px; }
}
