/* ============================================================
   AZUREFIN — Refined Navy & Champagne: Trust + Momentum
   Vanilla CSS. No frameworks. Outfit font via Google Fonts.
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  /* Navy scale (primary brand) */
  --navy-900: #081A33;
  --navy-800: #0B1F3A;
  --navy-700: #0E2A52;
  --navy-600: #14356B;
  --navy-500: #1D4488;
  --navy-100: #E4EBF6;
  --navy-50:  #F4F7FC;

  /* Gold scale (accent — desaturated champagne) */
  --gold-700: #8A6D1A;
  --gold-600: #A87F1B;
  --gold-500: #C9A227;
  --gold-400: #D9B43C;
  --gold-300: #E8CE7A;
  --gold-100: #F7EFD8;

  /* Neutral gray scale (navy-tinted) */
  --gray-900: #1A2233;
  --gray-700: #3D4657;
  --gray-500: #6B7486;
  --gray-400: #8B93A5;
  --gray-300: #C6CBD6;
  --gray-200: #E3E6EC;
  --gray-100: #F1F3F7;
  --gray-50:  #F8F9FB;

  /* Semantic */
  --success:    #1E7A4F;
  --success-bg: #E7F4EC;
  --error:      #B3261E;
  --error-bg:   #FBE9E7;
  --warning:    #B45309;

  /* Tinted shadows (navy-tinted, never pure black) */
  --shadow-sm:   0 1px 2px rgba(11,31,58,0.06);
  --shadow-md:   0 4px 12px rgba(11,31,58,0.08);
  --shadow-lg:   0 12px 32px rgba(11,31,58,0.12);
  --shadow-gold: 0 6px 20px rgba(201,162,39,0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 16px;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- Accessibility: skip link ---- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--navy-900);
  padding: .6rem 1rem; border-radius: 0 0 8px 0;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---- Focus-visible (WCAG AA) — every focusable element ---- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---- Tabular numbers for amounts ---- */
.range-val, .amt, .stat-num, .amount-display {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ---- Brand wordmark ---- */
.brand, .footer-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.3rem;
  color: #fff;
}
.brand span, .footer-brand span { color: var(--gold-400); }

/* ============================================================
   Sticky top bar (solid navy — NO backdrop-blur)
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-900);
  color: #fff;
  padding: .6rem 0;
  box-shadow: var(--shadow-sm);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-tag { font-size: .8rem; color: var(--gold-300); font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.topbar-cta {
  display: none;
  background: var(--gold-500); color: var(--navy-900);
  padding: .45rem .9rem; border-radius: 999px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.topbar-cta:hover { background: var(--gold-400); }
.topbar-cta:active { transform: translateY(1px); }

/* ============================================================
   IAB banner (warning-tinted)
   ============================================================ */
.iab-banner {
  background: var(--gold-100);
  color: var(--warning);
  padding: .7rem 1rem; text-align: center; font-size: .88rem;
  border-bottom: 1px solid var(--gold-300);
}
.iab-banner a { color: var(--navy-600); font-weight: 600; }

/* ============================================================
   Hero — two-column: value prop (left) + form card (right)
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-600) 100%);
  color: #fff;
  padding: 3rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

/* Left: value prop */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold-300);
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--gold-400); border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hero h1 .gold { color: var(--gold-400); }
.hero-sub {
  margin-top: 1.1rem;
  color: #c9d4ea;
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  max-width: 34rem;
}
.hero-sub strong { color: #fff; }

/* Trust badges */
.hero-badges { margin-top: 1.4rem; display: flex; gap: .6rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--gold-100); color: var(--navy-800);
  border-radius: 999px; padding: .4rem .8rem;
  font-size: .8rem; font-weight: 600;
}
.badge .check { color: var(--gold-700); font-weight: 800; }

/* Eligibility mini-checklist (lead self-selection) */
.elig {
  margin-top: 1.6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 1.1rem 1.2rem;
}
.elig-title { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-300); margin-bottom: .8rem; }
.elig-item { display: flex; align-items: center; gap: .7rem; padding: .45rem 0; color: #e6ecf7; font-size: .92rem; }
.elig-item .q { flex: 1; }
.elig-btns { display: inline-flex; gap: .4rem; }
.elig-btn {
  min-width: 44px; min-height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: #fff;
  border-radius: 8px; font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.elig-btn:hover { background: rgba(255,255,255,.12); }
.elig-btn:active { transform: translateY(1px); }
.elig-btn.yes { background: var(--success); border-color: var(--success); }
.elig-btn.no  { background: var(--navy-500); border-color: var(--navy-500); }
.elig-note {
  margin-top: .7rem; color: var(--gold-300); font-size: .85rem;
  display: none;
}
.elig-note.show { display: block; }

/* Right: form card */
.hero-form { position: relative; }
.form-section {
  background: #fff; color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
}
.hero-form .form-section { margin-top: 1.5rem; }

.form-head { text-align: center; margin-bottom: 1.2rem; }
.form-head h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy-800); }
.form-head .sub { font-size: .82rem; color: var(--gray-500); margin-top: .2rem; }

