@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --ink: #0a0a08;
  --cream: #f5f0e8;
  --red: #c8182a;
  --red-dark: #8b0f1c;
  --gold: #c9920a;
  --mid: #4a4a44;
  --green: #0a5e3a;
  --blue: #1a3a6b;
  --orange: #c45c0a;
  --teal: #0a5e5e;
  --ff-display: 'Instrument Serif', Georgia, serif;
  --ff-body: 'Raleway', Georgia, serif;
  --ff-mono: 'DM Mono', monospace;
}

a {
    text-decoration: none;
    color: inherit;
}

abbr {
  all: unset;
}

abbr[data-title] {
  position: relative;
  cursor: pointer;
  flex-wrap: wrap;
  color: inherit;
  font-weight: 500;
}

abbr[data-title]::after {
  content: attr(data-title);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);

  white-space: nowrap;
  padding: 5px 12px 5px 10px;

  background: #0f0f0d;
  color: #f5f0e8;
  border: 1px solid rgba(200, 24, 42, 0.35);
  border-left: 3px solid #c8182a;

  font-family: 'Inter', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 0;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

abbr[data-title]::before {
  content: '';
  position: absolute;
  bottom: 122%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  border: 5px solid transparent;
  border-top-color: rgba(200, 24, 42, 0.4);
  border-bottom: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

abbr[data-title]:hover::after,
abbr[data-title]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 400;
    text-align: justify;
  line-height: 1.6;
  overflow-x: hidden
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  height: 55px;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}

.nav-top-row button {
  display: none;
}

.nav-top-row a span {
  padding: 0;
}

.nav-logo {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}

.nav-logo span {
  color: var(--red);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav ul a {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--cream) !important;
  padding: 8px 20px;
  letter-spacing: 0.12em !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* TICKER */
.ticker-bar {
  background: var(--red);
  padding: 7px 0;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  overflow: hidden;
  white-space: nowrap
}

.ticker-inner {
  display: inline-block;
  animation: ticker 55s linear infinite
}

@keyframes ticker {
  from {
    transform: translateX(100vw)
  }

  to {
    transform: translateX(-100%)
  }
}

.ticker-sep {
  margin: 0 1.5rem;
  opacity: 0.55
}

/* HERO */
.data-hero {
  padding: 3rem 7rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 50%, rgba(200, 24, 42, 0.07) 0%, transparent 60%), var(--ink)
}

.data-hero::before {
  content: 'DATA';
  position: absolute;
  font-family: var(--ff-display);
  font-size: 22vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.018);
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em
}

.dh-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: block
}

.dh-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative
}

.dh-title em {
  font-style: italic;
  color: var(--red)
}

.dh-sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.5);
  max-width: 55ch;
  line-height: 1.6;
  margin-bottom: 3rem;
  position: relative
}

.dh-kpis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem
}

.dh-kpi {
  background: var(--ink);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background 0.2s
}

.dh-kpi:hover {
  background: rgba(255, 255, 255, 0.04)
}

.dh-kpi-val {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--red);
  display: block;
  line-height: 1
}

.dh-kpi-lbl {
  font-family: var(--ff-mono);
  font-size: 7.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 5px;
  display: block;
  line-height: 1.4
}

/* SECTION STRIPE */
.section-stripe {
  background: var(--red);
  padding: 0.65rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 2px solid rgba(0, 0, 0, 0.3)
}

.ss-num {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65)
}

.ss-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream)
}

.ss-count {
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em
}

/* CHART GRID */
.cgrid {
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px
}

.g2 {
  grid-template-columns: repeat(2, 1fr)
}

.g3 {
  grid-template-columns: repeat(3, 1fr)
}

.g4 {
  grid-template-columns: repeat(4, 1fr)
}

.g2x1 {
  grid-template-columns: 2fr 1fr
}

.g1x2 {
  grid-template-columns: 1fr 2fr
}

.g3x1 {
  grid-template-columns: 3fr 1fr
}

/* CHART BLOCK */
.cb {
  background: #0d0d0b;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s
}

