/* ── TOKENS ── */
:root {
  --red:        #D42321;
  --red-hover:  #b81e1c;
  --red-soft:   rgba(212,35,33,.09);
  --red-border: rgba(212,35,33,.22);

  /* Light section */
  --l-bg:      #ffffff;
  --l-alt:     #f7f8fc;
  --l-card:    #ffffff;
  --l-border:  #e8eaf0;
  --l-text:    #0f1221;
  --l-sub:     #4a5068;
  --l-muted:   #8b90a7;

  /* Dark section */
  --d-bg:      #151722;
  --d-alt:     #1c1f2e;
  --d-card:    #1e2131;
  --d-border:  rgba(255,255,255,.08);
  --d-text:    #f0f1f7;
  --d-sub:     rgba(240,241,247,.6);
  --d-muted:   rgba(240,241,247,.36);

  --h: 'Plus Jakarta Sans', sans-serif;
  --b: 'DM Sans', sans-serif;

  --r-sm:  8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(15,18,33,.06), 0 1px 2px rgba(15,18,33,.04);
  --shadow-md: 0 4px 16px rgba(15,18,33,.08), 0 1px 4px rgba(15,18,33,.04);
  --shadow-lg: 0 12px 40px rgba(15,18,33,.1), 0 4px 12px rgba(15,18,33,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--l-text);
  background: var(--l-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── FULLSCREEN CHART MODAL ── */
.fs-btn {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--b); font-size: 11.5px; font-weight: 500;
  color: var(--d-muted); background: rgba(255,255,255,.06);
  border: 1px solid var(--d-border); border-radius: 6px;
  padding: 5px 11px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap; flex-shrink: 0;
}
.fs-btn:hover { background: rgba(212,35,33,.12); border-color: rgba(212,35,33,.3); color: #ff9998; }
.fs-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* Modal overlay */
.fs-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(10,10,14,.88);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.fs-overlay.open { display: flex; }
.fs-modal {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-lg);
  width: 100%; max-width: 1200px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.fs-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--d-border);
  flex-shrink: 0;
}
.fs-modal-head h3 {
  font-family: var(--h); font-weight: 700; font-size: 17px;
  color: var(--d-text); letter-spacing: -.01em;
}
.fs-close {
  width: 34px; height: 34px;
  border: 1px solid var(--d-border); border-radius: 50%;
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--d-muted); transition: border-color .2s, color .2s;
}
.fs-close:hover { border-color: var(--red); color: var(--red); }
.fs-close svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.fs-modal-body { flex: 1; padding: 0; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; }

/* ── YEAR TRANSITION OVERLAY ── */
#yearOverlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
#yearOverlay.show { opacity: 1; pointer-events: all; }
#yearOverlay.hide { opacity: 0; pointer-events: none; }
.yo-logo { height: 30px; width: auto; opacity: .55; }
.yo-gauge-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.yo-gauge { width: 120px; height: 120px; }
.yo-arc {
  animation: gaugeArc .58s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes gaugeArc {
  from { stroke-dashoffset: 301.6; }
  to   { stroke-dashoffset: 0; }
}

.yo-year-label {
  position: absolute;
  font-family: var(--h); font-weight: 800; font-size: 22px;
  color: var(--l-text); letter-spacing: -.02em;
  line-height: 1;
  pointer-events: none;
}


.year-switcher {
  display: flex; align-items: center;
  background: var(--l-alt);
  border: 1px solid var(--l-border);
  border-radius: 50px; padding: 3px; gap: 2px;
  flex-shrink: 0;
}
.year-btn {
  font-family: var(--h); font-size: 12.5px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  border: none; cursor: pointer; background: transparent;
  color: var(--l-muted); transition: background .2s, color .2s;
  white-space: nowrap;
}
.year-btn.active { background: var(--red); color: #fff; box-shadow: 0 2px 8px rgba(212,35,33,.28); }
.year-btn:not(.active):hover { color: var(--l-text); background: var(--l-border); }

nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  height: 70px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--l-border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links-right { display: flex; align-items: center; margin-left: auto; }
.nav-brand {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}
.nav-logo-svg {
  height: 36px;
  width: auto;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--b);
  font-size: 14px; font-weight: 400;
  color: var(--l-sub); text-decoration: none;
  transition: color .18s;
}
.nav-links a:hover { color: var(--l-text); }
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none; outline: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--l-text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--l-border);
  backdrop-filter: blur(16px);
  z-index: 499;
  padding: 20px 24px 28px;
  flex-direction: column; gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--b);
  font-size: 16px; font-weight: 400;
  color: var(--l-sub); text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--l-border);
  transition: color .18s;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-drawer a::after {
  content: '→';
  font-size: 13px;
  color: var(--l-muted);
  opacity: 0;
  transition: opacity .2s;
}
.nav-drawer a:hover::after { opacity: 1; }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--red); }
.nav-cta {
  font-family: var(--h);
  font-size: 13.5px; font-weight: 600;
  color: #fff; background: var(--red);
  padding: 9px 22px; border-radius: 50px;
  text-decoration: none;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(212,35,33,.3);
}
.nav-cta:hover { background: var(--red-hover); box-shadow: 0 4px 20px rgba(212,35,33,.4); }

