/* ============================================================
   Corporate Rats Janta Party — Design System v3 (Movement)
   Light mode only. Rally-style buttons. Bigger fonts.
   One unified Voice portal. Friendly, focused, movement-y.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg:           #f4f3ee;
  --bg-paper:     #ffffff;
  --bg-sunken:    #ecebe4;
  --bg-warm:      #f3eddc;          /* poster paper warmth */
  --ink:          #0e0f12;
  --ink-soft:     #24262d;
  --muted:        #6b6f78;
  --line:         #0e0f1218;
  --line-strong:  #0e0f1240;

  --accent:       #c9f24a;          /* electric lime */
  --accent-deep:  #9bc60a;
  --hot:          #ff2d7b;          /* rally magenta */
  --hot-deep:     #c91e5e;
  --cyan:         #00e1ff;
  --gold:         #f5b301;
  --signal:       #ff3b30;

  --card-shadow:    0 10px 30px -12px #0e0f1226, 0 2px 6px -2px #0e0f120f;
  --card-shadow-lg: 0 30px 60px -20px #0e0f1233, 0 8px 20px -6px #0e0f121a;

  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --maxw:      1200px;
  --pad:       clamp(20px, 4vw, 56px);
  --nav-h:     68px;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--hot-deep); }
:focus-visible { outline: 3px solid var(--hot); outline-offset: 3px; border-radius: 4px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 0.4em;
}
.display {
  font-family: "Archivo Black", "Bricolage Grotesque", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 7.6vw, 5.6rem); }
h2 { font-size: clamp(2rem,   4.8vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2vw,   1.45rem); }
p  { margin: 0 0 1em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-sunken);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}
.kicker::before {
  content: "";
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--hot);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hot) 25%, transparent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%     { transform: scale(1.4); opacity: 0.6; }
}

.hl {
  background: linear-gradient(180deg, transparent 60%, var(--accent) 60%);
  padding: 0 6px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hl-hot {
  background: linear-gradient(180deg, transparent 60%, var(--hot) 60%);
  padding: 0 6px;
  color: var(--ink);
}
.underline-thick {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.underline-thick::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: var(--hot);
  border-radius: 4px;
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--hot), var(--accent));
  transition: width 0.1s linear;
}

/* ---------- NEWSPAPER MASTHEAD ---------- */
.news-strip {
  background: var(--bg-warm);
  color: var(--ink);
  border-bottom: 1px solid #00000018;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.news-strip .sep { opacity: 0.4; }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.ticker__track {
  display: inline-flex;
  gap: 56px;
  padding: 11px 0;
  white-space: nowrap;
  animation: tick 60s linear infinite;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
}
.ticker__track em { color: var(--accent); font-style: normal; margin-left: 6px; opacity: 0.85; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 var(--pad);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; text-decoration: none; }
.nav__logo {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--accent); /* drives .rat-mark fill colour */
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  /* Subtle inner ring + outer drop-shadow give the badge a stamp/medallion feel */
  box-shadow:
    inset 0 0 0 1px rgba(201, 242, 74, 0.18),
    0 1px 2px rgba(14, 15, 18, 0.18);
}
.nav__brand:hover .nav__logo {
  transform: rotate(-4deg) scale(1.05);
  background: var(--ink-soft, #1a1c20);
  box-shadow:
    inset 0 0 0 1px rgba(255, 30, 86, 0.45),
    0 6px 14px rgba(14, 15, 18, 0.22);
}
.nav__brand:hover .rat-mark {
  /* Magenta flash on hover — the mark briefly switches accent */
  background-color: var(--hot, #FF1E56);
}

/*
 * Woodcut rat brand mark.
 * The PNG is used as an alpha-mask and the silhouette is filled with
 * the element's currentColor. So the rat re-colours itself wherever
 * it appears (lime on the nav badge, magenta on hover, charcoal on a
 * light placard, etc.) — single asset, infinite themes.
 */
.rat-mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: currentColor;
  -webkit-mask: url("assets/rat-logo.png") center/contain no-repeat;
          mask: url("assets/rat-logo.png") center/contain no-repeat;
  transition: background-color 0.2s ease, transform 0.2s ease;
  /* Optical centering — woodcut sits slightly low because of the curling tail */
  transform: translateY(-1px);
}
.nav__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: flex; flex-direction: column;
  line-height: 1;
}
.nav__name em { color: var(--hot-deep); font-style: normal; }
.nav__name-hindi {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  margin-top: 3px;
}
@media (max-width: 540px) { .nav__name-hindi { display: none; } }

