/* ============================================================
   FORTY ACRES — World-class CSS
   Design system: deep forest green + gold + cream
   ============================================================ */

/* ── Fonts & Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --forest-0:   #020806;
  --forest-1:   #050f07;
  --forest-2:   #091408;
  --forest-3:   #0f2211;
  --forest-4:   #163019;
  --forest-5:   #1e4223;
  --forest-6:   #2d6035;

  --gold-0:     #6b5118;
  --gold-1:     #8a6820;
  --gold-2:     #b38a2e;
  --gold-3:     #c9a84c;
  --gold-4:     #dfc070;
  --gold-5:     #edd898;
  --gold-pale:  #f5eac4;

  --cream:      #f5f0e1;
  --cream-dim:  #ddd6c0;
  --cream-mute: rgba(245,240,225,0.55);
  --cream-faint:rgba(245,240,225,0.25);
  --cream-ghost:rgba(245,240,225,0.08);

  --card-bg:    rgba(14,34,16,0.55);
  --card-border:rgba(201,168,76,0.18);
  --glass-bg:   rgba(5,15,7,0.7);
  --glass-blur: 20px;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;

  /* Spacing */
  --section-gap: 10rem;
  --container:   1240px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--forest-1);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Grain overlay ─────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 999;
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(3%,2%); }
  30%  { transform: translate(-1%,4%); }
  40%  { transform: translate(2%,-1%); }
  50%  { transform: translate(-3%,1%); }
  60%  { transform: translate(1%,3%); }
  70%  { transform: translate(-2%,-2%); }
  80%  { transform: translate(3%,-3%); }
  90%  { transform: translate(-1%,2%); }
}

/* ── Ticker tape ───────────────────────────────────────────── */
.ticker-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: var(--forest-0);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  z-index: 200;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}
.ticker span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold-2);
  white-space: nowrap;
  padding: 6px 0;
  text-transform: uppercase;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 28px; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-color: var(--cream-ghost);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--cream);
}
.nav-logo-mark { font-size: 1.2rem; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }
.nav-link-journal {
  color: var(--gold-3) !important;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-link-journal:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-4) !important;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(30,66,35,0.5) 0%, transparent 70%);
  animation: orb-float-1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 50%; right: -100px;
  background: radial-gradient(circle, rgba(45,96,53,0.3) 0%, transparent 70%);
  animation: orb-float-2 25s ease-in-out infinite;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  bottom: 0; left: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  animation: orb-float-3 18s ease-in-out infinite;
}
@keyframes orb-float-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes orb-float-2 {
  0%,100% { transform: translate(0,-50%) scale(1); }
  50% { transform: translate(-40px, calc(-50% + 30px)) scale(1.05); }
}
@keyframes orb-float-3 {
  0%,100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(calc(-50% + 20px)) scale(1.1); }
}

/* Topographic pattern */
.hero-topo {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(30,66,35,0.08) 59px, rgba(30,66,35,0.08) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(30,66,35,0.05) 59px, rgba(30,66,35,0.05) 60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold-3);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Hero title */
.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-line {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--cream);
  display: block;
}
.hero-line-em {
  font-style: italic;
  color: var(--gold-4);
  font-size: clamp(3.5rem, 8vw, 7.2rem);
}

/* Hero sub */
.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 3.5rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  padding: 0 3rem;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--cream-faint), transparent);
}

/* Hero progress */
.hero-progress { max-width: 600px; margin: 0 auto; }
.hero-progress-track {
  position: relative;
  height: 2px;
  background: rgba(245,240,225,0.1);
  border-radius: 1px;
  overflow: visible;
  margin-bottom: 0.6rem;
}
.hero-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-4));
  border-radius: 1px;
  transition: width 1.5s var(--ease-out);
}
.hero-progress-glow {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: var(--gold-4);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-3), 0 0 24px rgba(201,168,76,0.4);
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 12px var(--gold-3), 0 0 24px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 20px var(--gold-4), 0 0 40px rgba(201,168,76,0.6); }
}
.hero-progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-mute);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
  z-index: 2;
}
.hero-scroll:hover { color: var(--cream); }
.scroll-dot { animation: scroll-bounce 1.5s ease-in-out infinite; }
@keyframes scroll-bounce {
  0%,100% { cy: 8; }
  50% { cy: 14; }
}