/* ── HERO — light ── */
.hero {
  margin-top: 70px;
  background: var(--l-bg);
  padding: 96px 0 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
/* Hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../../images/hero-bg.png') center center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}
/* White overlay to keep text readable */
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
}
/* Hero bottom wave into next section */
.hero-wave {
  width: 100%; height: 100px;
  display: block;
  margin-bottom: -1px;
  position: relative; z-index: 2;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  color: var(--red);
  font-family: var(--b);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.hero-h1 {
  font-family: var(--h);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--l-text);
  margin-bottom: 22px;
}
.hero-h1 span { color: var(--red); }
.hero-desc {
  font-family: var(--b);
  font-size: 18px; font-weight: 300;
  color: var(--l-sub);
  max-width: 560px; margin: 0 auto 44px;
  line-height: 1.8;
}
.hero-stats-row {
  display: flex; gap: 2px;
  justify-content: center;
  max-width: 700px; margin: 0 auto 60px;
  background: var(--l-border);
  border: 1px solid var(--l-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.h-stat {
  flex: 1;
  padding: 24px 20px;
  background: var(--l-bg);
  text-align: center;
}
.h-stat-val {
  font-family: var(--h);
  font-weight: 800; font-size: 34px;
  color: var(--l-text); line-height: 1;
  letter-spacing: -.02em; margin-bottom: 5px;
  text-align: center;
}
.h-stat-val sup { font-size: 16px; color: var(--red); vertical-align: super; }
.h-stat-lbl {
  font-family: var(--b);
  font-size: 12.5px; font-weight: 400;
  color: var(--l-muted); line-height: 1.45;
  text-align: center;
}
/* Hero bottom wave into next section */
.hero-wave {
  width: 100%; height: 100px;
  display: block;
  margin-bottom: -1px;
  position: relative; z-index: 2;
}

/* ── SHARED ── */
.sec { padding: 96px 40px; }
.sec-l { background: var(--l-bg); }
.sec-la { background: var(--l-alt); }
.sec-d { background: var(--d-bg); }

.inner { max-width: 1100px; margin: 0 auto; }

/* Section label pill */
.sec-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--b);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.sec-pill-l { background: var(--red-soft); color: var(--red); border: 1px solid var(--red-border); }
.sec-pill-d { background: rgba(212,35,33,.15); color: #ff8f8e; border: 1px solid rgba(212,35,33,.3); }

.sec-h {
  font-family: var(--h);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.sec-h-l { color: var(--l-text); }
.sec-h-d { color: var(--d-text); }
.sec-h span { color: var(--red); }

.sec-p {
  font-family: var(--b);
  font-size: 17px; font-weight: 300;
  line-height: 1.85; max-width: 520px;
  margin-bottom: 56px;
}
.sec-p-l { color: var(--l-sub); }
.sec-p-d { color: var(--d-sub); }

/* ── 01 FOUNDATION — light alt ── */
.f-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.f-card {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.f-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.f-icon {
  width: 48px; height: 48px;
  background: var(--red-soft);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.f-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.f-card h3 {
  font-family: var(--h);
  font-weight: 700; font-size: 18px;
  color: var(--l-text); margin-bottom: 14px;
  letter-spacing: -.01em;
}
.f-card p, .f-card li {
  font-family: var(--b);
  font-size: 14.5px; font-weight: 400;
  color: var(--l-sub); line-height: 1.8;
  margin-bottom: 8px;
}
.f-card p:last-child { margin-bottom: 0; }
.f-card ul { padding-left: 18px; }
.f-card li::marker { color: var(--red); }

/* ── 02 USE CASES — dark ── */
.uc-list { display: flex; flex-direction: column; gap: 0; }
.uc-item {
  display: flex; align-items: center; gap: 28px;
  padding: 26px 32px;
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  transition: background .2s, border-color .2s;
  cursor: default;
}
.uc-item:last-child { margin-bottom: 0; }
.uc-item:hover { background: #252840; border-color: rgba(212,35,33,.3); }
.uc-item:hover .uc-num { color: var(--red); }
.uc-num {
  font-family: var(--h);
  font-weight: 800; font-size: 15px;
  color: var(--d-muted);
  width: 32px; flex-shrink: 0;
  transition: color .2s;
}
.uc-divider {
  width: 1px; height: 32px;
  background: var(--d-border); flex-shrink: 0;
}
.uc-text {
  font-family: var(--b);
  font-size: 16px; font-weight: 400;
  color: var(--d-sub); flex: 1; line-height: 1.5;
}
.uc-arrow { display: none; }

/* ── 03 FINDINGS — light ── */
.findings-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.find-big {
  background: var(--l-text);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 380px;
}
.find-big-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,35,33,.2);
  color: #ff8f8e;
  font-family: var(--b);
  font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 50px;
  width: fit-content;
}
.find-big-num {
  font-family: var(--h);
  font-weight: 800; font-size: 120px;
  line-height: .88; color: #fff;
  letter-spacing: -.04em;
  display: flex; align-items: baseline; gap: 4px;
}
.find-big-num .num-h {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0;
  line-height: 1;
}
.find-big-p {
  font-family: var(--b);
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.5); line-height: 1.8;
  max-width: 280px; margin-top: 16px;
}
.find-cards-col { display: flex; flex-direction: column; gap: 14px; }
.find-card {
  background: var(--l-bg);
  border: 1px solid var(--l-border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}
.find-card-tag {
  font-family: var(--b);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--l-muted); margin-bottom: 10px;
}
.find-month {
  font-family: var(--h);
  font-weight: 800; font-size: 44px;
  line-height: 1; letter-spacing: -.02em;
}
.find-month.red { color: var(--red); }
.find-month.grey { color: #22c55e; }
.find-card p {
  font-family: var(--b);
  font-size: 14px; font-weight: 400;
  color: var(--l-sub); margin-top: 10px; line-height: 1.75;
}
.insight-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 16px;
}
.insight-card {
  background: var(--l-bg);
  border: 1px solid var(--l-border);
  border-radius: 16px;
  padding: 28px 32px 28px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; align-items: flex-start; gap: 20px;
  transition: box-shadow .2s;
}
.insight-card:hover { box-shadow: var(--shadow-md); }
.insight-card-body { flex: 1; }
.insight-card p {
  font-family: var(--b);
  font-size: 15px; font-weight: 400;
  color: var(--l-sub); line-height: 1.85;
}
.insight-card strong { font-weight: 600; color: var(--l-text); }
.insight-card-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg {
  width: 18px; height: 18px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* ── 04 PATTERNS — dark ── */
.chart-grid-1 { margin-bottom: 16px; }
.chart-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-block {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.c-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--d-border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.c-head h3 {
  font-family: var(--h);
  font-weight: 700; font-size: 16px;
  color: var(--d-text); letter-spacing: -.01em;
}
.peaks { display: flex; gap: 6px; flex-wrap: wrap; }
.peak-pill {
  font-family: var(--b);
  font-size: 11.5px; font-weight: 500;
  background: rgba(138,43,226,0.18);
  color: #c4a0ff;
  border: 1px solid rgba(138,43,226,0.4);
  padding: 4px 11px; border-radius: 50px;
}
.c-ph {
  height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 39px, rgba(255,255,255,.03) 40px),
    repeating-linear-gradient(
    90deg, transparent, transparent 79px, rgba(255,255,255,.03) 80px);
}
.c-ph-sm { height: 220px; }
.c-ph-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
}
.c-ph-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.2); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.c-ph-label {
  font-family: var(--b);
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.14);
}
.c-foot {
  padding: 14px 28px;
  border-top: 1px solid var(--d-border);
  display: flex; flex-wrap: wrap;
  row-gap: 6px; column-gap: 0;
  align-items: center;
}
.c-tag {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--b);
  font-size: 13px; font-weight: 400;
  color: var(--d-sub);
  padding: 4px 14px 4px 0;
}
.c-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%; flex-shrink: 0;
}
.c-tag-green::before { background: #22c55e; }
.c-tag-purple::before { background: rgba(138,43,226,0.9); }

/* ── 05 IMPACT — light alt ── */
.impact-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 32px;
  align-items: stretch;
}
.impact-charts {
  display: flex; flex-direction: column;
  height: 100%;
}
.c-block-l {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  flex: 1;
}
#chart-wasted {
  flex: 1;
  min-height: 0;
}
.impact-stats {
  display: flex; flex-direction: column; gap: 14px;
}
.impact-stats .i-stat { flex: 1; }
.c-head-l {
  padding: 20px 28px;
  border-bottom: 1px solid var(--l-border);
}
.c-head-l h3 {
  font-family: var(--h);
  font-weight: 700; font-size: 16px;
  color: var(--l-text); letter-spacing: -.01em;
}
.c-ph-l {
  height: 250px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 39px, rgba(15,18,33,.03) 40px),
    repeating-linear-gradient(
    90deg, transparent, transparent 79px, rgba(15,18,33,.03) 80px);
}
.c-ph-l .c-ph-icon {
  border-color: rgba(15,18,33,.12);
}
.c-ph-l .c-ph-icon svg { stroke: rgba(15,18,33,.2); }
.c-ph-l .c-ph-label { color: rgba(15,18,33,.18); }
.c-foot-l {
  padding: 14px 28px;
  border-top: 1px solid var(--l-border);
  display: flex; flex-wrap: wrap; gap: 16px;
}
.c-tag-l {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--b);
  font-size: 13px; font-weight: 400; color: var(--l-sub);
}
.c-tag-l::before {
  content: ''; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%; flex-shrink: 0;
}

