/* ============================================================
   ARBDECK - v2 landing
   Green finance palette. Playfair Display + Inter.
   Colors lifted from the iOS app (AuroraGradientBackground.green).
   ============================================================ */

:root {
  /* Deep green background tones */
  --bg-base:  #020A06;
  --green-1:  #002A18;
  --green-2:  #002012;
  --green-3:  #00180E;
  --green-4:  #001008;
  --glow-a:   #004632;   /* bright wash */
  --glow-b:   #003D27;
  --glow-c:   #00311F;
  --am-green: #3DBB6E;   /* ArbGreen accent */
  --am-green-dim: #2D8A54;

  /* Neutral metal palette */
  --silver-100: #F6F8F9;
  --silver-200: #E6EBED;
  --silver-300: #CFD8DC;
  --silver-400: #AAB4BA;
  --silver-500: #828D94;
  --silver-600: #5E676E;

  --text:      var(--silver-200);
  --text-soft: rgba(230,235,237,0.62);
  --text-dim:  rgba(230,235,237,0.40);
  --hair:      rgba(230,235,237,0.12);
  --hair-soft: rgba(230,235,237,0.07);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.83, 0, 0.17, 1);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

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

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

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

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

::selection { background: var(--am-green); color: #03130b; }

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

:focus-visible {
  outline: 2px solid var(--am-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   BACKGROUND - fixed, layered deep green
   ============================================================ */
.bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.bg-grad {
  position: absolute; inset: -10%;
  background:
    radial-gradient(115% 85% at 45% 14%,
      var(--green-1) 0%,
      var(--green-2) 26%,
      var(--green-3) 50%,
      var(--green-4) 74%,
      var(--bg-base) 100%),
    var(--bg-base);
}

/* green glow washes (iOS astonGreen variant) */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.55;
  will-change: transform;
}
.blob-a { width: 60vw; height: 60vw; top: -18vw; left: -10vw;  background: radial-gradient(circle, var(--glow-a) 0%, transparent 66%); }
.blob-b { width: 52vw; height: 52vw; bottom: -16vw; right: -8vw; background: radial-gradient(circle, var(--glow-b) 0%, transparent 66%); opacity: 0.42; }
.blob-c { width: 46vw; height: 46vw; top: 40%; left: 30%;        background: radial-gradient(circle, var(--glow-c) 0%, transparent 64%); opacity: 0.36; }

/* square-tile grid texture (iOS IntelligenceSquareTileGrid, 11px step) */
.bg-grid {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Crect x='0' y='0' width='1.6' height='1.6' rx='0.4' fill='white' opacity='0.11'/%3E%3Crect x='11' y='0' width='1.6' height='1.6' rx='0.4' fill='white' opacity='0.06'/%3E%3Crect x='0' y='11' width='1.6' height='1.6' rx='0.4' fill='white' opacity='0.06'/%3E%3Crect x='11' y='11' width='1.6' height='1.6' rx='0.4' fill='white' opacity='0.11'/%3E%3C/svg%3E");
  background-size: 22px 22px;
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* film grain */
.bg-grain {
  position: absolute; inset: -200%;
  width: 500%; height: 500%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: grain 7s steps(6) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 20%{transform:translate(-4%,3%)}
  40%{transform:translate(3%,-4%)} 60%{transform:translate(-3%,2%)} 80%{transform:translate(4%,-2%)}
}

.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* ============================================================
   SHELL
   ============================================================ */
main { position: relative; z-index: 1; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.metal,
.metal .wi {
  background: linear-gradient(176deg, #FCFDFD 0%, #E2E8EA 30%, #A7B2B8 58%, #EDF1F2 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* split words carry their own gradient (clip-text can't pierce inline-block children) */
.metal .wi { display: inline-block; }
em, .italic { font-style: italic; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--am-green);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--am-green)); }

/* ============================================================
   BUTTONS / PILLS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, #FBFCFC, #D7DEE1);
  color: #051a10;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 30px rgba(0,0,0,.35);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 14px 44px rgba(61,187,110,.22); }
.btn-ghost {
  background: rgba(230,235,237,0.04);
  color: var(--silver-200);
  border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(230,235,237,0.09); border-color: rgba(230,235,237,0.22); }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.01em;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(230,235,237,0.05);
  border: 1px solid var(--hair);
  color: var(--silver-300);
  backdrop-filter: blur(10px);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--am-green); box-shadow: 0 0 10px var(--am-green); }

/* glass card */
.glass {
  background: rgba(230,235,237,0.035);
  border: 1px solid var(--hair);
  border-radius: 20px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  background: var(--bg-base);
}
#preloader .pre-mark { width: 54px; height: 54px; opacity: 0.9; }
#preloader .pre-mark svg, #preloader .pre-mark img { width: 100%; height: 100%; }
.pre-bar { width: min(240px, 56vw); height: 1px; background: var(--hair); position: relative; overflow: hidden; }
.pre-fill { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, var(--am-green), var(--silver-200)); }
.pre-count { font-size: 12px; letter-spacing: 0.3em; color: var(--text-dim); font-variant-numeric: tabular-nums; }
.pre-curtain { position: fixed; inset: 0; background: var(--bg-base); z-index: 99; transform: translateY(0); pointer-events:none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  width: min(680px, calc(100vw - 32px));
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: rgba(7,16,12,0.5);
  border: 1px solid var(--hair);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.nav-logo { display:flex; align-items:center; gap: 10px; }
.nav-logo img { height: 20px; opacity: 0.95; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 13.5px; color: var(--text-soft); transition: color .25s; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-4px; width:100%; height:1px; background: var(--am-green); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out); }
.nav-links a:hover { color: var(--silver-100); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { padding: 9px 18px; font-size: 13.5px; }
@media (max-width: 640px){ .nav-links { display:none; } }

/* ============================================================
   PHONE
   ============================================================ */
.phone { position: relative; width: 300px; aspect-ratio: 0.4866 / 1; flex-shrink: 0; will-change: transform; }
.phone .frame { position: relative; z-index: 3; width: 100%; height: 100%; pointer-events: none; }
.phone .screen {
  position: absolute; top: 0.9%; left: 2.8%; width: 94.4%; height: 98.1%;
  z-index: 2; overflow: hidden; border-radius: 44px; background: #050b08;
}
.phone .screen img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.phone .glare {
  position: absolute; inset: 0; z-index: 4; border-radius: 46px; pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.10) 0%, transparent 22%, transparent 78%, rgba(255,255,255,0.05) 100%);
  mix-blend-mode: screen;
}

.screen-sequence {
  position: absolute;
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
}
.screen-sequence .sequence-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 0.26s ease;
  z-index: 1;
}
.screen-sequence .sequence-frame.is-active {
  opacity: 1;
  z-index: 2;
}

