/* ============================================================
   GACW — MAIN STYLESHEET
   Import tokens.css first. This file: reset, base, components.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─────────────────────────────────────────────────────
   1. RESET & BASE
───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-b);
  font-size: var(--fs-16);
  font-weight: var(--fw-regular);
  line-height: var(--lh-160);
  color: var(--tx-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─────────────────────────────────────────────────────
   2. LAYOUT UTILITIES
───────────────────────────────────────────────────── */
.container {
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--w-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-py);
}

.section--soft  { background: var(--bg-soft); }
.section--mid   { background: var(--bg-mid); }
.section--dark  { background: var(--bg-dark); }
.section--darker{ background: var(--bg-darker); }
.section--amber { background: var(--amber); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-48); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-32); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-24); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-32); }

/* ─────────────────────────────────────────────────────
   3. TYPOGRAPHY — Headings
───────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-d);
  font-weight: var(--fw-bold);
  color: var(--tx-head);
  line-height: var(--lh-110);
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
}

h1 { font-size: clamp(var(--fs-48), 7vw, var(--fs-80)); }
h2 { font-size: clamp(var(--fs-36), 5vw, var(--fs-56)); }
h3 { font-size: clamp(var(--fs-24), 3vw, var(--fs-36)); }
h4 { font-size: var(--fs-22); }
h5 { font-size: var(--fs-18); }
h6 { font-size: var(--fs-16); }

/* Variants on dark bg */
.dark h1, .dark h2, .dark h3,
.dark h4, .dark h5, .dark h6,
.section--dark h1, .section--dark h2,
.section--dark h3, .section--darker h1,
.section--darker h2, .section--darker h3 {
  color: var(--tx-inv);
}

/* Hero H1 — larger, tightest tracking */
.h1-hero {
  font-size: clamp(var(--fs-56), 9vw, var(--fs-96));
  line-height: var(--lh-100);
  letter-spacing: -0.04em;
  color: var(--tx-inv);
}

/* Section subheadline — lighter weight */
.h2-section {
  font-size: clamp(var(--fs-36), 5vw, var(--fs-56));
  font-weight: var(--fw-semibold);
}

/* Body text */
.body-lg  { font-size: var(--fs-18); line-height: var(--lh-170); }
.body-md  { font-size: var(--fs-16); line-height: var(--lh-160); }
.body-sm  { font-size: var(--fs-14); line-height: var(--lh-150); color: var(--tx-muted); }

/* Mono data */
.mono-xl  { font-family: var(--f-m); font-size: var(--fs-56); font-weight: var(--fw-medium); color: var(--tx-head); letter-spacing: -0.02em; }
.mono-lg  { font-family: var(--f-m); font-size: var(--fs-40); font-weight: var(--fw-medium); color: var(--tx-head); letter-spacing: -0.02em; }
.mono-md  { font-family: var(--f-m); font-size: var(--fs-28); font-weight: var(--fw-medium); }
.mono-sm  { font-family: var(--f-m); font-size: var(--fs-14); color: var(--tx-muted); }

/* Amber mono */
.mono-amber { color: var(--amber); }

/* ─────────────────────────────────────────────────────
   4. EYEBROW / LABEL
───────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--f-b);
  font-size: var(--fs-11);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--amber);
  margin-bottom: var(--sp-16);
  position: relative;
  padding-left: var(--sp-28);
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--amber);
}

.eyebrow--inv {
  color: var(--amber);
}

/* ─────────────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: 0.75rem 1.75rem;
  font-family: var(--f-d);
  font-size: var(--fs-15);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  border-radius: var(--r-4);
  cursor: pointer;
  transition:
    background var(--t-200) var(--ease-out),
    color var(--t-200) var(--ease-out),
    border-color var(--t-200) var(--ease-out),
    box-shadow var(--t-200) var(--ease-out),
    transform var(--t-200) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — Amber fill */
.btn-primary {
  background: var(--amber);
  color: var(--tx-head);
  border: 2px solid var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dk);
  border-color: var(--amber-dk);
  box-shadow: var(--sh-amber);
}