.cb:hover {
  background: #121210
}

.cb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent, var(--red))
}

.cb-label {
  font-family: var(--ff-mono);
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 0.3rem
}

.cb-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
  line-height: 1.2
}

.cb-sub {
  font-family: var(--ff-mono);
  font-size: 8.5px;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em
}

.cb-verdict {
  font-family: var(--ff-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  line-height: 1.55
}

.cb-verdict strong {
  color: var(--red)
}

/* BIG NUMBER */
.bignum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px
}

.bn-val {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--red)
}

.bn-unit {
  font-family: var(--ff-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 0.3rem
}

.bn-ctx {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 0.75rem;
  line-height: 1.5
}

.bn-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1rem 0
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* BTT */
#btt {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: var(--red);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 9px 14px;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s
}

#btt.show {
  opacity: 1;
  pointer-events: all
}

#btt:hover {
  background: var(--red-dark)
}

/* TOC SIDEBAR */
.toc-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 7px;
  background: rgba(10, 10, 8, 0.9);
  border-right: 2px solid var(--red)
}

.toc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: block;
  text-decoration: none
}

.toc-dot:hover,
.toc-dot.active {
  background: var(--red);
  transform: scale(1.5)
}

/* FOOTER */
footer {
  background: #000;
  color: var(--cream);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  border-top: 3px solid var(--red)
}

.footer-brand h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.5;
  font-family: var(--ff-mono);
  text-align: justify;
}

.ft-sub {
  font-family: var(--ff-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.25);
  margin-bottom: 1rem;
  display: block
}

.ft-divider {
  height: 1px;
  background: var(--red-dark);
  margin: 1.2rem 0
}

.ft-tricolor {
  height: 2px;
  width: 40px;
  background: linear-gradient(to right, #FF6B00 33%, #fff 33% 66%, #138808 66%)
}

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  color: rgba(245, 240, 232, 0.4);
  padding: 3px 0;
  letter-spacing: 0.08em
}

.footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 2.5rem;
  display: flex;
  justify-content: space-between
}

.footer-bottom span {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.22)
}

#c12 {
  padding: 7rem;
}

/* CTA SECTION */
.cta-section {
  padding: 5rem 2.5rem;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(0, 0, 0, 0.2)
}

.cta-section::before {
  content: 'CHANGE';
  position: absolute;
  font-family: var(--ff-display);
  font-size: 22vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.08);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none
}

.cta-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative
}

.cta-section h2 em {
  font-style: italic
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 45ch;
  margin: 0 auto 2.5rem;
  position: relative;
  font-family: var(--ff-body)
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.btn-cta {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: 2px solid
}

.btn-cta.solid {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream)
}

.btn-cta.outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.45)
}

.btn-cta.solid:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink)
}


/* ═══════════════════════════════════════════════════════════════
   BHARATYAM DATA PAGE — RESPONSIVE CSS
   data-mobile.css
   Tablet ≤ 1024px · Mobile ≤ 640px · XS ≤ 380px
   Paste this <link> before </head> OR append to <style> block
═══════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════
   TABLET  ≤ 1024px
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #c12 {
    padding: 2rem;
  }
  /* ── NAV ──────────────────────────────────── */
  nav {
    padding: 0 1.75rem;
    gap: 0;
  }

  nav ul {
    gap: 1.5rem;
  }

  nav ul a {
    font-size: 9px;
  }

  /* ── TICKER ───────────────────────────────── */
  .ticker-bar {
    padding: 6px 0;
  }

  /* ── HERO ─────────────────────────────────── */
  .data-hero {
    padding: 4rem 2rem 3rem;
  }

  .dh-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
  }

  /* KPI grid: 3 cols on tablet */
  .dh-kpis {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ── SECTION STRIPE ───────────────────────── */
  .section-stripe {
    padding: 0.65rem 2rem;
  }

  /* ── CHART GRIDS: collapse to 2 cols ────────── */
  .cgrid.g3,
  .cgrid.g4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cgrid.g2x1,
  .cgrid.g1x2,
  .cgrid.g3x1 {
    grid-template-columns: 1fr;
  }

  /* ── SIDEBAR TOC ──────────────────────────── */
  .toc-bar {
    display: none;
  }
}


