/* =========================================================
   ResearchH2O — Premium Landing Page Styles
   Palette: crystal ocean water, soft aqua, white lab, light cyan
   ========================================================= */

:root {
  /* Core palette */
  --white: #ffffff;
  --foam: #f4fbfe;
  --ice: #eaf7fc;
  --cyan-50: #caf0f8;
  --cyan-100: #ade8f4;
  --cyan-200: #90e0ef;
  --cyan-300: #48cae4;
  --cyan-400: #00b4d8;
  --cyan-500: #0096c7;
  --ocean-600: #0077b6;
  --ocean-700: #023e8a;

  /* Text */
  --ink: #062a3a;
  --ink-soft: #2c5566;
  --ink-mute: #5e7c8a;

  /* Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 20px 50px -20px rgba(2, 62, 138, 0.28);

  --grad-brand: linear-gradient(120deg, #00b4d8 0%, #0077b6 55%, #023e8a 100%);
  --grad-aqua: linear-gradient(120deg, #90e0ef 0%, #48cae4 50%, #00b4d8 100%);
  --grad-text: linear-gradient(100deg, #0096c7 0%, #0077b6 50%, #00b4d8 100%);

  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1200px;
  --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%; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, var(--cyan-50) 0%, transparent 60%),
    radial-gradient(1000px 600px at -10% 20%, #e6f6fb 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--foam) 40%, var(--ice) 100%);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

/* ---------- Global animated background ---------- */
#molecule-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 420px at 15% 25%, rgba(72, 202, 228, 0.18), transparent 70%),
    radial-gradient(700px 500px at 85% 70%, rgba(144, 224, 239, 0.16), transparent 70%);
  animation: auroraFloat 22s ease-in-out infinite alternate;
}
@keyframes auroraFloat {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(0,-3%,0) scale(1.05); }
}

main, .nav, .footer { position: relative; z-index: 2; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-aqua);
  z-index: 100; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.5);
  transition: width 0.1s linear;
}

/* ---------- Glassmorphism ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.85rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 100px; cursor: pointer; border: none;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn__arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 14px 30px -10px rgba(0, 119, 182, 0.6);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, #48cae4, #00b4d8 60%, #0096c7);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -10px rgba(0, 119, 182, 0.7); }
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
  color: var(--ocean-600);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 150, 199, 0.35);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { transform: translateY(-3px); background: #fff; border-color: var(--cyan-400); box-shadow: 0 16px 30px -14px rgba(0, 150, 199, 0.5); }

.btn--lg { --pad-y: 1.05rem; --pad-x: 1.9rem; font-size: 1rem; }
.btn--xl { --pad-y: 1.2rem; --pad-x: 2.4rem; font-size: 1.1rem; }

/* ---------- Eyebrow — scientific annotation marker (no pill, no blinking dot) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ocean-600);
  margin-bottom: 1.2rem;
  padding: 0; background: none; border: none;
}
.eyebrow__drop {
  display: inline-flex; flex: none;
  filter: drop-shadow(0 2px 5px rgba(0, 150, 199, 0.5));
  animation: dropFloat 4.5s ease-in-out infinite;
}
.eyebrow__drop svg { fill: var(--cyan-400); }
.eyebrow__rule {
  width: 26px; height: 1.5px; flex: none;
  background: linear-gradient(90deg, var(--cyan-300), rgba(0, 180, 216, 0));
}
@keyframes dropFloat {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-3px); opacity: 1; }
}
.eyebrow--center { justify-content: center; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__head .eyebrow { justify-content: center; }
.section__head--split {
  text-align: left; max-width: none;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem;
}
.section__head--split .eyebrow { justify-content: flex-start; }
.section__head--split .section__lead { margin: 0; max-width: 360px; padding-bottom: 0.4rem; }
.section__title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 1.3rem;
}
.section__lead { margin-top: 1.1rem; color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Hero card indicators (replaced readout metrics) ---------- */
.hero__card-indicators { display: grid; gap: 1rem; position: relative; z-index: 2; }
.indicator { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem 1rem; border-radius: 14px; background: rgba(255,255,255,0.5); border: 1px solid rgba(0,180,216,0.18); transition: background 0.3s var(--ease); }
.indicator:hover { background: rgba(255,255,255,0.75); }
.indicator__icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--grad-brand); color: #fff; box-shadow: 0 8px 18px -8px rgba(0,119,182,0.55); }
.indicator__text { display: flex; flex-direction: column; gap: 0.18rem; }
.indicator__text strong { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.indicator__text span { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.45; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.4s var(--ease);
}
.nav__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 78px;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 30px -16px rgba(2, 62, 138, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav.scrolled .nav__inner { height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark {
  display: block; height: 40px; width: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 119, 182, 0.35));
  animation: bob 5s ease-in-out infinite;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .brand__mark { height: 34px; }
.brand__mark--footer { height: 32px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.brand__text {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.3rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand__accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav__links { display: flex; gap: 0.4rem; margin-left: auto; }
.nav__links a {
  font-family: 'Sora', sans-serif; font-weight: 500; font-size: 0.95rem;
  color: var(--ink-soft); padding: 0.5rem 0.95rem; border-radius: 100px;
  position: relative; transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px; background: var(--grad-aqua);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ocean-600); }
.nav__links a:hover::after { width: 40%; }

.nav__cta { margin-left: 0.4rem; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; margin-left: auto;
  background: none; border: none; cursor: pointer; padding: 10px;
  border-radius: 12px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--ocean-600); border-radius: 2px; transition: all 0.3s var(--ease); }
.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); }

