/* ==========================================================================
   Health Professionals Alliance® — "Reimagined" (cinematic dark edition)
   Hand-coded · DM Sans · Brand spectrum aqua → sage → gold on near-black
   ========================================================================== */

:root {
  /* Brand spectrum */
  --aqua: #5FD0DF;
  --aqua-bright: #7EE0EC;
  --teal: #4AB3C8;
  --ocean: #0099B0;
  --sage: #6DC8A0;
  --forest: #2FA777;
  --gold: #E0A93B;
  --gold-soft: #C4902A;

  /* Near-black canvas + surfaces */
  --bg: #07090C;
  --bg-1: #0C1116;
  --bg-2: #121922;
  --bg-3: #18222C;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);

  /* Text */
  --fg: #F3F7F9;
  --fg-dim: #AAB6BF;
  --fg-faint: #6E7A84;

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --container-narrow: 920px;

  --grad-spectrum: linear-gradient(100deg, var(--aqua) 0%, var(--sage) 50%, var(--gold) 100%);
  --grad-cool: linear-gradient(120deg, var(--aqua-bright), var(--ocean));

  --r: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fine film grain over everything for a premium, tactile feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--container-narrow); }

/* ── Type scale ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.display {
  font-size: clamp(2.9rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h-section {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--fg-dim); line-height: 1.65; }

.grad-text {
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-cool-text {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua));
}
.eyebrow.center::before { background: linear-gradient(90deg, var(--aqua), transparent); }

/* ── Layout primitives ────────────────────────────────────────────────────── */
section { position: relative; }
.band { padding: clamp(90px, 12vw, 170px) 0; }
.band-tight { padding: clamp(64px, 8vw, 110px) 0; }

.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .lead { margin-top: 22px; }
.section-head .h-section { margin-top: 20px; }

