

/* ── NAV ──────────────────────────────────────── */

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 22, 35, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── LAYOUT ──────────────────────────────────── */

/* ── TYPOGRAPHY ──────────────────────────────── */

.heading-xl {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--coral);
  margin-bottom: 32px;
}

.heading-hero {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--coral);
}

.heading-hero .coral-lt { color: var(--coral-lt); }

.heading-statement {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 124px 0 40px;
  position: relative;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--coral);
}

/* ── FRAMING NOTE ────────────────────────────── */

/* ── CITATION BADGES ─────────────────────────── */

/* ── STAT CARDS ──────────────────────────────── */

.stat-number {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 400;
  line-height: 1;
  color: var(--coral);
}

.stat-unit {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 400;
  color: var(--cream-muted);
  margin-left: 4px;
}

/* ── LARGE STAT CALLOUT ──────────────────────── */
.callout-82 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin: 48px 0;
}

.callout-big-number {
  font-family: var(--serif);
  font-size: clamp(120px, 14vw, 180px);
  font-weight: 400;
  line-height: 0.85;
  color: var(--coral);
}

.callout-text .heading-lg {
  margin-bottom: 24px;
}

/* ── TWO-COLUMN CYCLES ───────────────────────── */
.cycles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.cycle-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cycle-label.vicious { color: var(--coral); }
.cycle-label.virtuous { color: var(--green); }

.cycle-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}

.cycle-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cycle-steps li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
  padding-left: 16px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

.cycle-column.vicious .cycle-steps li {
  border-left-color: rgba(244, 162, 135, 0.3);
}

.cycle-column.virtuous .cycle-steps li {
  border-left-color: rgba(124, 242, 181, 0.3);
}

/* ── REQUIREMENTS TABLE ──────────────────────── */
.req-table {
  margin: 40px 0;
}

.req-header {
  display: grid;
  grid-template-columns: 1fr 1fr 160px;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}

.req-header span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.req-row {
  display: grid;
  grid-template-columns: 1fr 1fr 160px;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.req-need {
  font-size: 17px;
  line-height: 1.55;
}

.req-need .label {
  font-weight: 500;
  color: var(--coral-lt);
}

.req-need .desc {
  font-weight: 400;
  color: var(--cream);
}

.req-delivers {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
}

.req-delivers .green { color: var(--green-lt); }

.req-source {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req-source-tag {
  font-size: 11px;
  font-weight: 400;
  color: var(--green);
}

.req-source-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--cream-muted);
}

/* ── IMPACT CARDS ────────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.impact-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
}

.impact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.impact-card-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--coral);
}

.impact-card-num {
  font-size: 11px;
  font-weight: 400;
  color: var(--green);
}

.impact-value {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.impact-value .unit {
  font-family: var(--sans);
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--cream-muted);
  vertical-align: super;
}

.impact-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 16px;
}

.impact-mechanism {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream-muted);
}

.impact-mechanism strong {
  color: var(--green-lt);
  font-weight: 500;
}

/* ── POLICY COLUMNS ──────────────────────────── */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.policy-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-list li {
  font-size: 16px;
  line-height: 1.55;
}

.policy-list .label {
  font-weight: 500;
  color: var(--coral-lt);
}

.policy-list .desc {
  font-weight: 400;
  color: var(--cream);
}

/* ── REFERENCES ──────────────────────────────── */

/* ── FOOTER ──────────────────────────────────── */

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  
  .top-nav { padding: 0 24px; }
  

  

  

  .callout-82 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cycles-grid {
    grid-template-columns: 1fr;
  }

  .req-header, .req-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .req-header span:last-child,
  .req-row .req-source {
    display: none;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  

  

  

  
  
  
}

/* Accessibility & motion preferences */

@media (prefers-reduced-motion: reduce){
  
  
  .fade-up{opacity:1 !important;transform:none !important}
}