.nav__mobile {
  display: none; flex-direction: column; gap: 0.2rem;
  padding: 0.8rem max(24px, env(safe-area-inset-left)) calc(1.2rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 40px -24px rgba(2, 62, 138, 0.4);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: 'Sora', sans-serif; font-weight: 500; color: var(--ink-soft);
  padding: 0.85rem 0.6rem; border-radius: 10px;
  border-bottom: 1px solid rgba(0, 150, 199, 0.1);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { background: rgba(202, 240, 248, 0.5); color: var(--ocean-600); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 100px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__ripple {
  position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%);
  width: 120vmax; height: 120vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 232, 244, 0.35) 0%, transparent 42%);
  animation: ripple 8s ease-out infinite;
}
@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}
.hero__glass-orb {
  position: absolute; border-radius: 50%; filter: blur(2px);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), rgba(144,224,239,0.4) 55%, rgba(0,180,216,0.25));
  box-shadow: inset 0 0 40px rgba(255,255,255,0.6), 0 30px 60px -20px rgba(0, 150, 199, 0.4);
  animation: floatOrb 14s ease-in-out infinite;
}
.hero__glass-orb--1 { width: 180px; height: 180px; top: 12%; right: 8%; }
.hero__glass-orb--2 { width: 110px; height: 110px; bottom: 16%; left: 6%; animation-delay: -4s; }
.hero__glass-orb--3 { width: 70px; height: 70px; top: 30%; left: 18%; animation-delay: -8s; opacity: 0.7; }
@keyframes floatOrb {
  0%,100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-26px) translateX(12px); }
  66% { transform: translateY(14px) translateX(-10px); }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__content { max-width: 620px; }
.hero__title {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04;
  letter-spacing: -0.03em; margin: 0.4rem 0 1.4rem;
}
.hero__line { display: block; }
.hero__line--grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__subtitle { font-size: 1.18rem; color: var(--ink-soft); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 2.6rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(0, 150, 199, 0.18); }
.hero__stat dt { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ocean-600); }
.hero__stat dd { font-size: 0.85rem; color: var(--ink-mute); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative; border-radius: var(--radius-lg);
  padding: 2rem; overflow: hidden;
}
.hero__card-glow {
  position: absolute; inset: -40% -20% auto auto; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(72,202,228,0.45), transparent 65%);
  filter: blur(10px); animation: floatOrb 12s ease-in-out infinite;
}
.molecule-emblem { width: 100%; max-width: 300px; margin: 0 auto 1.4rem; position: relative; z-index: 2; }
.molecule-emblem__link { display: block; border-radius: 20px; cursor: pointer; }
.molecule-emblem__img {
  width: 100%; height: auto; display: block;
  border-radius: 20px;
  filter: drop-shadow(0 22px 40px rgba(2, 62, 138, 0.28));
  animation: emblemFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}