.impact-stats { display: flex; flex-direction: column; gap: 14px; }
.i-stat {
  border-radius: var(--r-lg);
  padding: 26px 24px;
}
.i-stat-plain {
  background: var(--l-card);
  border: 1px solid var(--l-border);
  box-shadow: var(--shadow-sm);
}
.i-stat-dark {
  background: var(--l-text);
}
.i-stat-red {
  background: var(--red);
}
.i-lbl {
  font-family: var(--b);
  font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.i-stat-plain .i-lbl { color: var(--l-muted); }
.i-stat-dark .i-lbl { color: rgba(255,255,255,.45); }
.i-stat-red  .i-lbl { color: rgba(255,255,255,.65); }
.i-val {
  font-family: var(--h);
  font-weight: 800; font-size: 46px;
  line-height: 1; letter-spacing: -.025em;
}
.i-stat-plain .i-val { color: var(--l-text); }
.i-stat-dark  .i-val { color: #fff; }
.i-stat-red   .i-val { color: #fff; }
.i-val small { font-size: 20px; font-weight: 600; }
.i-note {
  font-family: var(--b);
  font-size: 13px; font-weight: 400;
  margin-top: 8px; line-height: 1.7;
}
.i-stat-plain .i-note { color: var(--l-muted); }
.i-stat-dark  .i-note { color: rgba(255,255,255,.45); }
.i-stat-red   .i-note { color: rgba(255,255,255,.7); }

/* ── COST BANNER ── */
.cost-banner {
  margin-top: 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.cost-l {
  background: var(--red);
  padding: 60px 52px;
}
.cost-l-eyebrow {
  font-family: var(--b);
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.cost-l h2 {
  font-family: var(--h);
  font-weight: 800; font-size: 44px;
  line-height: 1.15; color: #fff;
  letter-spacing: -.025em;
}
.cost-l p {
  font-family: var(--b);
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,.65);
  margin-top: 16px; line-height: 1.85;
  max-width: 360px;
}
.cost-r {
  background: var(--l-text);
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.cost-amount {
  font-family: var(--h);
  font-weight: 800; font-size: 64px;
  color: #fff; line-height: 1;
  letter-spacing: -.03em;
}
.cost-currency {
  font-family: var(--b);
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em; margin-top: 10px;
}
.cost-gdp-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,35,33,.2);
  border: 1px solid rgba(212,35,33,.35);
  color: #ff9998;
  font-family: var(--b);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 50px;
  margin-top: 20px; width: fit-content;
}
.cost-gdp-pill::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}

/* ── FOOTER ── */
footer {
  background: var(--d-bg);
  border-top: 1px solid var(--d-border);
  padding: 48px 40px;
}
.foot-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.foot-brand {
  display: flex; align-items: center; gap: 0;
}
.foot-logo-svg {
  height: 28px;
  width: auto;
}
.foot-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.foot-links a {
  font-family: var(--b);
  font-size: 13.5px; font-weight: 400;
  color: var(--d-muted); text-decoration: none;
  transition: color .18s;
  white-space: nowrap;
}
.foot-links a:hover { color: var(--d-text); }
.foot-copy {
  font-family: var(--b);
  font-size: 13px; font-weight: 400;
  color: var(--d-muted);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d2 { transition-delay: .1s; }
.reveal-d3 { transition-delay: .18s; }


/* ── REQUEST SECTION ── */
.request-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.request-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.request-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--b);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--d-sub);
}
.request-feature svg {
  width: 18px; height: 18px;
  stroke: var(--red);
  flex-shrink: 0;
}
.request-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.request-card-title {
  font-family: var(--h);
  font-weight: 700;
  font-size: 20px;
  color: var(--d-text);
  margin-bottom: 8px;
}
.request-card-sub {
  font-family: var(--b);
  font-size: 14px;
  color: var(--d-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.request-form { display: flex; flex-direction: column; gap: 14px; }
.rf-group { display: flex; flex-direction: column; gap: 6px; }
.rf-label {
  font-family: var(--b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--d-muted);
}
.rf-input {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--d-border);
  border-radius: var(--r-sm);
  color: var(--d-text);
  font-family: var(--b);
  font-size: 14.5px;
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.rf-input::placeholder { color: var(--d-muted); }
.rf-input:focus { border-color: var(--red); }
.rf-textarea { min-height: 90px; resize: vertical; }
.rf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 28px;
  font-family: var(--h);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(212,35,33,.3);
  width: 100%;
}
.rf-btn svg { width: 16px; height: 16px; }
.rf-btn:hover { background: var(--red-hover); box-shadow: 0 4px 24px rgba(212,35,33,.45); }
.rf-note {
  font-family: var(--b);
  font-size: 13px;
  color: var(--d-muted);
  text-align: center;
  margin: 0;
}
.rf-link { color: var(--red); text-decoration: none; }
.rf-link:hover { text-decoration: underline; }
.rf-success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  font-family: var(--b);
  font-size: 14px;
  color: #22c55e;
  display: none;
}
@media (max-width: 1024px) {
  .request-wrap { grid-template-columns: 1fr; gap: 40px; }
}


