/* ==========================================================================
   AJAR DEMOKRASI — Platform Literasi Politik & Demokrasi
   style.css — design system + components
   Brand: Biru #314985 · Jingga #FF6200 · Teal #009CA0
   ========================================================================== */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Brand */
  --biru: #314985;
  --biru-700: #26386a;
  --biru-900: #1a2749;
  --jingga: #ff6200;
  --jingga-600: #e05600;
  --teal: #009ca0;
  --teal-700: #007b7e;

  /* Neutrals */
  --ink: #16203a;
  --body: #3a4256;
  --muted: #6b7488;
  --line: #e6e8ef;
  --cloud: #f4f6fb;
  --cloud-2: #eef1f8;
  --white: #ffffff;

  /* Accents (soft tints for cards) */
  --tint-biru: #eaeef8;
  --tint-jingga: #fff0e6;
  --tint-teal: #e2f5f5;
  --tint-yellow: #fff6e0;
  --kuning: #ffb703;

  /* Type */
  --font-display: "Fredoka", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(22, 32, 58, .06);
  --shadow-md: 0 10px 30px rgba(22, 32, 58, .10);
  --shadow-lg: 0 24px 60px rgba(22, 32, 58, .16);

  /* Layout */
  --maxw: 1160px;
  --gutter: clamp(18px, 4vw, 40px);
  --header-h: 76px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--biru); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .4rem; }
strong { color: var(--ink); font-weight: 700; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------------------------------------------ Layout */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.section--cloud { background: var(--cloud); }
.section--biru { background: var(--biru); color: #dfe5f5; }
.section--biru h2, .section--biru h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ------------------------------------------------------------------ Eyebrow / headings */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jingga);
  margin-bottom: .8rem;
}
.section-head { max-width: 720px; margin-bottom: clamp(30px, 5vw, 54px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); }

/* ------------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .82em 1.5em; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer; transition: .18s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--jingga); color: #fff; box-shadow: 0 8px 20px rgba(255, 98, 0, .32); }
.btn-primary:hover { background: var(--jingga-600); }
.btn-dark { background: var(--biru); color: #fff; }
.btn-dark:hover { background: var(--biru-700); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-700); }
.btn-ghost { background: transparent; color: var(--biru); border-color: var(--biru); }
.btn-ghost:hover { background: var(--biru); color: #fff; }
.btn-white { background: #fff; color: var(--biru); }
.btn-white:hover { background: #f0f3fb; }
.btn-lg { font-size: 1.12rem; padding: 1em 1.9em; }

.textlink {
  font-family: var(--font-display); font-weight: 600; color: var(--biru);
  display: inline-flex; align-items: center; gap: .35em;
}
.textlink::after { content: "→"; transition: transform .18s ease; }
.textlink:hover { text-decoration: none; }
.textlink:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------------ Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; line-height: 1; letter-spacing: -.01em; }
.brand-word .a { color: var(--biru); }
.brand-word .d { color: var(--jingga); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .98rem;
  color: var(--ink); padding: .5em .8em; border-radius: var(--r-pill); transition: .15s;
}
.nav-links a:hover { background: var(--cloud-2); text-decoration: none; }
.nav-links a.active { color: var(--biru); background: var(--tint-biru); }
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px var(--gutter) 28px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .28s ease; z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .8em 1em; font-size: 1.08rem; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgba(0,156,160,.16), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(255,98,0,.12), transparent 55%),
    var(--cloud);
}
.hero-inner { padding: clamp(56px, 9vw, 118px) 0 clamp(48px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .hl { color: var(--jingga); }
.hero .lead { font-size: clamp(1.1rem, 1.9vw, 1.35rem); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius: var(--r-pill); padding: .5em 1em; font-weight: 600; font-size: .9rem;
  color: var(--biru); margin-bottom: 1.4rem; font-family: var(--font-display);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.hero-art {
  position: relative; background: linear-gradient(150deg, var(--biru), var(--biru-900));
  border-radius: var(--r-xl); padding: 40px; color: #fff; box-shadow: var(--shadow-lg);
}
.hero-art .fist { width: 96px; margin-bottom: 18px; }
.hero-stat-big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.8rem, 7vw, 4rem); color: #fff; line-height: 1; }
.hero-stat-label { color: #b9c4e6; font-weight: 500; }
.hero-mini { display: flex; gap: 28px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-mini b { font-family: var(--font-display); font-size: 1.5rem; color: var(--kuning); display: block; line-height: 1.1; }
.hero-mini span { font-size: .84rem; color: #b9c4e6; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ------------------------------------------------------------------ Stat band */
.statband { background: var(--biru); color: #fff; }
.statband .grid-4 { gap: 20px; }
.stat { text-align: center; padding: 10px; }
.stat b { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--kuning); display: block; line-height: 1; }
.stat span { display: block; margin-top: .5rem; color: #c6cfe8; font-size: .95rem; }

/* ------------------------------------------------------------------ Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: .2s ease; height: 100%;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--body); margin-bottom: 1rem; }
.card .textlink { margin-top: auto; }
.ico-biru { background: var(--tint-biru); }
.ico-jingga { background: var(--tint-jingga); }
.ico-teal { background: var(--tint-teal); }
.ico-yellow { background: var(--tint-yellow); }

/* numbered step card */
.step { position: relative; padding-left: 4px; }
.step .num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.4rem;
  color: var(--jingga); line-height: 1; display: block; margin-bottom: .3rem;
}

