/* ──────────────────────────────────────────────────────────
   PikTek Labs — site styles
   ────────────────────────────────────────────────────────── */
:root {
  --ink: #0A1628;
  --ink-deep: #050B16;
  --steel: #1B2B4B;
  --paper: #F5F7FA;
  --paper-dim: #E8EDF3;
  --white: #ffffff;
  --accent: #3B82F6;
  --accent-dim: #1E40AF;
  --accent-ink: #1E40AF;
  --muted: #8B9DC3;
  --muted-dark: #536583;
  --line-d: rgba(139, 157, 195, 0.18);
  --line-d-strong: rgba(139, 157, 195, 0.32);
  --line-l: rgba(10, 22, 40, 0.10);
  --line-l-strong: rgba(10, 22, 40, 0.18);

  --font-sans: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --pad-x: clamp(24px, 6vw, 120px);
  --section-pad-y: clamp(96px, 11vw, 160px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink-deep);
  color: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body { overflow-x: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  border: 1px solid var(--ink);
  z-index: 1000;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Site chrome / nav ─────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 300ms, backdrop-filter 300ms, border-color 300ms, color 300ms;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(5, 11, 22, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-d);
}

.site-nav.on-light.scrolled {
  background: rgba(245, 247, 250, 0.88);
  border-bottom-color: var(--line-l);
  color: var(--muted-dark);
}

.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.22em;
}
.site-nav.on-light.scrolled .brand { color: var(--ink); }
.site-nav .brand img { height: 52px; width: auto; display: block; }
.site-nav.scrolled .brand img { height: 44px; }

.site-nav .links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-nav .links a {
  transition: color 180ms;
  position: relative;
}
.site-nav .links a:hover { color: var(--accent); }
.site-nav.on-light.scrolled .links a:hover,
.site-nav.on-light.scrolled .lang-switch:hover,
.site-nav.on-light.scrolled .mobile-nav-toggle:hover { color: var(--accent-ink); }

.site-nav .cta {
  padding: 10px 18px;
  border: 1px solid var(--line-d-strong);
  color: var(--paper);
  transition: background 180ms, color 180ms, border-color 180ms;
}
.site-nav.on-light.scrolled .cta { color: var(--ink); border-color: var(--line-l-strong); }
.site-nav .cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  color: var(--white);
}

.lang-switch {
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border: 1px solid currentColor;
  color: var(--paper-dim);
  transition: color 150ms, border-color 150ms;
}
.site-nav.on-light.scrolled .lang-switch { color: var(--muted-dark); }
.lang-switch:hover { color: inherit; }

.mobile-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.site-nav.menu-open .mobile-nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav.menu-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.menu-open .mobile-nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
  .mobile-nav-toggle { display: inline-flex; }
  .site-nav .links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--pad-x) 20px;
    background: rgba(5, 11, 22, 0.96);
    border-bottom: 1px solid var(--line-d);
  }
  .site-nav.on-light .links,
  .site-nav.on-light.scrolled .links {
    background: rgba(245, 247, 250, 0.98);
    border-bottom-color: var(--line-l);
  }
  .site-nav.menu-open .links { display: flex; }
  .site-nav .links a {
    padding: 14px 0;
    border-top: 1px solid var(--line-d);
  }
  .site-nav.on-light .links a,
  .site-nav.on-light.scrolled .links a { border-top-color: var(--line-l); }
  .site-nav .links .cta,
  .site-nav .links .lang-switch {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }
}

/* ── Section scaffolding ───────────────────────────────── */
.section {
  position: relative;
  padding: var(--section-pad-y) var(--pad-x);
  overflow: hidden;
}
.section.dark { background: var(--ink); color: var(--paper); }
.section.deep { background: var(--ink-deep); color: var(--paper); }
.section.light { background: var(--paper); color: var(--ink); }
.section.white { background: var(--white); color: var(--ink); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section.light .eyebrow,
.section.white .eyebrow { color: var(--accent-ink); }
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  display: inline-block;
}
.section.light .eyebrow::before,
.section.white .eyebrow::before {
  background: var(--accent-ink);
  box-shadow: none;
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 84px);
  text-wrap: balance;
}
.section-title .accent { color: var(--accent); }
.section-title .dim { color: var(--muted); }
.section.light .section-title .dim { color: var(--muted-dark); }

