/* ============================================================
   SIGNUM — full site styles
   Theme system (light/dark) via CSS custom properties on .site.
   Reuses the type system + glass mosaic from signum.css/glass.js.
   ============================================================ */

.site {
  --serif: "Newsreader", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --maxw: 1200px;
  --gutter: 48px;

  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  transition: background .6s ease, color .6s ease;
  min-height: 100vh;
}

/* ---- THEMES ----------------------------------------------------- */
.site.theme-light {
  --bg: oklch(0.971 0.003 250);
  --bg-2: oklch(0.945 0.004 250);
  --fg: oklch(0.18 0.005 270);
  --fg-soft: oklch(0.42 0.006 270);
  --fg-faint: oklch(0.62 0.006 270);
  --hair: oklch(0.18 0.005 270 / 0.13);
  --hair-strong: oklch(0.18 0.005 270 / 0.26);
  --pane-bg: oklch(0.965 0.003 250);
  --pane-shadow: 0 50px 90px -50px oklch(0.18 0.005 270 / 0.4);
  --glass-theme: light;
  --nav-blur: oklch(0.971 0.003 250 / 0.72);
}
.site.theme-dark {
  --bg: oklch(0.155 0.004 270);
  --bg-2: oklch(0.195 0.005 270);
  --fg: oklch(0.965 0.003 250);
  --fg-soft: oklch(0.78 0.004 250);
  --fg-faint: oklch(0.58 0.004 250);
  --hair: oklch(0.97 0 0 / 0.14);
  --hair-strong: oklch(0.97 0 0 / 0.3);
  --pane-bg: oklch(0.175 0.004 270);
  --pane-shadow: 0 50px 90px -50px oklch(0 0 0 / 0.7);
  --glass-theme: dark;
  --nav-blur: oklch(0.155 0.004 270 / 0.66);
}

.site * { box-sizing: border-box; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- type atoms ------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--hair-strong);
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--serif); font-weight: 300;
  line-height: 0.99; letter-spacing: -0.02em;
  text-wrap: balance; margin: 0;
}
.display em { font-style: italic; font-weight: 300; }

.h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 4.2vw, 58px); line-height: 1.04;
  letter-spacing: -0.018em; margin: 0; text-wrap: balance;
}
.h2 em { font-style: italic; }

.lede {
  font-family: var(--sans); font-weight: 400;
  line-height: 1.55; color: var(--fg-soft); text-wrap: pretty; margin: 0;
}

/* ---- buttons ---------------------------------------------------- */
.btn-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; padding: 13px 22px; border-radius: 2px;
  cursor: pointer; border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
}
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--hair-strong); }
.btn-ghost:hover { border-color: var(--fg); }
.btn .arrow { font-family: var(--mono); font-size: 13px; }

