/* ============================================================
   CLEARRUN POOL CARE — premium-yet-playful cinematic one-pager
   ============================================================ */

:root {
  --deep:    #062A40;   /* deep pool blue */
  --deeper:  #041D2E;
  --aqua:    #2EC4C6;   /* turquoise */
  --aqua-hi: #6FE3E1;
  --bone:    #F9F6EE;   /* bone white */
  --sand:    #F0E7D6;   /* warm sunlit sand */
  --gold:    #FFB703;   /* single punchy accent */
  --ink:     #0B2C3D;
  --display: "Bricolage Grotesque", sans-serif;
  --serif:   "Fraunces", serif;
  --sans:    "Instrument Sans", sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

@media (pointer: fine) {
  body, a, button, input { cursor: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 450; }

/* ---------- signature cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  display: none;
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring { display: flex; }
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255, 183, 3, .75);
  transform: translate(-50%, -50%);
  align-items: center; justify-content: center;
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              background-color .35s, border-color .35s;
}
.cursor-ring.is-grown {
  width: 72px; height: 72px;
  background: rgba(255, 183, 3, .12);
  border-color: var(--gold);
}
.cursor-ring.has-label {
  width: 84px; height: 84px;
  background: rgba(6, 42, 64, .55);
  border-color: var(--aqua-hi);
  backdrop-filter: blur(2px);
}
.cursor-label {
  font: 600 10px/1 var(--sans); letter-spacing: .18em;
  color: var(--bone); opacity: 0;
  transition: opacity .25s;
}
.cursor-ring.has-label .cursor-label { opacity: 1; }

/* ---------- top bar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px clamp(20px, 4vw, 56px);
  mix-blend-mode: normal;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font: 800 17px/1 var(--display); letter-spacing: .04em;
  color: var(--bone);
  text-shadow: 0 1px 12px rgba(4, 29, 46, .5);
}
.brand span { font-weight: 400; opacity: .8; letter-spacing: .22em; font-size: 11px; }
.brand-drop { width: 22px; height: 22px; fill: var(--aqua-hi); filter: drop-shadow(0 1px 6px rgba(4,29,46,.4)); }
.topbar-line {
  font: italic 450 14px/1 var(--serif);
  color: var(--bone); opacity: .85;
  text-shadow: 0 1px 12px rgba(4, 29, 46, .5);
}
@media (max-width: 640px) { .topbar-line { display: none; } }

/* ---------- caustic light overlay ---------- */
.caustics {
  position: absolute; inset: -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 30% at 22% 28%, rgba(255,255,255,.28), transparent 62%),
    radial-gradient(ellipse 34% 26% at 72% 18%, rgba(111,227,225,.30), transparent 60%),
    radial-gradient(ellipse 46% 34% at 58% 74%, rgba(255,255,255,.20), transparent 62%),
    radial-gradient(ellipse 30% 24% at 12% 78%, rgba(111,227,225,.24), transparent 58%);
  mix-blend-mode: overlay;
  animation: causticDrift 14s ease-in-out infinite alternate;
}
.caustics::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 26% 20% at 82% 62%, rgba(255,255,255,.26), transparent 60%),
    radial-gradient(ellipse 38% 30% at 34% 52%, rgba(111,227,225,.20), transparent 62%);
  animation: causticDrift 19s ease-in-out infinite alternate-reverse;
}
.caustics-soft { opacity: .6; }
@keyframes causticDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(2.5%, -2%) scale(1.06); }
  100% { transform: translate(-2%, 2.5%) scale(1.02); }
}

/* ---------- ripple dividers ---------- */
.ripple { line-height: 0; position: relative; z-index: 3; margin-top: -89px; }
.ripple svg { width: 100%; height: 90px; }
.ripple-deep svg path { fill: var(--deeper); }
.ripple-bone svg path { fill: var(--bone); }
.ripple-sand svg path { fill: var(--sand); }