/* Ambient glow orbs (decorative) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.orb-aqua { background: radial-gradient(circle, rgba(95,208,223,0.55), transparent 70%); }
.orb-sage { background: radial-gradient(circle, rgba(109,200,160,0.45), transparent 70%); }
.orb-gold { background: radial-gradient(circle, rgba(224,169,59,0.4), transparent 70%); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--grad-cool);
  color: #04161A;
  box-shadow: 0 10px 40px rgba(95, 208, 223, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 16px 60px rgba(95, 208, 223, 0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-bright);
  color: var(--fg);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn-lg { padding: 20px 40px; font-size: 1.08rem; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand-logo img { height: 38px; width: auto; }
.site-nav { display: flex; gap: 34px; }
.site-nav a {
  font-size: 0.95rem;
  color: var(--fg-dim);
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--aqua);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover { color: var(--fg); }
.site-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 11px 22px; font-size: 0.92rem; }
.nav-toggle { display: none; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.18) translate(-1.5%, -2%); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 18% 30%, rgba(7,9,12,0.55), transparent 60%),
    linear-gradient(90deg, rgba(7,9,12,0.92) 0%, rgba(7,9,12,0.7) 38%, rgba(7,9,12,0.35) 70%, rgba(7,9,12,0.6) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 32%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 920px; }
.hero h1 { margin: 24px 0; }
.hero .lead { max-width: 620px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

/* word-by-word hero reveal */
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.hero.in .reveal-word > span { transform: translateY(0); }
.hero.in .reveal-word:nth-child(2) > span { transition-delay: 0.07s; }
.hero.in .reveal-word:nth-child(3) > span { transition-delay: 0.14s; }
.hero.in .reveal-word:nth-child(4) > span { transition-delay: 0.21s; }
.hero.in .reveal-word:nth-child(5) > span { transition-delay: 0.28s; }
.hero.in .reveal-word:nth-child(6) > span { transition-delay: 0.35s; }
.hero-fade { opacity: 0; transform: translateY(20px); transition: opacity 1s ease 0.5s, transform 1s var(--ease) 0.5s; }
.hero.in .hero-fade { opacity: 1; transform: none; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint);
}
.scroll-cue span {
  width: 1px; height: 46px;
  background: linear-gradient(var(--aqua), transparent);
  animation: cue 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* hero stat ribbon */
.hero-ribbon {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.5);
  backdrop-filter: blur(10px);
}
.hero-ribbon .container { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 26px; padding-bottom: 26px; }
.ribbon-item { display: flex; flex-direction: column; gap: 2px; }
.ribbon-item b { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.ribbon-item span { font-size: 0.8rem; color: var(--fg-faint); }

/* ── Marquee ──────────────────────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: inline-flex; gap: 56px; animation: scrollx 32s linear infinite; }
.marquee-track span {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--fg-faint);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: "✦"; color: var(--aqua); font-size: 0.8em; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ── Reveal-on-scroll ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ── Manifesto ────────────────────────────────────────────────────────────── */
.manifesto { text-align: center; }
.manifesto .kicker { font-size: clamp(1.6rem, 3.4vw, 3rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.025em; }
.manifesto .kicker .muted { color: var(--fg-faint); }
.manifesto-stat { font-size: clamp(4rem, 12vw, 9rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; }

/* ── Bento / cards ────────────────────────────────────────────────────────── */
.card-surface {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.card-surface::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(95,208,223,0.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card-surface:hover::before { opacity: 1; }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento .cell { padding: 32px; transition: transform 0.4s var(--ease); }
.bento .cell:hover { transform: translateY(-4px); }
.cell-2 { grid-column: span 2; }
.cell-3 { grid-column: span 3; }
.cell-4 { grid-column: span 4; }
.cell-6 { grid-column: span 6; }
.cell .cell-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(95,208,223,0.1);
  border: 1px solid rgba(95,208,223,0.25);
  color: var(--aqua);
  margin-bottom: 20px;
}
.cell .cell-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cell h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.cell p { color: var(--fg-dim); font-size: 0.98rem; }
.cell .big-num { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }

/* ── Value Runway (signature infographic) ─────────────────────────────────── */
.runway-wrap { position: relative; }
.runway-card {
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--r-lg);
}
.runway-svg { width: 100%; height: auto; overflow: visible; }
.runway-svg text { font-family: var(--font); }
.rw-line { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.4s var(--ease) 0.2s; }
.runway-card.in .rw-line { stroke-dashoffset: 0; }
.rw-area { opacity: 0; transition: opacity 1.1s ease 1.6s; }
.runway-card.in .rw-area { opacity: 1; }
.rw-ms { opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.runway-card.in .rw-ms { opacity: 1; transform: none; }
.runway-card.in .rw-ms-1 { transition-delay: 0.5s; }
.runway-card.in .rw-ms-2 { transition-delay: 0.85s; }
.runway-card.in .rw-ms-3 { transition-delay: 1.2s; }
.runway-card.in .rw-ms-4 { transition-delay: 1.55s; }
.runway-card.in .rw-ms-5 { transition-delay: 1.9s; }
.runway-card.in .rw-ms-6 { transition-delay: 2.25s; }
.rw-glow { animation: rwpulse 2.8s ease-in-out 2.4s infinite; transform-origin: center; transform-box: fill-box; }
@keyframes rwpulse { 0%,100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.25); } }
.runway-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.runway-legend span { display: inline-flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--fg-dim); }
.runway-legend b {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 700; color: #04161A;
}

/* ── Journey (vertical big-numeral timeline) ──────────────────────────────── */
.journey { display: grid; gap: 0; margin-top: 56px; }
.jstep {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: clamp(24px, 5vw, 70px);
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.jstep:last-child { border-bottom: 1px solid var(--line); }
.jstep-num {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1.5px var(--line-bright);
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color 0.5s ease, -webkit-text-stroke-color 0.5s ease;
}
.jstep.in .jstep-num {
  -webkit-text-fill-color: transparent;
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke-color: transparent;
}
.jstep-phase { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua); margin-bottom: 6px; display: block; }
.jstep h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.jstep p { color: var(--fg-dim); max-width: 620px; margin-bottom: 18px; }
.jstep-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.jstep-tags i {
  font-style: normal; font-size: 0.82rem; color: var(--fg-dim);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: rgba(255,255,255,0.02);
}

/* ── Metrics band ─────────────────────────────────────────────────────────── */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.metric { background: var(--bg-1); padding: 40px 28px; text-align: center; }
.metric .m-num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.metric .m-label { color: var(--fg-dim); font-size: 0.9rem; margin-top: 12px; }

/* ── Navigator feature ────────────────────────────────────────────────────── */
.nav-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.nav-list { display: grid; gap: 14px; margin-top: 30px; }
.nav-list .item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,255,255,0.02); transition: border-color 0.3s ease, transform 0.3s var(--ease); }
.nav-list .item:hover { border-color: var(--line-bright); transform: translateX(4px); }
.nav-list .tick { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--grad-cool); display: grid; place-items: center; }
.nav-list .tick svg { width: 16px; height: 16px; stroke: #04161A; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.nav-list h4 { font-size: 1.05rem; margin-bottom: 3px; }
.nav-list p { color: var(--fg-dim); font-size: 0.92rem; margin: 0; }
.nav-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 420px; }
.nav-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.nav-visual .glass {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  padding: 22px 24px; border-radius: var(--r);
  background: rgba(7,9,12,0.6); backdrop-filter: blur(14px);
  border: 1px solid var(--line-bright);
}
.nav-visual .glass b { color: var(--aqua); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.nav-visual .glass p { margin-top: 6px; font-size: 1.05rem; color: var(--fg); }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta .display { margin-bottom: 22px; }
.final-cta .lead { max-width: 560px; margin: 0 auto 38px; }
.final-cta-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(48px, 8vw, 96px) 28px;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(95,208,223,0.18), transparent 55%),
    radial-gradient(100% 120% at 80% 100%, rgba(224,169,59,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
}
.reassure { margin-top: 26px; font-size: 0.88rem; color: var(--fg-faint); display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.reassure span { display: inline-flex; align-items: center; gap: 7px; }
.reassure span::before { content: "✓"; color: var(--sage); font-weight: 700; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); padding: 70px 0 40px; background: var(--bg-1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-grid img { height: 34px; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: var(--fg-dim); font-size: 0.92rem; }
.footer-grid h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--aqua); }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 0.84rem; color: var(--fg-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell-2, .cell-3, .cell-4, .cell-6 { grid-column: span 2; }
  .nav-feature { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .site-nav, .header-cta .btn-secondary { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; }
  .site-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0;
    background: rgba(7,9,12,0.96); backdrop-filter: blur(16px); padding: 24px 28px; gap: 20px; border-bottom: 1px solid var(--line);
  }
  .jstep { grid-template-columns: 1fr; gap: 12px; }
  .jstep-num { font-size: 4rem; }
  .bento { grid-template-columns: 1fr; }
  .cell-2, .cell-3, .cell-4, .cell-6 { grid-column: span 1; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .hero-ribbon .container { gap: 20px; }
  .ribbon-item { flex: 1 1 40%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .hero-fade { opacity: 1 !important; transform: none !important; }
  .reveal-word > span { transform: none !important; }
  .rw-line { stroke-dashoffset: 0 !important; }
}