/* ---- NAV -------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-blur);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--hair);
  padding: 14px var(--gutter);
}
.wordmark {
  font-family: var(--serif); font-weight: 400; font-size: 21px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg);
  text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 34px; }
.navlinks { display: flex; gap: 30px; }
.navlinks a {
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--fg-soft); text-decoration: none; transition: color .25s;
}
.navlinks a:hover { color: var(--fg); }

/* theme toggle */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--hair-strong); border-radius: 100px;
  padding: 3px; background: transparent;
}
.theme-toggle button {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; border: none; background: transparent;
  color: var(--fg-faint); cursor: pointer; padding: 6px 12px;
  border-radius: 100px; transition: background .3s, color .3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.theme-toggle button.active { background: var(--fg); color: var(--bg); }

/* ---- SECTION SCAFFOLD ------------------------------------------ */
section { position: relative; }
.section-pad { padding: clamp(90px, 12vh, 150px) 0; }
.rule { height: 1px; background: var(--hair); width: 100%; }

/* ---- HERO ------------------------------------------------------- */
.hero-sec {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 90px; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center; width: 100%;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 600px; }
.hero-display { font-size: clamp(46px, 5.4vw, 74px); line-height: 1.09; }
.hero-lede { font-size: clamp(17px, 1.4vw, 19px); max-width: 420px; }

/* ---- HERO GLASS OWL (crystal figurine, cut from its black plate) ---- */
.owl-wrap {
  position: relative; justify-self: center;
  width: min(300px, 30vw); aspect-ratio: 491 / 1025;
}
.owl-glass {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; display: block; z-index: 2;
  opacity: 0; transition: opacity 750ms ease;
  filter: drop-shadow(0 24px 32px oklch(0.18 0.02 260 / 0.28));
}
.owl-glass.in { opacity: 1; }
.theme-dark .owl-glass {
  filter: brightness(1.12) contrast(1.03) drop-shadow(0 26px 40px oklch(0 0 0 / 0.6));
}
/* reassembling shard layer — each shard carries a slice of the owl */
.owl-shatter { position: absolute; inset: 0; z-index: 2; transition: opacity 750ms ease; }
.owl-shatter.gone { opacity: 0; pointer-events: none; }
.owl-shard {
  background-size: 100% 100%; background-position: center; background-repeat: no-repeat;
}
.site.no-motion .owl-shard { transform: none !important; opacity: 1 !important; transition: none !important; }
.site.no-motion .owl-glass { transition: none !important; }
/* faint halo so the crystal separates from the page (esp. dark theme) */
.owl-aura {
  position: absolute; inset: 4% 0 10%; z-index: 0; pointer-events: none;
  background: radial-gradient(44% 40% at 50% 42%, oklch(0.72 0.03 250 / 0.10), transparent 70%);
}
.theme-dark .owl-aura {
  background: radial-gradient(48% 44% at 50% 42%, oklch(0.6 0.045 250 / 0.24), transparent 70%);
}
/* grounded contact shadow */
.owl-shadow {
  position: absolute; left: 17%; right: 17%; bottom: 0%; height: 4.5%; z-index: 1;
  background: radial-gradient(50% 100% at 50% 0%, oklch(0.18 0.02 260 / 0.30), transparent 72%);
  filter: blur(7px);
}
.theme-dark .owl-shadow {
  background: radial-gradient(50% 100% at 50% 0%, oklch(0 0 0 / 0.55), transparent 72%);
}
/* slow light sweep, masked to the owl's own silhouette */
.owl-sheen {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden;
  -webkit-mask: url('assets/glass-owl.png') center / contain no-repeat;
  mask: url('assets/glass-owl.png') center / contain no-repeat;
  mix-blend-mode: screen;
}
.owl-sheen::after {
  content: ""; position: absolute; top: -10%; left: -45%; width: 42%; height: 120%;
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / 0.5), transparent);
  filter: blur(9px); transform: skewX(-14deg);
  animation: owlSheen 8.5s ease-in-out 1.4s infinite;
}
@keyframes owlSheen {
  0% { left: -45%; opacity: 0; }
  16% { opacity: 0.85; }
  55% { opacity: 0.22; }
  100% { left: 126%; opacity: 0; }
}
.site.no-motion .owl-sheen::after { display: none !important; }
@media (prefers-reduced-motion: reduce) { .owl-sheen::after { display: none; } }

/* ---- HERO STAINED-GLASS WINDOW ---------------------------------- */
.hero-windowwrap {
  position: relative; justify-self: center;
  width: min(330px, 33vw); aspect-ratio: 0.58 / 1;
}
.glass-window {
  position: absolute; inset: 0; background: var(--pane-bg);
  filter: drop-shadow(0 30px 42px oklch(0.18 0.005 270 / 0.3));
}
.theme-dark .glass-window {
  filter: drop-shadow(0 30px 46px oklch(0 0 0 / 0.6));
}

/* shared form-shading overlay (clipped by parent silhouette) */
.form-shade {
  position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen;
}

