/* ══════════════════════════════════════════════════════
   CJP — Cockroach Janata Party
   Style Sheet v2.0
   Typography: League Spartan + Crimson Pro + DM Sans
   Theme: Black (#0a0a0a) + Green (#1a7a2e) + White
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-mid:   #1a1a1a;
  --black-lite:  #222222;
  --green:       #1a7a2e;
  --green-mid:   #1d8a34;
  --green-lite:  #22a03d;
  --green-pale:  #e6f4ea;
  --green-dim:   #0f4a1b;
  --white:       #ffffff;
  --off-white:   #f7f5f0;
  --gray-100:    #f0ede8;
  --gray-200:    #d8d4cc;
  --gray-400:    #9a9590;
  --gray-600:    #5a5650;
  --text-on-dark:   #e8e4dc;
  --text-muted-dark: #8a8680;
  --text-on-light:  #1a1a1a;
  --text-muted-light: #5a5650;

  --ff-display: 'League Spartan', 'Georgia', serif;
  --ff-serif:   'Crimson Pro', 'Georgia', serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  --max-w: 1160px;
  --section-pad: clamp(72px, 8vw, 120px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--text-on-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
::selection { background: var(--green); color: var(--white); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--green);
  overflow: hidden;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--green-dim);
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}
.ticker-track .dot { color: rgba(255,255,255,0.5); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 38px;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), top var(--transition);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--green-lite);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-full {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-on-dark);
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover { opacity: 1; color: var(--white); }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--white);
  opacity: 1;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background var(--transition);
}
.nav-links .nav-cta:hover { background: var(--green-lite); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 140px clamp(20px, 4vw, 48px) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}
.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,122,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,122,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  font-weight: 500;
}
.eyebrow-badge {
  background: var(--green-dim);
  color: var(--green-lite);
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 700;
  border: 1px solid rgba(26,122,46,0.3);
}
.eyebrow-sep { color: var(--text-muted-dark); opacity: 0.4; }
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green-lite);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 600;
}
.hero-headline strong { font-weight: 900; color: var(--white); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-on-dark);
  opacity: 0.8;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--green-lite);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Hero emblem */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,122,46,0.2);
  animation: emblem-pulse 4s ease-in-out infinite;
}
.emblem-ring.outer  { width: 340px; height: 340px; animation-delay: 0s; }
.emblem-ring.middle { width: 260px; height: 260px; animation-delay: 0.8s; }
@keyframes emblem-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.02); }
}
.emblem-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--black-lite);
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.emblem-glyph { font-size: 52px; line-height: 1; }
.emblem-text {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--green-lite);
  letter-spacing: 0.1em;
  line-height: 1;
}
.emblem-year {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-lite);
  border-color: var(--green-lite);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn-large { padding: 18px 40px; font-size: 14px; }
.centered-btn { display: block; width: fit-content; margin: 0 auto; }

/* ── SECTIONS ── */
.section { padding: var(--section-pad) clamp(20px, 4vw, 48px); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-dark   { background: var(--black-soft); }
.section-light  { background: var(--off-white); color: var(--text-on-light); }
.section-accent { background: var(--black-mid); }
.section-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-lite);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.section-heading em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--green-lite);
}
.section-dark .section-heading   { color: var(--white); }
.section-accent .section-heading { color: var(--white); }
.section-light .section-heading  { color: var(--black); }
.section-light .section-heading em { color: var(--green); }
.section-heading.centered { text-align: center; }
.section-intro {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 56px;
  opacity: 0.85;
}
.section-intro.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-dark .section-intro   { color: var(--text-on-dark); }
.section-light .section-intro  { color: var(--text-on-light); }

/* ── ORIGIN ── */
.origin-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding-top: 16px;
}
.origin-quote {
  border-left: 3px solid var(--green);
  padding: 32px 32px 32px 40px;
  background: rgba(26,122,46,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: sticky;
  top: 120px;
}
.origin-quote p {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px;
}
.origin-quote footer { display: flex; flex-direction: column; gap: 4px; }
.origin-quote cite {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-lite);
  font-style: normal;
  text-transform: uppercase;
}
.origin-quote footer span { font-size: 12px; color: var(--text-muted-dark); letter-spacing: 0.06em; }
.origin-response {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(26,122,46,0.3);
  border-radius: var(--radius-md);
  background: rgba(26,122,46,0.04);
}
.origin-response p {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-lite);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.origin-text-col h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.origin-text-col h2 em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 600;
  color: var(--green-lite);
}
.origin-text-col p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-on-dark);
  opacity: 0.85;
  margin-bottom: 20px;
}
.origin-text-col .btn { margin-top: 16px; }

