/* ============================================================
   THE VEIN — Webbynd showcase site
   Design tokens: a molten gold seam running through dark bedrock.
   ============================================================ */

:root {
  /* Bedrock / rock tones */
  --bedrock: #0E0C09;
  --strata: #1C1712;
  --strata-high: #2A221A;
  --strata-line: #3A2F22;

  /* Bone / light tones */
  --bone: #EDE5D8;
  --bone-dim: #B9AF9E;

  /* The vein — gold family */
  --gold: #F59E0B;        /* Working Gold — unchanged brand accent */
  --white-heat: #FFEFC9;
  --molten: #D97706;      /* Molten Deep */
  --ember: #92400E;

  /* Before / neutral */
  --before-slate: #94A3B8;

  /* Fonts */
  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-body: 'Lexend', sans-serif;
  --font-mono: 'Martian Mono', monospace;

  /* Spacing / rhythm */
  --section-pad: clamp(96px, 14vw, 200px);
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 24px;

  --ease-vein: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html {
  background: var(--bedrock);
  scroll-behavior: auto;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  background: var(--bedrock);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--gold);
  color: var(--bedrock);
}

/* Fine grain across the whole page — the difference between "flat
   dark background" and "a surface with texture," at a level that
   never competes with content. */
#grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  #grain-overlay { opacity: 0.035; }
}

/* Branded scrollbar — a normally-overlooked chrome element carries
   the palette too. */
html {
  scrollbar-color: var(--molten) var(--bedrock);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bedrock); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--molten), var(--gold));
  border-radius: 999px;
  border: 2px solid var(--bedrock);
  background-clip: padding-box;
}

/* Focus ring — accessibility floor, never remove */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

/* ============================================================
   Reveal-on-scroll — progressive enhancement only.
   Default state is fully visible; JS adds .pre-reveal before
   the fade-in class is applied, never the other way around.
   ============================================================ */
.reveal {
  transition: opacity 0.9s var(--ease-vein), transform 0.9s var(--ease-vein);
}
.reveal.pre-reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.pre-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(to bottom, rgba(14,12,9,0.85), transparent);
  pointer-events: none;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(14,12,9,0.82);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--strata-line);
}
.site-nav > * { pointer-events: auto; }
.site-nav .wordmark-mini {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark-mini .nav-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: block;
}
.wordmark-mini .wm-text { display: flex; gap: 0.05em; }
.wordmark-mini .wm-web { color: var(--bone); }
.wordmark-mini .wm-bynd-mini { color: var(--gold); }

.nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bedrock);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease-vein), box-shadow 0.3s var(--ease-vein);
  box-shadow: 0 0 0 rgba(245,158,11,0);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

/* ============================================================
   THE LOOM — one continuous thread system, fixed behind the
   entire page. Not tied to any single section; sections themselves
   have transparent backgrounds so it shows through everywhere,
   from the hero straight through to the final CTA convergence.
   ============================================================ */
.loom-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* ============================================================
   IGNITION — hero
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 100%;
  font-variation-settings: 'wdth' 100;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.14em;
}
.wm-web {
  color: var(--bone);
}
.wm-bynd {
  position: relative;
  background: linear-gradient(
    100deg,
    var(--ember) 0%,
    var(--molten) 22%,
    var(--gold) 45%,
    var(--white-heat) 55%,
    var(--gold) 65%,
    var(--molten) 82%,
    var(--ember) 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: url(#molten-displace) drop-shadow(0 0 34px rgba(245,158,11,0.55));
  animation: molten-flow 7s ease-in-out infinite;
}
@keyframes molten-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .wm-bynd { animation: none; background-position: 45% 50%; }
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--bone-dim);
  max-width: 560px;
  margin: 0 0 44px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary, .btn-ghost {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.35s var(--ease-vein), box-shadow 0.35s var(--ease-vein), background 0.35s;
}
.btn-primary {
  background: var(--gold);
  color: var(--bedrock);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--strata-line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-cue-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-cue-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue .line { animation: none; opacity: 0.6; }
}

/* ============================================================
   SECTION LABELS (shared)
   ============================================================ */
.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--molten);
  margin: 0 0 20px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  color: var(--bone);
  margin: 0 0 24px;
  max-width: 720px;
}
.section-heading em {
  font-style: normal;
  color: var(--gold);
}
.section-lede {
  font-size: 1.05rem;
  color: var(--bone-dim);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   THE ASSAY — case study excavation reveals
   ============================================================ */
.assay {
  border-top: 1px solid var(--strata-line);
}
.assay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 64px;
}
@media (min-width: 900px) {
  .assay-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 56px; }
  .assay-grid.reverse { direction: rtl; }
  .assay-grid.reverse > * { direction: ltr; }
}
.assay-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--strata);
  border: 1px solid var(--strata-line);
}
.assay-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.assay-before {
  filter: grayscale(0.65) sepia(0.15) brightness(0.7) contrast(1.05);
}
/* Used where no real "before" screenshot exists (Free America Tax) —
   a literal rock texture stands in rather than faking a before-shot. */