/* Secondary — Outline dark */
.btn-secondary {
  background: transparent;
  color: var(--tx-head);
  border: 2px solid var(--tx-head);
}
.btn-secondary:hover {
  background: var(--tx-head);
  color: var(--bg);
}

/* Ghost — Outline white (on dark bg) */
.btn-ghost-white {
  background: transparent;
  color: var(--tx-inv);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

/* Outline — Gray border (on light bg) */
.btn-outline {
  background: transparent;
  color: var(--tx-head);
  border: 2px solid var(--br-str);
}
.btn-outline:hover {
  border-color: var(--tx-head);
  background: var(--bg-soft);
}

/* Text link style */
.btn-link {
  background: transparent;
  color: var(--tx-head);
  border: none;
  padding: 0;
  font-family: var(--f-b);
  font-weight: var(--fw-medium);
  font-size: var(--fs-15);
  letter-spacing: 0;
  text-transform: none;
  gap: var(--sp-6);
}
.btn-link::after {
  content: '→';
  transition: transform var(--t-200) var(--ease-out);
}
.btn-link:hover::after { transform: translateX(4px); }
.btn-link:hover { transform: none; color: var(--amber-dk); }

/* Amber link on dark */
.btn-link--amber {
  color: var(--amber);
}
.btn-link--amber:hover { color: var(--amber-dk); }

/* Button group */
.btn-group {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────
   6. CARDS
───────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--br-lt);
  border-radius: var(--r-8);
  padding: var(--sp-32);
  transition:
    box-shadow var(--t-300) var(--ease-out),
    transform var(--t-300) var(--ease-out),
    border-color var(--t-300) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--sh-card);
  transform: translateY(-6px);
  border-color: var(--br-mid);
}

/* Amber top accent */
.card--accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-300) var(--ease-out);
}
.card--accent:hover::before { transform: scaleX(1); }

/* Dark card */
.card--dark {
  background: #232323;
  border-color: #2e2e2e;
  color: var(--tx-inv);
}
.card--dark h3, .card--dark h4 { color: var(--tx-inv); }

/* Stat card */
.stat-card {
  background: var(--bg);
  border-top: 3px solid var(--amber);
  padding: var(--sp-32) var(--sp-28);
  transition: transform var(--t-300) var(--ease-out), box-shadow var(--t-300) var(--ease-out);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

/* Feature card with icon */
.feature-card {
  padding: var(--sp-40) var(--sp-32);
  border: 1px solid var(--br-lt);
  border-radius: var(--r-8);
  background: var(--bg);
  transition: box-shadow var(--t-300) var(--ease-out), transform var(--t-300) var(--ease-out), border-color var(--t-300) var(--ease-out);
}
.feature-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-8px);
  border-color: var(--amber-a35);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-a08);
  border-radius: var(--r-8);
  margin-bottom: var(--sp-24);
  color: var(--amber);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--amber);
  stroke-width: 1.5;
}

/* ─────────────────────────────────────────────────────
   7. IMAGE TREATMENTS
───────────────────────────────────────────────────── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-rounded { border-radius: var(--r-12); }

.img-shadow { box-shadow: var(--sh-xl); }

.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-12);
}

.img-wrap img {
  transition: transform var(--t-600) var(--ease-out);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrap:hover img { transform: scale(1.03); }

/* ─ Parallax feature media (site-wide) — fixed-ratio frame + oversized drifting image ─ */
.parallax-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-12);
}
.parallax-media img {
  position: absolute;
  left: 0;
  top: -16%;
  width: 100%;
  height: 132%;
  object-fit: cover;
  will-change: transform;
}
/* If motion is reduced (or JS/GSAP off), the image simply fills the frame — no drift */
@media (prefers-reduced-motion: reduce) {
  .parallax-media img { top: 0; height: 100%; }
}

/* Aspect ratio helpers */
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-3  { aspect-ratio: 4/3; }
.ratio-3-2  { aspect-ratio: 3/2; }
.ratio-1-1  { aspect-ratio: 1/1; }