.nav__links { display: flex; gap: 22px; align-items: center; }
.nav__links a { text-decoration: none; font-weight: 600; font-size: 14.5px; }
.nav__links a:hover { color: var(--hot-deep); }
.nav__actions { display: flex; gap: 10px; align-items: center; }
.nav__toggle {
  display: none;
  background: var(--ink); color: var(--accent);
  border: 0;
  padding: 8px 12px;
  border-radius: 11px;
  font-size: 18px;
  cursor: pointer;
}

/* ============================================================
   BUTTONS — Rally redesign
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }

/* PRIMARY = RALLY (hot magenta block, Archivo Black, sharp-ish corners) */
.btn--rally {
  background: var(--hot);
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 10px;
  box-shadow:
    0 6px 0 -2px var(--hot-deep),
    0 14px 30px -8px #ff2d7b66;
  border: 0;
}
.btn--rally:hover {
  background: #ff4f93;
  transform: translateY(-3px) rotate(-1deg);
  box-shadow:
    0 9px 0 -2px var(--hot-deep),
    0 20px 36px -10px #ff2d7b88;
  color: #fff;
}
.btn--rally:active {
  transform: translateY(2px);
  box-shadow:
    0 3px 0 -2px var(--hot-deep),
    0 8px 18px -8px #ff2d7b66;
}

/* GHOST = secondary outline */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 700;
  border-radius: 10px;
}
.btn--ghost:hover { background: var(--ink); color: var(--accent); transform: translateY(-2px); }

/* Light ghost for dark backgrounds */
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  border-radius: 10px;
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); }

.btn--xl { padding: 18px 32px; font-size: 17px; }
.btn--lg { padding: 16px 26px; font-size: 16.5px; }
.btn--sm { padding: 10px 16px; font-size: 13.5px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.section--alt {
  background: var(--bg-paper);
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { max-width: 920px; margin-bottom: 44px; }
.section__head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__head--center .kicker { margin-left: auto; margin-right: auto; }
.section__sub { color: var(--muted); font-size: 1.1rem; max-width: 720px; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) var(--pad) clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px circle at 12% 18%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%),
    radial-gradient(700px circle at 88% 78%, color-mix(in srgb, var(--hot) 14%, transparent), transparent 60%);
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-top: 12px; }
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 580px; }
.lede--small { font-size: 1.02rem; color: var(--muted); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }

.hero__proof {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--hot);
  border-radius: 14px;
  max-width: 580px;
}
.hero__proof-num {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  color: var(--hot);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__proof-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero__proof-text em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Membership card */
.hero__card { position: relative; }
.card {
  background: linear-gradient(160deg, #1a1b1f 0%, #0e0f12 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--card-shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff14;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1.2);
}
.card:hover { transform: rotate(0deg) scale(1.02); }
.card::before {
  content: "";
  position: absolute;
  inset: -50% -25% auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(18px);
  animation: floaty 8s ease-in-out infinite;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 220px;
  background: radial-gradient(ellipse, var(--hot) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(28px);
}
@keyframes floaty {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-10px, 6px); }
}
.card__top { display: flex; justify-content: space-between; gap: 8px; position: relative; z-index: 1; }
.card__chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffffff14;
  padding: 5px 9px;
  border-radius: 7px;
}
.card__chip--mono { background: var(--accent); color: var(--ink); font-weight: 700; }
.card__avatar {
  font-size: 64px;
  line-height: 1;
  margin-top: auto;
  position: relative;
  z-index: 1;
  animation: floaty 6s ease-in-out infinite;
}
.card__name {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
}
.card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed #ffffff30;
  position: relative; z-index: 1;
}
.card__meta div { display: flex; flex-direction: column; }
.card__meta span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: #cfcec5;
  letter-spacing: 0.08em;
}
.card__meta strong { font-size: 15px; color: var(--accent); }
.card__footer { font-size: 13px; font-style: italic; color: #cfcec5; position: relative; z-index: 1; }

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--hot);
  color: #fff;
  box-shadow: 0 8px 20px -6px #0e0f1240;
  border: 2px solid var(--bg);
  z-index: 2;
}
.sticker--1 { top: 8%;     right: -10px; transform: rotate(10deg);  animation: floaty 5s ease-in-out infinite; }
.sticker--2 { bottom: 14%; left: -16px;  transform: rotate(-12deg); background: var(--accent); color: var(--ink); animation: floaty 7s ease-in-out infinite reverse; }

