/* ============================================
   WORTHRISE — Global Empowerment Platform
   Fonts: Playfair Display + Nunito
   Palette: Deep charcoal, warm amber, cream
   ============================================ */

:root {
  --bg: #0D0B08;
  --surface: #1A1612;
  --surface-2: #241F1A;
  --amber: #D4943A;
  --amber-light: #F0B84A;
  --amber-dim: #8A6020;
  --cream: #F7F2E8;
  --cream-dim: #C8BFA8;
  --text: #EDE8DF;
  --text-muted: #9A9180;
  --border: rgba(212, 148, 58, 0.18);
  --section-gap: 120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-card-link {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-card-link:hover {
  border-color: var(--amber);
  background: rgba(212,148,58,0.08);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 100px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,148,58,0.18) 0%, transparent 70%);
  top: -100px;
  left: -200px;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,148,58,0.08) 0%, transparent 70%);
  bottom: 0;
  right: -150px;
}
.hero-orb-3 {
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,148,58,0.06) 0%, transparent 70%);
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--cream-dim);
  max-width: 620px;
  margin: 0 auto 56px;
  font-weight: 300;
}
.hero-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 40px;
  max-width: 600px;
  margin: 0 auto;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.pillar-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.pillar-div {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

/* ── MISSION ── */
.mission {
  padding: var(--section-gap) 40px;
  background: var(--surface);
}
.mission-inner {
  max-width: 860px;
  margin: 0 auto;
}
.mission-badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 40px;
}
.mission-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.mission-heading em {
  color: var(--amber);
  font-style: italic;
}
.mission-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream-dim);
  margin-bottom: 24px;
  font-weight: 300;
}
.mission-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.mission-stat {}
.mission-stat-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.mission-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── VAULTS ── */
.vaults {
  padding: var(--section-gap) 40px;
  background: var(--bg);
}
.vaults-inner { max-width: 1200px; margin: 0 auto; }
.vaults-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.vaults-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.vaults-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}
.vaults-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.vault-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  transition: border-color 0.2s;
}
.vault-card:hover { border-color: var(--amber-dim); }
.vault-chain {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 8px;
}
.vault-yield {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.vault-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 300;
}
.vault-network {
  font-size: 0.72rem;
  color: var(--amber-dim);
  letter-spacing: 0.05em;
}
.vault-card-ton .vault-chain { color: #4BA3FF; }
.vault-card-hype .vault-chain { color: #B794FF; }
.vault-card-sol .chain-color { color: #9945FF; }
.vaults-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: var(--section-gap) 40px;
  background: var(--surface);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-label { margin-bottom: 40px; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  border-left: 3px solid var(--amber);
  padding-left: 40px;
  margin-bottom: 80px;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.manifesto-pillar-icon {
  font-size: 1.2rem;
  color: var(--amber);
  margin-bottom: 16px;
}
.manifesto-pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.manifesto-pillar-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: var(--section-gap) 40px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,148,58,0.12) 0%, transparent 70%);
  filter: blur(80px);
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-chain-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.chain-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.footer-mission {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 80px; }
  .hero-pillars { flex-direction: column; gap: 24px; padding: 24px 28px; }
  .pillar-div { width: 50px; height: 1px; }
  .mission, .vaults, .manifesto, .closing { padding-left: 24px; padding-right: 24px; }
  .vaults-grid { grid-template-columns: 1fr; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .mission-stat-row { gap: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .manifesto-quote { padding-left: 24px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .mission-stat-val { font-size: 2rem; }
  .nav { padding: 20px 24px; }
}