/* ─────────────────────────────────────────────────────
   8. DIVIDERS & ACCENTS
───────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--br-lt);
  margin-block: var(--sp-64);
}

.divider--amber {
  border-top-color: var(--amber);
  border-top-width: 2px;
  width: 48px;
  margin-inline: 0;
}

/* Amber underline decoration for section headers */
.section-header {
  margin-bottom: clamp(var(--sp-48), 6vw, var(--sp-80));
}

.section-header--center { text-align: center; }

.section-header--center .divider--amber {
  margin-inline: auto;
  margin-top: var(--sp-20);
  margin-bottom: var(--sp-24);
}

/* ─────────────────────────────────────────────────────
   9. ICON SYSTEM — Lucide icons
───────────────────────────────────────────────────── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm  svg { width: 16px; height: 16px; }
.icon--md  svg { width: 20px; height: 20px; }
.icon--lg  svg { width: 24px; height: 24px; }
.icon--xl  svg { width: 32px; height: 32px; }

.icon--amber svg { stroke: var(--amber); }
.icon--muted svg { stroke: var(--tx-muted); }
.icon--inv   svg { stroke: var(--tx-inv); }

/* ─────────────────────────────────────────────────────
   10. CHECK LIST
───────────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-12);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}

.check-list__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-a08);
  border-radius: var(--r-full);
  margin-top: 2px;
}

.check-list__icon::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg) translateY(-1px);
}

/* ─────────────────────────────────────────────────────
   11. TAGS / BADGES
───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-4) var(--sp-10);
  border-radius: var(--r-full);
  font-family: var(--f-b);
  font-size: var(--fs-11);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.badge--amber {
  background: var(--amber-a15);
  color: var(--amber-xdk);
  border: 1px solid var(--amber-a35);
}

.badge--dark {
  background: var(--tx-head);
  color: var(--tx-inv);
}

.badge--outline {
  background: transparent;
  color: var(--tx-muted);
  border: 1px solid var(--br-mid);
}

/* ─────────────────────────────────────────────────────
   12. LOADER
───────────────────────────────────────────────────── */
#gacw-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-32);
  transition: opacity var(--t-600) var(--ease-in-out), visibility var(--t-600);
}

#gacw-loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 220px;
  animation: loader-breathe 1.4s ease-in-out infinite alternate;
  filter: brightness(0) invert(1);
}

.loader-track {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--amber);
  border-radius: var(--r-full);
  width: 0%;
  animation: loader-progress 1.6s var(--ease-out) forwards;
}

@keyframes loader-breathe {
  from { opacity: 0.6; transform: scale(0.97); }
  to   { opacity: 1;   transform: scale(1); }
}

@keyframes loader-progress {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ─────────────────────────────────────────────────────
   13. TOP BAR
───────────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  z-index: calc(var(--z-nav) + 1);
  overflow: hidden;
  transition: height 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
}

/* Topbar collapses when user scrolls down */
.nav-wrap.topbar-hidden .topbar {
  height: 0;
  opacity: 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-24);
}

.topbar__link {
  font-size: var(--fs-12);
  font-family: var(--f-b);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  transition: color var(--t-200);
}

.topbar__link:hover { color: var(--tx-inv); }

.topbar__link.active { color: var(--amber); }

.topbar__sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

/* ─────────────────────────────────────────────────────
   14. MAIN NAV
───────────────────────────────────────────────────── */

/* Entire nav (topbar + main-nav) fixed to top of viewport */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-nav);
}

.main-nav {
  height: var(--nav-h);
  background: var(--bg);
  position: relative;
  z-index: var(--z-nav);
  transition:
    box-shadow var(--t-300) var(--ease-out),
    background var(--t-300) var(--ease-out);
}

.main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.main-nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--t-200) var(--ease-out);
}

.nav-logo:hover img { transform: scale(1.03); }