/* ============================================================
   CJP SOLIDARITY STRIP
   ============================================================ */
.solidarity { background: var(--ink); color: #fff; }
.solidarity__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.solidarity__msg {
  display: flex; gap: 12px; align-items: center;
  font-size: 15px; font-weight: 500;
}
.solidarity__msg .icon {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--ink); font-size: 18px;
}
.solidarity__msg strong { color: var(--accent); font-weight: 700; }

/* ============================================================
   POSTER STRIP
   ============================================================ */
/* ============================================================
   EMBLEM STRIP — wraps the official party emblem in a poster-grade frame
   ============================================================ */
.emblem-strip {
  background:
    radial-gradient(1200px circle at 50% 0%, #00000008, transparent 50%),
    var(--bg-warm);
  border-top: 1px solid #00000018;
  border-bottom: 1px solid #00000018;
  padding: clamp(36px, 6vw, 64px) var(--pad);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.emblem-strip::before, .emblem-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 16px;
  background-image: linear-gradient(135deg, transparent 50%, var(--ink) 50%, var(--ink) 60%, transparent 60%);
  background-size: 16px 16px;
  opacity: 0.06;
  pointer-events: none;
}
.emblem-strip::before { top: 0; }
.emblem-strip::after  { bottom: 0; transform: scaleY(-1); }
.emblem-strip__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.emblem-strip__plate {
  display: grid;
  gap: 22px;
  text-align: center;
}
.emblem-strip__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  flex-wrap: wrap;
}
.emblem-strip__meta .stars { color: var(--hot); letter-spacing: 0.3em; }

.emblem-figure {
  margin: 0 auto;
  max-width: min(560px, 92vw);
  display: grid;
  gap: 14px;
  justify-items: center;
}
.emblem-figure__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: block;
  background: #fff;
  box-shadow:
    0 0 0 6px var(--bg-warm),
    0 0 0 8px var(--ink),
    0 30px 60px -20px rgba(14, 15, 18, 0.35),
    0 8px 20px -8px rgba(14, 15, 18, 0.25);
  transition: transform 0.4s ease;
}
.emblem-figure__img:hover { transform: scale(1.015) rotate(-0.4deg); }
.emblem-figure__cap {
  display: grid;
  gap: 2px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.emblem-figure__cap strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.emblem-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.emblem-strip__creds {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  text-align: left;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.emblem-strip__creds li { display: flex; gap: 8px; }
.emblem-strip__creds span { color: var(--hot); font-size: 14px; }

/* STAMP */
.stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 14px 22px;
  border: 3px double var(--hot);
  border-radius: 14px;
  color: var(--hot);
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  transform: rotate(-6deg);
  opacity: 0.92;
  letter-spacing: 0.04em;
  background: repeating-linear-gradient(45deg,
    color-mix(in srgb, var(--hot) 6%, transparent) 0 2px,
    transparent 2px 6px);
  position: relative;
}
.stamp::before, .stamp::after { content: ""; position: absolute; height: 2px; background: var(--hot); left: 8px; right: 8px; opacity: 0.6; }
.stamp::before { top: 6px; }
.stamp::after  { bottom: 6px; }
.stamp__top { font-size: 12.5px; line-height: 1; }
.stamp__mid { font-size: 18px; line-height: 1.05; margin: 4px 0 3px; }
.stamp__bot { font-size: 10.5px; line-height: 1; font-family: "JetBrains Mono", monospace; font-weight: 600; letter-spacing: 0.1em; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  white-space: nowrap;
  animation: tick 38s linear infinite;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}
.marquee__track .diamond {
  color: var(--accent);
  font-size: 0.85em;
  font-family: "Space Grotesk", sans-serif;
}

/* ============================================================
   CHAPTER LABEL
   ============================================================ */
.chapter {
  display: inline-block;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--hot);
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}
.chapter::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--hot);
}
.section__head--center .chapter { padding-left: 26px; padding-right: 26px; }
.section__head--center .chapter::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--hot);
}