/* ---- HERO PANE -------------------------------------------------- */
.hero-glasswrap {
  position: relative; justify-self: center;
  width: min(420px, 38vw); aspect-ratio: 0.72 / 1;
}

/* ---- HERO ORB --------------------------------------------------- */
.hero-orbwrap {
  position: relative; justify-self: center;
  width: min(440px, 40vw); aspect-ratio: 1 / 1;
}
.glass-orb {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  background: var(--pane-bg);
  border: 1px solid var(--hair);
  box-shadow: var(--pane-shadow);
}
.orb-shade, .orb-spec {
  position: absolute; inset: 0; pointer-events: none; border-radius: 50%;
}
.orb-spec {
  background: radial-gradient(28% 20% at 33% 24%, oklch(1 0 0 / 0.55) 0%, transparent 70%);
  mix-blend-mode: screen;
}
.orb-shadow {
  position: absolute; left: 8%; right: 8%; bottom: -5%; height: 9%;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(50% 100% at 50% 0%, oklch(0.18 0.005 270 / 0.32) 0%, transparent 72%);
  filter: blur(7px);
}
.theme-dark .orb-shadow {
  background: radial-gradient(50% 100% at 50% 0%, oklch(0 0 0 / 0.55) 0%, transparent 72%);
}
.glass-pane {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--pane-bg);
  border: 1px solid var(--hair);
  box-shadow: var(--pane-shadow);
}
/* soft diagonal light sweep over the sumi pane */
.sumi-sheen {
  position: absolute; top: -20%; left: -40%; width: 40%; height: 140%;
  pointer-events: none; mix-blend-mode: screen; z-index: 4;
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / 0.22), transparent);
  filter: blur(10px); transform: skewX(-14deg);
  animation: sumiSheen 11s ease-in-out 1.6s infinite;
}
/* the painting itself */
.sumi-pane .sumi-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: 58% center; background-repeat: no-repeat;
  transition: opacity 1100ms ease, transform 1500ms cubic-bezier(.16,.84,.30,1);
}
.sumi-pane .sumi-darkwash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, oklch(0.62 0.05 28 / 0.10) 0%, transparent 55%),
    linear-gradient(180deg, oklch(0.16 0.02 260 / 0.18) 0%, oklch(0.16 0.02 260 / 0.34) 100%);
  mix-blend-mode: multiply;
}
.sumi-pane .glass-field { z-index: 2; }
/* faceted refraction layer — fills the pane exactly so each facet's slice of
   the painting lines up with the base, then pans for the glass-bend look */
.sumi-pane .sumi-facets { inset: 0; left: 0; top: 0; width: 100%; height: 100%; z-index: 2; }
.sumi-pane .sumi-shard { background-color: transparent; }
/* thick-glass edge: bevelled rim + faint inner reflection */
.sumi-pane .sumi-edge {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  box-shadow:
    inset 0 0 0 1px oklch(1 0 0 / 0.18),
    inset 1.5px 1.5px 2px oklch(1 0 0 / 0.5),
    inset -1.5px -1.5px 3px oklch(0.2 0.01 270 / 0.32),
    inset 0 0 26px oklch(0.2 0.01 270 / 0.16);
}
.theme-dark .sumi-pane .sumi-edge {
  box-shadow:
    inset 0 0 0 1px oklch(1 0 0 / 0.12),
    inset 1.5px 1.5px 2px oklch(1 0 0 / 0.28),
    inset -1.5px -1.5px 3px oklch(0 0 0 / 0.6),
    inset 0 0 30px oklch(0 0 0 / 0.5);
}
.site.no-motion .sumi-pane .sumi-photo { opacity: 1 !important; transform: none !important; }
/* keep facets assembled & visible when motion is off */
.site.no-motion .sumi-pane .sumi-shard { transform: none !important; opacity: 1 !important; transition: none !important; }
@keyframes sumiSheen {
  0% { left: -45%; opacity: 0; }
  18% { opacity: 0.7; }
  55% { opacity: 0.2; }
  100% { left: 120%; opacity: 0; }
}
.site.no-motion .sumi-sheen { display: none !important; }
@media (prefers-reduced-motion: reduce) { .sumi-sheen { display: none; } }
.pane-caption {
  position: absolute; left: 0; bottom: -34px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--fg-faint);
  display: flex; justify-content: space-between; width: 100%;
}