/* Nav links group */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible hover bridge: fills the gap between trigger and dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 16px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-8) var(--sp-12);
  font-family: var(--f-d);
  font-size: var(--fs-13);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--tx-head);
  border-radius: var(--r-4);
  transition: color var(--t-200), background var(--t-200);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover { color: var(--amber); background: var(--amber-a08); }
.nav-link.active { color: var(--amber); }

/* Dropdown chevron */
.nav-chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform var(--t-200) var(--ease-out);
  flex-shrink: 0;
}

.nav-item:hover .nav-chevron,
.nav-item.open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--br-lt);
  border-radius: var(--r-8);
  box-shadow: var(--sh-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Show instantly, hide with 150ms delay so cursor has time to reach dropdown */
  transition:
    opacity 200ms var(--ease-out),
    transform 200ms var(--ease-out),
    visibility 0ms 150ms,
    pointer-events 0ms 150ms;
  z-index: var(--z-drop);
  overflow: hidden;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 200ms var(--ease-out),
    transform 200ms var(--ease-out),
    visibility 0ms,
    pointer-events 0ms;
}

.nav-dropdown::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--amber);
}

.nav-dropdown__item {
  display: block;
  padding: var(--sp-12) var(--sp-20);
  font-family: var(--f-b);
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  color: var(--tx-body);
  transition: color var(--t-200), background var(--t-200), padding-left var(--t-200);
  border-bottom: 1px solid var(--br-lt);
}

.nav-dropdown__item:last-child { border-bottom: none; }

.nav-dropdown__item:hover {
  color: var(--amber);
  background: var(--amber-a08);
  padding-left: var(--sp-28);
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: center;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--tx-head);
  border-radius: 2px;
  transition: transform var(--t-300) var(--ease-out), opacity var(--t-200);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-total);
  background: var(--bg);
  z-index: calc(var(--z-nav) - 1);
  transform: translateX(100%);
  transition: transform var(--t-400) var(--ease-out);
  overflow-y: auto;
  padding: var(--sp-32) var(--gutter);
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-top: 1px solid var(--br-lt);
  padding-top: var(--sp-24);
}

.nav-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-16) 0;
  font-family: var(--f-d);
  font-size: var(--fs-22);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--tx-head);
  border-bottom: 1px solid var(--br-lt);
}

.nav-mobile__sub {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-12) 0 var(--sp-16) var(--sp-16);
}

.nav-mobile__sub.open { display: flex; }

.nav-mobile__sub-link {
  display: block;
  padding: var(--sp-10) 0;
  font-family: var(--f-b);
  font-size: var(--fs-15);
  color: var(--tx-body);
  border-bottom: 1px solid var(--br-lt);
  transition: color var(--t-200);
}

.nav-mobile__sub-link:hover { color: var(--amber); }

.nav-mobile__secondary {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
  padding-top: var(--sp-32);
  border-top: 1px solid var(--br-lt);
}

.nav-mobile__sec-link {
  font-size: var(--fs-14);
  color: var(--tx-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.nav-mobile__cta {
  margin-top: var(--sp-32);
}

.nav-mobile__cta .btn { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────
   15. FOOTER
───────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.6);
  padding-top: var(--sp-80);
  padding-bottom: var(--sp-48);
}

.footer-cta-band {
  background: var(--bg-dark);
  padding: var(--sp-64) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-cta-band h2 {
  color: var(--tx-inv);
  font-size: clamp(var(--fs-32), 4vw, var(--fs-48));
  margin-bottom: var(--sp-12);
}

.footer-cta-band p {
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-18);
  max-width: 560px;
  margin: 0 auto var(--sp-40);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-48);
  padding-block: var(--sp-64);
}

.footer-col__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-20);
  opacity: 0.85;
}

.footer-col__tagline {
  font-size: var(--fs-14);
  line-height: var(--lh-160);
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--f-d);
  font-size: var(--fs-13);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-20);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

.footer-nav a {
  font-size: var(--fs-14);
  color: rgba(255,255,255,0.55);
  transition: color var(--t-200);
}

.footer-nav a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-24) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: var(--fs-12);
  color: rgba(255,255,255,0.3);
}