/* Feature (big split) card */
.feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; overflow: hidden;
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.feature-body { padding: clamp(28px, 4vw, 52px); align-self: center; }
.feature-side { background: linear-gradient(150deg, var(--teal), var(--teal-700)); min-height: 260px; position: relative; display: grid; place-items: center; color: #fff; padding: 30px; }
.feature-side.jingga { background: linear-gradient(150deg, var(--jingga), var(--jingga-600)); }
.feature-side .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; }
@media (max-width: 760px) { .feature { grid-template-columns: 1fr; } .feature-side { order: -1; min-height: 180px; } }

/* Pill list / chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li {
  background: var(--cloud-2); border-radius: var(--r-pill); padding: .5em 1em;
  font-weight: 600; font-size: .92rem; color: var(--biru); margin: 0;
  font-family: var(--font-display);
}

/* Accordion */
.accordion { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.accordion + .accordion { margin-top: 14px; }
.accordion summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.12rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.6rem; color: var(--jingga); transition: transform .2s; line-height: 1; }
.accordion[open] summary::after { transform: rotate(45deg); }
.accordion .acc-body { padding: 0 24px 22px; color: var(--body); }

/* Callout / note */
.note {
  background: var(--tint-yellow); border-left: 5px solid var(--kuning);
  border-radius: var(--r-md); padding: 20px 24px; margin: 24px 0;
}
.note.teal { background: var(--tint-teal); border-color: var(--teal); }
.note.biru { background: var(--tint-biru); border-color: var(--biru); }
.note strong { display: block; margin-bottom: .2em; font-family: var(--font-display); }
.note p { margin-bottom: .8rem; }
.note p:last-child { margin-bottom: 0; }
.note strong.inline { display: inline; margin-bottom: 0; }

/* Prose (article body) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul li::marker { color: var(--jingga); }

/* Timeline (how a bill becomes law / polling steps) */
.timeline { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.timeline li {
  position: relative; padding: 0 0 30px 62px; margin: 0;
}
.timeline li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--biru); color: #fff; font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center;
}
.timeline li::after {
  content: ""; position: absolute; left: 20px; top: 46px; bottom: 4px; width: 2px; background: var(--line);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li:last-child::after { display: none; }
.timeline h4 { font-family: var(--font-display); color: var(--ink); margin: 6px 0 .3em; font-size: 1.15rem; }

/* Party landscape */
/* Senarai pautan alat dalam kad */
.card-links { margin-top: auto; padding-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.card-links a {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: var(--biru); display: inline-flex; align-items: center; gap: .4em; line-height: 1.3;
}
.card-links a::before { content: "↗"; color: var(--jingga); flex-shrink: 0; }
.card-links a:hover { color: var(--jingga-600); text-decoration: none; }

/* Logo/simbol parti (sumber: senarai rasmi SPR) */
.party-head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.party-head h3 { margin-bottom: .1em; }
.party-head .full { margin-bottom: 0; }
.party-logo {
  width: 78px; height: 52px; object-fit: contain; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 4px;
}
.party-members { list-style: none; padding: 0; margin: .6rem 0 0; }
.party-members li {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; font-size: .93rem;
}
.party-members img {
  width: 46px; height: 31px; object-fit: contain; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 2px;
}
.party-members .no-logo {
  width: 46px; height: 31px; flex-shrink: 0; border: 1px dashed var(--line);
  border-radius: 5px; display: grid; place-items: center;
  font-size: .6rem; color: var(--muted);
}

.party-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 30px; }
.party-legend span { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .92rem; }
.party-legend .swatch { width: 14px; height: 14px; border-radius: 4px; }
.party {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; height: 100%;
  border-top: 5px solid var(--muted);
}
.party.gov { border-top-color: var(--teal); }
.party.opp { border-top-color: var(--jingga); }
.party .tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .28em .7em; border-radius: var(--r-pill); margin-bottom: 12px; font-family: var(--font-display);
}
.party.gov .tag { background: var(--tint-teal); color: var(--teal-700); }
.party.opp .tag { background: var(--tint-jingga); color: var(--jingga-600); }
.party h3 { font-size: 1.35rem; margin-bottom: .1em; }
.party .full { color: var(--muted); font-size: .9rem; margin-bottom: .8rem; }
.party ul { padding-left: 1.1rem; font-size: .95rem; }