.section-kicker {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 720px;
  margin: 32px 0 0;
  font-weight: 300;
  text-wrap: pretty;
}
.section.light .section-kicker { color: var(--muted-dark); }

/* Corner tick marks — decorative engineering chrome */
.ticks {
  position: absolute; inset: 0;
  pointer-events: none;
}
.ticks svg {
  position: absolute;
  width: 20px; height: 20px;
}
.ticks svg path { stroke: var(--accent); stroke-width: 1.5; fill: none; opacity: 0.55; }

/* Hairline divider (section edges) */
.hairline {
  height: 1px;
  background: var(--line-d);
  margin: 0 var(--pad-x);
}
.section.light + .hairline,
.section.white + .hairline { background: var(--line-l); }

/* ── Stats / Mandate ───────────────────────────────────── */
.mandate-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 900px) { .mandate-grid { grid-template-columns: 1fr; } }

.stat {
  padding: 32px 0;
  border-top: 1px solid var(--line-d);
}
.stat:last-child { border-bottom: 1px solid var(--line-d); }
.stat .figure {
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: 'tnum';
}
.stat .figure.accent { color: var(--accent); }
.stat .label {
  font-size: 18px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 500px;
  line-height: 1.5;
  font-weight: 300;
}

/* ── Pillars grid ──────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 96px;
}
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 500px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--line-l-strong);
}
.section.dark .pillar, .section.deep .pillar { border-top-color: var(--line-d-strong); }
.pillar .label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section.light .pillar .label,
.section.white .pillar .label { color: var(--accent-ink); }
.pillar .value {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.pillar .note {
  font-size: 17px;
  color: var(--muted-dark);
  margin-top: 12px;
  line-height: 1.45;
  font-weight: 300;
}
.section.dark .pillar .note, .section.deep .pillar .note { color: var(--muted); }

/* ── Two-practice overview ─────────────────────────────── */
.practices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 72px;
}
@media (max-width: 900px) { .practices { grid-template-columns: 1fr; } }

.practice-card {
  position: relative;
  padding: 44px;
  border: 1px solid var(--line-d-strong);
  background: rgba(255,255,255,0.02);
  transition: background 250ms, transform 350ms ease, border-color 250ms;
}
.practice-card.accent {
  border-color: var(--accent);
  background: rgba(59,130,246,0.05);
}
.practice-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.practice-card .tag {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 28px;
}
.practice-card.accent .tag { color: var(--accent); }
.practice-card h3 {
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.05;
}
.practice-card .head {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 460px;
}
.practice-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line-d);
}
.practice-card li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-d);
  font-size: 17px;
  color: var(--paper);
  font-weight: 300;
  line-height: 1.4;
}
.practice-card li .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  padding-top: 4px;
}
.practice-card.accent li .num { color: var(--accent); }

/* ── Offer list (practice details) ─────────────────────── */
.detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  margin-top: 56px;
}
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } }

.detail-head h2 {
  font-size: clamp(48px, 5.6vw, 80px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}
.detail-head p {
  margin: 32px 0 0;
  max-width: 440px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 300;
}
.section.light .detail-head p { color: var(--muted-dark); }

.offer-list { display: flex; flex-direction: column; }
.offer {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line-d-strong);
  transition: padding-left 300ms ease, background 300ms;
}
.section.light .offer { border-top-color: var(--line-l-strong); }
.offer:last-child { border-bottom: 1px solid var(--line-d-strong); }
.section.light .offer:last-child { border-bottom-color: var(--line-l-strong); }
.offer:hover { padding-left: 12px; }

.offer .n {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 6px;
  font-feature-settings: 'tnum';
}
.section.light .offer .n,
.section.white .offer .n { color: var(--accent-ink); }
.offer h4 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.2;
}
.offer p {
  margin: 6px 0 0;
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  max-width: 620px;
}
.section.light .offer p { color: var(--muted-dark); }

/* ── Advisory cards ────────────────────────────────────── */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .advisory-grid { grid-template-columns: 1fr; } }