/* ── VISION PILLARS ── */
.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: background var(--transition);
}
.pillar:hover { background: var(--gray-100); }
.pillar-num {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}
.pillar p { font-size: 14px; line-height: 1.7; color: var(--text-muted-light); }

/* ── MANIFESTO ── */
.section-dark .section-label { color: var(--green-lite); }
.manifesto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
}
.manifesto-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  padding: 36px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: background var(--transition);
  align-items: start;
}
.manifesto-item:hover { background: rgba(26,122,46,0.08); border-color: rgba(26,122,46,0.2); }
.manifesto-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
  padding-top: 4px;
}
.manifesto-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.manifesto-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-dark);
  opacity: 0.8;
  margin-bottom: 16px;
  max-width: 700px;
}
.manifesto-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-lite);
  border: 1px solid rgba(26,122,46,0.4);
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(26,122,46,0.08);
}
.manifesto-footer { text-align: center; padding-top: 24px; }
.manifesto-footer p { font-size: 15px; color: var(--text-muted-dark); margin-bottom: 24px; }

/* ── STRENGTH ── */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}
.strength-card:hover {
  border-color: rgba(26,122,46,0.4);
  background: rgba(26,122,46,0.06);
}
.strength-icon { font-size: 28px; margin-bottom: 20px; line-height: 1; }
.strength-card h3 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.strength-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted-dark); }

/* ── NUMBERS ── */
.numbers-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-bottom: 48px;
}
.number-card {
  padding: 40px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.number-card.big { grid-row: 1 / 3; justify-content: center; }
.number-val {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--green-lite);
  line-height: 1;
}
.number-card.big .number-val { font-size: clamp(60px, 7vw, 100px); }
.number-label {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}
.number-note { font-size: 12px; color: var(--green); letter-spacing: 0.04em; margin-top: 4px; }
.numbers-cta-text {
  text-align: center;
  font-size: 17px;
  color: var(--text-on-dark);
  opacity: 0.7;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── JOIN FORM ── */
.form-wrap { max-width: 800px; margin: 0 auto; }
.join-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light);
}
.form-group label span { color: var(--green); }
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-on-light);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5650' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,46,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #c0392b; }
.field-error { font-size: 12px; color: #c0392b; min-height: 16px; font-weight: 500; }
.form-consent { margin: 24px 0; display: flex; flex-direction: column; gap: 6px; }
.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-light);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.consent-label a { color: var(--green); text-decoration: underline; }
.form-actions { margin-top: 8px; }
.form-actions .btn { width: 100%; justify-content: center; }
.form-notice {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted-light);
  letter-spacing: 0.03em;
}
.btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
}
.form-success p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted-light);
  max-width: 480px;
  margin: 0 auto 12px;
}
.success-sub { font-weight: 600; color: var(--green) !important; }
.success-share { margin-top: 24px; }
.success-share .btn { color: var(--black); border-color: var(--gray-200); }
.success-share .btn:hover { border-color: var(--green); color: var(--green); }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-ticker {
  background: var(--black-lite);
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 48px) 48px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--green-lite);
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted-dark);
  max-width: 280px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-nav-col h4 {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col a {
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: var(--green-lite); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted-dark); }
.footer-note { opacity: 0.6; font-size: 12px !important; }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; min-height: auto; padding-top: 120px; }
  .hero-visual { display: none; }
  .origin-layout { grid-template-columns: 1fr; gap: 40px; }
  .origin-quote { position: static; }
  .vision-pillars { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .number-card.big { grid-row: 1; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
    padding: 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-toggle { display: flex; z-index: 100; }
  .logo-full { display: none; }
  .form-row,
  .form-row.three { grid-template-columns: 1fr; }
  .vision-pillars { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .manifesto-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .manifesto-num { font-size: 11px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ── UTILITY ── */
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