/* ---------- shared section furniture ---------- */
.section-head { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.eyebrow {
  font: 600 12px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 18px;
}
.eyebrow::before { content: "~ "; color: var(--gold); }
.eyebrow-light { color: var(--aqua-hi); }
.section-title {
  font: 800 clamp(2.6rem, 6vw, 4.6rem)/1.02 var(--display);
  letter-spacing: -.02em; color: var(--ink);
}
.section-title em { font-weight: 350; color: var(--aqua); letter-spacing: 0; }
.section-sub { margin-top: 18px; font: 400 1.05rem/1.6 var(--sans); color: rgba(11,44,61,.72); max-width: 46ch; }
.section-head-light .section-title, .section-head-light .section-sub { color: var(--bone); }
.section-head-light .section-sub { color: rgba(249,246,238,.75); }

/* scroll reveals */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   1 · HERO
   ============================================================ */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  width: 100%; height: 116%; object-fit: cover;
  will-change: transform;
  transform-origin: center top;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,29,46,.42) 0%, rgba(4,29,46,0) 32%, rgba(4,29,46,.08) 62%, rgba(4,29,46,.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 clamp(16px, 3vw, 48px) clamp(28px, 5vh, 64px);
}
.hero-title {
  font: 800 clamp(4rem, 17.5vw, 19rem)/0.88 var(--display);
  letter-spacing: -.015em;
  color: var(--bone);
  text-shadow: 0 8px 60px rgba(4,29,46,.45);
  display: flex;
  user-select: none;
}
.ht-letter {
  display: inline-block;
  opacity: 0; transform: translateY(.55em) rotate(4deg);
  animation: letterRise 1.1s var(--ease-out) forwards;
}
.ht-letter:nth-child(1) { animation-delay: .10s; }
.ht-letter:nth-child(2) { animation-delay: .17s; }
.ht-letter:nth-child(3) { animation-delay: .24s; }
.ht-letter:nth-child(4) { animation-delay: .31s; }
.ht-letter:nth-child(5) { animation-delay: .38s; }
.ht-letter:nth-child(6) { animation-delay: .45s; }
.ht-letter:nth-child(7) { animation-delay: .52s; }
.ht-letter:nth-child(8) { animation-delay: .59s; }
@keyframes letterRise { to { opacity: 1; transform: none; } }

.hero-tag {
  margin-top: clamp(10px, 2vh, 22px);
  font: 400 clamp(1.05rem, 2vw, 1.6rem)/1.3 var(--sans);
  color: var(--bone);
  opacity: 0; animation: fadeUp 1s var(--ease-out) .95s forwards;
}
.hero-tag em { color: var(--aqua-hi); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-scrollcue {
  position: absolute; right: clamp(20px, 4vw, 56px); bottom: clamp(30px, 6vh, 70px);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--bone);
  font: 600 10px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}
.hero-scrollcue i {
  width: 1.5px; height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cueDrop 2s ease-in-out infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   2 · KINETIC PROMISE
   ============================================================ */
.kinetic { position: relative; height: 340vh; background: var(--deeper); }
.kinetic-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.kinetic-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
  will-change: transform;
}
.kinetic-veil { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(4,29,46,.25), rgba(4,29,46,.85)); }
.kinetic-words { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.k-eyebrow {
  font: italic 450 clamp(.95rem, 1.6vw, 1.25rem)/1 var(--serif);
  color: var(--aqua-hi); margin-bottom: clamp(18px, 3vh, 34px);
  opacity: 0; transition: opacity .8s var(--ease-out);
}
.kinetic-sticky.k-live .k-eyebrow { opacity: 1; }
.k-word {
  font: 800 clamp(3.2rem, 11vw, 10.5rem)/1.04 var(--display);
  letter-spacing: -.02em; color: var(--bone);
  opacity: 0; transform: translateY(.4em) scale(.92); filter: blur(14px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), filter .7s var(--ease-out);
}
.k-word:nth-of-type(2) { color: var(--aqua-hi); }
.k-word:nth-of-type(3) { color: var(--gold); }
.k-word.on { opacity: 1; transform: none; filter: blur(0); }
.k-close {
  margin-top: clamp(20px, 3.5vh, 40px);
  font: italic 400 clamp(1.05rem, 2.2vw, 1.7rem)/1.4 var(--serif);
  color: rgba(249,246,238,.85);
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease-out) .15s, transform .8s var(--ease-out) .15s;
}
.k-close.on { opacity: 1; transform: none; }

/* ============================================================
   3 · SERVICES
   ============================================================ */