.assay-rock {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(125deg, rgba(0,0,0,0.28) 0 3px, transparent 3px 22px),
    repeating-linear-gradient(35deg, rgba(0,0,0,0.15) 0 2px, transparent 2px 30px),
    linear-gradient(160deg, var(--strata-high) 0%, var(--strata) 55%, var(--bedrock) 100%);
}
.assay-after-mask {
  position: absolute;
  inset: 0;
  /* Fully open by default — the "after" screenshot must be visible even if
     JS/GSAP never loads. main.js closes it (gsap.set) before wiring the
     scroll-scrub reveal, same additive pattern as .pre-reveal. */
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%, 0% 0%);
  will-change: clip-path;
  overflow: hidden;
}
@media (any-hover: hover) and (pointer: fine) {
  .assay-after-mask img,
  .assay-rock {
    transition: transform 0.7s var(--ease-vein);
  }
  .assay-panel:hover .assay-after-mask img,
  .assay-panel:hover .assay-rock {
    transform: scale(1.045);
  }
}
.assay-crack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 50% 50%, var(--white-heat) 0%, var(--gold) 14%, transparent 38%);
}
.assay-scan-label {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-heat);
  background: rgba(14,12,9,0.55);
  padding: 6px 10px;
  border-radius: 3px;
  border: 1px solid rgba(245,158,11,0.35);
}
.assay-copy .assay-client {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--before-slate);
  margin-bottom: 14px;
}
.assay-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--bone);
  margin: 0 0 18px;
}
.assay-copy p {
  color: var(--bone-dim);
  max-width: 480px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.assay-certificate {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
  border-top: 1px solid var(--strata-line);
  border-bottom: 1px solid var(--strata-line);
  padding: 22px 0;
  margin-bottom: 28px;
}
.assay-stat {
  font-family: var(--font-mono);
}
.assay-stat .num {
  display: block;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.assay-stat .lbl {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--before-slate);
}
.assay-capabilities {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assay-capabilities li {
  position: relative;
  padding-left: 22px;
  color: var(--bone-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}
.assay-capabilities li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-mono);
}
.assay-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  padding: 13px 0;
  margin: -13px 0;
}
.assay-link:hover { border-color: var(--gold); }

/* ============================================================
   THE LODE — services cross-section
   ============================================================ */
.lode {
  border-top: 1px solid var(--strata-line);
}
.lode-strata {
  margin-top: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--strata-line);
}
.lode-layer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px clamp(24px, 4vw, 56px);
  border-bottom: 1px solid var(--strata-line);
  background: var(--strata);
  transition: background 0.4s;
  position: relative;
}
.lode-layer:last-child { border-bottom: none; }
.lode-layer:hover { background: var(--strata-high); }
@media (min-width: 800px) {
  .lode-layer { grid-template-columns: 90px 1fr 1.3fr; align-items: center; gap: 32px; }
}
.lode-depth {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--molten);
  letter-spacing: 0.05em;
}
.lode-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bone);
}
.lode-desc {
  color: var(--bone-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 460px;
}

/* ============================================================
   THE CLAIM — pricing section (reuses .lode-strata rows)
   ============================================================ */
.claim {
  border-top: 1px solid var(--strata-line);
}

/* ============================================================
   THE DIGGER — founder section
   ============================================================ */
.digger {
  border-top: 1px solid var(--strata-line);
}
.digger-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
  align-items: start;
}
@media (min-width: 900px) {
  .digger-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.digger-photo-slot {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--strata) 0%, var(--strata-high) 100%);
  border: 1px solid var(--strata-line);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.digger-photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(245,158,11,0.05) 0 2px, transparent 2px 14px);
}
/* No real photo yet — drop the box/frame styling so bare text doesn't
   look like an empty panel. Remove this modifier once a real photo
   replaces .digger-bio with an <img>; the base .digger-photo-slot
   rules above are what should frame that image. */
.digger-photo-slot.is-pending {
  aspect-ratio: auto;
  background: none;
  border: none;
  padding: 0;
}
.digger-photo-slot.is-pending::before {
  content: none;
}
/* The guide thread is deliberately anchored on this section (it's one of
   its waypoints), so more thread traffic crosses behind this text than
   anywhere else on the page. A dark halo (tinted to the canvas's own
   clear color, not a generic black outline) keeps it legible without
   reintroducing a boxed background. */
