/* ═══════════════════════════════════════════════════════════════════
   InGoodCoin Foundation — Design System v2
   Premium dark editorial with emotional warmth
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --ink:        #06111f;
  --ink-mid:    #0d1c30;
  --ink-light:  #162843;
  --teal:       #1f7a64;
  --teal-mid:   #2d9b7f;
  --teal-glow:  #3dbf9e;
  --gold:       #c9940a;
  --gold-mid:   #e0aa18;
  --gold-light: #f5c842;
  --warm:       #e8694a;  /* emotional accent */
  --sage:       #7fada0;
  --sage-pale:  #eef4f2;
  --cream:      #faf7f2;
  --white:      #ffffff;
  /* Text */
  --text-dim:   rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.35);
  --text-light: rgba(255,255,255,0.78);
  /* Surfaces */
  --surface-1:  rgba(255,255,255,0.04);
  --surface-2:  rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.08);
  --border-warm:rgba(255,255,255,0.12);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography scale ───────────────────────────────────────────── */
.display-1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.display-2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.65; }
.label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-tight { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(6,17,31,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

/* ── Logo ───────────────────────────────────────────────────────── */
.logo {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.logo-mark {
  position: relative; width: 48px; height: 48px; flex-shrink: 0;
}
.logo-mark svg,
.logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}
.logo-name span { color: var(--teal-glow); }
.logo-tagline {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Nav links ──────────────────────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.nav-cta {
  display: flex; align-items: center; gap: 0.75rem;
}
.btn-outline {
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-dim);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border-warm);
  border-radius: 100px;
  transition: all 0.2s;
}
.btn-outline:hover { color: white; border-color: rgba(255,255,255,0.3); }
.btn-solid {
  font-size: 0.875rem; font-weight: 700;
  color: var(--ink);
  background: var(--gold-light);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(245,200,66,0.25);
}
.btn-solid:hover { background: white; box-shadow: 0 0 30px rgba(245,200,66,0.4); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px; transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
  background: var(--ink);
}

/* Background gradient layers */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(31,122,100,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(13,28,48,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(201,148,10,0.06) 0%, transparent 60%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
}

/* Big hero number */
.hero-bg-number {
  position: absolute;
  bottom: -0.1em; right: -0.05em;
  font-family: 'Fraunces', serif;
  font-size: clamp(16rem, 30vw, 28rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1; z-index: 0;
  pointer-events: none; user-select: none;
}

.hero-inner {
  position: relative; z-index: 1;
  padding-top: 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 2rem;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,191,158,0.1);
  border: 1px solid rgba(61,191,158,0.25);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--teal-glow); text-transform: uppercase;
}
.eyebrow-pill .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-glow);
  animation: livePulse 2.5s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 2.5rem;
  max-width: 14ch;
}
.hero h1 .line-gold { color: var(--gold-light); display: block; }
.hero h1 .line-italic { font-style: italic; color: rgba(255,255,255,0.75); }

.hero-sub {
  font-size: 1.125rem; color: var(--text-dim);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-light);
  color: var(--ink);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  transition: all 0.25s;
  box-shadow: 0 4px 30px rgba(245,200,66,0.3);
}
.btn-hero-primary:hover {
  background: white; transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245,200,66,0.4);
}
.btn-hero-primary .arrow { font-size: 1.1rem; transition: transform 0.2s; }
.btn-hero-primary:hover .arrow { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-dim);
  font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s;
}
.btn-hero-ghost:hover { color: white; }
.btn-hero-ghost .play-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-ghost:hover .play-icon { border-color: rgba(255,255,255,0.3); background: var(--surface-2); }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1;
  animation: scrollBob 3s ease-in-out infinite;
}
.scroll-hint .line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(255,255,255,0.15), transparent); }