/* ============================================================
   WHO
   ============================================================ */
.who { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.who__col {
  padding: 30px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.who__col:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.who__col h3 { font-size: 1.2rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.who__col h3::before { content: ""; width: 28px; height: 4px; background: var(--accent); border-radius: 2px; }
.who__col:nth-child(2) h3::before { background: var(--hot); }
.checks, .crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checks li, .crosses li {
  padding: 14px 16px 14px 46px;
  background: var(--bg-sunken);
  border-radius: 12px;
  position: relative;
  font-size: 15px;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--ink);
  border-radius: 999px;
  font-weight: 800; font-size: 13px;
}
.crosses li::before {
  content: "✕";
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-weight: 800; font-size: 11px;
}

/* ============================================================
   AGENDA
   ============================================================ */
.agenda { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.agenda__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.agenda__item:nth-child(even) { border-left-color: var(--hot); }
.agenda__item:hover { transform: translateX(4px); box-shadow: var(--card-shadow); }
.agenda__num {
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  color: var(--accent-deep);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.agenda__item:nth-child(even) .agenda__num { color: var(--hot); }
.agenda__body h3 { margin-bottom: 6px; font-size: 1.3rem; }
.agenda__body p { margin: 0 0 10px; color: var(--ink-soft); font-size: 16px; }
.agenda__src {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg-sunken);
  padding: 6px 10px;
  border-radius: 6px;
}
.agenda__src::before { content: "📎"; font-size: 11px; }

/* ============================================================
   THE NUMBER THAT MATTERS — single-stat hero
   ============================================================ */
.big-number {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.big-number::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 320px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--hot) 20%, transparent), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.big-number__top {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.big-number__hero {
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.05em;
  margin: 18px 0 10px;
  position: relative;
}
.big-number__digit {
  color: var(--hot);
  position: relative;
  display: inline-block;
}
.big-number__digit::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px; bottom: 6px;
  height: 18px;
  background: var(--accent);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1.5deg);
}
.big-number__sub {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--ink-soft);
  position: relative;
}
.big-number__body {
  max-width: 640px;
  margin: 28px auto 24px;
  font-size: 17px;
  color: var(--ink-soft);
  position: relative;
  line-height: 1.55;
}
.big-number__body p:first-child strong { color: var(--ink); }
.big-number__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
}
.src-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
}
.src-pill::before { content: "📎 "; opacity: 0.5; }

/* ============================================================
   TABLE — Global comparison
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-paper);
}
.table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.table th, .table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table thead th {
  background: var(--bg-sunken);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: sticky;
  top: var(--nav-h);
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.table__note { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   UNIFIED VOICE PORTAL — segmented toggle + friendly form
   ============================================================ */
.voice-form {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--card-shadow);
}

.voice-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--bg-sunken);
  padding: 6px;
  border-radius: 16px;
  margin-bottom: 28px;
}
.voice-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.voice-toggle__btn:hover { background: #ffffff80; }
.voice-toggle__btn.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px -10px #0e0f1255;
  transform: translateY(-1px);
}
.voice-toggle__btn.is-active[data-type="bribe"] { background: var(--hot); color: #fff; }
.voice-toggle__icon { font-size: 28px; line-height: 1; }
.voice-toggle__label { display: flex; flex-direction: column; gap: 2px; }
.voice-toggle__label strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: inherit;
}
.voice-toggle__label small {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--muted);
}
.voice-toggle__btn.is-active .voice-toggle__label small { color: #cfcec5; }

/* Voice form fields — bigger and friendlier than v1 */
.voice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.voice-field { display: grid; gap: 8px; }
.voice-field--full { grid-column: 1 / -1; }
.voice-field--check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: var(--bg-sunken);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
}
.voice-label {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.voice-label small {
  display: inline;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0.03em;
}
.voice-form input[type=text],
.voice-form input[type=email],
.voice-form input[type=month],
.voice-form select,
.voice-form textarea {
  padding: 16px 18px;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: "Space Grotesk", sans-serif;
}
.voice-form input:focus,
.voice-form select:focus,
.voice-form textarea:focus {
  border-color: var(--hot);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hot) 25%, transparent);
}
.voice-form textarea { resize: vertical; min-height: 110px; }