/* Step progress indicator + labels */
.steps { display: flex; gap: .4rem; margin-bottom: 1.4rem; }
.step-col { flex: 1; text-align: center; }
.step-dot { height: 6px; border-radius: 3px; background: var(--gray-200); transition: background .3s var(--ease); }
.step-dot.active { background: var(--gold-500); }
.step-dot.done { background: var(--navy-600); }
.step-label {
  display: block; margin-top: .35rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-400);
}
.step-col.active .step-label { color: var(--gold-700); }
.step-col.done .step-label { color: var(--navy-600); }

.step { display: none; }
.step.active { display: block; }
.step h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy-800); margin-bottom: 1.1rem; }

/* ---- Form fields ---- */
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .8125rem; font-weight: 600; letter-spacing: .01em; margin-bottom: .35rem; color: var(--gray-900); }
.field input, .field select {
  width: 100%; padding: .8rem .9rem;
  border: 1px solid var(--gray-200); border-radius: var(--r-sm);
  font-size: 1rem; background: #fff; color: var(--gray-900);
  font-family: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder { color: var(--gray-400); }
.field input:focus, .field select:focus {
  outline: 2px solid var(--gold-500); outline-offset: 0;
  border-color: transparent; box-shadow: var(--shadow-sm);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--error);
}
.field .hint { font-size: .78rem; color: var(--gray-500); margin-top: .3rem; }
.field-error {
  font-size: .8rem; color: var(--error); font-weight: 600;
  margin-top: .35rem; display: none;
}
.field-error.show { display: block; }

/* Native select chevron */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7486' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.4rem;
}

/* Range slider */
.range-row { display: flex; align-items: center; gap: .8rem; }
.range-row input[type=range] {
  flex: 1; accent-color: var(--gold-500); height: 6px; cursor: pointer;
}
.range-val {
  font-weight: 800; color: var(--navy-800);
  min-width: 120px; text-align: right; font-size: 1.05rem;
}

/* Consent */
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--gray-700); margin: 1rem 0; }
.consent input { margin-top: .2rem; accent-color: var(--gold-500); width: 18px; height: 18px; flex: none; }
.consent a { color: var(--navy-600); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; min-height: 48px;
  padding: .9rem 1.25rem;
  border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn-gold:active { box-shadow: none; }
.btn-navy { background: var(--navy-600); color: #fff; }
.btn-navy:hover { background: var(--navy-500); }
.btn:disabled { background: var(--gray-200); color: var(--gray-400); cursor: not-allowed; box-shadow: none; transform: none; }

/* Loading spinner (inline, no layout shift) */
.btn .spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: transparent;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* OTP */
.otp-box { margin-top: 1rem; }
.otp-actions { display: flex; gap: .6rem; margin-top: .6rem; }
.otp-actions .btn { flex: 1; }
.otp-ok { color: var(--success); font-weight: 700; font-size: .9rem; margin-top: .6rem; }
.otp-helper { font-size: .78rem; color: var(--gray-500); margin-top: .5rem; }

/* Success / duplicate */
.success-box { text-align: center; padding: 2.5rem 1.5rem; }
.success-box .big { font-size: 3rem; }
.success-box h2 { color: var(--navy-800); margin: .8rem 0 .4rem; font-weight: 800; }
.success-box p { color: var(--gray-500); }
.success-box.success-ok { background: var(--success-bg); border-color: var(--success); }
.success-box.success-dup { background: var(--gray-100); border-color: var(--gray-200); }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}

/* ============================================================
   Social proof strip
   ============================================================ */
.social-proof {
  background: var(--navy-50);
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
  padding: 1.6rem 0;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-num { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; color: var(--navy-800); }
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-top: .2rem; }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 3rem 0; }
.section-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--navy-800); letter-spacing: -0.01em; line-height: 1.2; }
.section-sub { color: var(--gray-500); margin-top: .5rem; margin-bottom: 1.8rem; max-width: 40rem; }
.section-title.center, .section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Section eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold-700);
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .6rem;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold-500); border-radius: 2px; }