/* ── Shared section styles ─────────────────────────────────── */
.section { padding: var(--section-gap) 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--cream-mute);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Mission section ───────────────────────────────────────── */
.mission-section { background: var(--forest-2); }
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.mission-left .section-eyebrow { display: block; margin-bottom: 1rem; }
.mission-left .section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 2.5rem;
}
.mission-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-4);
  line-height: 1.6;
  border-left: 2px solid var(--gold-2);
  padding-left: 1.5rem;
}
.mission-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--cream-mute);
  margin-top: 0.75rem;
}
.mission-body {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.mission-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}
.mission-stat-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.mission-stat-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-4);
  margin-bottom: 0.25rem;
}
.mission-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ── Portfolio section ─────────────────────────────────────── */
.portfolio-section { background: var(--forest-1); }
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}
.account-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}
.account-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.account-type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 0.5rem;
}
.account-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.account-total {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.account-gain {
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.account-gain.pos { color: #4ade80; }
.account-gain.neg { color: #f87171; }
.account-gain.neu { color: var(--cream-mute); }
.holdings-list { display: flex; flex-direction: column; gap: 0.5rem; }
.holding-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  background: rgba(245,240,225,0.03);
  transition: background 0.2s;
}
.holding-row:hover { background: rgba(245,240,225,0.06); }
.holding-ticker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  width: 55px;
  flex-shrink: 0;
}
.holding-name {
  font-size: 0.8rem;
  color: var(--cream-mute);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.5rem;
}
.holding-value {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cream);
  text-align: right;
  min-width: 55px;
}
.holding-pct {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: right;
  min-width: 60px;
}
.holding-pct.pos { color: #4ade80; }
.holding-pct.neg { color: #f87171; }
.holding-pct.neu { color: var(--cream-mute); }
.pending-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.12);
  color: var(--gold-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
  margin-left: 0.35rem;
}
.account-cash {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,240,225,0.06);
  font-size: 0.8rem;
  color: var(--cream-mute);
  display: flex;
  justify-content: space-between;
}

/* ── Map section ───────────────────────────────────────────── */
.map-section { background: var(--forest-2); }
.map-ui { display: flex; justify-content: center; margin-bottom: 2rem; }
.map-legend {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  backdrop-filter: blur(10px);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--cream-mute);
}
.legend-swatch {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.world-map-wrap {
  width: 100%;
  background: rgba(5,15,7,0.6);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.world-map-wrap svg { display: block; width: 100%; }
.affordable-section { max-width: 800px; margin: 0 auto; }
.affordable-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.affordable-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.affordable-header p {
  font-size: 0.85rem;
  color: var(--cream-mute);
}
.affordable-header span { color: var(--gold-4); }
.affordable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.affordable-tag {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Map tooltip */
.map-tooltip {
  position: fixed;
  background: var(--glass-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transition: opacity 0.15s;
  min-width: 160px;
}
.map-tooltip.visible { opacity: 1; }
.map-tooltip-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.map-tooltip-price { color: var(--gold-4); }
.map-tooltip-status { color: var(--cream-mute); font-size: 0.72rem; margin-top: 0.2rem; }

/* ── Milestones section ────────────────────────────────────── */
.milestones-section { background: var(--forest-1); }
.milestones-track {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.milestones-track::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--card-border) 10%, var(--card-border) 90%, transparent);
}
.milestone-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  position: relative;
}
.milestone-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cream-mute);
  text-align: right;
  min-width: 120px;
  transition: color 0.3s;
}
.milestone-dot {
  position: relative;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--forest-4);
  border: 1.5px solid var(--card-border);
  flex-shrink: 0;
  margin-left: 3px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  z-index: 1;
}
.milestone-desc {
  font-size: 0.9rem;
  color: var(--cream-mute);
  transition: color 0.3s;
}
.milestone-item.reached .milestone-label { color: var(--gold-4); }
.milestone-item.reached .milestone-dot {
  background: var(--gold-3);
  border-color: var(--gold-4);
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}
.milestone-item.reached .milestone-desc { color: var(--cream); }
.milestone-item.current .milestone-dot {
  background: var(--gold-4);
  border-color: var(--gold-5);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 0 20px rgba(201,168,76,0.4);
  animation: milestone-pulse 2s ease-in-out infinite;
}
@keyframes milestone-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 0 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0.08), 0 0 30px rgba(201,168,76,0.5); }
}

/* ── Journal section ───────────────────────────────────────── */
.journal-section { background: var(--forest-2); }
.posts-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.post-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.post-card-featured {
  background: linear-gradient(135deg, rgba(22,48,25,0.7) 0%, rgba(14,34,16,0.7) 100%);
  border-color: rgba(201,168,76,0.25);
}
.post-card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 0.4rem;
}
.post-card-date {
  font-size: 0.75rem;
  color: var(--cream-mute);
  margin-bottom: 1rem;
}
.post-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex: 1;
}
.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--cream-mute);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-3);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
}
.post-card-link:hover { color: var(--gold-4); gap: 0.75rem; }
.journal-cta { text-align: center; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-decoration: none;
  border: 1px solid var(--cream-faint);
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  color: var(--cream);
  border-color: var(--cream-faint);
  background: rgba(245,240,225,0.05);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--forest-0);
  border-top: 1px solid rgba(245,240,225,0.06);
  padding: 5rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,240,225,0.06);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--cream-mute);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  gap: 4rem;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav-head {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 0.25rem;
}
.footer-nav-col a {
  font-size: 0.85rem;
  color: var(--cream-mute);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--cream-faint);
  line-height: 1.6;
}
.footer-copy { color: var(--cream-mute) !important; }

/* ── Scroll reveal animations ──────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mission-layout { grid-template-columns: 1fr; gap: 3rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .hero-stat { padding: 0 1.5rem; }
  .footer-inner { flex-direction: column; gap: 3rem; }
  .milestones-track::before { left: 100px; }
  .milestone-label { min-width: 80px; }
}
@media (max-width: 640px) {
  :root { --section-gap: 6rem; }
  .nav-links { gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 1.5rem; }
  .accounts-grid { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .footer-nav { gap: 2rem; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--forest-1); }
::-webkit-scrollbar-thumb {
  background: var(--forest-5);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--forest-6); }

/* Selection */
::selection {
  background: rgba(201,168,76,0.25);
  color: var(--cream);
}