/* scroll cue */
.scrollcue {
  position: absolute; left: var(--gutter); bottom: 36px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--fg-faint);
  display: flex; align-items: center; gap: 12px;
}
.scrollcue .line { width: 1px; height: 30px; background: var(--hair-strong);
  position: relative; overflow: hidden; }
.scrollcue .line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--fg);
}
@media (prefers-reduced-motion: no-preference) {
  .scrollcue .line::after { animation: cueSlide 2.6s ease-in-out infinite; }
}
@keyframes cueSlide { 0% { top: -55%; } 60%,100% { top: 105%; } }

/* ---- THESIS ----------------------------------------------------- */
.thesis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.thesis-lead { font-family: var(--serif); font-weight: 300;
  font-size: clamp(26px, 2.5vw, 36px); line-height: 1.32; letter-spacing: -0.01em; }
.thesis-lead em { font-style: italic; }
.thesis-body { display: flex; flex-direction: column; gap: 22px; }
.thesis-body p { font-size: 17px; line-height: 1.62; color: var(--fg-soft); margin: 0; }
.pull { color: var(--fg); }

/* ---- HOW IT WORKS ----------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hair); border: 1px solid var(--hair); margin-top: 56px; }
.step { background: var(--bg); padding: 40px 36px 46px; display: flex;
  flex-direction: column; gap: 16px; min-height: 280px; }
.step .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em;
  color: var(--fg-faint); }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 25px;
  line-height: 1.15; margin: 6px 0 0; letter-spacing: -0.01em; }
.step p { font-size: 15.5px; line-height: 1.58; color: var(--fg-soft); margin: 0; }
.confidential {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--fg-faint);
}
.confidential .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--fg-faint); }

/* ---- PERFORMANCE ------------------------------------------------ */
.perf-head { display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hair); border-block: 1px solid var(--hair); margin-top: 54px; }
.stat { background: var(--bg); padding: 34px 28px; display: flex; flex-direction: column; gap: 8px; }
.stat .val { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 4vw, 54px);
  line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg-faint); }
.stat .placeholder { color: var(--fg-faint); font-style: italic; font-family: var(--serif); }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hair); border-bottom: 1px solid var(--hair); }
.substat { background: var(--bg); padding: 20px 28px; display: flex; align-items: baseline; gap: 12px; }
.substat .sval { font-family: var(--serif); font-weight: 300; font-size: 24px;
  line-height: 1; letter-spacing: -0.01em; }
.bench-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 14px;
  padding: 22px 28px 0; }
.bench-fund { font-family: var(--serif); font-weight: 300; font-size: 28px; line-height: 1;
  letter-spacing: -0.01em; color: var(--fg); }
.bench-spx { font-family: var(--serif); font-weight: 300; font-size: 28px; line-height: 1;
  letter-spacing: -0.01em; color: var(--fg-faint); }
.bench-sep { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-faint); align-self: center; }
.bench-vs { font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--fg-faint); align-self: center; }
.bench-gap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--fg); margin-left: auto; align-self: center; padding-left: 12px; }
@media (max-width: 640px) { .bench-gap { margin-left: 0; width: 100%; } }
.perf-note { margin-top: 26px; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.06em; color: var(--fg-faint); }

/* chart */
.chart-wrap { margin-top: 64px; border: 1px solid var(--hair); background: var(--bg-2);
  padding: 32px 36px; position: relative; overflow: hidden; }