.molecule-emblem__link:hover .molecule-emblem__img {
  transform: scale(1.03);
  filter: drop-shadow(0 28px 48px rgba(2, 62, 138, 0.36));
}
@keyframes emblemFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero__card-readout { position: relative; z-index: 2; display: grid; gap: 0.85rem; }
.readout__row { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 0.7rem; }
.readout__label { font-size: 0.78rem; color: var(--ink-mute); font-weight: 500; }
.readout__bar { height: 7px; border-radius: 100px; background: rgba(0,150,199,0.12); overflow: hidden; }
.readout__bar i { display: block; height: 100%; width: var(--w); border-radius: 100px; background: var(--grad-aqua); transform-origin: left; animation: growBar 1.6s var(--ease) both; }
@keyframes growBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.readout__val { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--ocean-600); }

.hero__chip {
  position: absolute; padding: 0.6rem 1rem; border-radius: 100px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--ocean-600);
  animation: floatOrb 9s ease-in-out infinite;
}
.hero__chip--1 { top: -18px; left: -10px; font-size: 1.1rem; }
.hero__chip--2 { bottom: -16px; right: 10px; animation-delay: -3s; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 3;
  color: var(--ink-mute); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero__scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(0,150,199,0.4); border-radius: 14px; position: relative; }
.hero__scroll-mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; border-radius: 4px; background: var(--cyan-400); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,12px); } 100% { opacity: 0; } }

/* =========================================================
   FEATURES
   ========================================================= */
.features__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.feature {
  position: relative; border-radius: var(--radius); padding: 2rem 1.7rem;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  transform-style: preserve-3d;
}
.feature::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(160deg, rgba(202,240,248,0.6), rgba(255,255,255,0));
  transition: opacity 0.45s var(--ease);
}
.feature:hover { transform: translateY(-10px); box-shadow: 0 36px 60px -28px rgba(0, 119, 182, 0.45); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.2rem;
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 12px 24px -10px rgba(0, 119, 182, 0.6);
  position: relative; z-index: 2;
  transition: transform 0.45s var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-3px) rotate(-6deg) scale(1.05); }
.feature__title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.18rem; margin-bottom: 0.6rem; position: relative; z-index: 2; }
.feature__text { color: var(--ink-soft); font-size: 0.96rem; position: relative; z-index: 2; }
.feature__index {
  position: absolute; top: 1.1rem; right: 1.3rem;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.4rem;
  color: rgba(0, 150, 199, 0.08); z-index: 1;
}

/* =========================================================
   STANDARDS
   ========================================================= */
.standards__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.standards__media { position: relative; }
.standards__media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 10px;
}
.standards__media-frame img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; object-position: center 30%; aspect-ratio: 3 / 2; }
.standards__media-overlay {
  position: absolute; inset: 10px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(0, 180, 216, 0.08), rgba(2, 62, 138, 0.18));
  mix-blend-mode: multiply; pointer-events: none;
}
.standards__readout {
  position: absolute; bottom: 26px; left: 26px;
  width: min(260px, calc(100% - 52px));
  padding: 0.85rem 1.1rem; border-radius: 14px;
}
.standards__readout-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.standards__sparkline { margin: 0.4rem 0 0.2rem; }
.spark-line { stroke-dasharray: 320; stroke-dashoffset: 320; animation: drawSpark 2.4s var(--ease) forwards; filter: drop-shadow(0 2px 6px rgba(0,150,199,0.4)); }
@keyframes drawSpark { to { stroke-dashoffset: 0; } }
.standards__readout-trend { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--ocean-600); }

.standards__badge {
  position: absolute; top: -22px; right: -10px;
  padding: 0.9rem 1.2rem; border-radius: 16px; text-align: center;
  animation: floatOrb 10s ease-in-out infinite;
}
.standards__badge strong { display: block; font-family: 'Sora', sans-serif; color: var(--ocean-600); font-size: 1.05rem; }
.standards__badge span { font-size: 0.72rem; color: var(--ink-mute); }

.standards__text { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.05rem; }
.standards__list { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: 0.85rem; }
.standards__list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; color: var(--ink); }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--grad-aqua); color: #fff; font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 8px 16px -8px rgba(0, 150, 199, 0.7);
}