.footer-bottom__links {
  display: flex;
  gap: var(--sp-20);
}

.footer-bottom__links a {
  font-size: var(--fs-12);
  color: rgba(255,255,255,0.3);
  transition: color var(--t-200);
}

.footer-bottom__links a:hover { color: rgba(255,255,255,0.6); }

/* ─ Footer legal disclaimer (fine print) ─ */
.footer-disclaimer {
  margin-top: var(--sp-20);
  padding-top: var(--sp-20);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-disclaimer__title {
  font-family: var(--f-m);
  font-size: var(--fs-11);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-8);
}
.footer-disclaimer p {
  font-size: var(--fs-11);
  line-height: var(--lh-160);
  color: rgba(255,255,255,0.22);
  max-width: 960px;
  margin-bottom: var(--sp-10);
}
.footer-disclaimer p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────────
   16. REVEAL ANIMATIONS (JS toggles classes)
───────────────────────────────────────────────────── */

/* Base state — hidden before reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--t-600) var(--ease-out),
    transform var(--t-600) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--t-500) var(--ease-out),
    transform var(--t-500) var(--ease-out);
}

.stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: 400ms; }

/* Fade only */
.reveal-fade {
  opacity: 0;
  transition: opacity var(--t-800) var(--ease-out);
}
.reveal-fade.visible { opacity: 1; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--t-600) var(--ease-out), transform var(--t-600) var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--t-600) var(--ease-out), transform var(--t-600) var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--t-500) var(--ease-out), transform var(--t-500) var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Delay utilities */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }

/* ─────────────────────────────────────────────────────
   17. HERO SECTION BASE
───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--bg-darker);
}

.hero__video-wrap {
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 150%;
  z-index: 0;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(15,15,15,0.72) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}

/* Subtle amber grid pattern overlay */
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--amber) 1px, transparent 1px),
    linear-gradient(90deg, var(--amber) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-total);
  padding-bottom: var(--sp-80);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-12);
  font-family: var(--f-m);
  font-size: var(--fs-16);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--amber);
  margin-bottom: var(--sp-24);
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero__h1 {
  font-family: var(--f-d);
  font-size: clamp(var(--fs-48), 6.5vw, var(--fs-72));
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: var(--lh-100);
  color: var(--tx-inv);
  margin-bottom: var(--sp-32);
}

.hero__h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero__body {
  font-size: var(--fs-15);
  line-height: var(--lh-170);
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  margin-bottom: var(--sp-48);
  font-weight: var(--fw-light);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-32);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-10);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); opacity: 1; }
  75% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─────────────────────────────────────────────────────
   18. STAT BAR
───────────────────────────────────────────────────── */
.stat-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--br-lt);
}

.stat-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--br-lt);
}

.stat-bar__item {
  padding: var(--sp-40) var(--sp-32);
  border-right: 1px solid var(--br-lt);
  position: relative;
}

.stat-bar__item:last-child { border-right: none; }

.stat-bar__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}

.stat-bar__value {
  font-family: var(--f-m);
  font-size: clamp(var(--fs-36), 4vw, var(--fs-56));
  font-weight: var(--fw-medium);
  color: var(--tx-head);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-8);
}

.stat-bar__label {
  font-size: var(--fs-13);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--tx-muted);
  font-weight: var(--fw-medium);
}

.stat-bar__sublabel {
  font-size: var(--fs-12);
  color: var(--tx-faint);
  margin-top: var(--sp-4);
}

/* ─────────────────────────────────────────────────────
   19. SPLIT LAYOUT (image + text alternating)
───────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-48), 8vw, var(--sp-96));
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.split__text p {
  font-size: var(--fs-17);
  line-height: var(--lh-170);
  color: var(--tx-body);
}

.split__visual {
  position: relative;
}

/* ─────────────────────────────────────────────────────
   20. PROBLEM / PAIN LIST
───────────────────────────────────────────────────── */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}