/* ══════════════════════════════════════════════
   MOBILE  ≤ 640px
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  #c12 {
    padding: 0;
  }
  /* ─── BASE ──────────────────────────────────── */
  body {
    font-size: 15.5px;
    overflow-x: hidden;
  }

  .toc-bar {
    display: none;
  }

  #btt {
    bottom: 1rem;
    right: 1rem;
    font-size: 8.5px;
    padding: 8px 12px;
  }

  /* ─── NAV ─────────────────────────────────── */
  nav {
    height: auto;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    position: sticky;
    top: 0;
    z-index: 200;
  }

  /* Logo row */
  .nav-logo {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 1.25rem;
    font-size: 11px;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
  }

  /* Hamburger button — add this to your HTML too (see below) */
  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: none;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--cream);
    cursor: pointer;
    font-size: 20px;
    flex-shrink: 0;
  }

  /* Logo + hamburger sit on the same row */
  .nav-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-top-row button {
    display: inline;
  }

  .nav-top-row a span {
    padding: 10px;
  }

  /* Collapsible link drawer */
  nav ul {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s ease;
    padding: 0;
    gap: 0;
  }

  nav ul.nav-open {
    max-height: 400px;
  }

  nav ul li {
    flex-shrink: 0;
    width: 100%;
  }

  nav ul a {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 1rem;
    font-size: 10px;
    letter-spacing: 0.15em;
    opacity: 1;
    color: rgba(245, 240, 232, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: none;
    background: #191919 !important;
    color: #fff !important;
    height: 46px !important;
    justify-content: center;
    font-size: 10px !important;
    border-bottom: none !important;
    margin: 0.5rem 1.25rem 0;
    width: calc(100% - 2.5rem);
  }

  nav ul a:hover {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.04);
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  .nav-cta {
    background: var(--red) !important;
    color: var(--cream) !important;
    opacity: 1 !important;
    padding: 0 1.25rem !important;
    height: 46px !important;
    justify-content: center;
    font-size: 10px !important;
    border-bottom: none !important;
    margin: 0.5rem 1.25rem 0.75rem;
    width: calc(100% - 2.5rem);
  }

  /* ─── TICKER ──────────────────────────────── */
  .ticker-bar {
    padding: 6px 0;
    font-size: 8.5px;
    letter-spacing: 0.08em;
  }

  .ticker-inner {
    animation-duration: 32s;
  }

  .ticker-sep {
    margin: 0 1rem;
  }

  /* ─── HERO ────────────────────────────────── */
  .data-hero {
    padding: 2.5rem 1.25rem 2rem;
    background: radial-gradient(ellipse at 100% 30%, rgba(200, 24, 42, 0.1) 0%, transparent 60%), var(--ink);
  }

  .data-hero::before {
    font-size: 46vw;
    opacity: 1;
  }

  .dh-label {
    font-size: 7.5px;
    letter-spacing: 0.25em;
    margin-bottom: 0.85rem;
  }

  .dh-title {
    font-size: clamp(3rem, 16vw, 4.5rem);
    line-height: 0.86;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
  }

  .dh-sub {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 100%;
    color: rgba(245, 240, 232, 0.48);
  }

  /* KPI: 2×3 grid on mobile */
  .dh-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 1.5rem;
  }

  .dh-kpi {
    padding: 1rem 0.85rem;
  }

  .dh-kpi-val {
    font-size: 1.55rem;
    line-height: 1;
  }

  .dh-kpi-lbl {
    font-size: 7px;
    letter-spacing: 0.12em;
    margin-top: 4px;
    line-height: 1.35;
  }

  /* ─── SECTION STRIPE ──────────────────────── */
  .section-stripe {
    padding: 0.6rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .ss-num {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .ss-title {
    font-size: 0.95rem;
  }

  .ss-count {
    margin-left: auto;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  /* ─── CHART GRIDS: all single column ────────── */
  .cgrid {
    grid-template-columns: 1fr !important;
    gap: 2px;
  }

  /* Override span-based big layouts */
  .cgrid.g2x1,
  .cgrid.g1x2,
  .cgrid.g3x1 {
    grid-template-columns: 1fr !important;
  }

  /* ─── CHART BLOCKS ────────────────────────── */
  .cb {
    padding: 1.35rem 1.1rem;
  }

  .cb::before {
    height: 2px;
  }

  .cb-label {
    font-size: 7px;
    letter-spacing: 0.18em;
    margin-bottom: 0.2rem;
  }

  .cb-title {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0.15rem;
  }

  .cb-sub {
    font-size: 8px;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
  }

  .cb-verdict {
    font-size: 8px;
    letter-spacing: 0.05em;
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    line-height: 1.55;
  }

  /* Make canvas charts a bit taller so they breathe */
  canvas {
    min-height: 180px;
  }

  /* ─── BIG NUMBER BLOCKS ───────────────────── */
  .bignum {
    min-height: 140px;
  }

  .bn-val {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
    line-height: 1;
  }

  .bn-unit {
    font-size: 7.5px;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
  }

  .bn-ctx {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-top: 0.6rem;
  }

  .bn-sep {
    margin: 0.85rem 0;
  }

  /* ─── FOOTER ──────────────────────────────── */
  footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 3rem;
    border-top-width: 2px;
  }

  .footer-brand h3 {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
  }

  .footer-brand p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .ft-sub {
    font-size: 7.5px;
    letter-spacing: 0.18em;
  }

  .ft-divider {
    margin: 1rem 0;
  }

  .ft-tricolor {
    height: 2px;
    width: 36px;
  }

  .footer-col h4 {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 0.8rem;
  }

  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.5rem;
  }

  .footer-col ul li {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    padding: 4px 0;
  }

  .footer-bottom {
    padding: 0.85rem 1.25rem;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
  }

  .footer-bottom span {
    font-size: 7.5px;
    letter-spacing: 0.08em;
  }

  /* ─── CTA SECTION ─────────────────────────── */
  .cta-section {
    padding: 4rem 1.25rem;
  }

  .cta-section::before {
    font-size: 30vw;
  }

  .cta-section h2 {
    font-size: clamp(1.9rem, 9.5vw, 3rem);
    margin-bottom: 0.85rem;
  }

  .cta-section p {
    font-size: 0.88rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.14em;
    padding: 13px 20px;
  }

  /* ─── REVEAL ANIMATION ────────────────────── */
  .reveal {
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}


/* ══════════════════════════════════════════════
   EXTRA SMALL  ≤ 380px
   iPhone SE / compact Android
══════════════════════════════════════════════ */
@media (max-width: 380px) {

  .data-hero {
    padding: 2rem 1rem 1.75rem;
  }

  .dh-title {
    font-size: clamp(2.6rem, 17vw, 3.8rem);
  }

  .dh-sub {
    font-size: 0.82rem;
  }

  /* KPI: single row of 2, tighter */
  .dh-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .dh-kpi {
    padding: 0.85rem 0.65rem;
  }

  .dh-kpi-val {
    font-size: 1.35rem;
  }

  .dh-kpi-lbl {
    font-size: 6.5px;
  }

  .section-stripe {
    padding: 0.55rem 1rem;
  }

  .ss-title {
    font-size: 0.85rem;
  }

  .cb {
    padding: 1.1rem 0.9rem;
  }

  .cb-title {
    font-size: 0.85rem;
  }

  .bn-val {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  footer {
    padding: 2rem 1rem 2.5rem;
  }

  .footer-col ul {
    grid-template-columns: 1fr;
  }

  nav ul a {
    padding: 0 10px;
    font-size: 7.5px;
  }

  .nav-cta {
    padding: 0 12px !important;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-section h2 {
    font-size: clamp(1.7rem, 11vw, 2.8rem);
  }

  .btn-cta {
    max-width: 260px;
    font-size: 9.5px;
  }
}