/* ── REQUEST SECTION ── */
.request-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.request-features { display: flex; flex-direction: column; gap: 14px; }
.request-feature {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--b); font-size: 14.5px; font-weight: 400;
  color: var(--d-sub);
}
.request-feature svg { width: 18px; height: 18px; stroke: var(--red); flex-shrink: 0; }
.request-card {
  background: var(--d-card);
  border: 1px solid var(--d-border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.request-card-title {
  font-family: var(--h); font-weight: 700; font-size: 20px;
  color: var(--d-text); margin-bottom: 10px;
}
.request-card-sub {
  font-family: var(--b); font-size: 14px; color: var(--d-muted);
  margin-bottom: 28px; line-height: 1.75;
}
.rf-mailto-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff;
  border-radius: 50px; padding: 14px 28px;
  font-family: var(--h); font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(212,35,33,.3);
}
.rf-mailto-btn svg { width: 18px; height: 18px; }
.rf-mailto-btn:hover { background: var(--red-hover); box-shadow: 0 4px 24px rgba(212,35,33,.45); }
.rf-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0;
  color: var(--d-muted); font-family: var(--b); font-size: 13px;
}
.rf-divider::before, .rf-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--d-border);
}
.rf-email-display {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--d-border);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
#rf-email-text {
  font-family: var(--b); font-size: 14.5px;
  color: var(--d-text); letter-spacing: .01em;
}
.rf-copy-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(212,35,33,.12);
  border: 1px solid var(--red-border);
  border-radius: var(--r-sm);
  color: #ff9998; cursor: pointer;
  font-family: var(--b); font-size: 12.5px; font-weight: 500;
  padding: 6px 12px;
  transition: background .2s;
}
.rf-copy-btn svg { width: 13px; height: 13px; }
.rf-copy-btn:hover { background: rgba(212,35,33,.22); }
.rf-copy-btn.copied { background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.3); color: #22c55e; }
@media (max-width: 1024px) { .request-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0; }
  .nav-inner { padding: 0 20px; max-width: 100%; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .sec { padding: 72px 20px; }
  .f-grid { grid-template-columns: 1fr; gap: 16px; }
  .findings-layout { grid-template-columns: 1fr; }
  .insight-cards { grid-template-columns: 1fr; }
  .chart-grid-2 { grid-template-columns: 1fr; }
  .impact-layout { grid-template-columns: 1fr; }
  .cost-banner { grid-template-columns: 1fr; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero { padding: 72px 20px 0; }
  .hero-stats-row { flex-direction: column; gap: 0; border-radius: var(--r-lg); }
  .h-stat { border-bottom: 1px solid var(--l-border); }
  .h-stat:last-child { border-bottom: none; }
  /* Tighter use-case rows */
  .uc-item { gap: 16px; padding: 20px 16px; }
  .uc-num { font-size: 32px; width: 28px; }
}
@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .fs-btn { display: none !important; }
  .hero-h1 { font-size: 40px; }
  .sec-h { font-size: 30px; }
  .find-big-num { font-size: 80px; }
  .cost-amount { font-size: 48px; }
  .sec { padding: 60px 16px; }
  nav { padding: 0; }
  .nav-inner { padding: 0 16px; }
  .hero { padding: 60px 16px 0; }
  /* Use cases: tighter gap, hide arrow */
  .uc-item { gap: 24px; padding: 18px 14px; }
  .uc-num { font-size: 28px; width: 24px; }
  .uc-divider { display: none; }
  .uc-text { font-size: 15px; }
  .uc-arrow { display: none; }
  /* Charts */
  .c-head { padding: 18px 18px; flex-direction: column; align-items: flex-start; }
  .c-foot, .c-foot-l { padding: 12px 18px; gap: 10px; }
  .chart-ft { padding: 12px 18px; }
  /* Cost banner */
  .cost-l, .cost-r { padding: 40px 28px; }
  .cost-l h2 { font-size: 34px; }
}