/* ── HERO ── */
#hero {
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 96px;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; width: 1000px; height: 660px; top: -80px; right: -240px;
  background: radial-gradient(ellipse, rgba(15,100,220,0.045) 0%, transparent 64%);
  pointer-events: none;
}

/* #hero h1 { font-family: var(--font-display); font-size: clamp(42px,5.5vw,76px); font-weight: 500; line-height: 1.04; letter-spacing: -.03em; max-width: 900px; opacity: 0; animation: fadeUp .65s ease forwards .15s; }
#hero h1 em { font-style: italic; color: var(--accent); } */
.hero-sub-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 52px; opacity: 0; animation: fadeUp .65s ease forwards .3s; }
.hero-sub-col p { font-size: 17px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.hero-sub-col p:last-child { margin-bottom: 0; }
.hero-sub-col strong { color: var(--text-primary); font-weight: 500; }
.hero-divider { width: 1px; background: var(--border); }

/* ── STAT STRIP ── */
#stat-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.stat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border); }
.stat-cell { background: var(--bg-raised); padding: 40px 32px; }
.stat-num { font-family: var(--font-mono); font-size: clamp(22px,2.4vw,32px); font-weight: 500; color: var(--text-primary); letter-spacing: -.03em; margin-bottom: 8px; }
.stat-num .accent { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.stat-sub { margin-top: 5px; font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }

/* ── PROBLEM SECTION ── */
#problem {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
}
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.mono-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mono-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--text-muted); }
.mono-eyebrow span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.block-h2 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,46px); font-weight: 500; line-height: 1.1; letter-spacing: -.022em; margin-bottom: 24px; }
.block-h2 em { font-style: italic; color: var(--accent); }
.body-prose p { font-size: 16px; color: var(--text-secondary); line-height: 1.78; margin-bottom: 18px; }
.body-prose p:last-child { margin-bottom: 0; }
.body-prose strong { color: var(--text-primary); font-weight: 500; }

/* Pain items — left column visual */
.pain-list { display: flex; flex-direction: column; gap: 1px; margin-top: 8px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 0;
  border: 1px solid var(--border); border-radius: 0;
  overflow: hidden;
  transition: background .2s;
}
.pain-item:first-child { border-radius: 8px 8px 0 0; }
.pain-item:last-child  { border-radius: 0 0 8px 8px; }
.pain-item + .pain-item { border-top: none; }
.pi-num {
  width: 52px; flex-shrink: 0;
  background: var(--bg-raised);
  border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  padding: 16px 0;
  transition: background .2s;
}
.pain-item:hover .pi-num { background: var(--accent-soft); color: var(--accent); }
.pi-body { padding: 16px 18px; }
.pi-title { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.pi-sub { font-size: 13px; color: var(--text-muted); line-height: 1.45; }

/* ── THE GAP SECTION ── */
#gap {
  padding: 112px 0;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.gap-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.gap-cards { display: flex; flex-direction: column; gap: 14px; }
.gap-card {
  padding: 32px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
}
.gap-card-tag {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .09em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 3px;
  display: inline-block; margin-bottom: 13px; font-weight: 500;
}
.tag-enterprise { background: #ede9fe; color: #5b21b6; border: 1px solid rgba(91,33,182,0.2); }
.tag-solo       { background: #fef3c7; color: #92400e; border: 1px solid rgba(146,64,14,0.2); }
.tag-nobody     { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.gap-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -.012em; color: var(--text-primary); margin-bottom: 10px; line-height: 1.25; }
.gap-card h3 em { font-style: italic; color: var(--accent); }
.gap-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.72; }
.gap-card.highlighted {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  box-shadow: 0 4px 24px rgba(15,100,220,0.1);
}
.gap-card.highlighted h3 { color: var(--accent); }
.gap-card.highlighted p  { color: var(--text-secondary); }

/* ── WHAT EXCURIT IS SECTION ── */
#what-it-is {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
}
.wit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }

/* argument pillars */
.pillar-list {
    display: flex;
    /* flex-direction: column; */
    gap: 0;
    margin-top: 12px;
    flex-wrap: wrap;
}
.pillar {
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}
.pillar:last-child { border-bottom: none; }
.pillar-n {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 300;
    color: rgba(15, 100, 220, 0.22);
    letter-spacing: -.04em;
    line-height: 1;
    padding-top: 3px;
    flex: 0 0 auto;
    width: 64px;
}
.pillar-body {
    flex: 1;
}
.pillar-title { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }
.pillar-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.72; }

/* ── DARK PHILOSOPHY BAND ── */
#philosophy {
  padding: 112px 0;
  background: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phil-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
#philosophy .eyebrow-dark {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55); font-family: var(--font-mono); font-size: 10.5px;
  font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 28px;
}
#philosophy h2 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,46px); font-weight: 500; line-height: 1.1; letter-spacing: -.022em; color: #fff; margin-bottom: 26px; }
#philosophy h2 em { font-style: italic; color: #7bb3f7; }
#philosophy p { font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.78; margin-bottom: 18px; }
#philosophy p:last-child { margin-bottom: 0; }
#philosophy strong { color: rgba(255,255,255,0.88); font-weight: 500; }