/* ═══════════════════════════════════════════════════════════════
   LOGO SHOWCASE BAND
═══════════════════════════════════════════════════════════════ */
.logo-band {
  background: var(--ink-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.logo-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 4rem;
}
.logo-large {
  display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.logo-large .logo-mark-lg { width: 80px; height: 80px; }
.logo-large .logo-mark-lg svg,
.logo-large .logo-mark-lg img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.coin-pair { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.coin-pair .coin-img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; box-shadow: 0 4px 24px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.coin-pair .coin-img:hover { transform: scale(1.06) rotate(3deg); }
.logo-large-text .name {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
  color: white;
}
.logo-large-text .name span { color: var(--teal-glow); }
.logo-large-text .tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 6px;
}
.logo-band-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
.logo-band-mission {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 400; font-style: italic;
  color: var(--text-dim); max-width: 480px; line-height: 1.6;
}
.logo-band-mission strong { color: var(--gold-light); font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   HUMAN FACES SECTION (Video)
═══════════════════════════════════════════════════════════════ */
.faces-section {
  background: var(--ink-mid);
  padding: 7rem 0;
}
.faces-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.faces-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
}
.faces-label { color: var(--warm); margin-bottom: 1.25rem; }
.faces-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
}
.faces-h2 em { font-style: italic; color: var(--sage); }
.faces-desc {
  color: var(--text-dim); font-size: 1.05rem;
  line-height: 1.75; max-width: 440px;
  align-self: end;
}
.faces-desc strong { color: white; }

/* Video placeholder */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-light);
  border: 1px solid var(--border);
}
.video-gradient-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(31,122,100,0.15) 0%, transparent 50%),
    linear-gradient(to top, rgba(6,17,31,0.9) 0%, transparent 50%),
    linear-gradient(to bottom right, #0d1c30, #162843);
}
.video-people {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; opacity: 0.35;
}
.person-block {
  background: var(--ink-light);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.person-icon { font-size: clamp(2.5rem, 4vw, 4rem); filter: grayscale(1); }
.person-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 1rem 1.5rem 1.5rem;
}
.person-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5); text-align: center;
}

.video-play-btn {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; cursor: pointer; z-index: 2;
  background: rgba(6,17,31,0.4);
  transition: background 0.3s;
}
.video-play-btn:hover { background: rgba(6,17,31,0.25); }
.play-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(245,200,66,0.15);
  border: 2px solid rgba(245,200,66,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.video-play-btn:hover .play-circle {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.08);
}
.play-triangle {
  width: 0; height: 0;
  border-left: 22px solid var(--gold-light);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 5px;
  transition: border-left-color 0.3s;
}
.video-play-btn:hover .play-triangle { border-left-color: var(--ink); }

.video-caption {
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic; color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 640px; margin: 0 auto;
  line-height: 1.6;
}
.video-coming {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(6,17,31,0.8); backdrop-filter: blur(10px);
  border: 1px solid var(--border-warm);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-light);
}

/* Faces strip */
.faces-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 1.5rem; border-radius: 12px; overflow: hidden;
}
.face-card {
  background: var(--ink-light);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.face-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; opacity: 0; transition: opacity 0.3s;
}
.face-card:nth-child(1)::before { background: var(--warm); }
.face-card:nth-child(2)::before { background: var(--teal-mid); }
.face-card:nth-child(3)::before { background: var(--gold-mid); }
.face-card:nth-child(4)::before { background: var(--sage); }
.face-card:hover { background: rgba(255,255,255,0.04); }
.face-card:hover::before { opacity: 1; }
.face-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.face-who { font-weight: 700; font-size: 1rem; color: white; margin-bottom: 0.4rem; }
.face-stat { font-size: 1.6rem; font-weight: 800; font-family: 'Fraunces', serif; margin-bottom: 0.35rem; }
.face-card:nth-child(1) .face-stat { color: var(--warm); }
.face-card:nth-child(2) .face-stat { color: var(--teal-glow); }
.face-card:nth-child(3) .face-stat { color: var(--gold-light); }
.face-card:nth-child(4) .face-stat { color: var(--sage); }
.face-note { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   COUNTER BAND
═══════════════════════════════════════════════════════════════ */
.counter-band { background: var(--ink); padding: 5rem 0; }
.counter-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.counter-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.counter-item:last-child { border-right: none; }
.counter-overline {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1rem;
}
.counter-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.03em;
  color: white; display: block;
  margin-bottom: 0.75rem;
}
.counter-number sup { font-size: 0.5em; vertical-align: super; }
.counter-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; max-width: 260px; }
.counter-desc strong { color: white; }
.counter-accent { position: absolute; top: 0; left: 0; width: 3px; height: 100%; }
.counter-item:nth-child(1) .counter-accent { background: var(--warm); }
.counter-item:nth-child(2) .counter-accent { background: var(--teal-glow); }
.counter-item:nth-child(3) .counter-accent { background: var(--gold-mid); }