.advisory-card {
  padding: 36px;
  border: 1px solid var(--line-l-strong);
  background: var(--white);
  transition: transform 300ms, border-color 250ms;
  display: flex;
  flex-direction: column;
}
.advisory-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.advisory-card .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-ink);
  margin-bottom: 24px;
}
.advisory-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
}
.advisory-card p {
  margin: 16px 0 0;
  font-size: 16px;
  color: var(--muted-dark);
  line-height: 1.55;
  font-weight: 300;
}

.qsa-callout {
  margin-top: 40px;
  padding: 28px 36px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 800px) { .qsa-callout { flex-direction: column; align-items: flex-start; gap: 16px; } }
.qsa-callout .left { display: flex; align-items: center; gap: 24px; }
.qsa-callout .tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.qsa-callout .bar { width: 1px; height: 24px; background: var(--line-d); }
.qsa-callout h4 {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.qsa-callout h4 .accent { color: var(--accent); }
.qsa-callout p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  max-width: 400px;
  text-align: right;
}
@media (max-width: 800px) { .qsa-callout p { text-align: left; } }

/* ── Insights / Blog placeholder ──────────────────────── */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line-d-strong);
  border-left: 1px solid var(--line-d-strong);
}
.section.light .insights { border-color: var(--line-l-strong); }
@media (max-width: 900px) { .insights { grid-template-columns: 1fr; } }

.insight {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--line-d-strong);
  border-bottom: 1px solid var(--line-d-strong);
  cursor: pointer;
  transition: background 250ms;
  position: relative;
}
.section.light .insight { border-color: var(--line-l-strong); }
.insight:hover { background: rgba(59,130,246,0.04); }

.insight .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.insight .meta .date { color: var(--muted-dark); }
.section.dark .insight .meta .date, .section.deep .insight .meta .date { color: var(--muted); }

.insight h4 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.insight p {
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.55;
  font-weight: 300;
  margin: 0 0 24px;
}
.section.dark .insight p, .section.deep .insight p { color: var(--muted); }
.insight .read-more {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Contact / CTA ─────────────────────────────────────── */
.cta-section {
  padding: clamp(120px, 14vw, 200px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-headline {
  font-size: clamp(64px, 9vw, 160px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
  max-width: 1500px;
  margin: 40px 0 0;
}
.cta-headline .accent { color: var(--accent); }

.contact-grid {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 64px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.contact-block .label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 12px;
}
.contact-block .value {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-deep);
  color: var(--muted);
  padding: 60px var(--pad-x) 48px;
  border-top: 1px solid var(--line-d);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 700px) { .footer-row { flex-direction: column; gap: 24px; align-items: flex-start; } }
.footer-row .brand { display: flex; align-items: center; gap: 14px; color: var(--paper); }
.footer-row .brand img { height: 40px; }

/* ── Scroll reveal utility ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Scan sweep pseudo for sections ────────────────────── */
.section .scan {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--accent) 50%, transparent 100%);
  box-shadow: 0 0 20px var(--accent);
  opacity: 0;
  pointer-events: none;
}

/* ── Grid background (engineering mesh) ───────────────── */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-d) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-d) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 85%);
}
.section.light .grid-bg, .section.white .grid-bg {
  background-image:
    linear-gradient(var(--line-l) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-l) 1px, transparent 1px);
}

/* ── Tweaks panel ──────────────────────────────────────── */
.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 280px;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-d-strong);
  color: var(--paper);
  padding: 18px 18px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tweaks-panel h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.tweaks-panel .row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-top: 1px solid var(--line-d); }
.tweaks-panel .row:first-of-type { border-top: none; }
.tweaks-panel .row label { color: var(--muted); font-size: 12px; letter-spacing: 0.02em; }
.tweaks-panel .swatches { display: flex; gap: 8px; }
.tweaks-panel .sw {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent;
  cursor: pointer; transition: transform 150ms;
}
.tweaks-panel .sw:hover { transform: scale(1.15); }
.tweaks-panel .sw.active { border-color: var(--paper); }
.tweaks-panel select, .tweaks-panel input[type=range] {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-d);
  color: var(--paper);
  font: inherit;
  padding: 4px 6px;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--ink-deep);
  color: var(--paper);
  overflow: hidden;
}
.hero-animation {
  position: absolute;
  inset: 0;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 7.5s;
  z-index: 5;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 32px;
  background: var(--muted);
  animation: pulseLine 2s ease-in-out infinite;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulseLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

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

