/* ==========================================================================
   AssignPro — Scroll-Driven Object-Assembly Hero
   Self-contained styles. Palette tokens scoped to .asm so they never clash
   with the main site's tokens. Object "home" (assembled) positions live here
   in CSS; the timeline module only animates transforms/opacity from JS.
   ========================================================================== */
:root {
  --navy: #1e3a5f;
  --navy-deep: #0d1c2e;
  --navy-soft: #31557e;
  --gold: #b8772f;
  --gold-bright: #d7a35d;
  --paper: #f6f2e9;
  --paper-deep: #eee7da;
  --white: #fffdfa;
  --ink: #172033;
  --muted: #667085;
  --line: rgba(30, 58, 95, .16);
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --site-max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }
body { max-width: 100%; margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); line-height: 1.6; overflow-x: clip; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; }
button, summary { font: inherit; }
::selection { background: var(--gold); color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 1000; transform: translateY(-180%); background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 4px; text-decoration: none; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }

.site-progress { position: fixed; inset: 0 0 auto; z-index: 120; height: 2px; pointer-events: none; }
.site-progress span { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; padding: 0 clamp(20px, 4vw, 64px); color: var(--navy); border-bottom: 1px solid transparent; transition: height .35s var(--ease), background .35s ease, border-color .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled { height: 66px; background: rgba(246, 242, 233, .9); border-color: rgba(30, 58, 95, .1); box-shadow: 0 10px 32px rgba(13, 28, 46, .06); backdrop-filter: blur(18px); }
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; fill: var(--navy); }
.brand-mark-accent { fill: var(--gold); }
.brand-name { font: 600 1.35rem/1 var(--font-heading); letter-spacing: -.03em; }
.brand-name span { color: var(--gold); }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 1.7vw, 30px); }
.desktop-nav a { position: relative; color: #344054; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .28s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 18px; background: var(--navy); color: #fff; border: 1px solid var(--navy); border-radius: 4px; font-size: .82rem; font-weight: 700; text-decoration: none; transition: background .25s ease, color .25s ease, transform .25s var(--ease); }
.header-cta:hover { background: transparent; color: var(--navy); transform: translateY(-2px); }
.menu-toggle { justify-self: end; display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: rgba(255,255,255,.6); border-radius: 4px; cursor: pointer; place-items: center; }
.menu-toggle span { position: absolute; width: 18px; height: 1px; background: var(--navy); transition: transform .25s var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: grid; grid-template-rows: 1fr auto; padding: 118px 24px 34px; overflow-y: auto; background: var(--paper); visibility: hidden; opacity: 0; transform: translateY(-14px); transition: opacity .3s ease, transform .45s var(--ease), visibility 0s .45s; }
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; justify-content: center; }
.mobile-menu nav a { display: grid; grid-template-columns: 44px 1fr; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--navy); font: 500 clamp(2rem, 10vw, 3.2rem)/1.1 var(--font-heading); text-decoration: none; }
.mobile-menu nav span { color: var(--gold); font: 600 .68rem/1 var(--font-body); letter-spacing: .12em; }
.mobile-menu-cta { display: grid; place-items: center; min-height: 54px; background: var(--navy); color: #fff; font-weight: 700; text-decoration: none; border-radius: 4px; }

.page-story { position: fixed; left: 20px; bottom: 18px; z-index: 69; display: grid; grid-template-columns: auto 76px auto; align-items: center; gap: 11px; min-height: 46px; padding: 0 14px; background: rgba(255,253,250,.9); color: var(--navy); border: 1px solid rgba(30,58,95,.12); border-radius: 4px; box-shadow: 0 12px 30px rgba(13,28,46,.1); backdrop-filter: blur(14px); opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .35s ease, transform .45s var(--ease), background .3s ease, color .3s ease; }
.page-story.is-visible { opacity: 1; transform: translateY(0); }
.page-story.is-dark { background: rgba(13,28,46,.88); color: #fff; border-color: rgba(255,255,255,.12); }
.page-story-current { display: flex; align-items: center; gap: 9px; min-width: 150px; }
.page-story-current span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.page-story-current strong { overflow: hidden; max-width: 130px; font-size: .68rem; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.page-story-track { height: 1px; background: rgba(30,58,95,.16); overflow: hidden; }
.page-story.is-dark .page-story-track { background: rgba(255,255,255,.18); }
.page-story-track i { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.page-story small { color: currentColor; font-size: .6rem; opacity: .5; }

.section-shell { width: min(calc(100% - 48px), var(--site-max)); margin-inline: auto; }
.asm, .continuum-content > section[data-story-index] { position: relative; isolation: isolate; }
.continuum-content > section[data-story-index]:not(.trust-rail)::after { content: attr(data-story-index); position: absolute; right: clamp(20px, 5vw, 76px); top: clamp(34px, 6vw, 88px); z-index: -1; color: var(--navy); font: 500 clamp(8rem, 19vw, 18rem)/.7 var(--font-heading); letter-spacing: -.08em; opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform 1s var(--ease); pointer-events: none; }
.continuum-content > section[data-story-index].is-story-active::after { opacity: .035; transform: translateY(0); }
.results[data-story-index]::after, .closing-cta[data-story-index]::after { color: #fff !important; z-index: 0 !important; }
.eyebrow, .asm-kicker { display: inline-block; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: var(--gold-bright); }
.section-heading h2, .process-intro h2, .results-heading h2, .standards-copy h2, .pricing-heading h2, .faq-heading h2, .closing-cta h2 { margin: 16px 0 0; color: var(--navy); font: 600 clamp(2.7rem, 6vw, 5.7rem)/.98 var(--font-heading); letter-spacing: -.045em; text-wrap: balance; }
.section-heading h2 em, .process-intro h2 em, .results-heading h2 em, .standards-copy h2 em, .pricing-heading h2 em, .faq-heading h2 em, .closing-cta h2 em { color: var(--gold); font-weight: 500; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--navy); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--navy); }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, 3px); }

.asm {
  --asm-navy:#1e3a5f; --asm-deep:#0f1f33; --asm-gold:#c98a3d;
  --asm-paper:#f7f4ee; --asm-ink:#1b1f2a; --asm-grey:#6b7280;
  --asm-length: 440vh;            /* act one; the visual story continues below */
  position: relative;
  height: var(--asm-length);
  background:
    radial-gradient(circle at 18% 18%, rgba(201,138,61,.12), transparent 23%),
    radial-gradient(circle at 82% 72%, rgba(30,58,95,.08), transparent 28%),
    linear-gradient(145deg, #fffdf8 0%, var(--asm-paper) 52%, #eee7da 100%);
  color: var(--asm-ink);
  font-family: var(--font-body, system-ui, sans-serif);
}
.asm-stage {
  position: sticky; top: 0;
  height: 100vh; height: 100dvh;
  overflow: hidden;
  display: grid; place-items: center;
}
.asm-grid { position: absolute; inset: 0; z-index: 0; opacity: .5; background-image: linear-gradient(rgba(30,58,95,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,95,.045) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent 0, #000 25%, #000 75%, transparent 100%); }
.asm-orbit { position: absolute; z-index: 1; border: 1px solid rgba(184,119,47,.28); border-radius: 50%; pointer-events: none; }
.asm-orbit::before, .asm-orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--asm-gold); box-shadow: 0 0 0 6px rgba(201,138,61,.1); }
.asm-orbit-a { width: min(42vw, 620px); aspect-ratio: 1; left: -16vw; top: 28%; }
.asm-orbit-a::before { right: 8%; top: 24%; }
.asm-orbit-b { width: min(30vw, 440px); aspect-ratio: 1; right: -10vw; top: 12%; border-style: dashed; }
.asm-orbit-b::after { left: 14%; bottom: 14%; }
.asm-stage-meta { position: absolute; left: clamp(24px, 4vw, 64px); bottom: 28px; z-index: 8; margin: 0; color: rgba(30,58,95,.58); font-size: .64rem; font-weight: 700; letter-spacing: .12em; line-height: 1.65; text-transform: uppercase; }
.asm-rail { position: absolute; right: clamp(24px, 4vw, 64px); top: 50%; z-index: 9; display: grid; grid-template-columns: auto 2px; grid-template-rows: auto 1fr; gap: 14px 18px; transform: translateY(-50%); color: rgba(30,58,95,.45); }
.asm-rail-label { grid-column: 1 / -1; font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.asm-rail ol { grid-column: 1; display: flex; flex-direction: column; gap: 15px; margin: 0; padding: 0; list-style: none; font-size: .6rem; font-weight: 700; }
.asm-rail li { transition: color .25s ease, transform .25s var(--ease); }
.asm-rail li.is-active { color: var(--asm-gold); transform: translateX(-4px); }
.asm-rail-line { grid-column: 2; grid-row: 2; position: relative; display: block; width: 1px; height: 120px; background: rgba(30,58,95,.14); }
.asm-rail-line i { position: absolute; inset: 0; display: block; background: var(--asm-gold); transform: scaleY(0); transform-origin: top; }

/* ---- Copy layers (real headings; stacked, cross-faded by the timeline) ---- */
.asm-copy { position: absolute; top: 10.5%; left: 50%; transform: translateX(-50%);
  width: min(92%, 820px); text-align: center; z-index: 8; pointer-events: none; }
/* Legibility scrim: a soft paper halo keeps headlines readable when a dark
   object drifts behind them, but fades before the assembled-scene centre so it
   never washes the objects out. Invisible over the paper background. */
.asm-copy::before { content: ""; position: absolute; z-index: -1; left: 50%; top: -6%;
  transform: translateX(-50%); width: 150%; height: 340px; max-height: 52vh;
  background: radial-gradient(58% 62% at 50% 34%,
    rgba(247,244,238,.94) 0%, rgba(247,244,238,.64) 44%, rgba(247,244,238,0) 74%);
  pointer-events: none; }
.asm-scene { position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 100%; margin: 0; opacity: 0; }
.asm-scene h2, .asm-scene .asm-h {
  font-family: var(--font-heading, Georgia, serif); font-weight: 600;
  font-size: clamp(2.5rem, 5.2vw, 4.9rem); line-height: .98; letter-spacing: -.04em;
  color: var(--asm-navy); margin: 0; text-wrap: balance;
  text-shadow: 0 1px 20px var(--asm-paper, #f7f4ee), 0 0 46px var(--asm-paper, #f7f4ee); }
.asm-scene em { font-style: italic; color: var(--asm-gold); }
.asm-kicker { margin-bottom: 13px; }
.asm-scene p { margin: 14px auto 0; max-width: 46ch; font-size: clamp(1rem,1.5vw,1.2rem);
  line-height: 1.6; color: var(--asm-grey);
  text-shadow: 0 0 16px var(--asm-paper, #f7f4ee), 0 0 30px var(--asm-paper, #f7f4ee); }

/* ---- Object stage ---- */
.asm-objects { position: absolute; inset: 0; z-index: 3; }
.obj { position: absolute; transform-origin: center center;
  will-change: transform, opacity; }
.obj img { display: block; width: 100%; height: auto;
  filter: drop-shadow(0 26px 38px rgba(15,31,51,.2)); }
/* Home (assembled) positions — swap final renders by filename, no JS change */
.obj[data-obj="laptop"]   { left: 50%; top: 58%; width: clamp(260px, 34vw, 460px); z-index: 4; }
.obj[data-obj="paper-1"]  { left: 41%; top: 47%; width: clamp(150px, 18vw, 236px); z-index: 3; }
.obj[data-obj="paper-2"]  { left: 46%; top: 42%; width: clamp(150px, 18vw, 236px); z-index: 3; }
.obj[data-obj="book"]     { left: 64%; top: 60%; width: clamp(180px, 22vw, 300px); z-index: 3; }
.obj[data-obj="pen"]      { left: 52%; top: 45%; width: clamp(180px, 20vw, 300px); z-index: 5; }
.obj[data-obj="cap"]      { left: 50%; top: 31%; width: clamp(150px, 20vw, 262px); z-index: 6; }

/* ---- Proof badges (scene 4) ---- */
.asm-badges { position: absolute; inset: 0; z-index: 7; }
.asm-badge { position: absolute; width: clamp(160px, 20vw, 236px); opacity: 0; }
.asm-badge img { display: block; width: 100%; height: auto;
  filter: drop-shadow(0 12px 22px rgba(15,31,51,.18)); }
.asm-badge[data-badge="rating"]       { left: 24%; top: 40%; }
.asm-badge[data-badge="universities"] { left: 76%; top: 46%; }
.asm-badge[data-badge="turnitin"]     { left: 50%; top: 72%; }
.asm-mobile-proof { display: none; }

/* ---- CTA (scene 5) ---- */
.asm-cta { position: absolute; left: 50%; top: 62%; transform: translate(-50%,-50%);
  z-index: 8; text-align: center; opacity: 0; width: min(92%, 620px); }
.asm-cta .asm-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--asm-navy); color: #fff; font-weight: 700; font-size: 1.02rem;
  font-family: var(--font-body, system-ui, sans-serif);
  padding: 17px 30px; border-radius: 4px; text-decoration: none;
  box-shadow: 0 12px 30px rgba(15,31,51,.18); transition: transform .25s, box-shadow .25s, background .25s; }
.asm-cta .asm-cta-btn:hover { transform: translateY(-2px); background: var(--asm-gold); box-shadow: 0 16px 40px rgba(201,138,61,.35); }
.asm-cta .asm-cta-btn:focus-visible { outline: 3px solid var(--asm-navy); outline-offset: 3px; }
.asm-cta .asm-cta-sub { margin-top: 14px; color: var(--asm-grey); font-size: .95rem; }

/* ---- Scroll cue ---- */
.asm-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 9; display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: var(--asm-grey); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.asm-cue::after { content: ""; width: 1px; height: 34px;
  background: linear-gradient(var(--asm-grey), transparent); animation: asmCue 1.8s ease-in-out infinite; }
@keyframes asmCue { 0%,100% { opacity:.3; transform: scaleY(.6); transform-origin: top; } 50% { opacity:1; transform: scaleY(1); } }

/* ---- Debug overlay (?debug=1) ---- */
.asm-debug { position: fixed; left: 14px; bottom: 14px; z-index: 9999;
  background: rgba(15,31,51,.9); color: #f7f4ee; font: 12px/1.5 ui-monospace, monospace;
  padding: 10px 12px; border-radius: 8px; pointer-events: none; display: none; }
.asm.is-debug .asm-debug { display: block; }
.asm-debug b { color: var(--asm-gold); }

/* ---- Static hero fallback: shared by mobile (<768px) and reduced-motion ----
   Clean cap-on-laptop composition; secondary objects hidden to avoid clutter;
   headline + badges row + CTA all statically present. No scroll choreography. */
.asm--static { height: auto !important; }
.asm--static .asm-stage { position: static; height: auto; min-height: 88vh;
  padding: clamp(96px,14vh,140px) 20px 44px; }
.asm--static .asm-copy { position: static; transform: none; top: auto; margin: 0 auto 8px; }
.asm--static .asm-scene { position: static; transform: none; opacity: 1; display: none; }
.asm--static .asm-scene[data-scene="static"] { display: block; }
.asm--static .asm-objects { position: relative; inset: auto; z-index: 1;
  display: flex; flex-direction: column; align-items: center; height: auto; margin: 6px 0 4px; }
.asm--static .obj { position: static !important; transform: none !important; opacity: 1 !important; }
.asm--static .obj[data-obj="cap"] { width: clamp(120px, 40vw, 210px); margin-bottom: -7%; z-index: 2; }
.asm--static .obj[data-obj="laptop"] { width: clamp(210px, 66vw, 340px); }
.asm--static .obj[data-obj="paper-1"],
.asm--static .obj[data-obj="paper-2"],
.asm--static .obj[data-obj="book"],
.asm--static .obj[data-obj="pen"] { display: none; }
.asm--static .asm-badges { position: static; inset: auto; display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center; margin: 18px auto 0; }
.asm--static .asm-badge { position: static; transform: none !important; opacity: 1 !important;
  width: clamp(150px, 44vw, 200px); }
.asm--static .asm-cta { position: static; transform: none; opacity: 1 !important;
  top: auto; margin: 22px auto 0; }
.asm--static .asm-cue { display: none; }

/* ---- Company page ------------------------------------------------------- */
.trust-rail { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: clamp(28px, 5vw, 72px); min-height: 112px; padding: 24px clamp(24px, 5vw, 72px); background: var(--navy); color: #fff; overflow: hidden; }
.trust-rail > p { margin: 0; color: rgba(255,255,255,.55); font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.trust-rail-items { display: flex; align-items: center; justify-content: space-between; gap: 24px; font: 500 clamp(1.15rem, 2vw, 1.8rem)/1 var(--font-heading); white-space: nowrap; }
.trust-rail-items i { flex: 0 0 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-bright); }

.statement { padding-block: clamp(110px, 14vw, 200px); }
.statement-index { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.statement-copy { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); align-items: end; gap: clamp(48px, 8vw, 130px); margin-top: 30px; }
.display-title { max-width: 860px; margin: 0; color: var(--navy); font: 500 clamp(3.3rem, 7.8vw, 8.4rem)/.92 var(--font-heading); letter-spacing: -.06em; }
.statement-detail { padding-bottom: 10px; }
.statement-detail p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.statement-rule { height: 1px; margin-top: clamp(70px, 9vw, 120px); background: var(--line); overflow: hidden; }
.statement-rule span { display: block; width: 32%; height: 100%; background: var(--gold); }

.expertise { padding-bottom: clamp(72px, 8vw, 110px); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 64px; margin-bottom: 64px; }
.section-heading p { max-width: 460px; margin: 0 0 6px; color: var(--muted); line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; color: var(--navy); background: rgba(255,255,255,.26); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; overflow: hidden; transition: color .35s ease, background .35s ease; }
.service-card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -110px; bottom: -110px; border: 1px solid rgba(184,119,47,.35); border-radius: 50%; transition: transform .6s var(--ease); }
.service-card:hover { background: var(--navy); color: #fff; }
.service-card:hover::before { transform: scale(1.8); }
.service-card-wide { grid-column: span 2; }
.service-card-gold { grid-column: 1 / -1; min-height: 290px; background: var(--navy); color: #fff; }
.service-card-gold > svg { color: var(--gold-bright); }
.service-card-gold:hover { background: var(--gold); }
.service-card .service-no { color: currentColor; font-size: .65rem; font-weight: 700; letter-spacing: .16em; opacity: .62; }
.service-card > svg { width: 58px; height: 58px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; font: 600 clamp(1.6rem, 2.5vw, 2.3rem)/1.08 var(--font-heading); letter-spacing: -.03em; }
.service-card p { max-width: 42ch; margin: 0; color: currentColor; font-size: .88rem; opacity: .67; }
.card-arrow { position: absolute; right: 24px; top: 22px; font-size: 1.25rem; transition: transform .3s var(--ease); }
.service-card:hover .card-arrow { transform: translate(4px, -4px); }

.process { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(70px, 10vw, 150px); padding: clamp(84px, 9vw, 120px) 0 clamp(110px, 13vw, 170px); }
.process-intro { align-self: start; position: sticky; top: 120px; }
.process-intro p { max-width: 40ch; margin: 26px 0 0; color: var(--muted); }
.process-track { position: relative; padding-left: 34px; }
.process-line { position: absolute; left: 0; top: 6px; bottom: 8px; width: 1px; background: var(--line); }
.process-line span { position: absolute; inset: 0; display: block; background: var(--gold); transform: scaleY(0); transform-origin: top; }
.process-step { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 32px; min-height: 280px; padding: 14px 0 70px; border-bottom: 1px solid var(--line); }
.process-step + .process-step { padding-top: 72px; }
.step-count { display: grid; place-items: center; align-self: start; width: 64px; height: 64px; border: 1px solid var(--line); color: var(--gold); font-size: .72rem; font-weight: 700; border-radius: 50%; }
.step-meta { margin: 0 0 14px !important; color: var(--gold) !important; font-size: .66rem !important; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.process-step h3 { margin: 0 0 18px; color: var(--navy); font: 600 clamp(2rem, 4vw, 3.3rem)/1 var(--font-heading); letter-spacing: -.035em; }
.process-step p { max-width: 55ch; margin: 0; color: var(--muted); line-height: 1.8; }

.results { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
.results-inner { position: relative; z-index: 2; padding-block: clamp(110px, 13vw, 180px); }
.results-heading { display: grid; grid-template-columns: 1fr; margin-bottom: 64px; }
.results-heading h2 { color: #fff; }
.results-heading h2 em { color: var(--gold-bright); }
.results-geometry i { position: absolute; border: 1px solid rgba(215,163,93,.16); border-radius: 50%; }
.results-geometry i:nth-child(1) { width: 44vw; height: 44vw; right: -18vw; top: -16vw; }
.results-geometry i:nth-child(2) { width: 22vw; height: 22vw; right: 10vw; top: 16vw; border-style: dashed; }
.results-geometry i:nth-child(3) { width: 9px; height: 9px; right: 25vw; top: 20vw; background: var(--gold); box-shadow: 0 0 0 10px rgba(184,119,47,.1); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 90px; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.metric { min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.metric strong { color: #fff; font: 500 clamp(3.8rem, 7vw, 6.5rem)/.82 var(--font-heading); letter-spacing: -.06em; }
.metric span { margin-top: 18px; color: rgba(255,255,255,.55); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.testimonial-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 16px; }
.quote { min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 32px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); }
.quote-featured { background: var(--paper); color: var(--navy); }
.quote blockquote { margin: 0; color: inherit; font: 500 clamp(1.2rem, 2.1vw, 1.9rem)/1.45 var(--font-heading); }
.quote:not(.quote-featured) blockquote { color: rgba(255,255,255,.82); }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: #fff; font-size: .68rem; font-weight: 700; }
.quote figcaption div { display: flex; flex-direction: column; }
.quote figcaption strong { font-size: .85rem; }
.quote figcaption small { color: currentColor; font-size: .7rem; opacity: .55; }

.standards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(64px, 10vw, 150px); align-items: center; padding: clamp(100px, 11vw, 150px) 0 clamp(76px, 8vw, 110px); }
.standards-visual { position: relative; min-height: 620px; display: grid; place-items: center; background: var(--paper-deep); overflow: hidden; }
.standards-visual::before, .standards-visual::after { content: ""; position: absolute; border: 1px solid rgba(184,119,47,.3); border-radius: 50%; }
.standards-visual::before { width: 420px; height: 420px; left: -160px; top: -130px; }
.standards-visual::after { width: 280px; height: 280px; right: -100px; bottom: -80px; border-style: dashed; }
.document-card { position: relative; z-index: 2; width: min(72%, 390px); aspect-ratio: .76; padding: 30px; background: var(--white); box-shadow: 0 42px 90px rgba(30,58,95,.16); transform: rotate(-4deg); }
.doc-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.doc-head span { display: grid; place-items: center; width: 40px; height: 40px; background: var(--navy); color: #fff; font: 600 1rem var(--font-heading); }
.doc-head i { color: var(--gold); font-size: .65rem; font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.doc-score { margin: 48px 0 34px; color: var(--navy); font: 600 clamp(2.7rem, 5vw, 4.5rem)/1 var(--font-heading); }
.doc-lines { display: grid; gap: 14px; }
.doc-lines i { display: block; height: 6px; background: #dce3eb; }
.doc-lines i:nth-child(2) { width: 84%; }
.doc-lines i:nth-child(3) { width: 92%; }
.doc-lines i:nth-child(4) { width: 68%; }
.doc-stamp { position: absolute; right: 30px; bottom: 30px; padding: 9px 14px; border: 1px solid var(--gold); color: var(--gold); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; transform: rotate(-7deg); }
.standards-copy > p { max-width: 50ch; margin: 28px 0 38px; color: var(--muted); line-height: 1.8; }
.standards-copy ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.standards-copy li { display: grid; grid-template-columns: 54px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 600; }
.standards-copy li span { color: var(--gold); font-size: .66rem; letter-spacing: .12em; }

.pricing { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 9vw, 130px); align-items: center; padding: clamp(84px, 9vw, 125px) 0 clamp(105px, 12vw, 165px); border-top: 1px solid var(--line); }
.pricing-heading p { max-width: 43ch; margin: 28px 0 0; color: var(--muted); }
.price-panel { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(30,58,95,.09); }
.price-main, .price-includes { padding: clamp(30px, 4vw, 54px); }
.price-main { background: var(--navy); color: #fff; }
.price-main > span, .price-includes > p { font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .62; }
.price-main strong { display: block; margin: 28px 0 16px; font: 500 clamp(5rem, 10vw, 8rem)/.8 var(--font-heading); letter-spacing: -.07em; }
.price-main sup { font-size: .3em; vertical-align: top; }
.price-main small { font: 500 .15em var(--font-body); letter-spacing: 0; opacity: .6; }
.price-main p { color: rgba(255,255,255,.62); font-size: .88rem; }
.price-main a { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 700; text-decoration: none; }
.price-includes ul { display: grid; gap: 17px; margin: 28px 0 38px; padding: 0; list-style: none; }
.price-includes li { display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: .87rem; font-weight: 600; }
.price-includes svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }
.price-factors { display: flex; flex-wrap: wrap; gap: 7px; }
.price-factors span { padding: 8px 11px; background: var(--paper); color: var(--muted); font-size: .68rem; font-weight: 600; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 9vw, 130px); padding-block: clamp(110px, 13vw, 180px); }
.faq-heading { align-self: start; position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 48px 1fr 24px; align-items: center; gap: 10px; min-height: 94px; color: var(--navy); cursor: pointer; list-style: none; font: 600 clamp(1rem, 1.6vw, 1.3rem)/1.35 var(--font-heading); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--gold); font: 700 .64rem var(--font-body); letter-spacing: .12em; }
.faq-list summary svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .3s var(--ease); }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { max-width: 65ch; margin: -4px 34px 30px 58px; color: var(--muted); line-height: 1.8; }

.closing-cta { position: relative; min-height: 720px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 90px 24px; background: var(--navy); color: #fff; text-align: center; overflow: hidden; }
.closing-cta h2 { position: relative; z-index: 2; color: #fff; font-size: clamp(3.7rem, 9vw, 8rem); }
.closing-cta h2 em { color: var(--gold-bright); }
.closing-cta > p { position: relative; z-index: 2; max-width: 50ch; margin: 24px auto 0; color: rgba(255,255,255,.6); }
.closing-button { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 38px; margin-top: 38px; padding: 17px 22px; background: var(--gold); color: #fff; border-radius: 4px; font-weight: 700; text-decoration: none; transition: transform .25s var(--ease), background .25s ease; }
.closing-button:hover { transform: translateY(-3px); background: var(--gold-bright); }
.closing-geometry i { position: absolute; border: 1px solid rgba(215,163,93,.23); border-radius: 50%; }
.closing-geometry i:nth-child(1) { width: 48vw; height: 48vw; left: -20vw; top: -20vw; }
.closing-geometry i:nth-child(2) { width: 34vw; height: 34vw; right: -10vw; bottom: -12vw; border-style: dashed; }
.closing-geometry i:nth-child(3) { width: 12px; height: 12px; left: 18vw; bottom: 12vw; background: var(--gold); box-shadow: 0 0 0 10px rgba(184,119,47,.12); }

.site-footer { padding: 70px clamp(24px, 5vw, 72px) 28px; background: var(--navy-deep); color: #fff; border-top: 1px solid rgba(255,255,255,.1); }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer { color: #fff; }
.brand-footer .brand-mark { fill: #fff; }
.footer-top p { max-width: 560px; margin: 0; color: rgba(255,255,255,.55); font: 500 clamp(1.3rem, 2.5vw, 2.1rem)/1.45 var(--font-heading); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-block: 56px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid span { margin-bottom: 8px; color: var(--gold-bright); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { width: fit-content; color: rgba(255,255,255,.62); font-size: .85rem; text-decoration: none; transition: color .2s ease; }
.footer-grid a:hover { color: #fff; }
.footer-contact a { word-break: break-word; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .7rem; }
.footer-bottom a { color: inherit; text-decoration: none; }

.whatsapp-dock { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 16px; background: #1b9a59; color: #fff; border-radius: 4px; box-shadow: 0 16px 34px rgba(13,28,46,.2); font-size: .76rem; font-weight: 700; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s ease; }
.whatsapp-dock:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(13,28,46,.26); }
.whatsapp-dock svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

html.motion-ready .reveal, html.motion-ready .stagger > * { opacity: 0; transform: translateY(18px); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: .68rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 1; }
  .service-card-gold { grid-column: 1 / -1; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .quote-featured { grid-column: 1 / -1; }
  .pricing { grid-template-columns: 1fr; }
  .pricing-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; }
  .faq { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; height: 70px; padding-inline: 20px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .page-story { left: 10px; bottom: 10px; grid-template-columns: auto; padding-inline: 11px; }
  .page-story-current { min-width: 130px; }
  .page-story-current strong { max-width: 108px; }
  .page-story-track { display: none; }
  .page-story small { display: none; }
  .asm-rail, .asm-stage-meta { display: none; }
  .section-shell { width: min(calc(100% - 36px), var(--site-max)); }
  .statement-copy, .section-heading, .process, .standards, .faq { grid-template-columns: 1fr; }
  .statement-detail { max-width: 580px; }
  .process { gap: 60px; }
  .process-intro, .faq-heading { position: static; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-visual { min-height: 520px; }
  .price-panel { max-width: 700px; }
  .pricing-heading { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-rail { grid-template-columns: 1fr; gap: 14px; }
  .trust-rail-items { overflow: hidden; justify-content: flex-start; }
}

@media (max-width: 767px) {
  .continuum-content > section[data-story-index]:not(.trust-rail)::after { display: none; }
  .asm-orbit-a { width: 320px; left: -210px; }
  .asm-orbit-b { width: 220px; right: -150px; }
  .asm--static .asm-stage { min-height: 100svh; padding-top: 112px; }
  .asm--static .asm-copy { width: min(96%, 620px); }
  .asm--static .asm-grid { opacity: .35; }
  .trust-rail-items span:nth-of-type(n+4), .trust-rail-items i:nth-of-type(n+4) { display: none; }
  .statement { padding-block: 92px; }
  .display-title { font-size: clamp(3.1rem, 15vw, 5.4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-card-gold { grid-column: auto; min-height: 300px; }
  .process-track { padding-left: 18px; }
  .process-step { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; min-height: 250px; }
  .step-count { width: 48px; height: 48px; }
  .process-step h3 { font-size: clamp(1.75rem, 9vw, 2.35rem); overflow-wrap: anywhere; }
  .process-step p { overflow-wrap: anywhere; }
  .metric { min-height: 160px; padding: 20px; }
  .metric strong { font-size: clamp(3.3rem, 15vw, 5rem); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote-featured { grid-column: auto; }
  .quote { min-height: 290px; }
  .price-panel { grid-template-columns: 1fr; }
  .faq-list summary { grid-template-columns: 38px 1fr 22px; min-height: 86px; }
  .faq-list details p { margin-left: 48px; }
  .closing-cta { min-height: 620px; }
}

@media (max-width: 540px) {
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 1.15rem; }
  .section-heading h2, .process-intro h2, .results-heading h2, .standards-copy h2, .pricing-heading h2, .faq-heading h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .trust-rail { min-height: 100px; }
  .trust-rail-items { gap: 14px; font-size: 1rem; }
  .trust-rail-items span:nth-of-type(n+3), .trust-rail-items i:nth-of-type(n+3) { display: none; }
  .standards-visual { min-height: 430px; }
  .document-card { width: 78%; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 18px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .whatsapp-dock span { display: none; }
  .whatsapp-dock { width: 50px; padding: 0; justify-content: center; border-radius: 50%; }
  .page-story { bottom: 12px; max-width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html.motion-ready .reveal, html.motion-ready .stagger > * { opacity: 1; transform: none; }
}

/* ===========================================================================
   CONTINUOUS PAGE STORY
   The document assembled in the hero becomes one persistent artifact. It stays
   sticky behind every chapter, changes purpose with the content, and resolves
   as the AssignPro mark inside the footer.
   ========================================================================== */
.story-continuum {
  position: relative;
  isolation: isolate;
  background: var(--paper);
  --journey-surface: #f6f2e9;
  --journey-grid: rgba(30,58,95,.055);
  --journey-route: rgba(30,58,95,.14);
  --journey-copy: var(--navy);
}
.journey-stage {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 32%, rgba(184,119,47,.12), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(30,58,95,.08), transparent 32%),
    var(--journey-surface);
  color: var(--journey-copy);
  transition: background 1s ease, color .8s ease;
}
.story-continuum[data-journey-theme="dark"] {
  --journey-surface: #0d1c2e;
  --journey-grid: rgba(255,255,255,.045);
  --journey-route: rgba(255,255,255,.14);
  --journey-copy: #fff;
}
.story-continuum[data-journey-theme="dark"] .journey-stage {
  background:
    radial-gradient(circle at 72% 28%, rgba(184,119,47,.18), transparent 27%),
    radial-gradient(circle at 18% 76%, rgba(49,85,126,.38), transparent 34%),
    var(--journey-surface);
}
.story-continuum[data-journey-theme="dark"] .journey-route-fill {
  stroke: #e4ad64;
  filter: drop-shadow(0 0 10px rgba(228,173,100,.44));
}
body.story-ending .site-progress span,
.page-story.is-dark .page-story-track i {
  background: #e4ad64;
  box-shadow: 0 0 8px rgba(228,173,100,.42);
}
.continuum-content { position: relative; z-index: 1; margin-top: -100svh; }
.continuum-content > section, .continuum-content > footer { position: relative; }
.story-continuum .results,
.story-continuum .closing-cta,
.story-continuum .site-footer { background: transparent; }

.journey-field { position: absolute; inset: 0; background-image: linear-gradient(var(--journey-grid) 1px, transparent 1px), linear-gradient(90deg, var(--journey-grid) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent); transition: background-image .8s ease; }
.journey-route { position: absolute; inset: -2%; width: 104%; height: 104%; overflow: visible; }
.journey-route path { fill: none; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.journey-route-base { stroke: var(--journey-route); stroke-width: 1.2; stroke-dasharray: 2 8; transition: stroke .8s ease; }
.journey-route-fill { stroke: var(--gold); stroke-width: 2.2; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 8px rgba(184,119,47,.35)); transition: stroke .8s ease, filter .8s ease, opacity .55s ease; }
.journey-orbit { position: absolute; border: 1px solid rgba(184,119,47,.22); border-radius: 50%; transition: border-color .8s ease; }
.journey-orbit::before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 9px rgba(184,119,47,.1); }
.journey-orbit-a { width: clamp(320px, 38vw, 620px); aspect-ratio: 1; right: -16vw; top: -18vw; }
.journey-orbit-a::before { left: 12%; bottom: 22%; }
.journey-orbit-b { width: clamp(220px, 26vw, 420px); aspect-ratio: 1; left: -10vw; bottom: -12vw; border-style: dashed; }
.journey-orbit-b::before { right: 12%; top: 22%; }
.story-continuum[data-journey-theme="dark"] .journey-orbit { border-color: rgba(215,163,93,.2); }

.journey-word { position: absolute; left: 3vw; bottom: -3vw; color: currentColor; font: 500 clamp(6rem, 15vw, 14rem)/.8 var(--font-heading); letter-spacing: -.075em; opacity: .025; text-transform: uppercase; white-space: nowrap; transition: color .8s ease; }
.journey-caption { position: absolute; left: clamp(24px, 4vw, 64px); bottom: 30px; display: flex; flex-direction: column; gap: 3px; color: currentColor; text-transform: uppercase; }
.journey-caption span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .16em; }
.journey-caption strong { font-size: .68rem; letter-spacing: .12em; }

.journey-artifact { position: absolute; left: 50%; top: 50%; z-index: 2; width: clamp(280px, 28vw, 410px); margin: 0; transform: translate(-50%,-50%); will-change: transform; }
.journey-sheet { position: relative; width: 100%; aspect-ratio: .77; padding: clamp(24px, 2.7vw, 38px); overflow: hidden; background: rgba(255,253,250,.96); color: var(--navy); border: 1px solid rgba(30,58,95,.13); border-radius: 2px; box-shadow: 0 44px 100px rgba(13,28,46,.2), 0 8px 24px rgba(13,28,46,.1); transform: rotate(-3deg); transform-origin: center; transition: width .8s var(--ease), aspect-ratio .8s var(--ease), border-radius .8s var(--ease), background .8s ease, color .8s ease, transform .9s var(--ease), box-shadow .8s ease; }
.journey-sheet::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 54%, rgba(184,119,47,.08)); pointer-events: none; }
.journey-sheet-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.journey-sheet-top span { display: grid; place-items: center; width: 38px; height: 38px; background: var(--navy); color: #fff; font: 600 .95rem var(--font-heading); }
.journey-sheet-top i { color: var(--gold); font-size: .59rem; font-style: normal; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.journey-sheet-title { position: relative; z-index: 2; display: block; max-width: 9ch; margin-top: 34px; font: 600 clamp(2.15rem, 3.3vw, 3.7rem)/.96 var(--font-heading); letter-spacing: -.05em; transition: opacity .35s ease, transform .55s var(--ease); }
.journey-lines { position: relative; z-index: 2; display: grid; gap: 11px; margin-top: 34px; transition: opacity .35s ease, transform .55s var(--ease); }
.journey-lines i { display: block; height: 5px; background: #dfe5eb; }
.journey-lines i:nth-child(2) { width: 84%; }
.journey-lines i:nth-child(3) { width: 93%; }
.journey-lines i:nth-child(4) { width: 62%; }
.journey-subjects, .journey-checklist, .journey-score, .journey-price, .journey-chat, .journey-endmark { position: absolute; z-index: 3; opacity: 0; pointer-events: none; transition: opacity .45s ease, transform .7s var(--ease); }
.journey-subjects { left: clamp(24px, 2.7vw, 38px); right: clamp(24px, 2.7vw, 38px); bottom: 80px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; transform: translateY(14px); }
.journey-subjects span { display: grid; place-items: center; min-height: 34px; border: 1px solid rgba(30,58,95,.16); color: var(--navy); font-size: .56rem; font-weight: 800; letter-spacing: .12em; }
.journey-checklist { left: clamp(24px, 2.7vw, 38px); right: clamp(24px, 2.7vw, 38px); top: 44%; display: grid; gap: 12px; transform: translateY(14px); }
.journey-checklist span { display: flex; align-items: center; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); color: var(--navy); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.journey-checklist i { position: relative; width: 20px; height: 20px; border: 1px solid var(--gold); border-radius: 50%; }
.journey-checklist i::after { content: ""; position: absolute; left: 6px; top: 3px; width: 5px; height: 9px; border: solid var(--gold); border-width: 0 1px 1px 0; transform: rotate(45deg); }
.journey-score, .journey-price { inset: 42% 0 auto; display: flex; flex-direction: column; align-items: center; transform: translateY(14px); text-align: center; }
.journey-score b, .journey-price b { color: var(--navy); font: 500 clamp(5rem, 8vw, 7.5rem)/.75 var(--font-heading); letter-spacing: -.08em; }
.journey-score span, .journey-price small, .journey-price span { margin-top: 18px; color: var(--gold); font-size: .61rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.journey-price b { margin-top: 16px; }
.journey-price b sup { font-size: .32em; vertical-align: top; }
.journey-price span { margin-top: 14px; }
.journey-chat { left: clamp(24px, 2.7vw, 38px); right: clamp(24px, 2.7vw, 38px); top: 45%; display: grid; gap: 13px; transform: translateY(14px); }
.journey-chat i { display: block; height: 42px; border: 1px solid rgba(30,58,95,.14); background: var(--paper); border-radius: 0 14px 14px 14px; }
.journey-chat i:nth-child(2) { width: 78%; margin-left: auto; background: var(--navy); border-radius: 14px 0 14px 14px; }
.journey-chat i:nth-child(3) { width: 62%; }
.journey-stamp { position: absolute; right: clamp(24px, 2.7vw, 38px); bottom: clamp(24px, 2.7vw, 38px); z-index: 4; padding: 8px 12px; border: 1px solid var(--gold); color: var(--gold); font-size: .58rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transform: rotate(-7deg); transition: transform .65s var(--ease), color .4s ease, border-color .4s ease; }
.journey-endmark { inset: 0; display: none; place-items: center; color: #fff; font: 600 4.4rem/1 var(--font-heading); transform: scale(.72) rotate(-8deg); }
.journey-endmark span { color: var(--navy-deep); }
.journey-pen, .journey-cap { position: absolute; z-index: 5; height: auto; opacity: 0; filter: drop-shadow(0 18px 24px rgba(13,28,46,.2)); transition: opacity .5s ease, transform .9s var(--ease); }
.journey-pen { width: 62%; right: -22%; bottom: 17%; transform: translateX(30px) rotate(-20deg); }
.journey-cap { width: 62%; left: 19%; top: -22%; transform: translateY(-28px) rotate(-5deg); }

.story-continuum[data-journey-state="03"] .journey-sheet { transform: rotate(2deg); }
.story-continuum[data-journey-state="03"] .journey-lines i { background: linear-gradient(90deg, var(--gold) 0 18%, #dfe5eb 18%); }
.story-continuum[data-journey-state="04"] .journey-sheet { transform: rotate(4deg); }
.story-continuum[data-journey-state="04"] .journey-lines { opacity: .22; transform: translateY(-8px); }
.story-continuum[data-journey-state="04"] .journey-subjects { opacity: 1; transform: translateY(0); }
.story-continuum[data-journey-state="05"] .journey-lines { opacity: 0; transform: translateY(-10px); }
.story-continuum[data-journey-state="05"] .journey-checklist { opacity: 1; transform: translateY(0); }
.story-continuum[data-journey-state="05"] .journey-pen { opacity: 1; transform: translateX(0) rotate(-13deg); }
.story-continuum[data-journey-state="06"] .journey-sheet-title,
.story-continuum[data-journey-state="06"] .journey-lines { opacity: 0; transform: translateY(-12px); }
.story-continuum[data-journey-state="06"] .journey-score { opacity: 1; transform: translateY(0); }
.story-continuum[data-journey-state="07"] .journey-sheet { transform: rotate(-5deg); }
.story-continuum[data-journey-state="07"] .journey-stamp { color: #167a54; border-color: #167a54; transform: rotate(-4deg) scale(1.08); }
.story-continuum[data-journey-state="07"] .journey-pen { opacity: 1; transform: translateX(0) rotate(-8deg); }
.story-continuum[data-journey-state="08"] .journey-sheet-title,
.story-continuum[data-journey-state="08"] .journey-lines { opacity: 0; transform: translateY(-12px); }
.story-continuum[data-journey-state="08"] .journey-price { opacity: 1; transform: translateY(0); }
.story-continuum[data-journey-state="09"] .journey-sheet-title,
.story-continuum[data-journey-state="09"] .journey-lines { opacity: 0; transform: translateY(-12px); }
.story-continuum[data-journey-state="09"] .journey-chat { opacity: 1; transform: translateY(0); }
.story-continuum[data-journey-state="10"] .journey-sheet { transform: rotate(0deg) scale(.88); }
.story-continuum[data-journey-state="10"] .journey-cap { opacity: 1; transform: translateY(0) rotate(0); }
.story-continuum[data-journey-state="10"] .journey-stamp { transform: rotate(0) scale(1.12); }
.story-continuum[data-journey-state="11"] .journey-sheet { width: 150px; aspect-ratio: 1; margin-inline: auto; padding: 0; border: 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 20px rgba(184,119,47,.11), 0 34px 90px rgba(0,0,0,.25); transform: rotate(0); }
.story-continuum[data-journey-state="11"] .journey-sheet > *:not(.journey-endmark) { opacity: 0; }
.story-continuum[data-journey-state="11"] .journey-endmark { display: grid; opacity: 1; transform: scale(1) rotate(0); }
.story-continuum[data-journey-state="11"] .journey-caption { opacity: 0; }
.story-continuum[data-journey-state="11"] .journey-route-fill { opacity: 0; filter: none; }

@media (min-width: 821px) {
  .continuum-content > section:not(.trust-rail) { min-height: 112svh; }
  .statement { min-height: 116svh !important; display: flex; flex-direction: column; justify-content: center; padding-right: min(42vw, 540px); }
  .statement-copy { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  .statement-detail { max-width: 46ch; }
  .display-title { font-size: clamp(3.4rem, 6.4vw, 7rem); }

  .expertise { min-height: 168svh !important; padding: 14svh 0 12svh min(38vw, 500px); }
  .expertise .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .expertise .section-heading p { max-width: 56ch; }
  .expertise .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .expertise .service-card { min-height: 300px; }
  .expertise .service-card-wide { grid-column: span 2; }
  .expertise .service-card-gold { grid-column: 1 / -1; }

  .process { min-height: 156svh !important; grid-template-columns: 1fr; gap: 60px; align-content: center; padding: 14svh min(39vw, 520px) 14svh 0; }
  .process-intro { position: static; max-width: 650px; }
  .process-track { max-width: 760px; }

  .results { min-height: 176svh !important; }
  .results-inner { width: min(calc(100% - 48px), var(--site-max)); margin-inline: auto; padding: 16svh 0 14svh min(38vw, 500px); }
  .results .metric-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom: 54px; }
  .results .testimonial-grid { grid-template-columns: 1fr; }
  .results .quote, .results .quote-featured { min-height: 260px; grid-column: auto; }

  .standards { min-height: 130svh !important; grid-template-columns: min(38vw, 500px) minmax(0,1fr); align-content: center; }
  .standards-visual { min-height: 560px; visibility: hidden; background: transparent; }
  .standards-copy { max-width: 650px; }

  .pricing { min-height: 136svh !important; grid-template-columns: 1fr; align-content: center; padding: 14svh min(37vw, 500px) 14svh 0; }
  .pricing-heading { display: block; max-width: 650px; }
  .price-panel { max-width: 760px; }

  .faq { min-height: 150svh !important; grid-template-columns: 1fr; align-content: center; padding: 14svh 0 14svh min(38vw, 500px); }
  .faq-heading { position: static; }
  .faq-list { max-width: 760px; }

  .closing-cta { min-height: 150svh !important; justify-content: flex-start; padding: max(580px, 68vh) 24px 15svh; }
  .closing-cta h2 { font-size: clamp(4.8rem, 7.2vw, 7.4rem); }
  .closing-cta::before { content: ""; position: absolute; left: 0; right: 0; top: max(572px, calc(68vh - 8px)); bottom: 0; z-index: 1; background: var(--navy-deep); border-top: 1px solid rgba(215,163,93,.16); }
  .closing-cta > .eyebrow { position: relative; z-index: 2; }
  .site-footer { min-height: 105svh; padding-top: 42svh; }
}

@media (max-width: 820px) {
  .journey-field { background-size: 44px 44px; }
  .journey-route { inset: 0; width: 100%; height: 100%; opacity: .72; }
  .journey-orbit-a { width: 260px; right: -150px; top: 80px; }
  .journey-orbit-b { width: 210px; left: -135px; bottom: 80px; }
  .journey-word { left: 10px; bottom: 10px; font-size: 22vw; }
  .journey-caption { left: 14px; top: 86px; bottom: auto; gap: 1px; }
  .journey-caption strong { max-width: 26ch; font-size: .59rem; }
  .journey-artifact { width: clamp(205px, 58vw, 270px); }
  .journey-sheet { padding: 20px; }
  .journey-sheet-top { padding-bottom: 12px; }
  .journey-sheet-top span { width: 32px; height: 32px; font-size: .8rem; }
  .journey-sheet-top i { font-size: .48rem; }
  .journey-sheet-title { margin-top: 18px; font-size: clamp(1.7rem, 7.4vw, 2.15rem); line-height: .93; }
  .journey-lines { gap: 8px; margin-top: 22px; }
  .journey-lines i { height: 4px; }
  .journey-subjects { left: 20px; right: 20px; bottom: 55px; gap: 5px; }
  .journey-subjects span { min-height: 27px; font-size: .46rem; }
  .journey-checklist { left: 20px; right: 20px; top: 49%; gap: 7px; }
  .journey-checklist span { gap: 8px; padding-bottom: 6px; font-size: .53rem; }
  .journey-checklist i { width: 17px; height: 17px; }
  .journey-checklist i::after { left: 5px; top: 2px; }
  .journey-score b, .journey-price b { font-size: clamp(4.2rem, 21vw, 5.8rem); }
  .journey-chat { left: 20px; right: 20px; gap: 8px; }
  .journey-chat i { height: 32px; }
  .journey-stamp { right: 20px; bottom: 20px; font-size: .48rem; }
  .journey-pen { width: 68%; right: -28%; }
  .journey-cap { width: 68%; left: 16%; }
  .story-continuum[data-journey-state="11"] .journey-sheet {
    width: 64px;
    box-shadow: 0 0 0 8px rgba(184,119,47,.12), 0 14px 34px rgba(0,0,0,.22);
  }
  .story-continuum[data-journey-state="11"] .journey-endmark {
    grid-template-rows: repeat(2, max-content);
    align-content: center;
    justify-items: center;
    row-gap: 1px;
    font-size: 1.85rem;
    line-height: .72;
  }
  .story-continuum[data-journey-state="11"] .journey-artifact::before { opacity: 0; }

  .continuum-content > section:not(.trust-rail) { min-height: 100svh; width: min(calc(100% - 28px), var(--site-max)); margin-inline: auto; padding-top: clamp(320px, 45svh, 390px); padding-bottom: 84px; }
  .continuum-content > .results, .continuum-content > .closing-cta { width: 100%; margin-inline: 0; padding-inline: 14px; }
  .statement { display: block; }
  .statement-copy, .section-heading, .process, .standards, .pricing, .faq { display: grid; grid-template-columns: minmax(0,1fr); gap: 34px; }
  .statement-copy { margin-top: 20px; }
  .display-title { max-width: 12ch; font-size: clamp(3rem, 13vw, 4.5rem); }
  .statement-detail p { font-size: .94rem; }
  .statement-rule { margin-top: 48px; }

  .expertise .section-heading { margin-bottom: 36px; }
  .expertise .service-grid { grid-template-columns: 1fr; border-left: 0; }
  .expertise .service-card, .expertise .service-card-gold { grid-column: auto; min-height: 220px; padding: 22px; border-left: 1px solid var(--line); background: rgba(255,253,250,.82); backdrop-filter: blur(10px); }
  .expertise .service-card-gold { background: rgba(30,58,95,.94); }
  .service-card > svg { width: 46px; height: 46px; }
  .service-card h3 { font-size: clamp(1.65rem, 8vw, 2.15rem); }

  .process { width: min(calc(100% - 28px), var(--site-max)); padding-inline: 0; }
  .process-intro, .faq-heading { position: static; }
  .process-track { padding-left: 0; }
  .process-line { left: 23px; }
  .process-step { grid-template-columns: 48px minmax(0,1fr); gap: 16px; min-height: auto; padding: 12px 0 54px; }
  .process-step + .process-step { padding-top: 48px; }
  .process-step h3 { font-size: clamp(1.9rem, 9vw, 2.55rem); }

  .results-inner { width: 100%; padding: 0; }
  .results-heading { margin-bottom: 38px; }
  .results .metric-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom: 48px; }
  .results .metric { min-width: 0; min-height: 145px; padding: 16px; }
  .results .metric strong { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .results .metric span { overflow-wrap: anywhere; font-size: .58rem; }
  .results .testimonial-grid { grid-template-columns: 1fr; }
  .results .quote, .results .quote-featured { grid-column: auto; min-height: 250px; padding: 24px; }

  .standards-visual { display: none; }
  .standards-copy > p { margin-top: 20px; }
  .standards-copy li { grid-template-columns: 44px minmax(0,1fr); }

  .pricing-heading { display: block; }
  .price-panel { grid-template-columns: 1fr; width: 100%; }
  .price-main, .price-includes { padding: 28px 24px; }
  .price-main strong { font-size: clamp(5rem, 24vw, 7rem); }

  .faq-list summary { grid-template-columns: 32px minmax(0,1fr) 22px; gap: 8px; min-height: 80px; font-size: 1.04rem; }
  .faq-list details p { margin: 0 4px 26px 40px; font-size: .9rem; }

  .closing-cta { min-height: 125svh !important; justify-content: flex-start; padding: max(410px, 55svh) 18px 12svh !important; }
  .closing-cta h2 { font-size: clamp(3.35rem, 15vw, 5rem); }
  .closing-button { width: 100%; justify-content: space-between; }
  .site-footer { min-height: 110svh; padding: 48svh 18px 24px; }
  .footer-top { gap: 24px; padding-bottom: 38px; }
  .footer-top p { font-size: 1.22rem; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 18px; padding-block: 40px; }
  .footer-grid a { overflow-wrap: anywhere; }
}

@media (max-width: 767px) {
  .asm--static .asm-stage { min-height: auto; display: block; padding: 104px 14px 30px; }
  .asm--static .asm-copy { width: 100%; margin: 0; text-align: left; }
  .asm--static .asm-scene h2 { max-width: 8.5ch; font-size: clamp(3.2rem, 15vw, 4.5rem); line-height: .91; }
  .asm--static .asm-scene p { max-width: 34ch; margin: 16px 0 0; font-size: .94rem; line-height: 1.55; }
  .asm--static .asm-objects { position: relative; inset: auto !important; display: block; width: 100%; height: 260px; margin: 28px 0 14px; overflow: hidden; border: 1px solid rgba(30,58,95,.1); border-radius: 3px; background: radial-gradient(circle at 50% 18%, rgba(184,119,47,.2), transparent 28%), rgba(255,253,250,.62); }
  .asm--static .obj[data-obj="cap"], .asm--static .obj[data-obj="laptop"] { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; }
  .asm--static .obj[data-obj="cap"] { top: 16px !important; width: min(42vw, 170px); margin: 0; }
  .asm--static .obj[data-obj="laptop"] { top: 94px !important; width: min(74vw, 300px); }
  .asm--static .asm-badges { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; width: 100%; margin-top: 0; }
  .asm--static .asm-badge { width: 100%; }
  .asm--static .asm-badge:last-child { grid-column: 1 / -1; width: calc(50% - 4px); justify-self: center; }
  .asm--static .asm-cta { width: 100%; margin-top: 18px; }
  .asm--static .asm-cta .asm-cta-btn { width: 100%; justify-content: center; padding: 15px 16px; font-size: .92rem; }
  .asm--static .asm-cta .asm-cta-sub { margin-top: 10px; font-size: .72rem; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-route-fill { stroke-dashoffset: .18; }
  .journey-artifact { transform: none !important; }
}

/* Mobile is a separate editorial composition, not a compressed desktop page. */
@media (max-width: 820px) {
  .whatsapp-dock { display: none; }
  .journey-caption { top: 80px; }
  .journey-caption strong { opacity: .78; }
  .journey-word { display: none; }
  .journey-orbit { opacity: .58; }
  .journey-route-base { opacity: .5; }

  /* On mobile the sticky artifact (light sheet + dark laptop) briefly sits
     behind a section's heading as it scrolls up, before the opaque paper
     backing slides in. A paper-coloured halo keeps these navy/gold headings
     legible during that transient; it is invisible once they reach solid
     paper. Scoped to the light sections only — the dark results/closing-cta
     headings are white and paint their own opaque backing. */
  .statement .eyebrow, .statement .display-title,
  .expertise .eyebrow, .expertise h2,
  .process .eyebrow, .process h2,
  .standards .eyebrow, .standards h2,
  .pricing .eyebrow, .pricing h2,
  .faq .eyebrow, .faq h2 {
    text-shadow: 0 0 12px var(--paper), 0 0 26px var(--paper), 0 1px 2px var(--paper);
  }

  .continuum-content > section:not(.trust-rail) {
    width: 100%;
    margin-inline: 0;
    padding: max(400px, 50svh) 14px 84px;
    background: linear-gradient(to bottom, transparent 0 340px, rgba(246,242,233,.94) 420px, var(--paper) 520px);
  }
  .continuum-content > section.results,
  .continuum-content > section.closing-cta {
    background: linear-gradient(to bottom, transparent 0 340px, rgba(13,28,46,.94) 420px, var(--navy-deep) 520px);
  }
  .continuum-content > .process,
  .continuum-content > .pricing,
  .continuum-content > .faq,
  .continuum-content > .standards { width: 100%; padding-inline: 14px; }

  .section-heading h2, .process-intro h2, .results-heading h2, .standards-copy h2, .pricing-heading h2, .faq-heading h2 { font-size: clamp(2.8rem, 12vw, 3.75rem); }
  .display-title { font-size: clamp(2.95rem, 12.5vw, 4rem); }
  .section-heading p, .process-intro p, .pricing-heading p, .standards-copy > p { font-size: .93rem; line-height: 1.7; }

  .expertise .service-grid {
    display: flex;
    gap: 10px;
    width: calc(100% + 14px);
    margin-right: -14px;
    padding: 0 14px 14px 0;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .expertise .service-grid::-webkit-scrollbar,
  .results .testimonial-grid::-webkit-scrollbar { display: none; }
  .expertise .service-card,
  .expertise .service-card-wide,
  .expertise .service-card-gold {
    flex: 0 0 min(82vw, 310px);
    min-height: 250px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .results .testimonial-grid {
    display: flex;
    gap: 10px;
    width: calc(100% + 14px);
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .results .quote,
  .results .quote-featured {
    flex: 0 0 min(86vw, 326px);
    min-height: 270px;
    scroll-snap-align: start;
  }

  .closing-cta { padding: max(430px, 56svh) 18px 12svh !important; }
  .site-footer { padding-top: max(430px, 54svh); }
  .site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: max(422px, calc(54svh - 8px)); bottom: 0; z-index: 1; background: var(--navy-deep); border-top: 1px solid rgba(215,163,93,.14); }
  .footer-top, .footer-grid, .footer-bottom { position: relative; z-index: 2; }
}

@media (max-width: 767px) {
  .asm--static .asm-stage { padding: 94px 14px 26px; }
  .asm--static .asm-scene h2 { font-size: clamp(3rem, 14vw, 4.15rem); }
  .asm--static .asm-scene p { margin-top: 14px; }
  .asm--static .asm-objects { height: 220px; margin: 20px 0 12px; }
  .asm--static .obj[data-obj="cap"] { top: 8px !important; width: min(38vw, 150px); }
  .asm--static .obj[data-obj="laptop"] { top: 76px !important; width: min(68vw, 270px); }
  .asm--static .asm-badges { display: none; }
  .asm--static .asm-mobile-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .asm-mobile-proof span { min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 2px; min-height: 62px; padding: 8px; border-right: 1px solid var(--line); }
  .asm-mobile-proof span:last-child { border-right: 0; }
  .asm-mobile-proof strong { color: var(--navy); font: 600 .82rem/1.1 var(--font-heading); overflow-wrap: anywhere; }
  .asm-mobile-proof small { color: var(--muted); font-size: .48rem; font-weight: 700; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
  .asm--static .asm-cta { margin-top: 14px; }

  .trust-rail {
    min-height: auto;
    gap: 12px;
    padding: 20px 18px 22px;
  }
  .trust-rail > p {
    max-width: 30ch;
    font-size: .59rem;
    line-height: 1.5;
    white-space: normal;
  }
  .trust-rail-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    overflow: visible;
    font-size: .98rem;
    line-height: 1.25;
    white-space: normal;
  }
  .trust-rail .trust-rail-items span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .trust-rail-items i { display: none; }
}

@media (max-width: 340px) {
  .footer-contact { grid-column: 1 / -1; }
  .footer-contact a { overflow-wrap: normal; word-break: normal; }
}

/* Desktop production polish: stronger chrome, quieter depth and a compact
   chapter HUD that stays clear of the editorial content column. */
@media (min-width: 821px) {
  body { text-rendering: optimizeLegibility; }
  .site-header { padding-inline: clamp(32px, 4vw, 72px); }
  .site-header.is-scrolled {
    background: rgba(248, 245, 238, .94);
    border-color: rgba(30, 58, 95, .12);
    box-shadow: 0 14px 42px rgba(13, 28, 46, .075);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    backdrop-filter: blur(20px) saturate(125%);
  }
  .brand, .header-cta { min-width: max-content; white-space: nowrap; }
  .brand-mark { transition: transform .35s var(--ease); }
  .brand:hover .brand-mark { transform: rotate(-3deg) scale(1.035); }
  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #465269;
    transition: color .22s ease;
  }
  .desktop-nav a:hover, .desktop-nav a.is-active { color: var(--navy); }
  .header-cta {
    border-radius: 3px;
    box-shadow: 0 10px 24px rgba(30, 58, 95, .16);
  }
  .header-cta span { transition: transform .25s var(--ease); }
  .header-cta:hover { box-shadow: 0 14px 30px rgba(30, 58, 95, .14); }
  .header-cta:hover span { transform: translate(3px, -3px); }

  .asm-stage::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 29%;
    right: 29%;
    bottom: 8%;
    height: 18%;
    background: radial-gradient(ellipse, rgba(30, 58, 95, .16), transparent 68%);
    filter: blur(22px);
    opacity: .46;
    pointer-events: none;
  }
  .obj img { filter: drop-shadow(0 30px 44px rgba(15, 31, 51, .22)); }
  .asm-scene p { color: #5e6878; }

  .journey-caption {
    z-index: 4;
    left: clamp(18px, 2.2vw, 34px);
    bottom: 34px;
    width: 112px;
    gap: 5px;
    padding: 11px 6px 11px 13px;
    border-left: 1px solid rgba(184, 119, 47, .6);
    background: linear-gradient(90deg, rgba(246, 242, 233, .78), rgba(246, 242, 233, 0));
  }
  .journey-caption span { font-size: .58rem; letter-spacing: .18em; }
  .journey-caption strong {
    max-width: 18ch;
    color: rgba(30, 58, 95, .7);
    font-size: .59rem;
    line-height: 1.45;
  }
  .story-continuum[data-journey-theme="dark"] .journey-caption {
    background: linear-gradient(90deg, rgba(13, 28, 46, .8), rgba(13, 28, 46, 0));
  }
  .story-continuum[data-journey-theme="dark"] .journey-caption strong { color: rgba(255, 255, 255, .72); }
  .journey-artifact { pointer-events: none; }
  .journey-artifact::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 12%;
    right: 12%;
    bottom: -34px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(13, 28, 46, .3), transparent 70%);
    filter: blur(12px);
    opacity: .58;
  }
  .journey-sheet { box-shadow: 0 48px 110px rgba(13, 28, 46, .22), 0 10px 26px rgba(13, 28, 46, .11); }
  .journey-checklist { top: 49%; }
  .journey-route-fill { filter: drop-shadow(0 0 5px rgba(184, 119, 47, .28)); }

  .section-heading p,
  .process-intro p,
  .process-step p,
  .standards-copy > p,
  .pricing-heading p,
  .faq-list details p { color: #5c687a; text-wrap: pretty; }
}

/* Desktop interaction polish: all feedback is paint/transform based so cards
   feel responsive without moving neighbouring content. */
@media (min-width: 821px) {
  .text-link { min-height: 44px; }

  .service-card {
    isolation: isolate;
    top: 0;
    transition: color .3s ease, background .3s ease, border-color .3s ease,
      box-shadow .35s ease, top .35s var(--ease);
  }
  .service-card::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 26px;
    right: 26px;
    top: 0;
    height: 2px;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
  }
  .service-card:hover {
    z-index: 2;
    top: -4px;
    border-color: rgba(184, 119, 47, .42);
    box-shadow: 0 24px 58px rgba(13, 28, 46, .14);
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-card > svg { transition: transform .4s var(--ease); }
  .service-card:hover > svg { transform: translateY(-4px); }

  .process-step { position: relative; transition: background .3s ease; }
  .process-step::after {
    content: "";
    position: absolute;
    left: -34px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .45s var(--ease);
  }
  .process-step:hover::after { transform: scaleY(1); }
  .step-count { transition: color .25s ease, background .25s ease, border-color .25s ease; }
  .process-step:hover .step-count { border-color: var(--navy); background: var(--navy); color: #fff; }

  .metric { position: relative; overflow: hidden; background: rgba(255, 255, 255, .015); transition: background .3s ease; }
  .metric::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-bright);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s var(--ease);
  }
  .metric:hover { background: rgba(255, 255, 255, .055); }
  .metric:hover::before { transform: scaleY(1); }
  .metric span { color: rgba(255, 255, 255, .68); }

  .quote {
    position: relative;
    top: 0;
    transition: border-color .3s ease, background .3s ease, box-shadow .35s ease,
      top .35s var(--ease);
  }
  .quote:hover {
    top: -3px;
    border-color: rgba(215, 163, 93, .28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
  }
  .quote:not(.quote-featured):hover { background: rgba(255, 255, 255, .075); }

  .standards-copy li { padding-inline: 12px; transition: background .25s ease; }
  .standards-copy li:hover { background: rgba(255, 253, 250, .58); }
  .price-panel { border-color: rgba(30, 58, 95, .19); box-shadow: 0 36px 86px rgba(30, 58, 95, .12); }
  .price-main a span { transition: transform .25s var(--ease); }
  .price-main a:hover { color: var(--gold-bright); }
  .price-main a:hover span { transform: translate(3px, -3px); }

  .faq-list details { transition: background .28s ease; }
  .faq-list details:hover, .faq-list details[open] { background: rgba(255, 253, 250, .5); }
  .faq-list summary { padding-inline: 18px; }
  .faq-list details p { margin-right: 52px; margin-left: 76px; }
  .faq-list summary svg { padding: 3px; border: 1px solid transparent; border-radius: 50%; }
  .faq-list details[open] summary svg { border-color: rgba(184, 119, 47, .35); }

  .closing-button { top: 0; transition: background .25s ease, top .25s var(--ease); }
  .closing-button:hover { top: -3px; }
  .closing-button span { transition: transform .25s var(--ease); }
  .closing-button:hover span { transform: translate(3px, -3px); }
  .whatsapp-dock {
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: #158b55;
    box-shadow: 0 16px 36px rgba(13, 28, 46, .2);
    transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease), box-shadow .25s ease;
  }
  body.story-ending .whatsapp-dock { visibility: hidden; opacity: 0; transform: translateY(12px); pointer-events: none; }
  .footer-grid a { transition: color .2s ease, transform .2s var(--ease); }
  .footer-grid a:hover { transform: translateX(3px); }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .journey-sheet { padding: 26px; }
  .journey-sheet-top { padding-bottom: 14px; }
  .journey-sheet-title { margin-top: 24px; font-size: 1.95rem; line-height: .93; }
  .journey-checklist { left: 26px; right: 26px; top: 49%; gap: 7px; }
  .journey-checklist span { gap: 9px; padding-bottom: 6px; font-size: .57rem; }
  .journey-checklist i { width: 17px; height: 17px; }
  .journey-checklist i::after { left: 5px; top: 2px; }
  .journey-stamp { right: 24px; bottom: 22px; padding: 6px 9px; font-size: .49rem; }
}
