/* ============================================================
   Steelhead Studio · styles
   Palette: SaaS grey and white, light blue interactions
   Type: Bricolage Grotesque (display) + Figtree (body)
   ============================================================ */

:root {
  --bg: #f7f8fa;
  --bg-raised: #ffffff;
  --bg-dip: #eef1f5;
  --ink: #1c2836;
  --ink-soft: #4b5a6b;
  --ink-faint: #8494a5;
  --line: #e2e7ee;
  --blue: #4aa8ff;
  --blue-deep: #2b8ce6;
  --blue-tint: #eaf4ff;
  --blue-tint-2: #d6ebff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 2px 6px rgba(28, 40, 54, 0.05), 0 12px 32px rgba(28, 40, 54, 0.07);
  --shadow-lift: 0 4px 10px rgba(28, 40, 54, 0.07), 0 20px 44px rgba(43, 140, 230, 0.16);
  --font-display: "Bricolage Grotesque", "Avenir Next", sans-serif;
  --font-body: "Figtree", "Avenir Next", sans-serif;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.25; }

a { color: var(--blue-deep); }

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}

.section-lede {
  max-width: 560px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(74, 168, 255, 0.35);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lift);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: var(--bg-raised);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  background: var(--blue-tint);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* button click splash */
.btn .splash {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: splash 0.55s ease-out forwards;
  pointer-events: none;
}
.btn-ghost .splash { background: rgba(74, 168, 255, 0.25); }

@keyframes splash {
  to { transform: scale(3.2); opacity: 0; }
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(28, 40, 54, 0.05);
  padding: 10px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.logo:hover { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfdfe 0%, var(--bg) 100%);
}

#ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
  pointer-events: none;
}
.hero-inner a, .hero-inner .btn { pointer-events: auto; }

.hero .eyebrow { margin-bottom: 20px; }

.accent-swash {
  color: var(--blue);
  position: relative;
  white-space: nowrap;
}
.accent-swash::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: -0.08em;
  width: 96%;
  height: 0.22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 C15 2 30 10 50 6 S 85 2 100 7' stroke='%234aa8ff' stroke-width='3.5' fill='none' stroke-linecap='round' opacity='0.45'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 24px auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-hint {
  margin-top: 56px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-style: italic;
  animation: bob 3.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}

/* ---------- services ---------- */

.services { padding: 40px 0 90px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blue-tint-2);
}
.service h3 { margin: 16px 0 8px; font-size: 1.08rem; }
.service p { color: var(--ink-soft); font-size: 0.95rem; }

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service:hover .service-icon { background: var(--blue-tint-2); transform: scale(1.1) rotate(-4deg); }
.service-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon svg .thin { opacity: 0.55; stroke-width: 1.4; }

/* ---------- work ---------- */

.work { padding: 40px 0 100px; }

.work h2 { max-width: 520px; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.case-real:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.case-media { display: block; }
.case-art {
  aspect-ratio: 400 / 260;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.case-illo { width: 100%; height: 100%; display: block; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.case-real:hover .case-illo { transform: scale(1.05); }
.case-screen {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: 200px 145px;
}
.case-real:hover .case-screen { transform: translate(140px, 34px); }
.case-rows { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.case-real:hover .case-rows { transform: translateY(-8px); }

.case-art-empty {
  background: var(--bg-dip);
  color: var(--ink-faint);
}
.empty-ring { width: 110px; height: 110px; }
.case-placeholder { border-style: dashed; border-width: 1.5px; }
.case-placeholder:hover { border-color: var(--blue); }
.case-placeholder:hover .empty-ring { color: var(--blue); }
.empty-ring circle { transition: color 0.3s ease; }

.case-body { padding: 24px 24px 28px; }
.case-body h3 { margin-bottom: 8px; }
.case-body p { color: var(--ink-soft); font-size: 0.95rem; }

.case-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.case-tags span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--blue-tint);
  padding: 4px 10px;
  border-radius: 999px;
}
.case-placeholder .case-tags span {
  color: var(--ink-faint);
  background: var(--bg-dip);
}

/* ---------- experience strip ---------- */

.experience .section-lede { margin-bottom: 44px; }

.exp-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px 20px;
}
.exp-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 14px;
  border-left: 2px solid var(--blue-tint-2);
}
.exp-co { font-weight: 700; color: var(--ink); }
.exp-role { font-size: 0.8rem; color: var(--ink-soft); }
.exp-yr {
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

/* ---------- packages ---------- */

.packages {
  position: relative;
  background: var(--bg-dip);
  padding: 90px 0 100px;
}

.wave-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
}
.wave-divider path { fill: var(--bg); }
.wave-footer path { fill: var(--bg); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier .btn-block { white-space: nowrap; }

.tier {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.tier-featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lift);
}
.tier-featured:hover { transform: translateY(-8px) scale(1.01); }

.tier-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-name {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.tier-price { margin-bottom: 14px; }
.price-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-deep);
}
.tier-desc { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 22px; }