.services { position: relative; z-index: 2; background: var(--bone); padding: clamp(70px, 10vh, 130px) 0 clamp(80px, 11vh, 150px); }
.svc-grid {
  max-width: 1200px; margin: clamp(44px, 6vh, 72px) auto 0;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card {
  position: relative; border-radius: 22px; overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  background: var(--deep);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  isolation: isolate;
}
.svc-hero { grid-column: 1 / -1; min-height: 520px; }
.svc-card:hover, .svc-card.is-hover { transform: translateY(-8px); box-shadow: 0 30px 60px -18px rgba(6,42,64,.45); }
.svc-media { position: absolute; inset: 0; z-index: -2; }
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 1.1s var(--ease-out);
}
.svc-card:hover .svc-media img, .svc-card.is-hover .svc-media img { transform: scale(1.07); }
.svc-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(200deg, rgba(4,29,46,0) 30%, rgba(4,29,46,.34) 62%, rgba(4,29,46,.88) 100%);
  transition: background .6s;
}
.svc-num {
  position: absolute; top: 22px; left: 26px;
  font: italic 350 15px/1 var(--serif); color: var(--gold); letter-spacing: .12em;
}
.svc-flag {
  position: absolute; top: 20px; right: 22px;
  font: 600 10px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase;
  color: var(--deeper); background: var(--gold);
  padding: 9px 14px; border-radius: 999px;
}
.svc-body { position: relative; padding: 28px; width: 100%; }
.svc-body h3 {
  font: 800 clamp(1.6rem, 2.6vw, 2.4rem)/1.05 var(--display);
  letter-spacing: -.015em; color: var(--bone);
}
.svc-hero .svc-body h3 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); }
.svc-benefit {
  max-width: 52ch;
  font: 400 .98rem/1.55 var(--sans); color: rgba(249,246,238,.92);
  margin-top: 12px;
  max-height: 0; opacity: 0; overflow: hidden; transform: translateY(12px);
  transition: max-height .6s var(--ease-out), opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.svc-card:hover .svc-benefit, .svc-card.is-hover .svc-benefit, .svc-card:focus-within .svc-benefit { max-height: 6em; opacity: 1; transform: none; }
.svc-arrow {
  position: absolute; right: 26px; bottom: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px; color: var(--deeper); background: var(--gold);
  transform: translateY(14px) scale(.6); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
}
.svc-card:hover .svc-arrow, .svc-card.is-hover .svc-arrow { transform: none; opacity: 1; }
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-hero { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 340px; }
  .svc-benefit { max-height: 6em; opacity: 1; transform: none; } /* touch: always show */
  .svc-arrow { opacity: 1; transform: none; }
}

/* ============================================================
   4 · TRANSFORMATION (before / after)
   ============================================================ */
.transform {
  position: relative; z-index: 2; background: var(--deep);
  padding: clamp(80px, 11vh, 150px) 0;
}
.transform .eyebrow { color: var(--aqua-hi); }
.ba {
  position: relative;
  max-width: 1320px; margin: clamp(40px, 6vh, 70px) auto 0;
  height: clamp(380px, 72vh, 720px);
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.55);
  touch-action: pan-y;
  --pos: 50%;
}
@media (min-width: 1400px) { .ba { border-radius: 26px; } }
@media (max-width: 1360px) { .ba { margin-left: clamp(16px, 3vw, 40px); margin-right: clamp(16px, 3vw, 40px); } }
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-before img {
  filter: sepia(.38) hue-rotate(42deg) saturate(1.65) brightness(.68) contrast(.95) blur(1px);
}
.ba-before::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,80,20,0) 34%, rgba(58,92,26,.38) 62%, rgba(52,84,22,.5) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ba-chip {
  position: absolute; top: 22px;
  font: 700 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ba-chip-before { left: 22px; color: var(--bone); background: rgba(4,29,46,.55); border: 1px solid rgba(249,246,238,.25); }
.ba-chip-after { right: 22px; color: var(--deeper); background: rgba(111,227,225,.9); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; background: var(--bone);
  transform: translateX(-1px);
  box-shadow: 0 0 24px rgba(255,255,255,.55);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--deeper);
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; margin: 0;
}
@media (pointer: fine) { .ba-range { cursor: none; } }

/* ============================================================
   5 · TESTIMONIALS
   ============================================================ */