/* ============================================================
   HERO
   ============================================================ */
#hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 92px; padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy { max-width: 620px; }
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(46px, 7.4vw, 104px); line-height: 0.98; letter-spacing: -0.025em;
  margin: 22px 0 26px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .w { display: inline-block; }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; color: var(--text-soft); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 560px; }
.hero-stage .phone { width: clamp(240px, 26vw, 320px); }

.chip {
  position: absolute; z-index: 5; will-change: transform;
  font-size: 13px; font-weight: 500;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(7,18,12,0.62);
  border: 1px solid var(--hair);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 8px; color: var(--silver-200);
}
.chip .spark { color: var(--am-green); }
.chip-sowhat { top: 14%; left: -6%; }
.chip-words  { top: 40%; right: -10%; }
.chip-pulse  { bottom: 20%; left: -10%; }
.chip-up     { bottom: 8%; right: -2%; color: var(--am-green); }
.chip strong { color: var(--silver-100); font-weight: 600; }

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.25em; color: var(--text-dim); text-transform: uppercase;
}
.scroll-cue .mouse { width: 22px; height: 34px; border: 1px solid var(--hair); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; top:6px; left:50%; transform: translateX(-50%); width:3px; height:6px; border-radius: 2px; background: var(--am-green); animation: cue 1.6s var(--ease-io) infinite; }
@keyframes cue { 0%{opacity:0; transform: translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform: translate(-50%,12px)} }

@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-stage { order: 2; min-height: 480px; margin-top: 10px; }
  .hero-copy { order: 1; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: relative; z-index: 1;
  border-top: 1px solid var(--hair-soft); border-bottom: 1px solid var(--hair-soft);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: inline-flex; gap: 42px; will-change: transform; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); }
.ticker-item b { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--silver-200); font-size: 16px; }
.ticker-item .up { color: var(--am-green); } .ticker-item .dn { color: #E98A77; }
.ticker-item .sep { color: var(--silver-600); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { position: relative; z-index: 1; padding: clamp(90px, 14vh, 170px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 5vw, 66px); line-height: 1.02; letter-spacing: -0.022em;
  margin: 18px 0 18px;
}
.section-sub { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; color: var(--text-soft); max-width: 520px; }

/* reveal init (only when JS on) */
.js .reveal { opacity: 0; transform: translateY(34px); }
.js .reveal-soft { opacity: 0; transform: translateY(18px); }

/* ============================================================
   PULSE TIMELINE (signature)
   ============================================================ */
#pulse .pulse-pin { min-height: 100svh; display: flex; align-items: center; }
.pulse-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(30px, 5vw, 80px); align-items: center; width: 100%; }
.pulse-copy { max-width: 520px; }
.heat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 22px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--hair); background: rgba(230,235,237,0.05); color: var(--silver-300);
  transition: color .4s, border-color .4s, background .4s;
}
.heat-pill .hd { width: 8px; height: 8px; border-radius: 50%; background: var(--silver-400); transition: background .4s, box-shadow .4s; }
.pulse-stats { display: flex; gap: 30px; margin-top: 30px; }
.pulse-stats .stat .n { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--silver-100); font-variant-numeric: tabular-nums; }
.pulse-stats .stat .l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }

.pulse-stage { position: relative; display: flex; justify-content: center; align-items: center; }
.pulse-stage .phone { width: clamp(230px, 24vw, 300px); position: relative; z-index: 2; }
.timeline {
  position: absolute; left: -6%; top: 50%; transform: translateY(-50%);
  width: 56%; max-width: 360px; z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
}
.tl-line { position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--am-green), rgba(61,187,110,0.05)); transform-origin: top; }
.tl-node { position: relative; padding-left: 30px; }
.tl-node .nd { position: absolute; left: 1px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg-base); border: 2px solid var(--am-green); box-shadow: 0 0 0 4px rgba(61,187,110,0.12); }
.tl-card { background: rgba(7,18,12,0.66); border: 1px solid var(--hair); border-radius: 14px; padding: 11px 14px; backdrop-filter: blur(12px); box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.tl-time { font-size: 11px; letter-spacing: 0.1em; color: var(--am-green); font-weight: 600; }
.tl-src { font-size: 11px; color: var(--text-dim); margin-left: 8px; }
.tl-text { font-size: 13.5px; color: var(--silver-200); margin-top: 3px; line-height: 1.4; }

@media (max-width: 900px){
  .pulse-layout { grid-template-columns: 1fr; gap: 36px; }
  #pulse .pulse-pin { min-height: auto; }
  .pulse-stage { order: -1; }
  .timeline { position: relative; left: 0; top: 0; transform: none; width: 100%; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   SO WHAT?
   ============================================================ */
.sw-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.sw-stage { position: relative; display: flex; justify-content: center; }
.sw-stage .phone { width: clamp(230px, 24vw, 300px); }
.sw-spark {
  position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  font-size: 46px; color: var(--am-green); filter: drop-shadow(0 0 22px rgba(61,187,110,0.6)); z-index: 6;
}
.sw-cards { display: flex; flex-direction: column; gap: 16px; max-width: 440px; }
.sw-card { padding: 22px 24px; }
.sw-card .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--am-green); font-weight: 700; }
.sw-card h4 { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--silver-100); margin: 7px 0 8px; }
.sw-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); }
@media (max-width: 900px){ .sw-layout { grid-template-columns: 1fr; gap: 40px; } .sw-stage { order: -1; } }

/* ============================================================
   TOP 10
   ============================================================ */
#top10 .t10-pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.t10-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.88fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  width: 100%;
}
.t10-layout .section-head {
  max-width: 650px;
  margin-bottom: 0;
  padding-inline: 0;
}
.t10-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(540px, 72vh, 720px);
}
.t10-phone {
  width: clamp(250px, 25vw, 330px);
  filter: drop-shadow(0 38px 70px rgba(0,0,0,0.42));
}
@media (max-width: 900px){
  .t10-layout { grid-template-columns: 1fr; gap: 26px; }
  .t10-media { order: -1; min-height: auto; }
  .t10-phone { width: clamp(232px, 66vw, 300px); }
  #top10 .t10-pin { min-height: auto; }
}

/* ============================================================
   NARRATIVES
   ============================================================ */
.nar-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.nar-cats { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 30px; }
.nar-cats .cat { font-size: 13px; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--hair); color: var(--text-soft); background: rgba(230,235,237,0.03); transition: all .3s var(--ease-out); cursor: default; }
.nar-cats .cat.is-on, .nar-cats .cat:hover { color: #05130b; background: var(--silver-200); border-color: transparent; }
.nar-take { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 26px; }
.nar-take li { display: flex; gap: 14px; padding: 13px 4px; border-bottom: 1px solid var(--hair-soft); align-items: baseline; }
.nar-take .i { font-family: var(--serif); font-style: italic; color: var(--am-green); font-size: 15px; width: 22px; flex-shrink: 0; }
.nar-take .t { font-size: 15px; color: var(--silver-200); line-height: 1.45; }
.nar-text { font-size: 15px; line-height: 1.7; color: var(--text-soft); }
.nar-text b { color: var(--silver-100); font-weight: 600; }
.nar-stage { display: flex; justify-content: center; }
.nar-stage .phone { width: clamp(230px, 24vw, 300px); }
@media (max-width: 900px){ .nar-layout { grid-template-columns: 1fr; gap: 40px; } .nar-stage { order: -1; } }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
#cta { text-align: center; padding: clamp(120px, 20vh, 220px) 0; }
.cta-title { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6.6vw, 96px); line-height: 1.0; letter-spacing: -0.025em; will-change: transform; }
#cta .btn { margin-top: 36px; }

.footer { position: relative; z-index: 1; padding: 54px 0 46px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer img { height: 22px; opacity: 0.7; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: 13.5px; color: var(--text-dim); transition: color .25s; }
.footer-links a:hover { color: var(--silver-200); }
.footer-copy { font-size: 12.5px; color: var(--silver-600); width: 100%; margin-top: 22px; }

/* (Hero is fully styled by hero-intro.css + framer-hero-native.css.) */

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal-soft { opacity: 1 !important; transform: none !important; }
  .bg-grain { animation: none !important; }
  * { scroll-behavior: auto !important; }
}
