/* ---------- Design tokens ---------- */
:root{
  --bg: #060b16;
  --bg-alt: #0a1220;
  --surface: #0e1a2e;
  --border: #1c2b45;
  --text: #eaf1fb;
  --text-dim: #9fb2cc;
  --teal: #34e0c4;
  --violet: #9d7bff;
  --gold: #f6c667;
  --font-body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", "Segoe UI Semibold", -apple-system, Roboto, sans-serif;
  --radius: 14px;
  --wrap: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: var(--teal); text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow{ max-width: 760px; }
.center{ text-align: center; }

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1{ font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2{ font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
h3{ font-size: 1.05rem; margin-bottom: 0.4em; }
p{ margin: 0 0 1.1em; color: var(--text-dim); }
strong{ color: var(--text); }

/* ---------- Funds progress ---------- */
.progress-block{
  margin-top: 1.6em;
}
.progress-header{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 0.5em;
  font-size: 0.9rem;
}
.progress-label{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
}
.progress-amount{ color: var(--text-dim); }
.progress-amount strong{ font-size: 1.05rem; color: var(--text); }
.progress-track{
  height: 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.progress-fill{
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--violet), var(--gold));
  box-shadow: 0 0 12px rgba(157, 123, 255, 0.55);
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 0.9em;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover{ text-decoration: none; transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--teal), var(--violet));
  color: #06111f;
  box-shadow: 0 8px 24px -8px rgba(52, 224, 196, 0.45);
}
.btn-primary:hover{ box-shadow: 0 10px 28px -6px rgba(157, 123, 255, 0.55); }
.btn-lg{ padding: 0.95em 2em; font-size: 1.05rem; }
.btn-ghost{
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover{ border-color: var(--teal); }
.btn-nav{
  padding: 0.55em 1.3em;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text);
  white-space: nowrap;
}
.btn-nav:hover{ border-color: var(--teal); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 11, 22, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row{
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark{
  border-radius: 50%;
  border: 1px solid var(--border);
}
.brand-name{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.site-nav{
  display: flex;
  gap: 28px;
}
.site-nav a{
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a:hover{ color: var(--text); text-decoration: none; }

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

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,11,22,0.55) 0%, rgba(6,11,22,0.55) 40%, rgba(6,11,22,0.96) 100%),
    linear-gradient(100deg, rgba(6,11,22,0.9) 10%, rgba(6,11,22,0.35) 55%, rgba(6,11,22,0.75) 100%);
}
.hero-content{
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 720px;
}
.hero-sub{
  font-size: 1.1rem;
  max-width: 560px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.4em;
}

/* ---------- Sections ---------- */
.section{
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.section-alt{ background: var(--bg-alt); }

.reason-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 2em 0;
}
.reason-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.reason-icon{
  display: inline-flex;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
}
.reason-card p{ margin-bottom: 0; font-size: 0.94rem; }

@media (max-width: 780px){
  .reason-grid{ grid-template-columns: 1fr; }
}

/* ---------- Shop CTA ---------- */
.shop-cta{
  position: relative;
  padding: 0;
  overflow: hidden;
}
.shop-cta-media{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 15% 20%, rgba(52, 224, 196, 0.22), transparent 60%),
    radial-gradient(55% 85% at 85% 15%, rgba(157, 123, 255, 0.22), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(246, 198, 103, 0.14), transparent 65%),
    var(--bg-alt);
}
.shop-cta-content{
  position: relative;
  z-index: 1;
  padding: 96px 24px;
  text-align: center;
  max-width: 640px;
}
.shop-cta-content h2{ margin-left: auto; margin-right: auto; }
.shop-cta-actions{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0.6em;
}
.shop-cta-or{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ---------- Thanks ---------- */
.thanks-image{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1.6em;
}
.thanks-text{
  font-size: 1.1rem;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer{
  padding: 32px 0;
}
.footer-row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-row a{ color: var(--text-dim); }
.footer-row a:hover{ color: var(--teal); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn{ transition: none; }
}