/* ═══════════════════════════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════════════════════════ */
.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 5rem 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-glow);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--teal-glow);
}
.eyebrow-warm { color: var(--warm); }
.eyebrow-warm::before { background: var(--warm); }
.eyebrow-gold { color: var(--gold-light); }
.eyebrow-gold::before { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   PROBLEM — DARK
═══════════════════════════════════════════════════════════════ */
.problem-section { background: var(--ink-mid); }
.problem-layout {
  display: grid; grid-template-columns: 5fr 4fr; gap: 5rem;
  align-items: start;
}
.problem-intro h2 { color: white; margin-bottom: 1.5rem; }
.problem-intro p { color: var(--text-dim); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }

.problem-cards { display: flex; flex-direction: column; gap: 1px; }
.problem-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 0; padding: 1.75rem 2rem;
  transition: background 0.25s;
  cursor: default;
}
.problem-card:first-child { border-radius: 12px 12px 0 0; }
.problem-card:last-child { border-radius: 0 0 12px 12px; }
.problem-card:hover { background: var(--surface-2); }
.pc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.pc-icon { font-size: 1.3rem; }
.pc-title { font-weight: 700; font-size: 1rem; color: white; }
.pc-body { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; padding-left: calc(1.3rem + 1rem); }

.taxpayer-callout {
  background: linear-gradient(135deg, rgba(232,105,74,0.12), rgba(232,105,74,0.04));
  border: 1px solid rgba(232,105,74,0.25);
  border-radius: 16px; padding: 2.5rem;
  position: sticky; top: 100px;
}
.tc-label { color: var(--warm); margin-bottom: 1.25rem; }
.tc-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1;
  color: var(--warm); display: block; margin-bottom: 0.4rem;
}
.tc-sub { font-size: 0.875rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.tc-body { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.tc-body strong { color: white; }
.tc-bullets { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.tc-bullet { display: flex; gap: 0.65rem; font-size: 0.875rem; color: var(--text-dim); }
.tc-bullet::before { content: '→'; color: var(--warm); flex-shrink: 0; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   SOLUTION — ALTERNATING
═══════════════════════════════════════════════════════════════ */
.solution-section { background: var(--ink); }
.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 4rem;
}
.sol-card {
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.sol-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(61,191,158,0.07), transparent);
  pointer-events: none;
}
.sol-card:hover { border-color: rgba(61,191,158,0.3); transform: translateY(-4px); }
.sol-number {
  font-family: 'Fraunces', serif; font-size: 5rem; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1;
  position: absolute; top: 1.5rem; right: 2rem;
  pointer-events: none;
}
.sol-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.sol-title { font-weight: 700; font-size: 1.2rem; color: white; margin-bottom: 0.6rem; }
.sol-body { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   CYCLE — HORIZONTAL FLOW
═══════════════════════════════════════════════════════════════ */
.cycle-section { background: var(--ink-mid); }
.cycle-flow {
  display: flex; gap: 0; margin-top: 4rem;
  position: relative;
}
.cycle-connector {
  position: absolute; top: 40px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-mid) 20%, var(--teal-glow) 50%, var(--teal-mid) 80%, transparent);
  z-index: 0;
}
.cycle-step {
  flex: 1; padding: 0 1.5rem; text-align: center;
  position: relative; z-index: 1;
}
.step-bubble {
  width: 80px; height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
  position: relative; z-index: 1;
}
.cycle-step:hover .step-bubble {
  border-color: var(--teal-glow);
  background: rgba(61,191,158,0.08);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(61,191,158,0.2);
}
.step-title { font-weight: 700; font-size: 0.9rem; color: white; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   TOKEN FRAMEWORK
═══════════════════════════════════════════════════════════════ */
.token-section { background: var(--ink); }
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.phase-card {
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.phase-card:hover { transform: translateY(-6px); }
.phase-card:nth-child(1):hover { border-color: rgba(61,191,158,0.35); }
.phase-card:nth-child(2):hover { border-color: rgba(201,148,10,0.35); }
.phase-card:nth-child(3):hover { border-color: rgba(232,105,74,0.35); }
.phase-glow {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  filter: blur(40px); pointer-events: none;
}
.phase-card:nth-child(1) .phase-glow { background: rgba(61,191,158,0.15); }
.phase-card:nth-child(2) .phase-glow { background: rgba(201,148,10,0.15); }
.phase-card:nth-child(3) .phase-glow { background: rgba(232,105,74,0.12); }
.phase-label { color: var(--text-muted); margin-bottom: 1rem; }
.phase-title { font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 1.75rem; }
.phase-amount {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 3rem; line-height: 1; margin-bottom: 0.25rem;
}
.phase-card:nth-child(1) .phase-amount { color: var(--teal-glow); }
.phase-card:nth-child(2) .phase-amount { color: var(--gold-light); }
.phase-card:nth-child(3) .phase-amount { color: var(--warm); }
.phase-per { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.phase-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-bottom: 1.5rem; }
.token-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.5rem 1rem; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700;
}
.phase-card:nth-child(1) .token-badge { background: rgba(61,191,158,0.1); color: var(--teal-glow); }
.phase-card:nth-child(2) .token-badge { background: rgba(245,200,66,0.1); color: var(--gold-light); }
.phase-card:nth-child(3) .token-badge { background: rgba(232,105,74,0.1); color: var(--warm); }
.token-badge .t-icon { font-size: 0.9rem; }

.token-summary {
  margin-top: 2.5rem;
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 2.5rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem; align-items: center;
}
.ts-big {
  font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.ts-body { font-size: 0.9rem; color: var(--text-dim); line-height: 1.65; }
.ts-body strong { color: white; }
.ts-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ═══════════════════════════════════════════════════════════════
   FOUNDATION — BENTO GRID
═══════════════════════════════════════════════════════════════ */
.foundation-section { background: var(--ink-mid); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 1.5rem; margin-top: 4rem; }
.bento-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.bento-card:hover { border-color: rgba(61,191,158,0.25); transform: translateY(-3px); }
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.bento-title { font-weight: 700; font-size: 1rem; color: white; margin-bottom: 0.5rem; }
.bento-body { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }
.bento-highlight {
  background: linear-gradient(135deg, rgba(61,191,158,0.1), rgba(31,122,100,0.05));
  border-color: rgba(61,191,158,0.2);
}

/* ═══════════════════════════════════════════════════════════════
   ROI — SPLIT DARK
═══════════════════════════════════════════════════════════════ */
.roi-section { background: var(--ink); }
.roi-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 20px; overflow: hidden; margin-top: 4rem; }
.roi-panel { padding: 3.5rem; }
.roi-panel.community { background: var(--ink-mid); }
.roi-panel.investor { background: var(--ink-light); }
.roi-panel-title {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600;
  color: white; margin-bottom: 2rem; line-height: 1.2;
}
.roi-panel-title .accent { display: block; }
.community .roi-panel-title .accent { color: var(--teal-glow); }
.investor .roi-panel-title .accent { color: var(--gold-light); }
.roi-list { display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.roi-list li {
  display: flex; gap: 0.85rem;
  font-size: 0.9rem; color: var(--text-dim); line-height: 1.5;
}
.roi-list .check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; margin-top: 1px; font-weight: 700;
}
.community .check { background: rgba(61,191,158,0.15); color: var(--teal-glow); }
.investor .check { background: rgba(245,200,66,0.12); color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   PARTNERSHIP TIERS
═══════════════════════════════════════════════════════════════ */
.tiers-section { background: var(--ink-mid); }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.tier-card {
  border-radius: 24px; padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.tier-card:hover { transform: translateY(-6px); }
.tier-card.featured {
  background: linear-gradient(160deg, #0d2a22, #0a1e18);
  border-color: rgba(61,191,158,0.3);
}
.tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--teal-glow); background: rgba(61,191,158,0.1);
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.tier-card.standard { background: var(--ink); }
.tier-card.municipal { background: linear-gradient(160deg, #0f1e38, #0a1628); border-color: rgba(201,148,10,0.2); }
.tier-badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.featured .tier-badge-pill { background: rgba(61,191,158,0.15); color: var(--teal-glow); }
.standard .tier-badge-pill { background: var(--surface-1); color: var(--text-dim); }
.municipal .tier-badge-pill { background: rgba(201,148,10,0.12); color: var(--gold-mid); }
.tier-name { font-weight: 700; font-size: 1.3rem; color: white; margin-bottom: 0.4rem; }
.tier-who { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
.tier-items { display: flex; flex-direction: column; gap: 0.8rem; list-style: none; }
.tier-items li {
  display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--text-dim); line-height: 1.5;
}
.tier-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.featured .tier-dot { background: var(--teal-glow); }
.standard .tier-dot { background: var(--text-muted); }
.municipal .tier-dot { background: var(--gold-mid); }

/* ═══════════════════════════════════════════════════════════════
   INVESTMENT
═══════════════════════════════════════════════════════════════ */
.invest-section { background: var(--ink); }
.invest-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.invest-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.inv-num-card {
  background: var(--ink-mid); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
}
.inv-num-card:first-child { grid-column: span 2; border-color: rgba(245,200,66,0.25); }
.inv-big {
  font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; line-height: 1;
  margin-bottom: 0.25rem;
}
.inv-num-card:first-child .inv-big { font-size: 4.5rem; color: var(--gold-light); }
.inv-lbl { font-size: 0.8rem; color: var(--text-muted); }

.budget-list { display: flex; flex-direction: column; gap: 0; }
.budget-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
}
.budget-row:last-child { border-bottom: none; }
.br-left { display: flex; flex-direction: column; gap: 6px; }
.br-name { font-size: 0.9rem; color: var(--text-dim); }
.br-bar { height: 3px; border-radius: 2px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.br-amount { font-weight: 700; font-size: 1rem; color: white; }

.invest-note {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  background: rgba(61,191,158,0.05);
  border: 1px solid rgba(61,191,158,0.15);
  border-radius: 12px;
  font-size: 0.875rem; color: var(--text-dim); line-height: 1.7;
}
.invest-note strong { color: var(--teal-glow); }

/* ═══════════════════════════════════════════════════════════════
   QUOTE BAND
═══════════════════════════════════════════════════════════════ */
.quote-band {
  background: linear-gradient(135deg, var(--teal) 0%, #1a5245 100%);
  padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"'; position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  font-family: 'Fraunces', serif; font-size: 20rem; font-weight: 700;
  color: rgba(255,255,255,0.04); line-height: 1;
  pointer-events: none; z-index: 0;
}
.quote-band blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600; font-style: italic;
  color: white; line-height: 1.35; max-width: 800px;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
}
.quote-band cite { font-size: 0.875rem; color: rgba(255,255,255,0.6); font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--ink-mid);
  padding: 8rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,191,158,0.08), transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: white; margin-bottom: 1.25rem; position: relative; }
.cta-section p {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 540px; margin: 0 auto 2.5rem;
  line-height: 1.7; position: relative;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-primary {
  background: var(--gold-light); color: var(--ink);
  font-weight: 700; font-size: 0.95rem;
  padding: 1rem 2.5rem; border-radius: 100px;
  transition: all 0.25s;
  box-shadow: 0 4px 30px rgba(245,200,66,0.3);
}
.btn-cta-primary:hover { background: white; box-shadow: 0 8px 40px rgba(245,200,66,0.45); transform: translateY(-2px); }
.btn-cta-ghost {
  color: var(--text-dim); font-weight: 600; font-size: 0.95rem;
  padding: 1rem 2.5rem; border-radius: 100px;
  border: 1px solid var(--border-warm);
  transition: all 0.25s;
}
.btn-cta-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); }
.cta-contact { margin-top: 2rem; font-size: 0.85rem; color: var(--text-muted); position: relative; }
.cta-contact a { color: var(--teal-glow); }
.cta-contact a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: #030b16;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-text { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin-top: 1.25rem; max-width: 280px; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface-1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--teal); color: white; border-color: var(--teal); }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-muted);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(3,11,22,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--text-dim); transition: color 0.2s; }
.nav-drawer a:hover { color: white; }
.nav-drawer .close-btn {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none; color: var(--text-dim); font-size: 1.5rem; cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes floatCoin {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Reveal */
.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.visible { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem-layout { grid-template-columns: 1fr; }
  .taxpayer-callout { position: static; }
  .token-summary { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .ts-divider { width: 100%; height: 1px; }
  .logo-band-inner { flex-direction: column; gap: 2rem; }
  .logo-band-divider { display: none; }
}
@media (max-width: 900px) {
  .hero h1 { font-size: clamp(3rem, 10vw, 5rem); }
  .solution-grid { grid-template-columns: 1fr; }
  .roi-split { grid-template-columns: 1fr; }
  .invest-layout { grid-template-columns: 1fr; }
  .invest-numbers { grid-template-columns: 1fr 1fr; }
  .faces-header { grid-template-columns: 1fr; gap: 2rem; }
  .faces-strip { grid-template-columns: 1fr 1fr; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-item { border-right: none; border-bottom: 1px solid var(--border); }
  .counter-item:last-child { border-bottom: none; }
  .tiers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cycle-flow { flex-direction: column; gap: 1.5rem; }
  .cycle-connector { display: none; }
  .phase-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .hero { padding-bottom: 6rem; }
  .section-pad { padding: 5rem 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .faces-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .inv-num-card:first-child { grid-column: span 2; }
  .tiers-grid { grid-template-columns: 1fr; }
}