/* Political spectrum map */
.spectrum { margin: 28px 0; }
.spectrum-poles { display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.spectrum-poles .left { color: var(--teal-700); }
.spectrum-poles .right { color: var(--jingga-600); text-align: right; }
.spectrum-bar { height: 14px; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--teal), var(--kuning) 50%, var(--jingga)); margin-bottom: 22px; }
.spectrum-zones { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.spectrum-zone { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 14px; }
.spectrum-zone > h4 { font-family: var(--font-display); font-size: .9rem; color: var(--ink); margin: 0 0 12px; text-align: center; }
.spectrum-zone ul { list-style: none; margin: 0; padding: 0; }
.spectrum-zone li { background: var(--cloud); border-radius: 10px; padding: 8px 10px; margin-bottom: 8px; }
.spectrum-zone li:last-child { margin-bottom: 0; }
.spectrum-zone li b { display: block; font-family: var(--font-display); color: var(--biru); font-size: .96rem; line-height: 1.2; }
.spectrum-zone li span { font-size: .74rem; color: var(--muted); }
@media (max-width: 860px) { .spectrum-zones { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .spectrum-zones { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--jingga), var(--jingga-600)); color: #fff; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 64px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe6d5; max-width: 620px; margin: 0 auto 1.6rem; }

/* Involvement grid */
.involve { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; height: 100%; }
.involve .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 14px; }

/* References */
.refs { font-size: .86rem; color: var(--muted); }
.refs h4 { font-family: var(--font-display); color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.refs ol { padding-left: 1.2rem; }
.refs a { color: var(--muted); text-decoration: underline; word-break: break-word; }

/* Page hero (interior pages) */
.page-hero { background: var(--cloud); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 64px); }
.page-hero .eyebrow { color: var(--teal); }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }

/* ------------------------------------------------------------------ Footer */
.site-footer { background: var(--biru-900); color: #aab6d8; padding: clamp(48px, 7vw, 80px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-brand img { height: 96px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 50px; width: auto; margin-bottom: 0; }
.footer-logo .brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: #aab6d8; font-size: .95rem; display: inline-block; padding: .2em 0; }
.footer-links a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.socials a:hover { background: var(--jingga); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; color: #7f8db5;
}

/* ------------------------------------------------------------------ Quiz */
.quiz-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: clamp(26px, 4vw, 46px); }
.quiz-progress { height: 8px; background: var(--cloud-2); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 26px; }
.quiz-progress i { display: block; height: 100%; background: var(--teal); width: 0; transition: width .3s ease; }
.quiz-q { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--ink); margin-bottom: 4px; }
.quiz-count { color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 22px; display: block; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt {
  text-align: left; background: var(--cloud); border: 2px solid transparent; border-radius: var(--r-md);
  padding: 16px 20px; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: .15s; width: 100%;
}
.quiz-opt:hover { border-color: var(--teal); background: #fff; }
.quiz-opt.sel { border-color: var(--teal); background: var(--tint-teal); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 26px; gap: 12px; }
.quiz-result-issue { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--cloud); border-radius: var(--r-md); margin-bottom: 12px; }
.quiz-result-issue .rank { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--jingga); width: 34px; }
.quiz-bar { height: 10px; border-radius: var(--r-pill); background: var(--cloud-2); overflow: hidden; flex: 1; }
.quiz-bar i { display: block; height: 100%; background: var(--teal); }
.hidden { display: none !important; }

/* ------------------------------------------------------------------ Misc utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ Responsive */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .statband .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-mini { gap: 20px; }
}