.pain-item {
  display: flex;
  gap: var(--sp-16);
  padding: var(--sp-20) var(--sp-24);
  background: var(--bg);
  border-left: 3px solid var(--br-str);
  border-radius: 0 var(--r-6) var(--r-6) 0;
  transition: border-color var(--t-300), box-shadow var(--t-300);
}

.pain-item:hover {
  border-left-color: var(--amber);
  box-shadow: var(--sh-sm);
}

.pain-item__num {
  font-family: var(--f-m);
  font-size: var(--fs-12);
  font-weight: var(--fw-medium);
  color: var(--amber);
  min-width: 28px;
  margin-top: 2px;
}

.pain-item__title {
  font-family: var(--f-d);
  font-size: var(--fs-18);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--tx-head);
  margin-bottom: var(--sp-6);
}

.pain-item__desc {
  font-size: var(--fs-14);
  color: var(--tx-body);
  line-height: var(--lh-160);
}

/* ─────────────────────────────────────────────────────
   21. TIMELINE
───────────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: var(--sp-40);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--br-mid);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--sp-40);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(var(--sp-40) * -1 - 5px);
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--amber);
  border-radius: var(--r-full);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--amber-a35);
}

.timeline__date {
  font-family: var(--f-m);
  font-size: var(--fs-13);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--sp-6);
}

.timeline__title {
  font-family: var(--f-d);
  font-size: var(--fs-20);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  color: var(--tx-head);
  margin-bottom: var(--sp-8);
}

.timeline__desc {
  font-size: var(--fs-15);
  color: var(--tx-body);
  line-height: var(--lh-160);
}

/* ─────────────────────────────────────────────────────
   22. TABS
───────────────────────────────────────────────────── */
.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--br-lt);
  margin-bottom: var(--sp-48);
  overflow-x: auto;
}

.tab-btn {
  font-family: var(--f-d);
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--tx-muted);
  padding: var(--sp-16) var(--sp-24);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color var(--t-200), border-color var(--t-200);
}

.tab-btn:hover { color: var(--tx-head); }
.tab-btn.active { color: var(--amber); border-bottom-color: var(--amber); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─────────────────────────────────────────────────────
   23. ACCORDION / FAQ
───────────────────────────────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--br-lt);
}

.accordion-item {
  border-bottom: 1px solid var(--br-lt);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-24) 0;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-200);
}

.accordion-trigger:hover { color: var(--amber); }

.accordion-trigger__q {
  font-family: var(--f-d);
  font-size: var(--fs-18);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--tx-head);
  padding-right: var(--sp-24);
}

.accordion-trigger__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-soft);
  border-radius: var(--r-full);
  transition: background var(--t-200), transform var(--t-300) var(--ease-out);
}

.accordion-trigger__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--tx-muted);
  stroke-width: 2;
  fill: none;
}

.accordion-item.open .accordion-trigger__icon {
  background: var(--amber);
  transform: rotate(45deg);
}

.accordion-item.open .accordion-trigger__icon svg { stroke: var(--bg-darker); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-400) var(--ease-out);
}

.accordion-body__inner {
  padding-bottom: var(--sp-24);
  padding-right: var(--sp-48);
  font-size: var(--fs-16);
  line-height: var(--lh-170);
  color: var(--tx-body);
}

/* ─────────────────────────────────────────────────────
   24. FORM ELEMENTS
───────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.form-label {
  font-family: var(--f-b);
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--tx-head);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--f-b);
  font-size: var(--fs-16);
  color: var(--tx-body);
  background: var(--bg);
  border: 1px solid var(--br-mid);
  border-radius: var(--r-6);
  padding: var(--sp-12) var(--sp-16);
  transition: border-color var(--t-200), box-shadow var(--t-200);
  outline: none;
  width: 100%;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-a08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--tx-faint); }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--sp-40);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-10);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--amber);
  cursor: pointer;
}

.form-check__label {
  font-size: var(--fs-14);
  color: var(--tx-body);
  line-height: var(--lh-150);
}

/* ─────────────────────────────────────────────────────
   25. LOGO STRIP
───────────────────────────────────────────────────── */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-48);
  flex-wrap: wrap;
}