/* =========================================================
   SOCIAL PROOF
   ========================================================= */
.social__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testimonial {
  position: relative; border-radius: var(--radius); padding: 2.2rem 1.9rem 1.8rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.testimonial:hover { transform: translateY(-8px); box-shadow: 0 34px 56px -28px rgba(0, 119, 182, 0.4); }
.testimonial__quote-mark {
  font-family: 'Sora', sans-serif; font-size: 3.4rem; line-height: 0.6; font-weight: 800;
  color: var(--cyan-200); height: 1.4rem;
}
.testimonial blockquote { font-size: 1.08rem; color: var(--ink); font-weight: 500; margin: 0.8rem 0 1.6rem; }
.testimonial figcaption { display: flex; align-items: center; gap: 0.8rem; }
.testimonial__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--grad-brand); color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem;
}
.testimonial__meta { display: flex; flex-direction: column; }
.testimonial__meta strong { font-family: 'Sora', sans-serif; font-size: 0.95rem; color: var(--ink); }
.testimonial__meta em { font-style: normal; font-size: 0.78rem; color: var(--ink-mute); }

.trust {
  list-style: none; margin-top: 2.8rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust li {
  display: flex; align-items: center; gap: 0.65rem; justify-content: center;
  padding: 1rem 1.1rem; border-radius: 14px; font-weight: 500; font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(0, 180, 216, 0.18);
  backdrop-filter: blur(10px); text-align: center;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about__text { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1rem; }
.about__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.about__pillar { padding: 1.3rem 1.1rem; border-radius: 16px; }
.about__pillar-icon { font-size: 1.4rem; color: var(--cyan-400); }
.about__pillar strong { display: block; font-family: 'Sora', sans-serif; font-size: 1rem; margin: 0.4rem 0 0.25rem; color: var(--ink); }
.about__pillar span { font-size: 0.82rem; color: var(--ink-mute); }

.about__media { position: relative; }
.about__media-stack { position: relative; padding: 0 0 50px 0; }
.about__img { border-radius: var(--radius-lg); object-fit: cover; padding: 8px; }
.about__img--main { width: 86%; aspect-ratio: 3 / 2; }
.about__img--sub {
  position: absolute; bottom: 0; right: 0; width: 46%; aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px -24px rgba(2, 62, 138, 0.5);
}
.about__float {
  position: absolute; top: 12%; right: -6px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.9rem 1rem; border-radius: 18px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.8rem; color: var(--ocean-600);
  animation: floatOrb 9s ease-in-out infinite;
}
.about__float-molecule { animation: spinSlow 30s linear infinite; display: inline-flex; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta__panel {
  position: relative; text-align: center; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(150deg, rgba(255,255,255,0.85), rgba(202,240,248,0.7));
}
.cta__glow {
  position: absolute; inset: auto; width: 520px; height: 520px; border-radius: 50%;
  left: 50%; top: -40%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(72,202,228,0.4), transparent 62%);
  animation: floatOrb 14s ease-in-out infinite;
}
.cta__sparkles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  mask-image: radial-gradient(circle at 50% 45%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 35%, transparent 78%);
}
.cta__title {
  position: relative; z-index: 2;
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta__text { position: relative; z-index: 2; color: var(--ink-soft); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2.2rem; }
.cta__panel .btn { position: relative; z-index: 2; }

/* =========================================================
   HERO — Shop Now button under vial
   ========================================================= */
.hero__shop {
  display: flex; width: fit-content; margin: 0 auto 1.2rem;
  position: relative; z-index: 2;
}

/* =========================================================
   MORE RESEARCH H2O VIALS — product cards
   ========================================================= */
.products__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 38px 60px -30px rgba(0, 119, 182, 0.42); }
.product-card__media {
  position: relative; padding: 1.5rem 1.5rem 0.5rem;
  background: linear-gradient(160deg, rgba(202,240,248,0.35), rgba(255,255,255,0));
  /* fixed-ratio box guarantees the vial keeps its proportions on every screen */
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 5;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  transition: transform 0.45s var(--ease);
  filter: drop-shadow(0 18px 30px rgba(2, 62, 138, 0.16));
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body {
  padding: 1.2rem 1.6rem 1.8rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  margin-top: auto;
}
.product-card__title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.25rem; color: var(--ink); }
.product-card__meta { font-size: 0.86rem; color: var(--ink-mute); margin-bottom: 1rem; }
.product-card__btn { margin-top: auto; }

@media (max-width: 860px) {
  .products__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .products__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* =========================================================
   HERO — Research Use Only disclaimer
   ========================================================= */
.hero__ruo {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.6rem; padding: 0.6rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 150, 199, 0.22);
  font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4;
}
.hero__ruo-icon { flex: none; color: var(--cyan-500); }
.hero__ruo strong { color: var(--ocean-600); font-weight: 700; }

/* =========================================================
   WHAT IS — particulate purity callout
   ========================================================= */
.purity-spec {
  position: relative; margin: 0 0 1.8rem;
  padding: 1.1rem 1.3rem 1.1rem 1.5rem;
  border-radius: 16px; border-left: 3px solid var(--cyan-400);
}
.purity-spec__label {
  display: block; font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ocean-600); margin-bottom: 0.35rem;
}
.purity-spec__text { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; margin: 0; }
.purity-spec__text strong { color: var(--ink); font-weight: 700; }

