:root {
  /* Original palette — kept for compatibility */
  --navy:       #1B2A4A;
  --navy-light: #243560;
  --steel:      #3A6EA5;
  --steel-light:#4D88C2;
  --orange:     #E8720C;
  --orange-glow:#FF8C2A;
  --amber:      #F5A623;
  --charcoal:   #2D2D2D;
  --gray-dark:  #444;
  --gray-mid:   #7a8899;
  --gray-light: #C8D0DA;
  --off-white:  #F4F5F7;
  --green:      #3D7A5F;
  --green-light:#52A882;
  --white:      #FFFFFF;

  /* Industrial design tokens */
  --carbon:     #0D1117;
  --iron:       #141A24;
  --plate:      #1C2333;
  --plate-edge: #252F42;
  --rust:       #C45E08;
  --amber-hot:  #FFAA2C;
  --steel-dim:  #2A4A6E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--carbon);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Brushed-metal diagonal stripe texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.012) 18px,
    rgba(255,255,255,0.012) 19px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── TOPNAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(5,9,15,0.97);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 2px solid var(--orange);
  transition: background 0.3s, border-bottom-color 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(5,9,15,0.99);
  border-bottom-color: rgba(232,114,12,0.6);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover { background: var(--orange-glow); transform: translateY(-1px); }

/* ── NAV RIGHT GROUP ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── HAMBURGER (hidden on desktop) ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

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

/* ── MOBILE MENU DRAWER (hidden by default) ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(5,9,15,0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,114,12,0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.is-open {
  max-height: 450px;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.5rem;
}

.mobile-menu-links li {
  border-bottom: 1px solid rgba(58, 110, 165, 0.12);
}

.mobile-menu-links li:last-child {
  border-bottom: none;
}

.mobile-menu-links a {
  display: block;
  padding: 0.9rem 0;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--white);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

/* Grid and glow orbs replaced by canvas animation */
.hero::before { display: none; }
.glow-orb, .glow-orb-2 { display: none; }

/* Hero canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.65;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--orange);
  border-left: 4px solid var(--orange);
  color: var(--amber-hot);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 0;
  margin-bottom: 1.8rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 80%;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero h1 em::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--orange);
  margin-top: 0.25em;
  margin-bottom: 0.1em;
}

.hero h1 .accent-line {
  display: block;
  color: var(--steel-light);
  font-size: 0.55em;
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--orange-glow);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,114,12,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(200,208,218,0.3);
  padding: 1rem 1.8rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--steel-light); color: var(--white); }

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(232,114,12,0.3);
  flex-wrap: wrap;
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-value .unit { font-size: 1.2rem; color: var(--gray-mid); }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
  max-width: 140px;
  line-height: 1.4;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(5,9,15,0.9);
  border-top: 1px solid rgba(232,114,12,0.2);
  border-bottom: 1px solid rgba(232,114,12,0.2);
  padding: 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 4rem;
  padding: 1.2rem 2rem;
  width: max-content;
  will-change: transform;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-icon { color: var(--amber); font-size: 1.1rem; }

/* ── SECTION SCAFFOLD ── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.dark-section {
  background: var(--iron);
  border-top: none;
  border-bottom: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  margin-bottom: -48px;
  padding-bottom: calc(6rem + 48px);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--plate);
  border: 1px solid var(--plate-edge);
  border-radius: 0;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}

.pillar-card:hover {
  border-color: var(--orange);
  background: rgba(28,35,51,1);
}

.pillar-card:hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(232,114,12,0.03) 8px,
    rgba(232,114,12,0.03) 9px
  );
  pointer-events: none;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
}

.pillar-card.orange-top::before { background: var(--orange); }
.pillar-card.steel-top::before  { background: var(--steel); }
.pillar-card.amber-top::before  { background: var(--amber); }
.pillar-card.green-top::before  { background: var(--green-light); }

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-light);
}

.pillar-desc strong { color: var(--white); font-weight: 500; }

.vs-callout {
  margin-top: 1.2rem;
  background: rgba(0,0,0,0.25);
  border-radius: 5px;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.vs-callout .vs-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.25rem;
}

.vs-callout .vs-them { color: var(--gray-mid); }
.vs-callout .vs-us   { color: var(--green-light); font-weight: 500; }

/* ── PAPERS ── */
.papers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.paper-card {
  background: var(--plate);
  border: 1px solid var(--plate-edge);
  border-bottom: 3px solid var(--plate-edge);
  border-radius: 0;
  padding: 1.4rem;
  position: relative;
  transition: border-bottom-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.paper-card:hover {
  border-bottom-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.paper-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.paper-num::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
}

.paper-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.paper-desc {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.paper-tag {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.tag-calc {
  background: rgba(232,114,12,0.15);
  color: var(--amber);
  border: 1px solid rgba(232,114,12,0.25);
}
.tag-theory {
  background: rgba(58,110,165,0.15);
  color: var(--steel-light);
  border: 1px solid rgba(58,110,165,0.25);
}
.tag-regs {
  background: rgba(61,122,95,0.15);
  color: var(--green-light);
  border: 1px solid rgba(61,122,95,0.25);
}

.papers-note {
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(232,114,12,0.08);
  border: 1px solid rgba(232,114,12,0.2);
  border-radius: 5px;
  font-size: 0.88rem;
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.papers-note .note-icon { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ── COMPARISON ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 0.9rem;
}

.compare-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  text-align: left;
  background: var(--iron);
  border-bottom: 2px solid var(--plate-edge);
  color: var(--gray-light);
}

.compare-table th.highlight {
  background: rgba(232,114,12,0.12);
  color: var(--amber-hot);
  border-bottom-color: var(--orange);
}

.compare-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--plate-edge);
  vertical-align: top;
  color: var(--gray-light);
}

.compare-table tr:nth-child(odd) td {
  background: rgba(28,35,51,0.4);
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table .feature-col {
  font-weight: 500;
  color: var(--off-white);
}

.compare-table .them-col { color: var(--gray-mid); }

.compare-table .us-col {
  color: var(--white);
  font-weight: 500;
}

.compare-table .us-col .pill {
  display: inline-block;
  font-size: 0.72rem;
  background: rgba(82,168,130,0.15);
  color: var(--green-light);
  border: 1px solid rgba(82,168,130,0.25);
  border-radius: 2px;
  padding: 0.1rem 0.45rem;
  margin-left: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

td.them-col .x { color: #888; }
.check-green { color: var(--green-light); margin-right: 0.25rem; }

/* ── PRICING ── */
.pricing-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 1.8rem;
  align-items: stretch;
  margin-top: 3rem;
}

.price-card {
  background: var(--plate);
  border: 1px solid var(--plate-edge);
  border-radius: 0;
  padding: 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  background: var(--iron);
  border: 2px solid var(--orange);
  box-shadow: 0 0 60px rgba(232,114,12,0.15), inset 0 0 60px rgba(232,114,12,0.03);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 0;
  white-space: nowrap;
}

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(232,114,12,0.2);
}

.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.5rem;
}

.popular .plan-name { color: var(--amber); }

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.plan-price-was {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-mid);
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: var(--gray-mid);
  opacity: 0.7;
}

.plan-price-was sup {
  font-size: 1rem;
  vertical-align: super;
  line-height: 0;
}

.plan-launch-badge {
  display: inline-block;
  background: rgba(232,114,12,0.18);
  border: 1px solid rgba(232,114,12,0.45);
  color: var(--amber-hot);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  margin-top: 0.35rem;
  margin-bottom: 0.1rem;
}

.plan-price-soon {
  font-size: 2rem !important;
  color: var(--gray-mid) !important;
  font-style: italic;
  text-shadow: none !important;
}

.plan-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  line-height: 0;
  color: var(--gray-mid);
}