.logo-strip__item img {
  height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter var(--t-300), opacity var(--t-300);
}

.logo-strip__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─────────────────────────────────────────────────────
   26. BREADCRUMB
───────────────────────────────────────────────────── */
.breadcrumb {
  font-size: var(--fs-13);
  color: var(--tx-muted);
  padding-block: var(--sp-14);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb a { transition: color var(--t-200); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb__sep { color: var(--tx-faint); }

/* ─────────────────────────────────────────────────────
   27. PAGE HERO (inner pages — no video)
───────────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding-top: calc(var(--nav-total) + var(--sp-64));
  padding-bottom: var(--sp-80);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-a35), transparent);
}

.page-hero__bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-d);
  font-size: 200px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-hero h1 {
  color: var(--tx-inv);
  font-size: clamp(var(--fs-48), 6vw, var(--fs-72));
}

.page-hero__sub {
  font-size: var(--fs-18);
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin-top: var(--sp-20);
  line-height: var(--lh-170);
  font-weight: var(--fw-light);
}

/* ─────────────────────────────────────────────────────
   28. UTILITY CLASSES
───────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }
.text-amber   { color: var(--amber); }
.text-muted   { color: var(--tx-muted); }
.text-inv     { color: var(--tx-inv); }
.text-head    { color: var(--tx-head); }
.text-upper   { text-transform: uppercase; letter-spacing: var(--ls-wide); }
.text-mono    { font-family: var(--f-m); }

.mt-8  { margin-top: var(--sp-8);  }
.mt-16 { margin-top: var(--sp-16); }
.mt-24 { margin-top: var(--sp-24); }
.mt-32 { margin-top: var(--sp-32); }
.mt-40 { margin-top: var(--sp-40); }
.mt-48 { margin-top: var(--sp-48); }
.mt-64 { margin-top: var(--sp-64); }
.mb-8  { margin-bottom: var(--sp-8);  }
.mb-16 { margin-bottom: var(--sp-16); }
.mb-24 { margin-bottom: var(--sp-24); }
.mb-32 { margin-bottom: var(--sp-32); }
.mb-48 { margin-bottom: var(--sp-48); }
.mb-64 { margin-bottom: var(--sp-64); }

.w-full  { width: 100%; }
.max-narrow { max-width: var(--w-narrow); margin-inline: auto; }
.max-xnarrow { max-width: var(--w-xnarrow); margin-inline: auto; }

/* ─────────────────────────────────────────────────────
   29. RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 0; }
  .nav-link  { padding: var(--sp-8) var(--sp-8); font-size: var(--fs-12); }
}

@media (max-width: 900px) {
  /* Switch nav to mobile */
  .topbar         { display: none; }
  .nav-links      { display: none; }
  .nav-cta        { display: none; }
  .nav-toggle     { display: flex; }

  .split          { grid-template-columns: 1fr; gap: var(--sp-40); }
  .split--reverse { direction: ltr; }
  .grid-2         { grid-template-columns: 1fr; gap: var(--sp-40); }
  .grid-3         { grid-template-columns: 1fr; gap: var(--sp-32); }
}

@media (max-width: 640px) {
  .stat-bar__grid { grid-template-columns: 1fr; }
  .stat-bar__item { border-right: none; border-bottom: 1px solid var(--br-lt); }
  .footer-grid    { grid-template-columns: 1fr; gap: var(--sp-40); }
  .btn-group      { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .logo-strip     { gap: var(--sp-24); }
}

/* ─────────────────────────────────────────────────────
   30. FOCUS VISIBLE — keyboard navigation
───────────────────────────────────────────────────── */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--r-4);
}

/* Nav links get a slightly tighter offset */
.nav-link:focus-visible,
.topbar__link:focus-visible,
.footer-nav a:focus-visible {
  outline-offset: 2px;
}

/* Buttons already have background — use ring instead */
.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--amber-a15);
}

/* ─────────────────────────────────────────────────────
   31. REDUCED MOTION
───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-fade, .reveal-left, .reveal-right, .reveal-scale,
  .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