.chart-head { display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px 32px; flex-wrap: wrap; }
.chart-headline { display: flex; flex-direction: column; }
.chart-figure { font-family: var(--serif); font-weight: 300; font-size: 40px; line-height: 0.95;
  letter-spacing: -0.02em; color: var(--fg); }
.chart-figcap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg-faint); margin-top: 10px; }
.chart-legend { display: flex; gap: 22px; padding-top: 6px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint); }
.chart-legend span { display: inline-flex; align-items: center; gap: 8px; }
.chart-legend .dot { width: 15px; height: 2px; border-radius: 2px; display: inline-block; }
.chart-legend .dot.sig { background: var(--fg); }
.chart-legend .dot.spx { background: var(--fg-faint); }
.chart-plot { margin-top: 26px; }
.chart-plot .ylab { position: absolute; right: 0; transform: translateY(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--fg-faint);
  background: var(--bg-2); padding: 0 4px; pointer-events: none; }
.chart-plot .ept { position: absolute; width: 8px; height: 8px; border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; }
.chart-plot .ept.sig { background: var(--fg); box-shadow: 0 0 0 3px var(--bg-2); }
.chart-plot .ept.spx { background: var(--fg-faint); width: 6px; height: 6px; box-shadow: 0 0 0 3px var(--bg-2); }
.chart-axis { display: flex; justify-content: space-between; margin-top: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-faint); }
.chart-foot { margin: 16px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em;
  line-height: 1.6; color: var(--fg-faint); max-width: 64ch; }

/* ---- ACCESS ----------------------------------------------------- */
.access { background: var(--bg-2); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-faint); }
.field input, .field select {
  font-family: var(--sans); font-size: 15px; color: var(--fg);
  background: transparent; border: none; border-bottom: 1px solid var(--hair-strong);
  padding: 10px 2px; outline: none; transition: border-color .3s;
}
.field input::placeholder { color: var(--fg-faint); }
.field input:focus, .field select:focus { border-bottom-color: var(--fg); }
.field select option { background: var(--bg); color: var(--fg); }
.form-note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--fg-faint); margin-top: 8px; line-height: 1.6; }
.form-error { font-family: var(--sans); font-size: 13.5px; line-height: 1.5;
  color: oklch(0.55 0.16 25); margin: 14px 0 0; max-width: 42ch; }
.site.theme-dark .form-error { color: oklch(0.72 0.15 30); }
.sent { padding: 40px 0; }
.sent .h2 { margin-bottom: 16px; }

/* ---- FOOTER ----------------------------------------------------- */
.footer { padding: 56px 0 48px; border-top: 1px solid var(--hair); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; }
.footer .fineprint { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--fg-faint); line-height: 1.7; max-width: 520px; }

/* ---- REVEAL ----------------------------------------------------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); }
  .reveal.in { opacity: 1; transform: none;
    transition: opacity 1s cubic-bezier(.16,.84,.3,1), transform 1s cubic-bezier(.16,.84,.3,1); }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* motion off (Tweak) */
.site.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.site.no-motion .sheen { display: none !important; }
.site.no-motion .scrollcue .line::after { animation: none; top: 0; height: 100%; }
.site.no-motion .glass-pane svg rect,
.site.no-motion .glass-pane svg circle,
.site.no-motion .glass-pane svg path,
.site.no-motion .glass-pane svg line,
.site.no-motion .glass-pane svg g {
  opacity: 1 !important; transform: none !important; transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .glass-pane svg rect, .glass-pane svg circle,
  .glass-pane svg path, .glass-pane svg line, .glass-pane svg g {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ---- RESPONSIVE ------------------------------------------------- */
@media (max-width: 920px) {
  .site { --gutter: 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-glasswrap { width: min(360px, 70vw); order: -1; }
  .owl-wrap { width: min(220px, 52vw); order: -1; }
  .thesis-grid, .access-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .navlinks { display: none; }
}