.plan-cycle {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.plan-tagline {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(58,110,165,0.2);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--gray-light);
  line-height: 1.45;
}

.check  { color: var(--green-light); flex-shrink: 0; margin-top: 0.05rem; }
.cross  { color: var(--gray-dark);   flex-shrink: 0; margin-top: 0.05rem; }

.btn-plan {
  width: 100%;
  padding: 0.9rem;
  border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-plan-outline {
  background: transparent;
  border: 1px solid rgba(58,110,165,0.35);
  color: var(--steel-light);
}
.btn-plan-outline:hover { border-color: var(--steel-light); color: var(--white); }

.btn-plan-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-plan-primary:hover { background: var(--orange-glow); box-shadow: 0 8px 24px rgba(232,114,12,0.3); }

.coming-soon-bar {
  margin-top: 1.5rem;
  background: rgba(27,42,74,0.5);
  border: 1px dashed rgba(58,110,165,0.35);
  border-radius: 7px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cs-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.25rem;
}
.cs-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cs-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-light);
}
.cs-badge {
  background: rgba(58,110,165,0.15);
  border: 1px solid rgba(58,110,165,0.3);
  color: var(--steel-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
}

/* ── FAQ / TRUST ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-card {
  padding: 1.8rem;
  border-left: 4px solid var(--steel-dim);
  background: var(--plate);
  transition: border-left-color 0.25s, background 0.25s;
}

.faq-card:hover {
  border-left-color: var(--orange);
  background: rgba(28,35,51,0.9);
}

.faq-card.orange-border { border-left-color: var(--orange); }
.faq-card.amber-border  { border-left-color: var(--amber-hot); }

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--iron);
  border-top: none;
  border-bottom: none;
  padding: calc(5rem + 48px) 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(232,114,12,0.22) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--amber-hot), var(--orange), transparent);
}

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}

.cta-band h2 em {
  font-style: normal;
  color: var(--orange);
}

.cta-band p {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  position: relative;
}

.cta-band .btn-primary { position: relative; font-size: 1.2rem; padding: 1.1rem 2.8rem; }

.cta-fine {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--gray-mid);
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #05090F;
  border-top: 2px solid rgba(232,114,12,0.15);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand span { color: var(--orange); }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
}
.footer-links a { color: var(--gray-mid); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.75rem; color: var(--gray-dark); }

/* ── DIVIDER ── */
.divider {
  display: none;
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.65s ease both;
}
.hero-badge   { animation-delay: 0.05s; }
.hero h1      { animation-delay: 0.15s; }
.hero-desc    { animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }
.hero-stats   { animation-delay: 0.45s; }

/* ── LEGAL / CONTENT PAGES ── */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.container h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.updated {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 3rem;
}

.container h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.container p {
  margin-bottom: 1.2rem;
  color: var(--gray-light);
}

.container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--gray-light);
}