.testimonials { position: relative; z-index: 2; background: var(--sand); padding: clamp(80px, 11vh, 150px) 0; }
.t-grid {
  max-width: 1200px; margin: clamp(44px, 6vh, 72px) auto 0;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.t-card {
  background: var(--bone); border-radius: 20px;
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 2px 6px rgba(6,42,64,.06);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), rotate .5s var(--ease-out);
}
.t-card:nth-child(odd).in  { rotate: -0.6deg; }
.t-card:nth-child(even).in { rotate: 0.6deg; }
.t-card:hover { transform: translateY(-8px); rotate: 0deg; box-shadow: 0 26px 50px -20px rgba(6,42,64,.35); }
.t-card:nth-child(4) { grid-column: span 1; }
.t-stars { color: var(--gold); letter-spacing: .2em; font-size: 15px; }
.t-card blockquote {
  font: 400 clamp(1.02rem, 1.3vw, 1.15rem)/1.55 var(--serif);
  color: var(--ink);
}
.t-card blockquote em { color: var(--aqua); }
.t-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-card figcaption img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--aqua);
}
.t-card figcaption strong { display: block; font: 700 .98rem/1.2 var(--sans); }
.t-card figcaption span { font: italic 400 .85rem/1.2 var(--serif); color: rgba(11,44,61,.6); }
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .t-grid { grid-template-columns: 1fr; } }

/* ============================================================
   6 · SINGLE CTA
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background: var(--deeper);
  padding: clamp(110px, 18vh, 200px) clamp(20px, 4vw, 56px);
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 45%, rgba(4,29,46,.1), rgba(4,29,46,.82));
}
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font: 800 clamp(2.6rem, 6.5vw, 5.4rem)/1.04 var(--display);
  letter-spacing: -.02em; color: var(--bone);
  margin-bottom: clamp(34px, 5vh, 54px);
}
.cta-title em { font-weight: 350; color: var(--aqua-hi); }
.cta-sub {
  font: italic 400 clamp(1rem, 1.6vw, 1.25rem)/1.5 var(--serif);
  color: rgba(249,246,238,.8);
  margin: -14px 0 clamp(34px, 5vh, 54px);
}
.cta-actions {
  display: flex; justify-content: center; align-items: center;
  gap: 18px; flex-wrap: wrap;
}
.cta-btn {
  position: relative; display: inline-block; overflow: hidden;
  font: 700 clamp(1.05rem, 1.6vw, 1.3rem)/1 var(--display);
  letter-spacing: .01em;
  color: var(--deeper); background: var(--gold);
  padding: 24px 54px; border-radius: 999px;
  box-shadow: 0 18px 50px -12px rgba(255,183,3,.55);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.cta-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 26px 64px -10px rgba(255,183,3,.7); }
.cta-btn-text {
  position: relative; z-index: 2; transition: color .4s;
  display: inline-flex; align-items: center; gap: 12px;
}
.cta-btn-text svg { width: 21px; height: 21px; fill: currentColor; }
.cta-btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1.5px solid rgba(111,227,225,.65);
  box-shadow: none;
}
.cta-btn-ghost:hover { box-shadow: 0 26px 64px -10px rgba(46,196,198,.45); }
.cta-btn-ghost .cta-btn-fill { background: var(--aqua); }
.cta-btn-ghost:hover .cta-btn-text { color: var(--deeper); }
.cta-btn-fill {
  position: absolute; inset: 0; z-index: 1;
  background: var(--aqua);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
}
.cta-btn:hover .cta-btn-fill { transform: translateY(0); }
.cta-btn:hover .cta-btn-text { color: var(--deeper); }

/* ============================================================
   7 · OVERSIZED FOOTER
   ============================================================ */
.footer {
  background: var(--deeper); color: var(--bone);
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 56px) 40px;
  overflow: hidden;
}
.footer-mark {
  font: 800 clamp(4rem, 15.5vw, 17rem)/0.9 var(--display);
  letter-spacing: -.015em; text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(111,227,225,.5);
  user-select: none;
  transition-duration: 1.4s;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(40px, 7vh, 80px);
  padding-top: 28px;
  border-top: 1px solid rgba(249,246,238,.14);
}
.footer-tag { font: 400 1.05rem/1.3 var(--sans); }
.footer-tag em { color: var(--aqua-hi); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font: 600 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  color: rgba(249,246,238,.7);
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-fine {
  margin-top: 34px;
  font: 400 12px/1.6 var(--sans); color: rgba(249,246,238,.4);
  max-width: 62ch;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ht-letter, .hero-tag, .hero-scrollcue { animation-duration: .01s; animation-delay: 0s; }
  .caustics, .caustics::after, .hero-scrollcue i { animation: none; }
  .reveal, .k-word, .k-close { transition-duration: .01s; }
}