/* =========================================================
   RESEARCH H2O QUALITY STANDARDS (detailed)
   ========================================================= */
.quality__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; align-items: start;
}
.quality__card {
  border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.quality__card:hover { transform: translateY(-6px); box-shadow: 0 34px 56px -30px rgba(0, 119, 182, 0.4); }
.quality__card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1.1rem;
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 12px 24px -10px rgba(0, 119, 182, 0.6);
}
.quality__card-title {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.22rem;
  color: var(--ink); margin-bottom: 0.5rem;
}
.quality__card-sub { color: var(--ink-mute); font-size: 0.92rem; margin-bottom: 1rem; }
.quality__card-text { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0.9rem; }
.quality__card-text:last-child { margin-bottom: 0; }
.quality__list { list-style: none; display: grid; gap: 0.7rem; }
.quality__list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.96rem; color: var(--ink); }
.quality__list .check { margin-top: 1px; }
.quality__specs { display: grid; gap: 0.7rem; }
.quality__specs > div {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0.8rem; align-items: baseline;
  padding-bottom: 0.65rem; border-bottom: 1px solid rgba(0, 150, 199, 0.12);
}
.quality__specs > div:last-child { border-bottom: none; padding-bottom: 0; }
.quality__specs dt { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--ocean-600); }
.quality__specs dd { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) {
  .quality__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero__ruo { margin-top: 1.3rem; }
  .quality__specs > div { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* =========================================================
   RECONSTITUTION CALCULATOR CALLOUT
   ========================================================= */
.calc-callout { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.calc-callout__panel {
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(202,240,248,0.75) 0%, rgba(255,255,255,0.85) 100%);
}
.calc-callout__glow {
  position: absolute; inset: auto; width: 400px; height: 400px; border-radius: 50%;
  right: -80px; top: -120px; pointer-events: none;
  background: radial-gradient(circle, rgba(72,202,228,0.28), transparent 62%);
  animation: floatOrb 14s ease-in-out infinite;
}
.calc-callout__icon {
  display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; flex: none; border-radius: 22px;
  background: var(--grad-brand);
  box-shadow: 0 16px 32px -12px rgba(0,119,182,0.55);
  position: relative; z-index: 2;
}
.calc-callout__content { position: relative; z-index: 2; }
.calc-callout__content .eyebrow { margin-bottom: 0.6rem; }
.calc-callout__title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.15;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 0.55rem;
}
.calc-callout__text {
  color: var(--ink-soft); font-size: 1rem; max-width: 540px; line-height: 1.6;
}
.calc-callout__btn { position: relative; z-index: 2; flex: none; white-space: nowrap; }

@media (max-width: 720px) {
  .calc-callout__panel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.4rem;
    padding: 2rem 1.4rem;
  }
  .calc-callout__icon { margin: 0 auto; }
  .calc-callout__content .eyebrow { justify-content: center; }
  .calc-callout__btn { width: 100%; justify-content: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, rgba(234,247,252,0) 0%, rgba(202,240,248,0.55) 100%);
  border-top: 1px solid rgba(0, 180, 216, 0.15);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer__desc { color: var(--ink-soft); margin-top: 1rem; max-width: 320px; font-size: 0.96rem; }
.footer__col h4 { font-family: 'Sora', sans-serif; font-size: 1rem; margin-bottom: 1rem; color: var(--ink); }
.footer__col a:not(.btn) { display: inline-block; color: var(--ink-soft); padding: 0.3rem 0; transition: color 0.3s var(--ease); }
.footer__col a:not(.btn):hover { color: var(--ocean-600); }
.footer__cta-col .btn { margin-top: 0.4rem; }
.footer__cta-col p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1rem; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.6rem 24px 2.4rem; border-top: 1px solid rgba(0, 150, 199, 0.14);
  font-size: 0.88rem; color: var(--ink-mute);
}
.footer__bottom a { color: var(--ocean-600); font-weight: 600; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
[data-reveal="left"] { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].in { opacity: 1; transform: none; }

/* =========================================================
   WHAT IS RESEARCHH2O
   ========================================================= */
.whatis__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.whatis__text { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1rem; }
.whatis__text:last-of-type { margin-bottom: 1.8rem; }

.whatis__media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 10px; }
.whatis__media-frame img { width: 100%; border-radius: 20px; object-fit: cover; aspect-ratio: 4 / 3; }
.whatis__overlay {
  position: absolute; inset: 10px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(0,180,216,0.06), rgba(2,62,138,0.14));
  mix-blend-mode: multiply; pointer-events: none;
}