.container li { margin-bottom: 0.5rem; }

.container a {
  color: var(--orange);
  text-decoration: none;
}

.container a:hover { text-decoration: underline; }

.container strong { color: var(--white); }

.highlight {
  background: rgba(232,114,12,0.15);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

/* Legal page simple footer */
.simple-footer {
  background: #080F1C;
  border-top: 1px solid rgba(58,110,165,0.15);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 4rem;
}

.simple-footer a { color: var(--orange); text-decoration: none; }
.simple-footer a:hover { text-decoration: underline; }

/* Legal page nav (non-fixed) */
.nav-simple {
  position: static;
  height: auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── AFFILIATE PAGE ── */
.affiliate-hero {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.affiliate-rate {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-glow) 100%);
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 1.5rem;
}

.rate-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.rate-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.affiliate-tagline {
  font-size: 1.25rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.affiliate-benefits {
  margin: 3rem 0;
}

.affiliate-benefits h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(36, 53, 96, 0.5);
  border: 1px solid rgba(58, 110, 165, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.benefit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.affiliate-example {
  margin: 3rem 0;
}

.affiliate-example h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.example-table {
  background: rgba(36, 53, 96, 0.5);
  border: 1px solid rgba(58, 110, 165, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.example-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(58, 110, 165, 0.15);
}

.example-row:last-child {
  border-bottom: none;
}

.example-row.header {
  background: rgba(58, 110, 165, 0.15);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--white);
}

.example-row span {
  text-align: center;
}

.example-row span:first-child {
  text-align: left;
}

.example-row.highlight {
  background: rgba(232, 114, 12, 0.15);
  font-weight: 600;
  color: var(--orange-glow);
}

.example-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 1rem;
  font-style: italic;
}

/* ── AFFILIATE DETAILS ── */
.affiliate-details {
  margin: 3rem 0;
}

.affiliate-details h2,
.affiliate-faq h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-item {
  background: rgba(36, 53, 96, 0.5);
  border: 1px solid rgba(58, 110, 165, 0.2);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 0.4rem;
}

.detail-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-glow);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.detail-note {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.payout-callout {
  background: rgba(36, 53, 96, 0.5);
  border: 1px solid rgba(58, 110, 165, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
}

.payout-callout-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.payout-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.payout-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.payout-text {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0;
}

.payout-text a {
  color: var(--orange-glow);
  text-decoration: none;
}

.payout-text a:hover {
  text-decoration: underline;
}

/* ── AFFILIATE FAQ ── */
.affiliate-faq {
  margin: 3rem 0;
}

@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
  .payout-callout-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.affiliate-form-section {
  margin: 3rem 0;
}

.affiliate-form-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}

.affiliate-form-section > p {
  text-align: center;
  color: var(--gray-mid);
  margin-bottom: 0.75rem;
}

.form-embed {
  padding: 0;
  background: none;
  background-color: transparent;
  border: none;
}

.form-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

@media (max-width: 700px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .example-row {
    font-size: 0.85rem;
  }
  .example-row span {
    font-size: 0.75rem;
  }
}

/* ── AFFILIATE CONFIRMATION PAGE ── */
.confirm-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
  margin-bottom: 1rem;
}

.confirm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-glow) 100%);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.confirm-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.confirm-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.confirm-email-tip {
  display: inline-block;
  background: rgba(36, 53, 96, 0.6);
  border: 1px solid rgba(58, 110, 165, 0.3);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.5;
}