.phil-right { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.phil-item {
  padding: 28px 30px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.phil-item + .phil-item { margin-top: 2px; }
.phil-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 11px; }
.phil-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 9px; letter-spacing: -.012em; line-height: 1.2; }
.phil-title em { font-style: italic; color: #7bb3f7; }
.phil-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.72; }

/* ── ROADMAP SECTION ── */
#roadmap {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
}
.roadmap-header { max-width: 680px; margin-bottom: 72px; }
.roadmap-header h2 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,46px); font-weight: 500; line-height: 1.1; letter-spacing: -.022em; margin-bottom: 18px; }
.roadmap-header h2 em { font-style: italic; color: var(--accent); }
.roadmap-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.72; }

.phase-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: 12px; overflow: hidden; }
.phase-card {
  background: var(--bg);
  padding: 40px 34px 44px;
  position: relative;
}
.phase-card.active-phase { background: var(--accent-soft); }
.phase-card.dark-phase { background: var(--text-primary); }
.phase-indicator {
  display: flex; align-items: center; gap: 9px; margin-bottom: 22px;
}
.phase-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.phase-dot.active { background: var(--accent); animation: phasePulse 2s ease infinite; }
.phase-dot.pending { background: var(--border-strong); }
.phase-dot.future  { background: rgba(255,255,255,0.25); }
@keyframes phasePulse { 0%,100%{box-shadow:0 0 0 0 rgba(15,100,220,0)} 50%{box-shadow:0 0 0 5px rgba(15,100,220,0.15)} }
.phase-status {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; font-weight: 500;
}
.status-building { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.status-soon     { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-border); }
.status-future   { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); }

.phase-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.phase-card.dark-phase .phase-num { color: rgba(255,255,255,0.3); }
.phase-name { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--text-primary); letter-spacing: -.015em; margin-bottom: 6px; }
.phase-card.active-phase .phase-name { color: var(--accent); }
.phase-card.dark-phase .phase-name { color: #fff; }
.phase-milestone { font-size: 13.5px; color: var(--text-muted); margin-bottom: 24px; font-family: var(--font-mono); }
.phase-card.dark-phase .phase-milestone { color: rgba(255,255,255,0.3); }

.phase-items { display: flex; flex-direction: column; gap: 8px; }
.ph-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-secondary); line-height: 1.45;
}
.phase-card.dark-phase .ph-item { color: rgba(255,255,255,0.5); }
.ph-bullet {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  margin-top: 7px;
}
.ph-bullet.blue  { background: var(--accent); }
.ph-bullet.muted { background: var(--border-strong); }
.ph-bullet.white { background: rgba(255,255,255,0.25); }

/* ── ETHICAL COMMITMENTS SECTION ── */
#ethics {
  padding: 112px 0;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.ethics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.ethics-cards { display: flex; flex-direction: column; gap: 14px; }
.ethics-card {
  padding: 32px 28px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  border-left: 3px solid var(--accent);
  transition: box-shadow .2s;
}
.ethics-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.07); }
.ethics-card.green-left { border-left-color: var(--green); }
.ec-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 11px; }
.ec-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--text-primary); margin-bottom: 10px; line-height: 1.25; letter-spacing: -.012em; }
.ec-body { font-size: 14px; color: var(--text-secondary); line-height: 1.68; }
.ec-body strong { color: var(--text-primary); font-weight: 500; }

/* ── MARKETS SECTION ── */
#markets {
  padding: 112px 0;
  border-bottom: 1px solid var(--border);
}
.markets-header { max-width: 580px; margin-bottom: 56px; }
.markets-header .section_title {margin-bottom: 16px; }
.markets-header .section_title em { font-style: italic; color: var(--accent); }
.markets-header p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

.markets-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.market-card {
  padding: 28px 22px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  text-align: center;
  transition: box-shadow .2s, background .2s;
}
.market-card:hover { background: var(--bg); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.market-flag { font-size: 30px; margin-bottom: 12px; }
.market-name { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; }
.market-detail { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); line-height: 1.55; }
.market-badge {
  margin-top: 12px; display: inline-block;
  font-family: var(--font-mono); font-size: 9px; padding: 3px 8px; border-radius: 3px; letter-spacing: .05em;
}
.badge-active { background: var(--green-soft); color: var(--green); border: 1px solid var(--green-border); }
.badge-p3 { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-border); }

/* ── CTA ── */
.btn-xl { padding: 14px 30px; font-size: 15px; border-radius: 8px; }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */

@media(max-width:1000px) {
  .hero-sub-wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-divider { display: none; }
  .problem-layout, .gap-layout, .wit-layout, .phil-layout, .ethics-layout { grid-template-columns: 1fr; gap: 48px; }
  .phase-timeline { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  
}
@media(max-width:991px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-header {
      max-width: 100%;
      margin-bottom: 60px;
  }
  .markets-header {
      max-width: 100%;
  }
}
@media(max-width:640px) {
  .stat-grid { 
    grid-template-columns: repeat(1, 1fr);
   }
  .markets-grid {
      grid-template-columns: repeat(1, 1fr);
  }
}