.whatis__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; justify-content: flex-start; }
.whatis__tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem; border-radius: 100px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.8rem; color: var(--ocean-600);
  animation: floatOrb 11s ease-in-out infinite;
}
.whatis__tag:nth-child(2) { animation-delay: -3s; }
.whatis__tag:nth-child(3) { animation-delay: -6s; }

/* =========================================================
   OPERATIONAL COMMITMENTS — editorial split + molecular connector
   ========================================================= */
.commitments { position: relative; }
.commitments__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start;
}
.commitments__intro { position: sticky; top: 110px; }
.commitments__title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--ink); margin-bottom: 1.2rem;
}
.commitments__lead { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1.8rem; max-width: 380px; }
.commitments__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--ocean-600);
  position: relative; padding-bottom: 3px;
}
.commitments__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px; background: var(--grad-aqua); transform: scaleX(0.35); transform-origin: left; transition: transform 0.4s var(--ease); }
.commitments__link:hover::after { transform: scaleX(1); }
.commitments__link svg { transition: transform 0.35s var(--ease); }
.commitments__link:hover svg { transform: translateX(4px); }

.commitments__list { list-style: none; position: relative; display: grid; gap: 0.5rem; }
/* molecular connector line down the list */
.commitments__list::before {
  content: ""; position: absolute; left: 26px; top: 28px; bottom: 28px; width: 1.5px;
  background: linear-gradient(180deg, rgba(0,180,216,0), var(--cyan-200) 12%, var(--cyan-200) 88%, rgba(0,180,216,0));
}
.commit {
  position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 1.3rem;
  align-items: start; padding: 1.4rem 1.6rem 1.4rem 0; border-radius: var(--radius);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.commit:hover { transform: translateX(6px); }
.commit__node {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; flex: none; border-radius: 50%;
  color: var(--ocean-600); background: var(--white);
  border: 1.5px solid rgba(0,180,216,0.35);
  box-shadow: 0 10px 26px -14px rgba(0,119,182,0.5);
  transition: all 0.4s var(--ease);
}
.commit:hover .commit__node { color: #fff; background: var(--grad-brand); border-color: transparent; transform: scale(1.06); box-shadow: 0 16px 30px -12px rgba(0,119,182,0.6); }
.commit__body { padding-top: 0.35rem; position: relative; }
.commit__num {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.18em; color: var(--cyan-400);
}
.commit__title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.22rem; margin: 0.15rem 0 0.45rem; color: var(--ink); }
.commit__text { color: var(--ink-soft); font-size: 0.98rem; max-width: 460px; }

/* ---------- Subtle tinted band to break section uniformity ---------- */
.commitments {
  background:
    radial-gradient(700px 380px at 100% 0%, rgba(173,232,244,0.28), transparent 60%),
    linear-gradient(180deg, rgba(234,247,252,0) 0%, rgba(202,240,248,0.32) 50%, rgba(234,247,252,0) 100%);
}
.commitments::before,
.commitments::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,0.25), transparent);
}
.commitments::before { top: 0; }
.commitments::after { bottom: 0; }