/* ============================================================
   Features — asymmetric 2×2 (first card spans 2 cols)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature.wide { grid-column: 1 / -1; display: flex; gap: 1.2rem; align-items: flex-start; }
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-50);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex: none;
}
.feature.wide .icon { width: 56px; height: 56px; font-size: 1.6rem; }
.feature h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy-800); margin: .7rem 0 .3rem; }
.feature.wide h3 { margin-top: 0; }
.feature p { font-size: .875rem; color: var(--gray-500); }

/* ============================================================
   Loan categories — Kishore (middle) recommended
   ============================================================ */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.cat-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
}
.cat-card h3 { color: var(--navy-800); font-size: 1.05rem; font-weight: 700; }
.cat-card .amt { font-size: 1.5rem; font-weight: 800; color: var(--gold-700); margin: .3rem 0 .8rem; }
.cat-card ul { list-style: none; font-size: .875rem; color: var(--gray-500); flex: 1; }
.cat-card li { padding: .2rem 0; }
.cat-card li::before { content: "✓ "; color: var(--success); font-weight: 700; }
.cat-card.recommended {
  background: var(--gold-100);
  border: 2px solid var(--gold-600);
  box-shadow: var(--shadow-lg);
}
.cat-card.recommended .amt { color: var(--gold-700); }
.ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-600); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   How it works — 4 steps
   ============================================================ */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; }
.how-step {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 1.4rem 1.2rem; text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.how-step .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: .7rem;
  box-shadow: 0 0 0 3px var(--gold-300);
}
.how-step h3 { font-size: .95rem; font-weight: 700; color: var(--navy-800); }
.how-step p { font-size: .84rem; color: var(--gray-500); margin-top: .3rem; }
/* connecting line on desktop */
@media (min-width: 768px) {
  .how-step:not(:last-child)::after {
    content: ""; position: absolute; top: 40px; right: -0.5rem;
    width: 1rem; height: 2px; background: var(--gray-200);
  }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonial .quote { font-size: .92rem; color: var(--gray-700); flex: 1; }
.testimonial .quote::before { content: "“"; color: var(--gold-500); font-size: 1.6rem; line-height: 0; }
.testimonial .person { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold-300);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; letter-spacing: .02em; flex: none;
}
.testimonial .p-name { font-weight: 700; color: var(--navy-800); font-size: .9rem; }
.testimonial .p-meta { font-size: .78rem; color: var(--gray-500); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--r-sm); padding: 0;
  margin-bottom: .7rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-left-color: var(--gold-500); }
.faq summary {
  font-weight: 600; color: var(--navy-800);
  cursor: pointer; list-style: none;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ind {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--gold-500); color: var(--gold-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.faq details[open] summary .ind { transform: rotate(45deg); background: var(--gold-100); }
.faq .ans { padding: 0 1.2rem 1rem; font-size: .9rem; color: var(--gray-500); }
.faq .ans a { color: var(--navy-600); }
.faq-close {
  text-align: center; margin-top: 1.2rem; color: var(--gray-500); font-size: .9rem;
}
.faq-close a { color: var(--gold-700); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
footer { background: var(--navy-900); color: #b9c4dd; padding: 2.5rem 0 1.5rem; margin-top: 2rem; }
footer .container { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }
footer a { color: #c9d4ea; text-decoration: none; transition: color .2s var(--ease); }
footer a:hover { color: var(--gold-400); }
.footer-links { display: flex; gap: 1.2rem; font-size: .88rem; }
.footer-note {
  width: 100%; font-size: .75rem; color: #8a97b5;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem; margin-top: 1rem;
}
.footer-copy { width: 100%; font-size: .75rem; color: #8a97b5; margin-top: .6rem; }

/* ============================================================
   Sticky mobile bottom CTA bar
   ============================================================ */
.bottom-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--navy-900);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(11,31,58,.18);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.bottom-cta.show { transform: translateY(0); }
.bottom-cta .trust-line {
  text-align: center; color: var(--gold-300);
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: .45rem;
}
.bottom-cta .btn { margin: 0; }

/* ============================================================
   Scroll reveal (transform + opacity only)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal-visible { opacity: 1; transform: translateY(0); }
/* stagger siblings */
.reveal-group > .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cats { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .how { grid-template-columns: repeat(2, 1fr); }
  .how-step:not(:last-child)::after { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

@media (max-width: 640px) {
  .form-section { padding: 1.4rem; }
  .hero { padding: 2.5rem 0 3rem; }
  .features { grid-template-columns: 1fr; }
  .feature.wide { grid-column: auto; }
  .topbar-tag { display: none; }
  .topbar-cta { display: inline-flex; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bottom-cta { transition: none; }
}