.voice-warn {
  font-size: 13.5px;
  color: var(--hot-deep);
  background: color-mix(in srgb, var(--hot) 10%, transparent);
  border-left: 3px solid var(--hot);
  padding: 12px 14px;
  border-radius: 8px;
  margin: 6px 0 14px;
}

.voice-submit {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 18px;
}
.voice-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.voice-meta strong { color: var(--hot); font-size: 1.4rem; margin-right: 6px; font-family: "Archivo Black", sans-serif; }
.voice-out {
  display: block;
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--hot-deep);
  font-weight: 700;
  min-height: 1.2em;
}
/* Share row (post-submit) */
.share-row {
  margin-top: 18px;
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.share-row.is-active { display: flex; }
.share-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.share-btn:hover { background: var(--ink); color: var(--accent); transform: translateY(-1px); }

/* ============================================================
   JOIN form (movement card)
   ============================================================ */
.form {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  box-shadow: var(--card-shadow);
}
.form--big { max-width: 720px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: grid;
  gap: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}
.form input[type=text],
.form input[type=email],
.form input[type=month],
.form select,
.form textarea {
  padding: 15px 16px;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  font: inherit;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-weight: 500;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--hot);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--hot) 25%, transparent);
}

.charter {
  border: 1.5px dashed var(--line-strong);
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 12px;
}
.charter legend {
  padding: 0 10px;
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.charter label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  font-size: 15px !important;
  font-family: "Space Grotesk", sans-serif !important;
  cursor: pointer;
}
.charter input[type=checkbox] { margin-top: 3px; transform: scale(1.2); accent-color: var(--hot); }
.form__out {
  font-size: 14.5px;
  color: var(--hot-deep);
  font-weight: 700;
  min-height: 1.2em;
  margin-top: 4px;
}

/* ============================================================
   FOLLOW GRID — Social cards with platform brand colours
   ============================================================ */