/* ---------- Water-wave divider motif ---------- */
.wave-divider { position: relative; height: 90px; margin-top: -1px; overflow: hidden; pointer-events: none; z-index: 1; }
.wave-divider svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }
.wave-divider .wave-a { fill: rgba(144, 224, 239, 0.30); animation: waveShift 14s ease-in-out infinite alternate; }
.wave-divider .wave-b { fill: rgba(202, 240, 248, 0.55); animation: waveShift 10s ease-in-out infinite alternate-reverse; }
@keyframes waveShift { from { transform: translateX(-3%); } to { transform: translateX(3%); } }

/* =========================================================
   FOOTER DISCLAIMER
   ========================================================= */
.footer__disclaimer {
  padding: 1.2rem 24px 0;
  border-top: 1px dashed rgba(0,150,199,0.18);
  margin-top: 0.6rem;
}
.footer__disclaimer p {
  font-size: 0.82rem; color: var(--ink-mute); line-height: 1.6;
  max-width: 780px;
}
.footer__disclaimer a { color: var(--ocean-600); font-weight: 600; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__content { max-width: none; }
  .hero__visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .section__head--split { grid-template-columns: 1fr; gap: 1rem; }
  .section__head--split .section__lead { max-width: 520px; }
  .commitments__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .commitments__intro { position: static; top: auto; }
  .whatis__grid, .standards__grid, .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .standards__badge { right: 10px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  /* Navigation */
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .brand__mark { height: 34px; }

  /* Hero mobile — generous breathing room */
  .hero { padding: 100px 0 110px; min-height: 100svh; }
  .hero__inner { gap: 2rem; }
  .hero__content { padding: 0 4px; }
  .eyebrow { margin-bottom: 1rem; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3rem); margin: 0.5rem 0 1.2rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__actions { margin: 1.6rem 0 2rem; gap: 0.85rem; }
  .hero__actions .btn--lg { --pad-y: 0.9rem; --pad-x: 1.5rem; font-size: 0.95rem; }
  .hero__stats { gap: 1.4rem; flex-wrap: wrap; padding-top: 1.2rem; }
  .hero__stat dt { font-size: 1rem; }
  .hero__stat dd { font-size: 0.8rem; }

  /* Hero scroll indicator */
  .hero__scroll {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
    z-index: 10; color: var(--ink-mute);
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  }
  .hero__scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(0, 150, 199, 0.45);
    border-radius: 12px; position: relative;
    flex: none;
  }
  .hero__scroll-text { display: block; }

  /* Sections */
  .section { padding: clamp(3rem, 7vw, 5rem) 0; }
  .section__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Hero visual column — more breathing room entering viewport */
  .hero__visual { padding: 2rem 0 1.5rem; }

  /* Cards & grids */
  .features__grid { grid-template-columns: 1fr; gap: 1rem; }
  .about__pillars { grid-template-columns: 1fr; gap: 0.75rem; }
  .about__media-stack { padding: 0 0 40px 0; }

  /* Floating tag chips — center on mobile */
  .whatis__tags { justify-content: center; }

  /* Prevent iOS auto-zoom on interactive elements with small font-size */
  input, select, textarea, button { font-size: max(16px, 1rem); }

  /* Commitments */
  .commit { grid-template-columns: 46px 1fr; gap: 1rem; padding-right: 0; }
  .commit__node { width: 46px; height: 46px; }
  .commitments__list::before { left: 22px; }

  /* Standards */
  .standards__readout { left: 16px; bottom: 16px; width: min(220px, calc(100% - 32px)); padding: 0.75rem 0.9rem; }

  /* Footer */
  .footer__bottom { flex-direction: column; text-align: center; }
  .wave-divider { height: 56px; }

  /* Touch targets */
  .nav__mobile a { padding: 1rem 0.75rem; font-size: 1rem; }
  .btn { touch-action: manipulation; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