.digger .section-heading,
.digger-bio,
.digger-copy p,
.digger-signature {
  text-shadow: 0 1px 3px rgba(14, 12, 9, 0.9), 0 4px 18px rgba(14, 12, 9, 0.75);
}
.digger-bio {
  position: relative;
  z-index: 1;
  color: var(--bone-dim);
  font-size: 1rem;
  line-height: 1.75;
}
.digger-copy p {
  color: var(--bone-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 22px;
}
.digger-copy strong { color: var(--bone); font-weight: 600; }
.digger-signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ============================================================
   THE STRIKE — final CTA (drenched gold flood)
   ============================================================ */
.strike {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--strata-line);
  /* No-JS / pre-paint fallback — a quiet dark field with a soft gold
     hint where the threads will converge, so the CTA is legible even
     if the WebGL canvas never mounts. */
  background: radial-gradient(circle at 50% 62%, rgba(245,158,11,0.16) 0%, var(--bedrock) 55%);
}
.strike-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 var(--gutter);
}
.strike-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  color: var(--bone);
  margin: 0 0 28px;
}
.strike-sub {
  font-size: 1.1rem;
  color: var(--bone-dim);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.strike-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-strike {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 36px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--bedrock);
  text-decoration: none;
  transition: transform 0.3s var(--ease-vein), box-shadow 0.3s var(--ease-vein);
  box-shadow: 0 0 32px rgba(245,158,11,0.35);
}
.btn-strike:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(245,158,11,0.45); }
.btn-strike-ghost {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 30px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--bone);
  border: 1.5px solid var(--strata-line);
  text-decoration: none;
  transition: transform 0.3s var(--ease-vein), border-color 0.3s;
}
.btn-strike-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.strike-availability {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.strike-phone {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--bone-dim);
}
.strike-availability + .strike-phone { margin-top: 10px; }
.strike-phone a { color: var(--gold); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(245,158,11,0.4); }

/* ============================================================
   COLOPHON — footer
   ============================================================ */
.colophon {
  padding: 56px var(--gutter) 40px;
  background: var(--bedrock);
}
.colophon-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--strata-line);
  padding-top: 32px;
  font-size: 0.82rem;
  color: var(--bone-dim);
}
.colophon a { text-decoration: none; color: var(--bone-dim); transition: color 0.3s; }
.colophon a:hover { color: var(--gold); }
.colophon-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   Cursor / touch guards — bespoke interactions off on touch
   ============================================================ */
@media (any-hover: hover) and (pointer: fine) {
  .cursor-reactive { cursor: none; }
  .cursor-reactive a,
  .cursor-reactive button {
    cursor: pointer;
  }
}
#molten-cursor {
  position: fixed;
  top: -9px; left: -9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--white-heat) 0%, var(--gold) 55%, transparent 75%);
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transform: translate(0, 0) scale(0.6);
  transition: opacity 0.3s, transform 0.3s;
  mix-blend-mode: screen;
}
#molten-cursor.is-active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (any-hover: none), (pointer: coarse) {
  #molten-cursor { display: none; }
}

/* ============================================================
   Mobile nav
   ============================================================ */
@media (max-width: 640px) {
  .nav-cta { padding: 15px 16px; font-size: 0.78rem; }
  .hero { padding-top: 120px; }
  .assay-certificate { gap: 20px; }
}

/* ============================================================
   SYSTEM PAGES — /tax-resolution/ /cpa-onboarding/ /mortgage-speed-to-lead/
   Subpages reuse the core components (lode rows, assay stats,
   claim pricing, buttons); these are the page-specific pieces.
   ============================================================ */
.syspage-hero { padding-top: clamp(150px, 22vh, 230px); }
.syspage-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 18ch;
  text-wrap: balance;
  margin: 18px 0 22px;
}
.syspage-lede {
  color: var(--bone-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 34px;
}
.syspage-prose p {
  color: var(--bone-dim);
  line-height: 1.75;
  max-width: 68ch;
  margin: 0 0 18px;
}
.syspage-prose strong { color: var(--bone); }
.faq-list { margin-top: 40px; border-top: 1px solid var(--strata-line); }
.faq-list details { border-bottom: 1px solid var(--strata-line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bone);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--gold); font-weight: 400; }
.faq-list details[open] summary::after { content: '\2212'; }
.faq-list details p {
  color: var(--bone-dim);
  line-height: 1.7;
  max-width: 68ch;
  padding: 0 0 22px;
  margin: 0;
}