.follow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.follow-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.follow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand, var(--ink));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}
.follow-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 36px -12px #0e0f1233, 0 4px 12px -4px #0e0f1226;
}
.follow-card:hover::before { opacity: 1; }
.follow-card:hover small { color: #ffffffcc; }
.follow-card:hover .follow-card__cta { color: #fff; }

.follow-card__icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand, var(--ink));
  color: #fff;
  transition: background 0.2s ease;
}
.follow-card:hover .follow-card__icon {
  background: #ffffff22;
}
.follow-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.follow-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.follow-card__body strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.follow-card__body small {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.follow-card__cta {
  font-family: "Archivo Black", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* Platform brand colours (3 retained) */
.follow-card--instagram { --brand: #E1306C; }
.follow-card--instagram .follow-card__icon {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}
.follow-card--instagram::before { background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%); }

.follow-card--x        { --brand: #0e0f12; }
.follow-card--youtube  { --brand: #FF0000; }

/* Wipe-data link in voice foot */
.voice-foot {
  max-width: 920px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.voice-foot p { margin: 0; max-width: 640px; text-align: left; }
.voice-foot strong { color: var(--ink); }
.wipe-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--hot-deep);
  text-decoration: none;
  padding: 8px 12px;
  border: 1.5px solid var(--hot);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.wipe-link:hover { background: var(--hot); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #cfcec5;
  padding: 60px var(--pad) 100px;
}
.footer__masthead {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ffffff20;
  text-align: center;
}
.footer__masthead-en {
  font-family: "Archivo Black", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
}
.footer__masthead-hi {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 4vw, 2.4rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
.footer__brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer__tag { font-size: 14px; }
.footer h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
}
.footer a {
  display: block;
  color: #cfcec5;
  text-decoration: none;
  padding: 5px 0;
  font-size: 14.5px;
}
.footer a:hover { color: var(--accent); }
.footer__legal {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ffffff20;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: #a8a8a0;
  flex-wrap: wrap;
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px; right: 12px;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 14px 30px -8px #0e0f1255, 0 2px 8px -2px #0e0f1333;
}
.bottom-nav__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 9px 4px;
  border-radius: 12px;
  color: #cfcec5;
  text-decoration: none;
  font-size: 10.5px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.bottom-nav a .icon { font-size: 20px; line-height: 1; }
.bottom-nav a:hover, .bottom-nav a.is-active { background: var(--accent); color: var(--ink); }
.bottom-nav a.is-cta { background: var(--hot); color: #fff; }
.bottom-nav a.is-cta:hover { background: #ff4f93; }

/* ============================================================
   RESPONSIVE — mobile-first hardening (Android + iOS)
   ============================================================ */

/* ===== Tablet & smaller ===== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .who { grid-template-columns: 1fr; }
  .voice-toggle { grid-template-columns: 1fr; }
  .voice-row { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__name-hindi { display: none; }
}

/* ===== Phone (default mobile) ===== */
@media (max-width: 720px) {
  :root { --pad: 18px; }

  /* --- Nav --- */
  .nav { padding: 10px 16px; gap: 8px; }
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 18px var(--pad);
    border-bottom: 1px solid var(--line);
    gap: 14px;
    align-items: flex-start;
    z-index: 60;
  }
  .nav__name { font-size: 14.5px; line-height: 1.15; }
  .nav__logo { width: 42px; height: 42px; }
  .rat-mark  { width: 32px; height: 32px; }
  .nav__actions .btn--sm { padding: 8px 12px; font-size: 12px; }

  /* --- News strip & ticker --- */
  .news-strip__inner { font-size: 11px; gap: 8px; }
  .news-strip .sep { display: inline; }
  .ticker { font-size: 12px; }
  .ticker__track span { padding: 0 16px; }

  /* --- Hero --- */
  .hero { padding: 48px 0 36px; }
  .hero__copy { gap: 18px; }
  .display { font-size: clamp(2rem, 9vw, 2.8rem) !important; line-height: 1.04; }
  .lede { font-size: 16.5px; }
  .lede--small { font-size: 14.5px; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__cta .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__proof { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
  .hero__proof-num { font-size: 2.4rem; }

  /* Hero card — orient flat & narrower */
  .hero__card { max-width: 360px; margin: 0 auto; }
  .card { transform: rotate(0deg); padding: 22px; }
  .sticker { font-size: 10.5px; padding: 5px 10px; }
  .sticker--1 { right: 10px; top: -10px; transform: rotate(-3deg); }
  .sticker--2 { left: 10px; bottom: -10px; transform: rotate(2deg); }

  /* --- Solidarity --- */
  .solidarity__inner { flex-direction: column; gap: 14px; text-align: center; align-items: center; padding: 16px 18px; }

  /* --- Emblem strip --- */
  .emblem-strip { padding: 36px 16px; }
  .emblem-figure { max-width: 88vw; }
  .emblem-figure__img {
    box-shadow:
      0 0 0 4px var(--bg-warm),
      0 0 0 5px var(--ink),
      0 14px 30px -10px rgba(14, 15, 18, 0.32);
  }
  .emblem-strip__row { gap: 20px; flex-direction: column; }
  .emblem-strip__creds { align-items: center; text-align: center; }

  /* --- Section heads --- */
  .section { padding: 56px 18px; }
  .section__head h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); line-height: 1.12; }
  .section__sub { font-size: 15px; }

  /* --- Agenda --- */
  .agenda__item { grid-template-columns: 1fr; padding: 22px; gap: 6px; }
  .agenda__num { font-size: 2.4rem; }
  .agenda__body h3 { font-size: 1.05rem; }

  /* --- Big number — the biggest mobile bug pre-fix --- */
  .big-number__hero {
    font-size: clamp(3.4rem, 16vw, 5.4rem) !important;
    line-height: 0.95;
  }
  .big-number__digit { font-size: 1.2em; }
  .big-number__sub  { font-size: clamp(1.1rem, 4.4vw, 1.5rem); }
  .big-number__body { font-size: 15px; padding: 0 6px; }
  .big-number__sources { gap: 6px; }
  .big-number__top span { font-size: 11px; letter-spacing: 0.15em; }

  /* --- Tables: force horizontal scroll instead of overflow --- */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -18px;
    padding: 0 18px;
  }
  .table { font-size: 13px; min-width: 560px; }
  .table th, .table td { padding: 10px 12px; }

  /* --- Voice form --- */
  .voice-toggle__btn { padding: 14px; }
  .voice-toggle__label strong { font-size: 14.5px; }
  .voice-toggle__label small  { font-size: 12px; }
  .voice-submit { flex-direction: column; align-items: stretch; gap: 12px; }
  .voice-submit .btn { width: 100%; }
  .voice-meta { text-align: center; }
  .voice-foot { flex-direction: column; align-items: flex-start; }

  /* --- Join form / charter --- */
  .form--big { padding: 22px 18px; }
  .charter { padding: 16px; }
  .charter label { font-size: 14px; }

  /* --- Follow grid --- */
  .follow-grid, .follow-grid--2 { grid-template-columns: 1fr; gap: 12px; }
  .follow-card { padding: 16px 18px; }

  /* --- Footer --- */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer__masthead-en, .footer__masthead-hi { font-size: clamp(1.4rem, 6vw, 2rem); }
  .footer__legal { flex-direction: column; gap: 6px; }

  /* --- Bottom nav --- */
  .bottom-nav { display: block; }
  main { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

  /* --- Marquee: slow it so people can actually read --- */
  .marquee__track { animation-duration: 50s; }
  .marquee span { font-size: 1.1rem; padding: 0 14px; }

  /* --- Misc polish --- */
  .scroll-progress { display: none; }
  .btn--xl { padding: 15px 22px; font-size: 15px; }
  .btn--rally { letter-spacing: 0.04em; }

  /* iOS Safari: prevent auto-zoom on input focus (needs ≥16px) */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Smooth tap responses — kill the blue flash */
  a, button, [role="button"], .voice-toggle__btn, .follow-card, .share-btn {
    -webkit-tap-highlight-color: transparent;
  }

  /* Adequate touch targets (Apple HIG = 44px, Material = 48dp) */
  .nav__links a,
  .footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ===== Small phone (iPhone SE, older Androids) ===== */
@media (max-width: 540px) {
  :root { --pad: 14px; }
  .news-strip__inner .sep { display: none; }
  .news-strip__inner span { font-size: 10.5px; }

  .display { font-size: clamp(1.7rem, 8.5vw, 2.4rem) !important; }
  .lede { font-size: 15.5px; }

  .section { padding: 48px 14px; }
  .section__head h2 { font-size: clamp(1.4rem, 7vw, 2rem); }

  .agenda { gap: 14px; }
  .agenda__num { font-size: 2rem; }
  .agenda__body h3 { font-size: 1rem; }
  .agenda__body p  { font-size: 14px; }

  .emblem-strip { padding: 28px 14px; }
  .emblem-figure { max-width: 92vw; }
  .emblem-strip__meta { font-size: 10.5px; }

  .stamp { padding: 10px 14px; }
  .stamp__mid { font-size: 1rem; }

  .footer__grid { grid-template-columns: 1fr; text-align: left; }
  .footer__brand { font-size: 14px; }

  .voice-toggle__icon { font-size: 22px; }
  .voice-warn { font-size: 12.5px; }

  .marquee span { font-size: 0.95rem; }
}

/* ===== iPhone safe area (notch / home indicator) ===== */
@supports (padding: max(0px)) {
  .nav {
    padding-left:  max(var(--pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--pad), env(safe-area-inset-right, 0px));
  }
  .bottom-nav {
    /* Lift above the home indicator on iPhones */
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    left:  max(12px, env(safe-area-inset-left,  0px));
    right: max(12px, env(safe-area-inset-right, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