.confirm-email-tip strong {
  color: var(--white);
}

.email-addr {
  color: var(--orange-glow);
  font-weight: 600;
}

/* Sections */
.confirm-section {
  margin: 3rem 0;
}

.confirm-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.confirm-section-intro {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.65;
  max-width: 700px;
  margin-bottom: 2rem;
}

/* Portal URL badge */
.confirm-portal-url {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(232, 114, 12, 0.12);
  border: 1px solid rgba(232, 114, 12, 0.3);
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  margin-bottom: 2.5rem;
}

.portal-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}

.portal-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-glow);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.portal-link:hover {
  text-decoration: underline;
}

/* Numbered steps */
.confirm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.confirm-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(58, 110, 165, 0.15);
}

.confirm-step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(232, 114, 12, 0.15);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange-glow);
  margin-top: 0.1rem;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0;
}

.step-body p a {
  color: var(--orange-glow);
  text-decoration: none;
}

.step-body p a:hover {
  text-decoration: underline;
}

.step-body p strong {
  color: var(--white);
}

/* Portal features grid */
.portal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.portal-feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(36, 53, 96, 0.5);
  border: 1px solid rgba(58, 110, 165, 0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.feature-icon-wrap {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.portal-feature p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.5;
  margin: 0;
}

/* Screen cards */
.affiliate-screens {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 0.5rem;
}

.screen-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: center;
}

.screen-card-reverse {
  grid-template-columns: 1.6fr 1fr;
}

.screen-card-reverse .screen-text {
  order: 2;
}

.screen-card-reverse .screen-img-wrap {
  order: 1;
}

.screen-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.screen-text p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin: 0;
}

.screen-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(58, 110, 165, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.screen-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Support */
.confirm-support {
  margin: 3rem 0 1rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(36, 53, 96, 0.4);
  border: 1px solid rgba(58, 110, 165, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.confirm-support a {
  color: var(--orange-glow);
  text-decoration: none;
}

.confirm-support a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .portal-features {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-card-reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .screen-card-reverse .screen-text {
    order: 0;
  }

  .screen-card-reverse .screen-img-wrap {
    order: 0;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  nav, .nav-simple {
    padding: 1rem 1.25rem;
  }
  .nav-links { display: none; }
  .nav-right {
    display: contents;
  }
  .nav-cta {
    grid-column: 2;
    font-size: 0.85rem;
    padding: 0.45rem 0.9rem;
  }
  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }
  .mobile-menu { display: block; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero h1 { max-width: 100%; }
  .pillars { grid-template-columns: 1fr; }
  .papers-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .trust-track { gap: 2.5rem; }
  .section-wrap { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .compare-table { font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .papers-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .dark-section {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
    margin-bottom: -24px;
    padding-bottom: calc(4rem + 24px);
  }
  .cta-band {
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
    margin-top: -24px;
    padding-top: calc(4rem + 24px);
  }
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--plate);
  border: 1px solid var(--plate-edge);
  border-left: 3px solid var(--steel-dim);
  border-radius: 0;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-left-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.15rem;
  right: 0.9rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232,114,12,0.08);
  pointer-events: none;
  transition: color 0.25s;
}

.testimonial-card:hover {
  border-left-color: var(--orange);
  background: rgba(28,35,51,0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.testimonial-card:hover::before {
  color: rgba(232,114,12,0.14);
}

.testimonial-text {
  font-size: 0.865rem;
  color: var(--gray-light);
  line-height: 1.72;
  flex: 1;
  position: relative;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--plate-edge);
}

.testimonial-footer::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
  #hero-canvas {
    display: none;
  }
  .hero-content > * {
    animation: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