.tier ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.tier li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'%3E%3Cpath d='M1 7 C4 3 7 9 10 6 S 15 3 17 6' stroke='%234aa8ff' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.tier-note {
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ---------- about ---------- */

.about { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 520px; }

.about-facts {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.fact { display: flex; flex-direction: column; max-width: 150px; }
.fact-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.fact-label { font-size: 0.85rem; color: var(--ink-faint); margin-top: 6px; }

.about-quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 44px;
}

.quote {
  background: var(--bg-raised);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.quote:hover { border-color: var(--blue); transform: rotate(-0.5deg); }
.quote blockquote {
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 12px;
}
.quote figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
}
.quote figcaption::before { content: "~ "; color: var(--blue); }

/* ---------- contact ---------- */

.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-tint) 130%);
  padding: 60px 0 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy p { color: var(--ink-soft); margin-bottom: 16px; max-width: 420px; }
.contact-alt { font-size: 0.95rem; }

.inquiry {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--blue-tint-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(74, 168, 255, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }

.form-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--blue-deep);
  text-align: center;
  min-height: 1.4em;
}

/* ---------- footer ---------- */

.footer {
  position: relative;
  /* above the stack panels (z-index 1) so the contact panel's blurred
     box-shadow can't bleed down onto the wave area */
  z-index: 2;
  background: var(--ink);
  color: #c8d4e0;
  padding: 90px 0 40px;
}
.footer .wave-footer { top: -1px; }
.footer .wave-footer path { fill: var(--bg); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}
.footer-sub { font-size: 0.9rem; color: #8494a5; margin-top: 4px; }
.footer-copy { font-size: 0.85rem; color: #8494a5; }

/* ============================================================
   Stacked panels: each section pins, the next rises up and
   covers it. Panels are opaque and uniform height so nothing
   shows through and the covering edge lands in a consistent spot.
   ============================================================ */

.stack-panel {
  position: sticky;
  /* tall panels stick at a negative offset so you can read all of
     them before the next one covers; JS measures this per panel */
  top: var(--stick-top, 0px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -10px 44px rgba(28, 40, 54, 0.10);
  z-index: 1;
}
.stack-panel > .container { width: 100%; }

.services.stack-panel { background: var(--bg); }
.work.stack-panel { background: var(--bg-raised); }
.experience.stack-panel { background: var(--bg); }
.packages.stack-panel { background: var(--bg-dip); }
.about.stack-panel { background: var(--bg-raised); }
.contact.stack-panel { background: var(--bg); }

/* Scrim, not opacity: darkens a covered panel without making it
   translucent (opacity would reveal the panels stacked beneath). */
.stack-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: var(--scrim, 0);
  pointer-events: none;
  border-radius: inherit;
  z-index: 3;
  transition: opacity 0.15s linear;
}

/* ============================================================
   Dot-matrix rail: where you are in the site
   ============================================================ */

.dot-rail {
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.dot-rail.ready { opacity: 1; }

.dot-rail-line {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--line);
  border-radius: 2px;
  z-index: 0;
}
.dot-rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--blue);
  border-radius: 2px;
  transition: height 0.2s ease-out;
}

.dot-rail button {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 2px var(--ink-faint);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.dot-rail button::after {
  content: attr(data-label);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dot-rail button:hover { box-shadow: inset 0 0 0 2px var(--blue-deep); transform: scale(1.15); }
.dot-rail button:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.dot-rail button.active {
  background: var(--blue);
  box-shadow: inset 0 0 0 2px var(--blue), 0 0 0 5px var(--blue-tint);
  transform: scale(1.2);
}

/* The container is 1120px, so below ~1220 there's no gutter left for the
   rail and it would sit on top of the content. Hide it rather than collide. */
@media (max-width: 1220px) {
  .dot-rail { display: none; }
}

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- responsive ----------
   Layout tiers (the rail has its own 1220 cutoff above):
   - 1024: the 4-up card grids go 2-up; the 3-up work grid stacks to one.
   - 768:  single column everywhere, drawer chrome, sticky stacking off.
   Keeping it to these two keeps cards from ever squeezing too narrow. */

@media (max-width: 1024px) {
  .services-grid,
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
}

/* Phones/small: single column, and the sticky stacking goes off (it fights
   momentum scroll + the mobile address bar). JS also skips the stack math
   here. Panels keep their rounded top + shadow so they still read as cards. */
@media (max-width: 768px) {
  .services-grid,
  .tier-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-quotes { padding-top: 0; }
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero { min-height: 86vh; }
  .inquiry { padding: 26px 20px; }

  .stack-panel {
    position: static;
    min-height: 0;
    display: block;
    --scrim: 0;
    scroll-margin-top: 72px;
  }
  .stack-panel::after { display: none; }
  .stack-panel > .container { padding-top: 56px; padding-bottom: 56px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-hint { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
