:root {
  --deep-space: #0d1117;
  --electric-cyan: #00d4ff;
  --ember-orange: #ff6b35;
  --signal-gold: #ffb800;
  --cloud-white: #f0f0f0;
  --bg: #0d1117;
  --bg-2: #101720;
  --surface: #121b25;
  --surface-2: #17222e;
  --text: #f0f0f0;
  --muted: #aab5c3;
  --soft: #728094;
  --border: rgba(190, 216, 230, 0.14);
  --border-strong: rgba(0, 212, 255, 0.32);
  --accent-ink: #00d4ff;
  --accent-contrast: #071015;
  --warm-ink: #ff8a5d;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
  --header-bg: rgba(13, 17, 23, 0.82);
  --theme-p: 0;
  --theme-pct: 0%;
  --tone-p: 0;
  --horizon-v: 0vh;
  --horizon-h: 0vw;
  --shade-opacity: 1;
  --grid-opacity: .28;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --reading: 68ch;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  position: relative;
  isolation: isolate;
  background: transparent;
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: color .18s linear;
}
/* Global background follows the drag continuously in both directions. The light layer is
   revealed by the same horizon progress as the photographic theme transition, so transparent
   sections never wait for the committed theme to change. */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
body::before { background: #0d1117; }
body::after {
  z-index: -1;
  background: #f7f3ee;
  clip-path: inset(0 0 calc(100% - var(--theme-pct)) 0);
  will-change: clip-path;
}
body.theme-dragging { cursor: ns-resize; user-select: none; }
@media (max-width: 760px) {
  body.theme-dragging { cursor: ew-resize; }
  body::after { clip-path: inset(0 calc(100% - var(--theme-pct)) 0 0); }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(0,212,255,.26); color: var(--text); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 2000;
  padding: 10px 14px; border-radius: 10px;
  background: var(--text); color: var(--bg);
  transform: translateY(-150%); transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section-tight { padding: clamp(52px, 7vw, 88px) 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px; color: var(--accent-ink); font-size: 12px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
}
.section-label::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 999px; }
.eyebrow {
  margin: 0 0 14px; color: var(--accent-ink); font-size: 12px; font-weight: 850;
  letter-spacing: .18em; text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; color: var(--text); letter-spacing: -.035em; line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(46px, 7.2vw, 92px); font-weight: 820; max-width: 860px; }
h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; max-width: 820px; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 780; }
h4 { font-size: 18px; font-weight: 760; letter-spacing: -.02em; }
p { margin: 0; color: var(--muted); text-wrap: pretty; }
.lede { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.55; max-width: 66ch; color: var(--muted); }
.prose { max-width: var(--reading); }
.prose p + p { margin-top: 18px; }
.accent { color: var(--accent-ink); }
.warm { color: var(--warm-ink); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .02em; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled { background: var(--header-bg); backdrop-filter: blur(18px); border-bottom-color: var(--border); }
.nav-shell { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 30px; height: 30px; color: var(--accent-ink); }
.brand-type { display: grid; gap: 0; line-height: 1; }
.brand-type strong { font-size: 23px; letter-spacing: -.05em; font-weight: 850; color: var(--text); }
.brand-type span { margin-top: 4px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 720; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); margin-left: auto; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 650; transition: color .2s ease; position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent-ink); transition: right .25s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); color: var(--text); align-items: center; justify-content: center; }
.menu-toggle svg { width: 21px; }

.btn {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 760; font-size: 14px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--electric-cyan); outline-offset: 3px; }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--electric-cyan); color: #03151b; box-shadow: 0 10px 28px rgba(0, 212, 255, .16); }
.btn-primary:hover { box-shadow: 0 14px 36px rgba(0, 212, 255, .24); }
.btn-secondary { background: color-mix(in srgb, var(--surface) 78%, transparent); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--border-strong); }
.btn svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: 13px; }

.hero {
  min-height: 780px; display: grid; align-items: stretch; position: relative; overflow: clip;
  background: var(--bg);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-photo.light { clip-path: inset(0 0 calc(100% - var(--theme-pct)) 0); will-change: clip-path; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,9,14,.93) 0%, rgba(4,9,14,.78) 34%, rgba(4,9,14,.27) 61%, rgba(4,9,14,.08) 100%);
  opacity: var(--shade-opacity);
  pointer-events: none;
}
.hero-warm-wash { position: absolute; inset: 0; background: rgba(255,255,255,.08); opacity: var(--theme-p); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: var(--grid-opacity); pointer-events: none; background-image: linear-gradient(rgba(0,212,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,.06) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.7) 45%, transparent 78%); }
.hero-inner { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 80px; display: flex; align-items: center; }
.hero-copy { width: min(720px, 62%); }
.hero h1 { font-size: clamp(52px, 6.9vw, 96px); text-shadow: 0 3px 34px rgba(0,0,0,.18); }
.hero .lede { margin-top: 24px; max-width: 58ch; color: color-mix(in srgb, var(--text) 76%, var(--muted)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; }
.hero-proof-item { display: grid; grid-template-columns: 34px auto; gap: 10px; align-items: center; }
.hero-proof-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(0,212,255,.24); border-radius: 10px; color: var(--electric-cyan); background: rgba(0,212,255,.07); }
.hero-proof-icon svg { width: 17px; }
.hero-proof-item strong { display: block; color: color-mix(in srgb, var(--text) 90%, white); font-size: 13px; }
.hero-proof-item span { display: block; color: color-mix(in srgb, var(--text) 62%, transparent); font-size: 11px; margin-top: 2px; }
.hero-theme-note { position: absolute; right: 96px; bottom: 42px; z-index: 3; max-width: 250px; color: rgba(240,240,240,.8); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.page-hero { padding: 168px 0 84px; border-bottom: 1px solid var(--border); background: var(--bg); position: relative; overflow: clip; }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid var(--border); border-radius: 50%; right: -180px; top: -170px; opacity: .45; }
.page-hero h1 { max-width: 930px; font-size: clamp(48px, 7vw, 88px); }
.page-hero .lede { margin-top: 24px; }
.page-hero .hero-actions { margin-top: 30px; }

.horizon-line { position: fixed; z-index: 1600; left: 0; right: 0; top: var(--horizon-v); height: 1px; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,.36) 10%, rgba(240,240,240,.84) 50%, rgba(255,107,53,.34) 90%, transparent 100%); box-shadow: 0 0 26px rgba(0,212,255,.18); transition: opacity .18s ease; }
.horizon-line::before { content: ""; position: absolute; inset: -24px 0; background: linear-gradient(180deg, transparent, rgba(0,212,255,.055), rgba(255,107,53,.035), transparent); }
body.theme-dragging .horizon-line, body.theme-settling .horizon-line { opacity: 1; }

.theme-rail {
  position: fixed; z-index: 1700; right: 16px; top: 50%; transform: translateY(-50%);
  width: 58px; height: min(62vh, 560px); display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 10px 6px; border: 1px solid var(--border); border-radius: 28px; background: color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter: blur(18px); box-shadow: var(--shadow);
  touch-action: none;
}
.theme-rail-label { color: var(--muted); font-size: 8px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); user-select: none; }
.theme-track { position: relative; width: 22px; flex: 1; border-radius: 999px; background: color-mix(in srgb, var(--surface-2) 86%, transparent); border: 1px solid var(--border); cursor: ns-resize; }
.theme-track::before { content: ""; position: absolute; top: 5px; bottom: 5px; left: 50%; width: 1px; transform: translateX(-50%); background: linear-gradient(var(--electric-cyan), color-mix(in srgb, var(--muted) 30%, transparent), var(--ember-orange)); opacity: .5; }
.theme-handle {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(0,212,255,.55); background: var(--surface); color: var(--accent-ink); box-shadow: 0 10px 24px rgba(0,0,0,.18); display: grid; place-items: center; cursor: grab; touch-action: none;
}
.theme-handle:active { cursor: grabbing; }
.theme-handle svg { width: 17px; transform: rotate(45deg); }
.theme-rail:focus-within { outline: 2px solid var(--electric-cyan); outline-offset: 3px; }

.theme-reactive { position: relative; }
.theme-reactive.is-crossing::after { content: ""; position: absolute; inset: -1px; border: 1px solid rgba(0,212,255,.38); border-radius: inherit; pointer-events: none; animation: trace .5s var(--ease) both; }
@keyframes trace { from { opacity: 0; filter: blur(6px); } 40% { opacity: 1; filter: blur(0); } to { opacity: 0; } }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head p { max-width: 56ch; }

.engine-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.engine-intro { text-align: center; display: grid; place-items: center; margin-bottom: 44px; }
.engine-intro h2 { max-width: 860px; }
.engine-intro p { margin-top: 14px; max-width: 62ch; }
.engine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; }
.engine-card { padding: 26px 22px 28px; min-height: 235px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: 0 12px 36px rgba(0,0,0,.05); transition: transform .25s var(--ease), border-color .25s ease, background .18s linear; overflow: hidden; }
.engine-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.engine-num { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 28px; color: var(--accent-contrast); background: var(--electric-cyan); font-weight: 860; }
.engine-card:nth-child(2) .engine-num { background: #67e6c5; }
.engine-card:nth-child(3) .engine-num { background: #ffd782; }
.engine-card:nth-child(4) .engine-num { background: #ffad8c; }
.engine-card p { margin-top: 10px; font-size: 14px; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(44px, 7vw, 92px); align-items: center; }
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.split.reverse .split-copy { order: 2; }
.split.reverse .visual-pair { order: 1; }
.split-copy .lede { margin-top: 18px; }
.point-list { display: grid; gap: 14px; margin-top: 28px; }
.point { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.point-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); color: var(--accent-ink); }
.point-icon svg { width: 18px; }
.point strong { display: block; font-size: 15px; color: var(--text); }
.point span { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; }
.visual-pair { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface); }
.visual-pair img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visual-pair img.light { clip-path: inset(0 0 calc(100% - var(--theme-pct)) 0); }
.visual-note { position: absolute; left: 18px; bottom: 18px; z-index: 3; padding: 8px 10px; border-radius: 9px; background: rgba(4,9,14,.62); color: white; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card, .proof-card, .article-card, .value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: transform .24s var(--ease), border-color .24s ease, background .18s linear; }
.service-card:hover, .article-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.service-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: rgba(0,212,255,.09); color: var(--accent-ink); border: 1px solid rgba(0,212,255,.18); margin-bottom: 22px; }
.service-icon svg { width: 21px; }
.service-card p, .value-card p { margin-top: 9px; font-size: 14px; }
.service-card a { margin-top: 24px; display: inline-flex; gap: 8px; align-items: center; color: var(--text); font-size: 13px; font-weight: 750; }
.service-card a span { color: var(--accent-ink); }

.industry-strip { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.industry-main { padding: clamp(28px, 5vw, 54px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.industry-main p { margin-top: 18px; max-width: 58ch; }
.industry-side { display: grid; gap: 14px; }
.industry-chip { padding: 22px; border-radius: var(--radius-md); border: 1px solid var(--border); background: var(--surface); }
.industry-chip strong { display: block; color: var(--text); }
.industry-chip span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; border: 1px solid var(--border); background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.metric { padding: 30px 24px; background: var(--bg); min-height: 180px; }
.metric .metric-mark { font-size: 34px; color: var(--accent-ink); margin-bottom: 28px; }
.metric strong { display: block; font-size: 17px; color: var(--text); }
.metric span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.process-step { min-height: 220px; padding: 24px 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.process-step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 42px; color: var(--accent-ink); font: 700 12px/1 ui-monospace, monospace; letter-spacing: .12em; }
.process-step p { margin-top: 8px; font-size: 13px; }

.pricing-band { background: #071018; color: #f0f0f0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.pricing-band h2, .pricing-band h3, .pricing-band h4 { color: #f0f0f0; }
.pricing-band p { color: #9eb0bf; }
.pricing-band .section-label { color: #00d4ff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.price-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.025); min-height: 410px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: #00d4ff; box-shadow: 0 0 0 1px rgba(0,212,255,.18), 0 20px 60px rgba(0,212,255,.06); }
.price-badge { position: absolute; top: -1px; right: 18px; padding: 6px 10px; border-radius: 0 0 9px 9px; background: #00d4ff; color: #03151b; font-size: 10px; font-weight: 850; }
.price-card .tier { color: #9bcfe0; font-weight: 760; }
.price { margin-top: 8px; display: flex; align-items: baseline; gap: 5px; }
.price strong { font-size: 40px; letter-spacing: -.04em; color: #fff; }
.price span { font-size: 12px; color: #97a8b6; }
.price-card .purpose { color: #00d4ff; font-size: 12px; margin-top: 4px; }
.price-features { display: grid; gap: 11px; margin: 24px 0 28px; padding: 0; list-style: none; }
.price-features li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; font-size: 13px; color: #b9c6d0; }
.price-features li::before { content: "✓"; color: #00d4ff; font-weight: 850; }
.price-card .btn { margin-top: auto; }

.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 750; color: var(--text); display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-ink); font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 22px; max-width: 70ch; }

.cta-panel { padding: clamp(36px, 6vw, 72px); border: 1px solid var(--border); border-radius: 32px; background: var(--surface); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; overflow: hidden; position: relative; }
.cta-panel::after { content: "SVS"; position: absolute; right: 20px; bottom: -54px; color: color-mix(in srgb, var(--text) 5%, transparent); font-weight: 900; font-size: 180px; letter-spacing: -.08em; pointer-events: none; }
.cta-panel p { margin-top: 12px; max-width: 56ch; }
.cta-panel .btn { position: relative; z-index: 1; }

.footer { padding: 48px 0 34px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 30px; }
.footer p { margin-top: 14px; max-width: 36ch; font-size: 13px; }
.footer-heading { margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 760; }
.footer-links { display: grid; gap: 9px; margin-top: 14px; }
.footer-links a { font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 11px; color: var(--soft); }

.hero-mini { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 50px; }
.hero-mini-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; position: relative; }
.hero-mini-visual img { width: 100%; height: 100%; object-fit: cover; }

.service-list { display: grid; gap: 14px; }
.service-row { display: grid; grid-template-columns: 60px 1fr auto; gap: 22px; align-items: center; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.service-row .num { color: var(--accent-ink); font: 700 12px/1 ui-monospace, monospace; letter-spacing: .12em; }
.service-row p { margin-top: 5px; font-size: 13px; }
.service-row a { color: var(--accent-ink); font-weight: 760; font-size: 13px; }

.package-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.package-table { width: 100%; min-width: 880px; border-collapse: collapse; }
.package-table th, .package-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.package-table th { color: var(--text); font-size: 13px; }
.package-table td { color: var(--muted); font-size: 13px; }
.package-table thead th { position: sticky; top: 0; background: var(--surface-2); }
.package-table .yes { color: #29c28a; font-weight: 800; }
.package-table .dash { color: var(--soft); }
.package-table tr:last-child td { border-bottom: 0; }

.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.value-card { min-height: 220px; }
.value-card .index { color: var(--accent-ink); font-size: 11px; letter-spacing: .14em; font-weight: 800; margin-bottom: 30px; }

.article-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 14px; }
.article-card { min-height: 300px; display: flex; flex-direction: column; }
.article-card.featured { min-height: 420px; }
.article-kicker { color: var(--accent-ink); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-card h3 { margin-top: 28px; }
.article-card p { margin-top: 12px; }
.article-meta { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; gap: 14px; font-size: 11px; color: var(--soft); }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 64px; align-items: start; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: clamp(28px,4vw,44px); margin: 54px 0 18px; }
.article-body h3 { margin: 36px 0 12px; }
.article-body p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.article-body p + p { margin-top: 20px; }
.article-aside { position: sticky; top: 110px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); padding: 20px; }
.article-aside strong { display: block; margin-bottom: 10px; }
.article-aside a { display: block; padding: 8px 0; font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border); }
.article-aside a:last-child { border-bottom: 0; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px,7vw,90px); align-items: start; }
.contact-copy .lede { margin-top: 18px; }
.contact-points { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { padding: 18px; border: 1px solid var(--border); background: var(--surface); border-radius: 14px; }
.contact-card strong { display: block; color: var(--text); }
.contact-card span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.form { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { color: var(--text); font-size: 12px; font-weight: 720; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--border); background: var(--bg); color: var(--text); border-radius: 11px; padding: 13px 14px; outline: none; min-height: 48px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent-ink); box-shadow: 0 0 0 3px rgba(0,212,255,.1); }
.form-note { grid-column: 1/-1; color: var(--soft); font-size: 11px; }
.form-status { grid-column: 1/-1; min-height: 22px; color: var(--accent-ink); font-size: 12px; }

.mobile-nav { display: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-copy { width: min(760px, 76%); }
  .engine-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(3,1fr); }
  .process-step:nth-child(4), .process-step:nth-child(5) { min-height: 190px; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card.featured { grid-column: 1/-1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-nav { display: block; position: fixed; z-index: 995; top: 78px; left: 20px; right: 20px; padding: 14px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); transform: translateY(-18px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  body.nav-open .mobile-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-nav a { display: flex; justify-content: space-between; padding: 13px 12px; color: var(--muted); border-bottom: 1px solid var(--border); }
  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav a[aria-current="page"] { color: var(--text); }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .site-header .header-actions .btn { display: none; }
  .hero { min-height: 850px; }
  .hero-inner { padding-top: 130px; align-items: end; }
  .hero-copy { width: 88%; padding-bottom: 30px; }
  .hero-photo.desktop { display: none; }
  .hero-photo.mobile { display: block; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,9,14,.18) 10%, rgba(4,9,14,.45) 47%, rgba(4,9,14,.93) 78%, rgba(4,9,14,.97) 100%); opacity: var(--shade-opacity); }
  .hero-grid { mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.4) 42%, #000 100%); }
  .hero h1 { font-size: clamp(44px, 12vw, 68px); }
  .hero .lede { font-size: 17px; }
  .hero-theme-note { display: none; }
  .split, .split.reverse, .industry-strip, .contact-layout, .hero-mini, .article-layout { grid-template-columns: 1fr; }
  .split.reverse .split-copy, .split.reverse .visual-pair { order: initial; }
  .visual-pair { aspect-ratio: 4/3; }
  .industry-main { padding: 30px; }
  .article-aside { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel::after { font-size: 120px; }
  .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-note, .form-status { grid-column: auto; }
}

@media (max-width: 760px) {
  .theme-rail { top: auto; right: 50%; bottom: 12px; transform: translateX(50%); width: min(84vw, 360px); height: 56px; flex-direction: row; padding: 6px 10px; border-radius: 18px; }
  .theme-rail-label { writing-mode: horizontal-tb; transform: none; font-size: 8px; }
  .theme-track { height: 22px; width: auto; flex: 1; cursor: ew-resize; }
  .theme-track::before { left: 5px; right: 5px; top: 50%; width: auto; height: 1px; transform: translateY(-50%); background: linear-gradient(90deg, var(--electric-cyan), color-mix(in srgb, var(--muted) 30%, transparent), var(--ember-orange)); }
  .theme-handle { top: 50%; left: 0; transform: translateY(-50%); width:44px; height:44px; }
  .horizon-line { top: 0; bottom: 0; left: var(--horizon-h); right: auto; width: 1px; height: auto; background: linear-gradient(180deg, transparent 0%, rgba(0,212,255,.36) 10%, rgba(240,240,240,.84) 50%, rgba(255,107,53,.34) 90%, transparent 100%); }
  .horizon-line::before { inset: 0 -24px; background: linear-gradient(90deg, transparent, rgba(0,212,255,.055), rgba(255,107,53,.035), transparent); }
  .footer { padding-bottom: 96px; }
}

@media (max-width: 640px) {
  .nav-shell { height: 68px; }
  .brand-type span { display: none; }
  .brand-type strong { font-size: 20px; }
  .brand-mark { width: 27px; height: 27px; }
  .page-hero { padding-top: 128px; }
  .hero { min-height: 820px; }
  .hero-inner { padding-top: 110px; }
  .hero-copy { width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .hero-proof-item:nth-child(3) { grid-column: 1/-1; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .engine-grid, .card-grid, .pricing-grid, .process, .metrics-grid, .values-grid, .article-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: auto; }
  .process-step { min-height: auto; }
  .process-step::before { margin-bottom: 24px; }
  .metrics-grid { background: transparent; border: 0; gap: 12px; overflow: visible; }
  .metric { border: 1px solid var(--border); border-radius: 14px; min-height: 150px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .service-row { grid-template-columns: 42px 1fr; }
  .service-row a { grid-column: 2; }
  .price-card { min-height: auto; }
  .cta-panel { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .horizon-line { display: none; }
  .theme-reactive.is-crossing::after { display: none; }
}

@media (min-width: 821px) { .hero-photo.mobile { display: none; } }

.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}

/* ===== Refinement pass: color system, contrast, and interaction polish ===== */
@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Semantic action tokens are driven by main.js so each theme has its own accessible accent. */
:root {
  --action-bg: #00d4ff;
  --action-text: #03151b;
  --accent-secondary: #ff6b35;
  --focus-ring: #00d4ff;
  --card-angle: 0deg;
}

/* Stronger, still restrained tactile response for calls to action. */
.btn {
  transform-origin: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-4px) scale(1.012); }
.btn:active { transform: translateY(-1px) scale(.998); }
.btn-primary {
  background: var(--action-bg);
  color: var(--action-text);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--action-bg) 22%, transparent);
}
.btn-primary:hover { box-shadow: 0 18px 42px color-mix(in srgb, var(--action-bg) 30%, transparent); }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline-color: var(--focus-ring);
}

/* Preserve legibility over both photographic hero states. */
.hero-shade {
  background: linear-gradient(90deg, rgba(4,9,14,.95) 0%, rgba(4,9,14,.84) 34%, rgba(4,9,14,.34) 62%, rgba(4,9,14,.06) 100%);
}
.hero-warm-wash {
  background: linear-gradient(90deg, rgba(255,252,248,.97) 0%, rgba(255,249,243,.90) 34%, rgba(255,247,239,.42) 62%, rgba(255,247,239,.05) 100%);
  opacity: var(--tone-p);
}
.hero-theme-note {
  color: color-mix(in srgb, var(--text) 84%, transparent);
  background: color-mix(in srgb, var(--surface) 74%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 11px;
  backdrop-filter: blur(10px);
}

/* Fix icon frames: generic descendant rules previously overrode the grid centering. */
.hero-proof-item > .hero-proof-icon,
.point > .point-icon,
.service-icon {
  display: grid;
  place-items: center;
  margin-top: 0;
  line-height: 0;
}
.hero-proof-item > .hero-proof-icon svg,
.point > .point-icon svg,
.service-icon svg {
  display: block;
  width: 50%;
  height: 50%;
  margin: 0;
}
.hero-proof-item > div > span {
  display: block;
  color: color-mix(in srgb, var(--text) 62%, transparent);
  font-size: 11px;
  margin-top: 2px;
}
.point > div > span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}
.hero-proof-icon,
.service-icon {
  color: var(--accent-ink);
  border-color: color-mix(in srgb, var(--accent-ink) 28%, transparent);
  background: color-mix(in srgb, var(--accent-ink) 9%, transparent);
}

/* A restrained authored hover language: lift plus a moving brand-color perimeter trace. */
:is(.engine-card, .service-card, .industry-chip, .process-step, .article-card, .value-card, .service-row) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .26s var(--ease), border-color .26s ease, box-shadow .26s var(--ease), background .18s linear;
}
:is(.engine-card, .service-card, .industry-chip, .process-step, .article-card, .value-card, .service-row):is(:hover, :focus-within) {
  transform: translateY(-5px);
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from var(--card-angle), var(--border) 0 58%, var(--action-bg) 68%, var(--accent-secondary) 78%, var(--border) 88% 100%) border-box;
  box-shadow: 0 20px 46px rgba(7, 16, 24, .10);
  animation: svs-border-orbit 1.9s linear infinite;
}
@keyframes svs-border-orbit { to { --card-angle: 360deg; } }

/* Growth-engine accent follows the active theme: cyan when Engineered, orange when Human. */
.engine-num {
  background: var(--action-bg) !important;
  color: var(--action-text);
}

/* Simpler, centered signature drag handle. */
.theme-rail { width: 52px; right: 18px; }
.theme-track { width: 12px; }
.theme-handle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-ink) 64%, var(--border));
  background: var(--surface);
  color: var(--accent-ink);
  box-shadow: 0 8px 22px rgba(0,0,0,.18), inset 0 0 0 5px color-mix(in srgb, var(--action-bg) 10%, transparent);
}
.theme-handle::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--action-bg);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--action-bg) 12%, transparent);
}
.theme-handle svg { display: none; }
.theme-rail:focus-within { outline-color: var(--focus-ring); }

@media (max-width: 760px) {
  .theme-handle { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  :is(.engine-card, .service-card, .industry-chip, .process-step, .article-card, .value-card, .service-row) { animation: none !important; }
  .btn:hover,
  :is(.engine-card, .service-card, .industry-chip, .process-step, .article-card, .value-card, .service-row):is(:hover, :focus-within) { transform: none; }
}

/* Keep the signature rail horizontal and thumb-safe on phones. */
@media (max-width: 760px) {
  .theme-rail {
    top: auto;
    right: 50%;
    bottom: 12px;
    transform: translateX(50%);
    width: min(84vw, 360px);
    height: 56px;
    flex-direction: row;
    padding: 6px 10px;
    border-radius: 18px;
  }
  .theme-rail-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 8px;
  }
  .theme-track {
    width: auto;
    height: 12px;
    flex: 1;
    cursor: ew-resize;
  }
  .theme-track::before {
    top: 50%; bottom: auto; left: 5px; right: 5px;
    width: auto; height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--electric-cyan), color-mix(in srgb, var(--muted) 30%, transparent), var(--ember-orange));
  }
  .theme-handle {
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 38px; height: 38px;
  }
}


::selection { background: color-mix(in srgb, var(--action-bg) 26%, transparent); color: var(--text); }

/* ===== Revision 3: authored sweep, sequence motion, typographic accordions, bilingual shell ===== */

/* Language control stays quiet in the shell but remains easy to find. */
.lang-toggle {
  min-width: 42px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--text);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .09em;
  cursor: pointer;
  transition: transform .2s var(--ease), border-color .24s ease, background-color .24s ease, color .24s ease;
}
.lang-toggle:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.lang-toggle:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }
.mobile-lang-toggle { display: none; }

/* Theme content changes where the Horizon line passes, rather than everything flipping at 50%. */
.theme-zone,
.theme-reactive,
.hero-copy,
.theme-zone :where(h1,h2,h3,h4,p,a,strong,span,summary),
.theme-reactive :where(h1,h2,h3,h4,p,a,strong,span,summary) {
  transition-property: color, background-color, border-color, box-shadow, opacity;
  transition-duration: .34s;
  transition-timing-function: var(--ease);
}
body.theme-dragging,
body.theme-settling { background: linear-gradient(180deg, #f7f3ee 0 var(--horizon-v), #0d1117 var(--horizon-v) 100%); }

/* Hero: preserve the actual Human photograph. No white wash over the image. */
.hero-warm-wash { display: none !important; }
.hero-shade {
  opacity: 1 !important;
  background: linear-gradient(90deg, rgba(4,9,14,.94) 0%, rgba(4,9,14,.82) 34%, rgba(4,9,14,.30) 62%, rgba(4,9,14,.04) 100%);
  clip-path: inset(var(--theme-pct) 0 0 0);
  will-change: clip-path;
}
.hero-grid { opacity: var(--grid-opacity); }
html[data-theme="human"] .hero-copy { text-shadow: 0 1px 0 rgba(255,255,255,.22); }

/* Growth engine: the sequence is communicated by motion, not forced arrows. */
.engine-grid {
  margin-block: 26px;
  isolation: isolate;
  overflow: visible;
}
.engine-grid::before,
.engine-grid::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  height: 2px;
  z-index: 0;
  pointer-events: none;
  opacity: .72;
  background:
    linear-gradient(90deg,
      transparent 0%,
      transparent 12%,
      color-mix(in srgb, var(--action-bg) 16%, transparent) 24%,
      var(--action-bg) 38%,
      var(--accent-secondary) 49%,
      color-mix(in srgb, var(--action-bg) 18%, transparent) 62%,
      transparent 76%,
      transparent 100%);
  background-size: 260% 100%;
  animation: svs-route-flow 5.2s linear infinite;
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--action-bg) 22%, transparent));
}
.engine-grid::before { top: -16px; }
.engine-grid::after { bottom: -16px; animation-delay: -2.6s; }
@keyframes svs-route-flow { to { background-position: -260% 0; } }
.engine-card {
  position: relative;
  z-index: 1;
  transform-origin: center;
}
.engine-card:hover,
.engine-card:focus-within {
  transform: translateY(-8px) scale(1.025) !important;
  z-index: 3;
}
.engine-num {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border-radius: 15px;
  color: #fff !important;
  background: var(--action-bg) !important;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 12px 28px color-mix(in srgb, var(--action-bg) 18%, transparent);
}

/* Results over rhetoric: a typographic accordion instead of decorative glyphs. */
.metrics-grid {
  display: flex;
  gap: 10px;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.metric {
  flex: 1 1 0;
  min-width: 0;
  min-height: 250px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: flex .4s var(--ease), transform .28s var(--ease), border-color .28s ease, box-shadow .28s var(--ease), background-color .3s ease;
}
.metric[open] {
  flex: 1.65 1 0;
  border-color: var(--border-strong);
  box-shadow: 0 20px 52px rgba(0,0,0,.10);
}
.metric summary {
  list-style: none;
  min-height: 248px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
}
.metric summary::-webkit-details-marker { display: none; }
.metric-index {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  color: var(--accent-ink);
}
.metric summary strong {
  display: block;
  max-width: 11ch;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--text);
  text-wrap: balance;
}
.metric > p {
  margin: -92px 22px 26px;
  max-width: 34ch;
  color: var(--muted);
  opacity: 0;
  transform: translateY(9px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.metric[open] > p { opacity: 1; transform: translateY(0); }
.metric[open] summary { padding-bottom: 110px; }

/* Process numbers become large compositional shadows behind the content. */
.process-step {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
}
.process-step::before {
  content: attr(data-step) !important;
  position: absolute;
  right: 12px;
  top: -10px;
  margin: 0 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(82px, 8vw, 132px) !important;
  font-weight: 900 !important;
  line-height: .82 !important;
  letter-spacing: -.085em !important;
  color: var(--accent-ink) !important;
  opacity: .075;
  transform: translate3d(0,0,0);
  transition: opacity .28s var(--ease), transform .35s var(--ease);
  z-index: 0;
}
.process-step:hover::before,
.process-step:focus-within::before { opacity: .18; transform: translate3d(-6px,5px,0) scale(1.025); }
.process-step h3,
.process-step p { position: relative; z-index: 1; }

@media (max-width: 980px) {
  .metrics-grid { display: grid; grid-template-columns: repeat(2,1fr); }
  .metric, .metric[open] { min-height: 205px; }
  .metric summary { min-height: 203px; }
  .metric[open] summary { padding-bottom: 96px; }
  .metric > p { margin-top: -82px; }
}

@media (max-width: 760px) {
  .lang-toggle:not(.mobile-lang-toggle) { display: none; }
  .mobile-lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }
  body.theme-dragging,
  body.theme-settling { background: linear-gradient(90deg, #f7f3ee 0 var(--horizon-h), #0d1117 var(--horizon-h) 100%); }
  .hero-photo.light,
  .visual-pair img.light { clip-path: inset(0 calc(100% - var(--theme-pct)) 0 0); }
  .hero-shade { clip-path: inset(0 0 0 var(--theme-pct)); }
  .engine-grid { margin-block: 0; }
  .engine-grid::before,
  .engine-grid::after { display: none; }
  .engine-card:hover,
  .engine-card:focus-within { transform: translateY(-4px) scale(1.012) !important; }
  .metrics-grid { grid-template-columns: 1fr; gap: 12px; }
  .metric, .metric[open] { min-height: 0; flex: none; }
  .metric summary, .metric[open] summary { min-height: 0; padding: 22px; }
  .metric summary { flex-direction: row; align-items: baseline; justify-content: flex-start; }
  .metric summary strong { max-width: none; font-size: 24px; }
  .metric > p, .metric[open] > p { margin: -4px 22px 22px; opacity: 1; transform: none; }
  .process-step { min-height: 220px; }
  .process-step::before { font-size: 96px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .engine-grid::before,
  .engine-grid::after { animation: none; background-position: 50% 0; }
  .metric, .process-step::before { transition: none; }
}
.process-step::before { content: none !important; }
.process-num {
  position: absolute;
  right: 12px;
  top: 4px;
  z-index: 0;
  font-size: clamp(82px, 8vw, 132px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.085em;
  color: var(--accent-ink);
  opacity: .11;
  pointer-events: none;
  user-select: none;
  transition: opacity .28s var(--ease), transform .35s var(--ease);
}
.process-step:hover .process-num,
.process-step:focus-within .process-num { opacity: .13; transform: translate3d(-6px,5px,0) scale(1.025); }
.process-step h3,
.process-step p { position: relative; z-index: 1; }
@media (max-width:760px) { .process-num { font-size: 96px; } }

/* v4 polish: make measurement numbers a compositional layer, not a label. */
.metric {
  position: relative;
  isolation: isolate;
}
.metric summary,
.metric > p {
  position: relative;
  z-index: 2;
}
.metric-index {
  position: absolute;
  inset: 8px auto auto 10px;
  z-index: 0;
  margin: 0 !important;
  font-size: clamp(112px, 11vw, 188px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.09em;
  color: var(--accent-ink);
  opacity: .065;
  pointer-events: none;
  user-select: none;
  transform: translate3d(0,0,0);
  transition: opacity .28s var(--ease), transform .36s var(--ease);
}
.metric:hover .metric-index,
.metric:focus-within .metric-index,
.metric[open] .metric-index {
  opacity: .11;
  transform: translate3d(6px,4px,0) scale(1.025);
}
.metric summary strong {
  position: relative;
  z-index: 2;
  align-self: flex-end;
}
.metric > p { z-index: 2; }

/* Keep the wellness/root cards compact and visually occupied on phones. */
@media (max-width: 760px) {
  .industry-side { gap: 10px; }
  .industry-chip {
    min-height: auto;
    padding: 18px 18px 18px 20px;
    box-shadow: inset 3px 0 0 color-mix(in srgb, var(--action-bg) 72%, transparent);
  }
  .industry-chip strong {
    font-size: 16px;
    line-height: 1.18;
  }
  .industry-chip span {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.48;
    max-width: 46ch;
  }
  .metric summary,
  .metric[open] summary {
    position: relative;
    min-height: 164px;
    padding: 24px 22px;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .metric-index {
    inset: 12px auto auto 14px;
    font-size: clamp(96px, 31vw, 138px);
    opacity: .07;
  }
  .metric summary strong {
    max-width: 13ch;
    font-size: clamp(26px, 8.5vw, 34px);
    line-height: .98;
    text-align: right;
  }
  .metric > p,
  .metric[open] > p {
    margin: -2px 22px 22px;
    padding-top: 0;
    position: relative;
    z-index: 2;
  }
}

/* v4.1: let the result numeral occupy the card as a true background graphic. */
.metric-index {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  font-size: clamp(150px, 14vw, 226px);
  line-height: .72;
  opacity: .085;
  transform: translate(-50%, -50%) scale(1.04);
}
.metric:hover .metric-index,
.metric:focus-within .metric-index,
.metric[open] .metric-index {
  opacity: .13;
  transform: translate(-50%, -50%) scale(1.08);
}
@media (max-width: 760px) {
  .metric-index {
    left: 50%;
    top: 50%;
    font-size: clamp(126px, 42vw, 170px);
    opacity: .09;
    transform: translate(-50%, -50%) scale(1.02);
  }
  .metric:hover .metric-index,
  .metric:focus-within .metric-index,
  .metric[open] .metric-index {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* ===== Revision 5: homepage contrast, alignment, result accordion, FAQ + Florida presence ===== */

/* Hero contrast: protect readability with a dark directional scrim instead of bleaching the Human photo. */
.home-page .hero-shade {
  clip-path: none !important;
  opacity: 1 !important;
  background: linear-gradient(90deg,
    rgba(4,9,14,.72) 0%,
    rgba(4,9,14,.58) 30%,
    rgba(4,9,14,.34) 50%,
    rgba(4,9,14,.12) 67%,
    rgba(4,9,14,0) 82%);
}
.home-page .hero h1,
.home-page .hero .hero-headline-base { color: #fff !important; }
.home-page .hero .accent,
.home-page .hero .eyebrow { color: var(--action-bg) !important; }
.home-page .hero .lede { color: rgba(255,255,255,.88) !important; }
.home-page .hero h1,
.home-page .hero .lede,
.home-page .hero .hero-proof-item strong,
.home-page .hero .hero-proof-item > div > span {
  text-shadow: 0 2px 20px rgba(0,0,0,.36);
}
.home-page .hero .hero-proof-item strong { color: #fff !important; }
.home-page .hero .hero-proof-item > div > span { color: rgba(255,255,255,.76) !important; }

/* Transparent hero navigation stays readable over photography, then returns to semantic theme colors on scroll. */
.home-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(4,9,14,.42) 0%, rgba(4,9,14,.18) 62%, rgba(4,9,14,0) 100%);
}
.home-page .site-header:not(.is-scrolled) .brand-type strong,
.home-page .site-header:not(.is-scrolled) .nav-links a {
  color: rgba(255,255,255,.94) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.46);
}
.home-page .site-header:not(.is-scrolled) .brand-type span {
  color: rgba(255,255,255,.72) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
}
.home-page .site-header:not(.is-scrolled) .nav-links a:hover,
.home-page .site-header:not(.is-scrolled) .nav-links a[aria-current="page"] { color: #fff !important; }
.home-page .site-header:not(.is-scrolled) .brand-mark { color: var(--action-bg); }

/* Service rows: keep the CTA baseline aligned across each grid row. */
.card-grid .service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card-grid .service-card p { flex: 1 1 auto; }
.card-grid .service-card a {
  margin-top: auto;
  padding-top: 24px;
}

/* The category cards should size to their content instead of stretching into empty boxes. */
.industry-side {
  align-content: start;
  grid-auto-rows: max-content;
}
.industry-chip {
  min-height: 0;
  display: grid;
  align-content: start;
}
.industry-chip::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--action-bg), var(--accent-secondary));
  opacity: .55;
}

/* Results over rhetoric: the number claims the empty upper-left quadrant only when the item is active. */
.metric { position: relative; isolation: isolate; }
.metric summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(92px,.8fr) minmax(0,1.2fr);
  align-items: start;
  min-height: 248px;
  padding: 26px 22px;
}
.metric summary strong {
  grid-column: 2;
  align-self: start;
  justify-self: end;
  margin: 0;
  max-width: 11ch;
  text-align: right;
}
.metric-index {
  position: absolute !important;
  left: 18px !important;
  top: 22px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  margin: 0 !important;
  font-size: clamp(104px, 8.8vw, 154px) !important;
  font-weight: 900 !important;
  line-height: .72 !important;
  letter-spacing: -.09em !important;
  color: var(--action-bg) !important;
  opacity: 0 !important;
  transform: translate3d(-8px,8px,0) scale(.92) !important;
  transform-origin: left top;
  transition: opacity .28s var(--ease), transform .38s var(--ease) !important;
}
.metric:is(:hover,:focus-within,[open]) .metric-index {
  opacity: .17 !important;
  transform: translate3d(0,0,0) scale(1) !important;
}
.metric > p {
  position: absolute !important;
  left: 22px;
  right: auto;
  bottom: 24px;
  z-index: 3 !important;
  max-width: 30ch;
  margin: 0 !important;
  opacity: 0;
  transform: translateY(8px);
}
.metric[open] > p { opacity: 1; transform: translateY(0); }
.metric[open] summary { padding-bottom: 26px !important; }

/* A more authored question area: editorial intro + honest Florida registration/service-area marker. */
.faq-section { overflow: clip; }
.faq-experience {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: clamp(34px,6vw,86px);
  align-items: start;
}
.faq-intro { min-width: 0; }
.faq-intro .lede { margin-top: 18px; max-width: 46ch; }
.location-card {
  margin-top: 34px;
  padding: 18px;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.location-card::before {
  content: "";
  position: absolute;
  inset: auto -42px -56px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--action-bg) 12%, transparent), transparent 68%);
  pointer-events: none;
}
.location-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 8px 2px;
}
.location-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.location-copy strong {
  display: block;
  color: var(--text);
  font-size: clamp(20px,2.2vw,28px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.location-copy p { margin-top: 10px; font-size: 13px; line-height: 1.55; }
.location-meta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--text);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .02em;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 10px;
  color: var(--accent-ink);
  font-size: 11px;
  font-weight: 800;
}
.map-link span { transition: transform .18s var(--ease); }
.map-link:hover span { transform: translate(2px,-2px); }
.google-map-embed {
  position: relative;
  z-index: 1;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-ink) 6%, transparent);
}
.google-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border: 0;
  display: block;
  filter: saturate(.82) contrast(.96);
}
/* FAQ cards use a rotating cross and restrained reveal motion instead of a basic + / minus swap. */
.faq { display: grid; gap: 12px; }
.faq details {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s var(--ease), background-color .28s ease;
}
.faq details:hover,
.faq details:focus-within {
  transform: translateX(4px);
  border-color: var(--border-strong);
}
.faq details[open] {
  border-color: var(--border-strong);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: none !important; }
.faq-question {
  max-width: 34ch;
  font-size: clamp(17px,1.65vw,22px);
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.faq-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--surface-2) 78%, transparent);
  color: var(--accent-ink);
  transition: transform .32s var(--ease), background-color .28s ease, border-color .28s ease;
}
.faq-toggle i {
  grid-area: 1 / 1;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}
.faq-toggle i:nth-child(2) { transform: rotate(90deg); }
.faq details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--action-bg);
  color: var(--action-text);
  border-color: var(--action-bg);
}
.faq-answer {
  position: relative;
  z-index: 2;
  padding: 0 82px 24px 22px;
}
.faq-answer p { max-width: 62ch; padding: 0; }
.faq details[open] .faq-answer { animation: svs-faq-reveal .34s var(--ease) both; }
@keyframes svs-faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .faq-experience { grid-template-columns: 1fr; gap: 34px; }
  .location-card { max-width: 720px; }
}

@media (max-width: 760px) {
  .home-page .hero-shade {
    background: linear-gradient(180deg,
      rgba(4,9,14,.10) 0%,
      rgba(4,9,14,.24) 37%,
      rgba(4,9,14,.72) 68%,
      rgba(4,9,14,.90) 100%);
  }
  .home-page .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(4,9,14,.48) 0%, rgba(4,9,14,.12) 72%, transparent 100%);
  }
  .metric summary,
  .metric[open] summary {
    display: grid;
    grid-template-columns: 96px minmax(0,1fr);
    min-height: 172px;
    padding: 22px;
    align-items: start;
  }
  .metric summary strong {
    grid-column: 2;
    justify-self: end;
    max-width: 12ch;
    font-size: clamp(24px,8vw,32px);
    text-align: right;
  }
  .metric-index {
    left: 16px !important;
    top: 20px !important;
    font-size: clamp(86px,26vw,118px) !important;
  }
  .metric > p {
    position: relative !important;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -2px 22px 22px !important;
    max-width: none;
  }
  .location-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }
  .faq summary { min-height: 78px; padding: 18px; grid-template-columns: minmax(0,1fr) 40px; }
  .faq-toggle { width: 38px; height: 38px; }
  .faq-answer { padding: 0 18px 20px; }
}

@media (max-width: 520px) {
  .location-card { grid-template-columns: 1fr; padding: 16px; }
  .location-copy { padding: 8px 4px; }
  .google-map-embed, .google-map-embed iframe { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq details[open] .faq-answer { animation: none; }
  .faq-toggle { transition: none; }
}

/* v5.1 header safeguard: normal-size nav text receives a controlled dark backing over bright photography. */
.home-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(4,9,14,.64) 0%, rgba(4,9,14,.44) 68%, rgba(4,9,14,.14) 100%);
}
.home-page .site-header:not(.is-scrolled) .brand-type span { color: rgba(255,255,255,.84) !important; }

/* Revision 6 sweep continuity: homepage background bands do not obscure the global horizon underlay. */
.home-page .engine-band,
.home-page .footer { background: transparent; }

/* v7 secondary pages: quieter editorial system built around the homepage language. */
.secondary-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 72%, transparent), color-mix(in srgb, var(--bg) 22%, transparent) 78%, transparent);
}
.secondary-page main { overflow: clip; }
.secondary-hero,
.article-hero,
.service-detail-hero {
  padding: clamp(132px, 15vw, 190px) 0 clamp(72px, 9vw, 118px);
  border-bottom: 1px solid var(--border);
  background: transparent;
  position: relative;
}
.secondary-hero::before,
.article-hero::before,
.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: min(38vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-ink), transparent);
  opacity: .5;
}
.secondary-hero-grid,
.article-hero-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.secondary-hero-copy h1,
.article-hero h1,
.service-detail-hero h1 {
  font-size: clamp(50px, 6.7vw, 86px);
  max-width: 860px;
}
.secondary-hero-copy .lede,
.article-hero .lede,
.service-detail-hero .lede { margin-top: 24px; max-width: 60ch; }
.secondary-hero .hero-actions,
.service-detail-hero .hero-actions { margin-top: 30px; }

.secondary-media,
.featured-note-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
  min-height: 360px;
}
.secondary-media::after,
.featured-note-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, color-mix(in srgb, var(--bg) 44%, transparent));
  opacity: .34;
}
.secondary-media > img,
.secondary-media > picture,
.secondary-media > picture img,
.featured-note-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secondary-media > img.light,
.secondary-media > picture.light,
.featured-note-media > img.light {
  clip-path: inset(0 0 calc(100% - var(--theme-pct)) 0);
  will-change: clip-path;
}
.secondary-media-portrait { min-height: 560px; aspect-ratio: 4 / 5; }
.secondary-media-portrait > picture img { object-position: 64% center; }
.secondary-media-wide { min-height: 420px; aspect-ratio: 4 / 3; }
.secondary-photo-split { align-items: stretch; }
.secondary-photo-split .secondary-media { height: 100%; }
.secondary-section-head { margin-bottom: 44px; }

.capability-atlas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.capability-tile {
  min-height: 250px;
  padding: 28px;
  display: grid;
  grid-template-columns: 50px minmax(0,1fr);
  grid-template-rows: 1fr auto;
  gap: 18px 20px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform .24s var(--ease), border-color .24s ease, box-shadow .24s var(--ease), background .18s linear;
}
.capability-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(.16);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-ink), var(--warm-ink));
  opacity: .76;
  transition: transform .34s var(--ease);
}
.capability-tile:hover,
.capability-tile:focus-visible { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.capability-tile:hover::before,
.capability-tile:focus-visible::before { transform: scaleX(1); }
.capability-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
  position: relative;
  z-index: 2;
}
.capability-icon svg { width: 20px; }
.capability-tile h3 { font-size: clamp(24px,2.4vw,34px); }
.capability-tile p { margin-top: 10px; max-width: 48ch; font-size: 14px; }
.capability-ghost {
  position: absolute;
  right: 18px;
  bottom: -30px;
  color: var(--accent-ink);
  opacity: .055;
  font-size: clamp(108px,13vw,176px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.capability-link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 760;
  font-size: 13px;
  position: relative;
  z-index: 2;
}
.capability-link svg { width: 15px; transition: transform .2s var(--ease); }
.capability-tile:hover .capability-link svg { transform: translateX(4px); }

.engagement-split { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.engagement-card {
  padding: clamp(30px,4vw,48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 350px;
  display: flex;
  flex-direction: column;
}
.engagement-card h2 { font-size: clamp(34px,4.2vw,54px); }
.engagement-card p { margin-top: 18px; max-width: 54ch; }
.engagement-card > a { margin-top: auto; padding-top: 32px; display: inline-flex; align-items: center; gap: 9px; font-weight: 760; color: var(--text); }
.engagement-card > a svg { width: 16px; color: var(--accent-ink); }

.about-purpose {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  gap: clamp(38px,7vw,100px);
  align-items: start;
}
.about-purpose-statement {
  font-size: clamp(28px,4vw,52px);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.04em;
  max-width: 28ch;
}
.studio-timeline { border-top: 1px solid var(--border); }
.timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item > span {
  font: 760 12px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: var(--accent-ink);
  letter-spacing: .12em;
  padding-top: 8px;
}
.timeline-item h3 { font-size: clamp(28px,3.4vw,44px); }
.timeline-item p:not(.section-label) { margin-top: 12px; max-width: 68ch; }
.timeline-item .section-label { margin-bottom: 8px; }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.principle-card {
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.principle-index {
  display: block;
  color: var(--accent-ink);
  font: 760 11px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  margin-bottom: 54px;
}
.principle-card::after {
  content: attr(data-index);
}
.principle-card h3 { font-size: clamp(25px,2.6vw,34px); }
.principle-card p { margin-top: 12px; font-size: 14px; }

.insights-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(260px,.7fr);
  gap: clamp(46px,8vw,110px);
  align-items: end;
}
.insights-index {
  border-top: 1px solid var(--border-strong);
  padding-top: 18px;
  max-width: 340px;
  justify-self: end;
}
.insights-index span { display: block; color: var(--accent-ink); font-size: 11px; font-weight: 820; letter-spacing: .15em; text-transform: uppercase; }
.insights-index strong { display: block; margin-top: 16px; color: var(--text); font-size: 22px; letter-spacing: -.02em; }
.insights-index p { margin-top: 8px; font-size: 14px; }
.featured-note {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,.8fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .26s var(--ease), border-color .26s ease, box-shadow .26s var(--ease);
}
.featured-note:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.featured-note-copy { padding: clamp(34px,5vw,62px); display: flex; flex-direction: column; }
.featured-note-copy h2 { margin-top: 12px; font-size: clamp(40px,5vw,66px); }
.featured-note-copy p { margin-top: 18px; max-width: 52ch; }
.featured-note-copy .article-meta { margin-top: auto; padding-top: 44px; }
.featured-note-media { min-height: 100%; border: 0; border-left: 1px solid var(--border); border-radius: 0; }
.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.insight-card {
  min-height: 330px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform .24s var(--ease), border-color .24s ease;
}
.insight-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.insight-card h3 { margin-top: 12px; font-size: clamp(25px,2.5vw,34px); }
.insight-card p { margin-top: 12px; font-size: 14px; }
.insight-card .article-meta { margin-top: auto; padding-top: 34px; }

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.6fr);
  gap: clamp(46px,8vw,110px);
  align-items: end;
}
.contact-brief {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.contact-brief h2 { font-size: clamp(32px,3.5vw,46px); }
.contact-brief > p { margin-top: 14px; }
.contact-brief-row { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); align-items: center; }
.contact-brief-row:first-of-type { margin-top: 24px; }
.contact-brief-row span { color: var(--accent-ink); font: 760 10px/1 ui-monospace,monospace; letter-spacing: .12em; }
.contact-brief-row strong { color: var(--text); }
.secondary-contact-layout { align-items: start; }
.elevated-form { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: clamp(24px,4vw,38px); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.presence-grid { display: grid; grid-template-columns: minmax(280px,.62fr) minmax(0,1.38fr); gap: 22px; align-items: stretch; }
.presence-copy { padding: clamp(28px,4vw,46px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); display: flex; flex-direction: column; }
.presence-copy h2 { font-size: clamp(36px,4.5vw,58px); }
.presence-copy p { margin-top: 16px; }
.text-link { margin-top: auto; padding-top: 34px; display: inline-flex; gap: 8px; align-items: center; font-weight: 760; color: var(--text); }
.text-link svg { width: 16px; color: var(--accent-ink); }
.map-embed { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); min-height: 430px; }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 430px; border: 0; filter: saturate(.82) contrast(.98); }

.article-hero-meta,
.service-role-card {
  padding: 28px;
  border-top: 1px solid var(--border-strong);
  align-self: end;
}
.article-hero-meta span,
.article-hero-meta strong { display: block; }
.article-hero-meta span { color: var(--accent-ink); font-size: 11px; font-weight: 820; letter-spacing: .15em; text-transform: uppercase; }
.article-hero-meta strong { margin-top: 18px; color: var(--text); font-size: 28px; }
.article-hero-meta p { margin-top: 8px; }
.refined-article-layout { grid-template-columns: minmax(0,1fr) 260px; gap: clamp(50px,7vw,90px); }
.article-body .article-intro { font-size: clamp(21px,2.3vw,28px); line-height: 1.5; color: var(--text); }
.article-body blockquote {
  margin: 48px 0;
  padding: 26px 0 26px 28px;
  border-left: 2px solid var(--accent-ink);
  color: var(--text);
  font-size: clamp(25px,3vw,38px);
  line-height: 1.18;
  letter-spacing: -.035em;
}
.refined-article-aside { position: sticky; top: 110px; align-self: start; }
.service-detail-grid { align-items: end; }
.service-role-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.service-role-card > strong { display: block; color: var(--text); font-size: clamp(28px,3.2vw,42px); line-height: 1.08; letter-spacing: -.03em; }
.service-role-card > p { margin-top: 14px; }
.service-role-line { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-top: 34px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.service-role-line i { height: 1px; background: linear-gradient(90deg,var(--accent-ink),var(--warm-ink)); }
.service-faq details { background: var(--surface); }

@media (max-width: 980px) {
  .secondary-hero-grid,
  .article-hero-grid,
  .service-detail-grid,
  .insights-hero-grid,
  .contact-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .secondary-media-portrait { min-height: 520px; aspect-ratio: 16 / 10; }
  .secondary-media-portrait > picture img { object-position: center 38%; }
  .capability-atlas,
  .engagement-split { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: repeat(2,1fr); }
  .featured-note { grid-template-columns: 1fr; }
  .featured-note-media { min-height: 360px; border-left: 0; border-top: 1px solid var(--border); }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 250px; }
  .presence-grid { grid-template-columns: 1fr; }
  .insights-index { justify-self: start; }
}

@media (max-width: 760px) {
  .secondary-hero,
  .article-hero,
  .service-detail-hero { padding-top: 118px; padding-bottom: 66px; }
  .secondary-hero-copy h1,
  .article-hero h1,
  .service-detail-hero h1 { font-size: clamp(44px,13vw,66px); }
  .secondary-media-portrait { min-height: 470px; aspect-ratio: 4 / 5; }
  .secondary-media > img.light,
  .secondary-media > picture.light,
  .featured-note-media > img.light { clip-path: inset(0 calc(100% - var(--theme-pct)) 0 0); }
  .capability-tile { grid-template-columns: 46px minmax(0,1fr); padding: 22px; min-height: 235px; }
  .capability-ghost { font-size: 112px; }
  .about-purpose { grid-template-columns: 1fr; gap: 26px; }
  .timeline-item { grid-template-columns: 52px minmax(0,1fr); gap: 16px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 235px; }
  .featured-note-copy { padding: 28px; }
  .featured-note-media { min-height: 300px; }
  .contact-brief { padding: 22px; }
  .elevated-form { padding: 20px; }
  .map-embed, .map-embed iframe { min-height: 300px; }
  .refined-article-layout { display: block; }
  .refined-article-aside { position: static; margin-top: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .capability-tile,
  .featured-note,
  .insight-card { transition: none; }
}

/* v8 refinement: secondary pages stay quieter, with more deliberate authored details. */

/* Capability cards: make the initial accent almost a calibration mark, then let it travel across the full edge. */
.capability-tile::before {
  transform: scaleX(.055);
  opacity: .82;
  transition: transform .38s var(--ease), opacity .24s ease;
}
.capability-tile:hover::before,
.capability-tile:focus-visible::before { transform: scaleX(1); opacity: 1; }

/* About principles: restrained lift + perimeter trace. No extra content or distracting motion. */
.principle-card {
  isolation: isolate;
  transition: transform .26s var(--ease), border-color .26s ease, box-shadow .26s var(--ease), background .18s linear;
}
.principle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--card-angle), transparent 0 66%, var(--accent-ink) 74%, var(--warm-ink) 82%, transparent 91% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
}
.principle-card:is(:hover, :focus-within) {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-ink) 28%, var(--border));
  box-shadow: 0 20px 46px rgba(7,16,24,.10);
}
.principle-card:is(:hover, :focus-within)::before {
  opacity: .95;
  animation: svs-border-orbit 2.15s linear infinite;
}
.principle-card:is(:hover, :focus-within) .principle-index {
  color: var(--action-bg);
  transform: translateX(4px);
}
.principle-index { transition: color .22s ease, transform .22s var(--ease); }

/* Article cover: the same image appears in the Insights cover and the article itself. */
.article-hero-grid { align-items: center; }
.article-hero-aside { display: grid; gap: 18px; align-self: stretch; }
.article-cover-media {
  min-height: 330px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}
.article-cover-media > img { object-position: center; }
.article-hero-aside .article-hero-meta {
  align-self: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 22px 24px;
}

/* Contact: deliberately lower the form on wide screens so its top aligns with the recommendation area. */
@media (min-width: 981px) {
  .secondary-contact-layout .align-recommendation { margin-top: 680px; }
}

@media (max-width: 980px) {
  .secondary-contact-layout .align-recommendation { margin-top: 0; }
  .article-hero-aside { align-self: auto; }
  .article-cover-media { min-height: 360px; aspect-ratio: 16 / 10; }
}

@media (max-width: 760px) {
  .article-cover-media { min-height: 270px; aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .principle-card:is(:hover, :focus-within)::before { animation: none; }
  .principle-card:is(:hover, :focus-within) { transform: none; }
}

/* v9: SVS Growth Handoff Check */
body.growth-check-open { overflow: hidden; }

.growth-check-invite {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap: clamp(34px,6vw,86px);
  align-items: center;
  padding: clamp(34px,5vw,62px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(4,12,18,.08);
}
.growth-check-invite::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, color-mix(in srgb,var(--accent-ink) 10%, transparent), transparent 38%),
    radial-gradient(circle at 88% 18%, color-mix(in srgb,var(--action-bg) 12%, transparent), transparent 34%);
  opacity:.72;
}
.gc-invite-copy,.gc-invite-visual { position:relative; z-index:1; }
.gc-invite-copy h2 { margin-top:10px; font-size:clamp(42px,5vw,72px); max-width:13ch; }
.gc-invite-copy > p { margin-top:18px; max-width:62ch; }
.gc-invite-points { display:grid; gap:11px; margin:28px 0; }
.gc-invite-points span { display:flex; gap:10px; align-items:center; color:var(--text); font-weight:720; }
.gc-invite-points i { width:8px; height:8px; border-radius:50%; background:var(--action-bg); box-shadow:0 0 0 5px color-mix(in srgb,var(--action-bg) 12%,transparent); }
.gc-invite-micro { margin-top:12px; color:var(--muted); font-size:13px; }
.gc-invite-visual { min-height:350px; display:grid; place-items:center; }
.gc-handoff-orbit { width:min(100%,420px); aspect-ratio:1; border-radius:50%; position:relative; display:grid; place-items:center; }
.gc-handoff-orbit::before,.gc-handoff-orbit::after { content:""; position:absolute; inset:9%; border-radius:50%; border:1px solid var(--border-strong); }
.gc-handoff-orbit::after { inset:24%; border-style:dashed; opacity:.55; }
.gc-handoff-core { width:42%; aspect-ratio:1; border-radius:50%; display:grid; place-items:center; text-align:center; padding:22px; background:var(--bg); border:1px solid var(--border-strong); box-shadow:0 18px 50px rgba(4,12,18,.12); color:var(--text); }
.gc-handoff-core strong { font-size:clamp(34px,4vw,54px); line-height:1; letter-spacing:-.05em; }
.gc-handoff-core span { margin-top:6px; color:var(--muted); font-size:11px; letter-spacing:.12em; text-transform:uppercase; }
.gc-orbit-node { position:absolute; padding:9px 12px; border:1px solid var(--border); border-radius:999px; background:var(--surface); color:var(--text); font-size:11px; font-weight:800; box-shadow:0 8px 24px rgba(4,12,18,.06); }
.gc-orbit-node:nth-of-type(1){top:3%;left:38%}.gc-orbit-node:nth-of-type(2){top:24%;right:0}.gc-orbit-node:nth-of-type(3){bottom:22%;right:2%}.gc-orbit-node:nth-of-type(4){bottom:2%;left:39%}.gc-orbit-node:nth-of-type(5){bottom:23%;left:0}.gc-orbit-node:nth-of-type(6){top:24%;left:1%}

.growth-check-overlay {
  position:fixed;
  inset:0;
  z-index:400;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:clamp(20px,3vw,34px);
  overflow-y:auto;
  overscroll-behavior:contain;
  background:rgba(4,9,14,.72);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  scrollbar-width:none;
}
.growth-check-overlay::-webkit-scrollbar { width:0; height:0; }
.growth-check-overlay[hidden] { display:none !important; }
.growth-check-dialog {
  position:relative;
  width:min(1000px,100%);
  overflow:visible;
  border:1px solid var(--border-strong);
  border-radius:30px;
  background:var(--bg);
  color:var(--text);
  box-shadow:0 40px 120px rgba(0,0,0,.42);
}
.growth-check-dialog::before {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:3px;
  border-radius:30px 30px 0 0;
  background:linear-gradient(90deg,transparent 4%,var(--accent-ink) 38%,var(--action-bg) 62%,transparent 96%);
  opacity:.68;
  pointer-events:none;
}
.gc-close {
  position:absolute;
  top:18px;
  right:18px;
  margin:0;
  z-index:6;
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  background:color-mix(in srgb,var(--surface) 92%,transparent);
  color:var(--text);
  font-size:24px;
  cursor:pointer;
  backdrop-filter:blur(12px);
}
.gc-close:hover,.gc-close:focus-visible { border-color:var(--border-strong); transform:translateY(-1px); }
.growth-check-stage { min-height:620px; display:grid; }
.gc-screen { width:100%; align-self:center; padding:clamp(64px,6vw,76px) clamp(42px,6vw,72px) clamp(44px,5vw,64px); }
.gc-screen h2 { margin-top:14px; max-width:18ch; font-size:clamp(42px,5.7vw,74px); line-height:.98; letter-spacing:-.055em; }
.gc-lede { margin-top:20px; max-width:64ch; font-size:clamp(18px,2vw,23px); color:var(--muted); }
.gc-screen > p { margin-top:20px; max-width:70ch; }
.gc-handoff-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin:30px 0; }
.gc-handoff-list span { display:flex; align-items:center; gap:12px; padding:14px 16px; border:1px solid var(--border); border-radius:14px; background:var(--surface); color:var(--text); font-weight:720; }
.gc-handoff-list b { color:var(--accent-ink); font:800 10px/1 ui-monospace,monospace; letter-spacing:.12em; }
.gc-actions,.gc-submit-row,.gc-result-actions { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:28px; }
.gc-text-btn { border:0; background:transparent; color:var(--text); font:inherit; font-weight:780; padding:10px 0; cursor:pointer; text-decoration:underline; text-decoration-color:color-mix(in srgb,var(--accent-ink) 55%,transparent); text-underline-offset:5px; }
.gc-text-btn:hover,.gc-text-btn:focus-visible { color:var(--accent-ink); }
.gc-micro { font-size:13px; color:var(--soft); }
.gc-progress-head { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.gc-progress-copy { color:var(--muted); font-size:12px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.gc-progress-track { height:3px; margin:18px 0 34px; border-radius:999px; background:var(--border); overflow:hidden; }
.gc-progress-track i { display:block; height:100%; background:linear-gradient(90deg,var(--accent-ink),var(--action-bg)); transition:width .3s var(--ease); }
.gc-question-screen { padding-top:clamp(58px,5vw,68px); padding-bottom:34px; }
.gc-question-screen h2 { font-size:clamp(34px,4vw,52px); max-width:23ch; }
.gc-question-screen .gc-progress-track { margin:14px 0 26px; }
.gc-question-help { color:var(--muted); font-size:14px; }
.gc-options { display:grid; gap:10px; margin-top:26px; }
.gc-question-screen .gc-options { gap:8px; margin-top:20px; }
.gc-option { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:17px 18px; border:1px solid var(--border); border-radius:14px; background:var(--surface); color:var(--text); text-align:left; font:inherit; font-weight:760; cursor:pointer; transition:transform .2s var(--ease),border-color .2s ease,background .2s ease; }
.gc-question-screen .gc-option { min-height:54px; padding:14px 18px; }
.gc-option:hover,.gc-option:focus-visible { transform:translateX(4px); border-color:var(--border-strong); }
.gc-option.is-selected { border-color:var(--action-bg); background:color-mix(in srgb,var(--action-bg) 9%,var(--surface)); }
.gc-option i { color:var(--accent-ink); font-style:normal; }
.gc-business-options { grid-template-columns:repeat(2,minmax(0,1fr)); }
.gc-footer-nav { display:flex; justify-content:space-between; align-items:center; margin-top:22px; color:var(--soft); font-size:12px; }
.gc-question-screen .gc-footer-nav { margin-top:16px; }
.gc-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:30px; }
.gc-form-grid label { display:grid; gap:8px; color:var(--text); font-weight:760; }
.gc-form-grid input { min-height:54px; border:1px solid var(--border); border-radius:12px; background:var(--surface); color:var(--text); padding:0 15px; font:inherit; }
.gc-form-grid input:focus { outline:2px solid var(--focus-ring); outline-offset:2px; }
.gc-consent,.gc-check { margin-top:18px; font-size:13px; color:var(--muted); }
.gc-consent a { color:var(--text); text-underline-offset:3px; }
.gc-check { display:flex; gap:10px; align-items:flex-start; }
.gc-check input { width:18px; height:18px; margin-top:1px; accent-color:var(--action-bg); }
.gc-form-status { margin-top:12px; min-height:20px; color:var(--muted); font-size:13px; }
.gc-result-head { display:grid; grid-template-columns:minmax(0,1fr) 190px; gap:32px; align-items:center; }
.gc-result-head h2 { max-width:15ch; }
.gc-score-orb { width:180px; aspect-ratio:1; border-radius:50%; display:grid; place-items:center; text-align:center; position:relative; padding:32px; background:conic-gradient(var(--action-bg) var(--score-pct), var(--border) 0); }
.gc-score-orb::after { content:""; position:absolute; inset:10px; border-radius:50%; background:var(--bg); }
.gc-score-orb strong,.gc-score-orb span { position:relative; z-index:1; }
.gc-score-orb strong { font-size:54px; line-height:.9; color:var(--text); }
.gc-score-orb span { margin-top:5px; font-size:10px; line-height:1.25; color:var(--muted); text-transform:uppercase; letter-spacing:.09em; }
.gc-save-error { margin-top:24px; padding:16px 18px; border:1px solid color-mix(in srgb,var(--warm-ink) 45%,var(--border)); border-radius:14px; background:color-mix(in srgb,var(--warm-ink) 7%,var(--surface)); }
.gc-result-grid { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(280px,.92fr); gap:20px; margin-top:34px; }
.gc-result-main,.gc-category-scores,.gc-service-card { border:1px solid var(--border); border-radius:20px; background:var(--surface); padding:clamp(22px,3vw,30px); }
.gc-result-label { display:block; color:var(--accent-ink); font-size:10px; font-weight:850; letter-spacing:.14em; text-transform:uppercase; }
.gc-result-main h3,.gc-service-card h3 { margin-top:10px; font-size:clamp(30px,3.2vw,44px); line-height:1.02; }
.gc-result-main p,.gc-service-card p { margin-top:14px; }
.gc-uncertain { padding-left:16px; border-left:2px solid var(--warm-ink); }
.gc-secondary-note { color:var(--muted); font-size:13px; }
.gc-category-scores { display:grid; gap:14px; }
.gc-category-scores > div > span { display:flex; justify-content:space-between; gap:12px; color:var(--text); font-size:13px; }
.gc-category-scores i { display:block; height:6px; margin-top:7px; overflow:hidden; border-radius:999px; background:var(--border); }
.gc-category-scores em { display:block; height:100%; background:linear-gradient(90deg,var(--accent-ink),var(--action-bg)); border-radius:inherit; }
.gc-service-card { margin-top:20px; }
.gc-service-card > strong { display:block; margin-top:10px; color:var(--text); font-size:18px; }
.gc-priorities { margin-top:24px; padding-top:22px; border-top:1px solid var(--border); }
.gc-priorities ol { margin:14px 0 0; padding-left:20px; display:grid; gap:9px; color:var(--text); }
.gc-discovery-support,.gc-method { color:var(--muted); font-size:13px; }
.gc-method { margin-top:18px; padding-top:16px; border-top:1px solid var(--border); }

.growth-check-teaser { position:fixed; right:24px; bottom:24px; z-index:120; width:min(340px,calc(100vw - 32px)); padding:20px; border:1px solid var(--border-strong); border-radius:18px; background:var(--surface); box-shadow:0 20px 60px rgba(0,0,0,.22); }
.growth-check-teaser[hidden] { display:none; }
.growth-check-teaser strong { display:block; color:var(--text); font-size:20px; }
.growth-check-teaser p { margin-top:7px; font-size:13px; }
.growth-check-teaser .gc-teaser-actions { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:14px; }
.growth-check-teaser .gc-teaser-close { width:36px; height:36px; border-radius:50%; border:1px solid var(--border); background:transparent; color:var(--text); cursor:pointer; }

/* Dedicated Growth Check landing page stays calmer than the homepage. */
.growth-check-page .secondary-hero { min-height:auto; }
.growth-check-page .growth-check-invite { margin-top:24px; }
.gc-landing-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.gc-landing-step { min-height:230px; padding:26px; border:1px solid var(--border); border-radius:var(--radius-md); background:var(--surface); }
.gc-landing-step span { color:var(--accent-ink); font:820 10px/1 ui-monospace,monospace; letter-spacing:.13em; }
.gc-landing-step h3 { margin-top:24px; font-size:clamp(25px,2.7vw,34px); }
.gc-landing-step p { margin-top:12px; }

/* Carry forward the approved contact alignment refinement. */
@media (min-width:981px){
  .page-contact #discovery{padding-bottom:clamp(24px,2.8vw,40px)}
  .page-contact #discovery .secondary-contact-layout{align-items:end}
  .page-contact #discovery .align-recommendation{margin-top:0!important;align-self:end}
  .page-contact #discovery + .section-tight{padding-top:clamp(24px,2.8vw,40px)}
}
@media (max-width:980px){
  .page-contact #discovery .align-recommendation{margin-top:0!important}
  .growth-check-invite,.gc-result-grid,.gc-landing-steps{grid-template-columns:1fr}
  .gc-invite-visual{min-height:310px}
}
@media (max-width:760px){
  .growth-check-overlay{padding:0;align-items:flex-start}
  .growth-check-dialog{width:100%;min-height:100dvh;height:auto;border-radius:0;border:0}
  .growth-check-dialog::before{border-radius:0}
  .growth-check-stage{min-height:100dvh}
  .gc-screen{align-self:start;padding:78px 20px 36px}
  .gc-screen h2{font-size:clamp(36px,10.8vw,52px)}
  .gc-question-screen h2{font-size:clamp(31px,8.6vw,44px)}
  .gc-handoff-list,.gc-business-options,.gc-form-grid,.gc-result-head{grid-template-columns:1fr}
  .gc-handoff-list{gap:7px}
  .gc-handoff-list span{padding:11px 12px}
  .gc-result-head{gap:24px}
  .gc-score-orb{width:150px}
  .growth-check-teaser{right:16px;bottom:84px}
  .gc-invite-visual{min-height:280px}
  .gc-handoff-orbit{width:300px;max-width:88vw}
}

@media (min-width:761px) and (max-height:760px){
  .growth-check-overlay{padding-block:14px}
  .growth-check-stage{min-height:0}
  .gc-screen{padding-top:58px;padding-bottom:36px}
}
@media (prefers-reduced-motion:reduce){
  .gc-option,.gc-progress-track i,.gc-close{transition:none!important}
  .gc-option:hover,.gc-option:focus-visible,.gc-close:hover,.gc-close:focus-visible{transform:none}
}

/* v12 Insights library: editorial menu, search, and article feed. */
.insights-menu-hero { padding-bottom: clamp(54px, 7vw, 84px); }
.insights-library-section { padding-top: clamp(42px, 6vw, 72px); }
.insights-library {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
.insights-menu {
  position: sticky;
  top: 104px;
  min-width: 0;
}
.insights-search-label {
  display: block;
  margin-bottom: 10px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.insights-search-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color .22s ease, box-shadow .22s ease, background .18s linear;
}
.insights-search-wrap:focus-within {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus-ring) 13%, transparent);
}
.insights-search-wrap svg { width: 20px; color: var(--soft); }
.insights-search-wrap input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 15px;
}
.insights-search-wrap input::placeholder { color: var(--soft); opacity: .9; }
.insights-search-status {
  margin: 12px 2px 22px;
  color: var(--soft);
  font-size: 12px;
}
.insights-menu-list {
  display: grid;
  border-top: 1px solid var(--border);
}
.insights-menu-item {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 4px 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.32;
  position: relative;
  transition: color .2s ease, padding-left .22s var(--ease);
}
.insights-menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-ink), var(--warm-ink));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .24s var(--ease);
}
.insights-menu-item:is(:hover,:focus-visible),
.insights-menu-item.is-current { color: var(--text); padding-left: 10px; }
.insights-menu-item:is(:hover,:focus-visible)::before,
.insights-menu-item.is-current::before { transform: scaleY(1); }
.insights-menu-index {
  color: var(--accent-ink);
  font: 760 10px/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .08em;
  padding-top: 3px;
}
.insights-library-main { min-width: 0; }
.insights-feature {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(300px,.92fr);
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .26s var(--ease), border-color .26s ease, box-shadow .26s var(--ease), background .18s linear;
}
.insights-feature:is(:hover,:focus-visible) {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.insights-feature-media {
  min-height: 430px;
  border-right: 1px solid var(--border);
}
.insights-feature-copy {
  padding: clamp(30px,4vw,46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
}
.insights-feature-copy h2 {
  margin-top: 12px;
  font-size: clamp(34px,4.3vw,58px);
  text-wrap: balance;
}
.insights-feature-copy p { margin-top: 16px; font-size: 15px; }
.insights-feature-copy .article-meta { margin-top: 0; padding-top: 0; }
.insights-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 46px 2px 16px;
  border-bottom: 1px solid var(--border);
}
.insights-list-head > span:last-child { color: var(--soft); font-size: 12px; }
.insights-rows { display: grid; }
.insights-row {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: transform .22s var(--ease), padding-left .22s var(--ease), border-color .22s ease;
}
.insights-row:is(:hover,:focus-within) { transform: translateX(4px); border-color: var(--border-strong); }
.insights-row-media {
  min-height: 128px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.insights-row-copy { min-width: 0; display: flex; flex-direction: column; }
.insights-row-copy h3 { margin-top: 8px; font-size: clamp(24px,2.3vw,32px); line-height: 1.05; text-wrap: balance; }
.insights-row-copy h3 a { color: var(--text); }
.insights-row-copy > p { margin-top: 10px; font-size: 14px; max-width: 68ch; }
.insights-row-copy .article-meta { margin-top: auto; padding-top: 16px; }
.insights-row-copy .article-meta a { display: inline-flex; align-items: center; gap: 7px; color: var(--text); font-weight: 720; }
.insights-row-copy .article-meta svg { width: 15px; color: var(--accent-ink); transition: transform .2s var(--ease); }
.insights-row:is(:hover,:focus-within) .article-meta svg { transform: translateX(3px); }
.insights-empty {
  padding: 56px 0 18px;
  text-align: center;
  color: var(--muted);
}
.insights-empty strong { display: block; color: var(--text); font-size: 22px; }
.insights-empty p { margin-top: 8px; }
[hidden] { display: none !important; }

/* One photographic source per article. The live theme creates the Engineered treatment in CSS. */
.blog-cover-media { position: relative; overflow: hidden; background: var(--surface-2); }
.blog-cover-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-cover-media > img.engineered {
  filter: brightness(.57) saturate(.70) contrast(1.15) hue-rotate(7deg);
  transform: scale(1.012);
}
.blog-cover-media > img.light {
  filter: brightness(1.015) saturate(.96) contrast(1.01);
  clip-path: inset(0 0 calc(100% - var(--theme-pct)) 0);
  will-change: clip-path;
}
.blog-cover-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--border) 82%, transparent);
}

/* Article bodies generated from the markdown collection. */
.article-body ul,
.article-body ol {
  margin: 20px 0 0 1.2em;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.article-body li { padding-left: 4px; }
.article-body a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body strong { color: var(--text); }
.article-body hr { margin: 52px 0; border: 0; border-top: 1px solid var(--border); }
.article-body code {
  padding: .12em .34em;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--text);
  font: .88em ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.article-table-wrap {
  width: 100%;
  margin: 28px 0 36px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.article-body table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 14px; }
.article-body th,
.article-body td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); color: var(--muted); }
.article-body th { color: var(--text); font-size: 12px; letter-spacing: .04em; background: var(--surface-2); }
.article-body tr:last-child td { border-bottom: 0; }
.article-cover-media.blog-cover-media > img { object-position: center; }
.refined-article-aside a { line-height: 1.35; }

@media (max-width: 980px) {
  .insights-library { grid-template-columns: 1fr; gap: 38px; }
  .insights-menu { position: static; }
  .insights-menu-list { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 18px; }
  .insights-feature { grid-template-columns: 1fr; }
  .insights-feature-media { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--border); }
}

@media (max-width: 760px) {
  .insights-menu-list { grid-template-columns: 1fr; }
  .insights-menu-item { padding-top: 13px; padding-bottom: 13px; }
  .insights-feature-media { min-height: 280px; }
  .insights-feature-copy { padding: 24px; gap: 24px; }
  .insights-list-head { padding-top: 38px; }
  .insights-row { grid-template-columns: 118px minmax(0,1fr); gap: 16px; padding: 18px 0; }
  .insights-row-media { min-height: 92px; border-radius: 12px; }
  .insights-row-copy h3 { font-size: 22px; }
  .insights-row-copy > p { display: none; }
  .insights-row-copy .article-meta { padding-top: 10px; }
  .blog-cover-media > img.light { clip-path: inset(0 calc(100% - var(--theme-pct)) 0 0); }
  .article-body ul,
  .article-body ol { font-size: 16px; }
}

@media (max-width: 460px) {
  .insights-row { grid-template-columns: 100px minmax(0,1fr); gap: 14px; }
  .insights-row-copy h3 { font-size: 19px; }
  .insights-row-copy .article-meta { display: block; }
  .insights-row-copy .article-meta a { margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .insights-menu-item,
  .insights-feature,
  .insights-row,
  .insights-row-copy .article-meta svg { transition: none; }
  .insights-row:is(:hover,:focus-within),
  .insights-feature:is(:hover,:focus-visible) { transform: none; }
}

/* v12.1: keep the Insights index menu visible earlier in the journey. */
.insights-menu-hero {
  padding-top: clamp(112px, 11vw, 148px);
  padding-bottom: clamp(38px, 4.8vw, 58px);
}
.insights-menu-hero .secondary-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(46px, 5.55vw, 72px);
  line-height: .98;
}
.insights-menu-hero .secondary-hero-copy .lede {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  max-width: 64ch;
}
.insights-menu-hero .insights-index { padding-top: 14px; }
.insights-menu-hero .insights-index strong { margin-top: 12px; font-size: 20px; }
.insights-menu-hero .insights-index p { margin-top: 6px; }

@media (max-width: 760px) {
  .insights-menu-hero {
    padding-top: 98px;
    padding-bottom: 34px;
  }
  .insights-menu-hero .secondary-hero-copy h1 {
    font-size: clamp(38px, 11.4vw, 50px);
    line-height: .98;
  }
  .insights-menu-hero .secondary-hero-copy .lede {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }
  .insights-menu-hero .insights-index { padding-top: 12px; }
  .insights-menu-hero .insights-index strong { font-size: 18px; }
}


/* ===== v13 mobile header + stable theme rail ===== */
@media (max-width: 760px) {
  .lang-toggle:not(.mobile-lang-toggle) {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .mobile-lang-toggle { display: none !important; }
  .header-actions { margin-left: auto; gap: 8px; flex: 0 0 auto; }
  .lang-toggle { flex: 0 0 auto; }
  .menu-toggle { flex: 0 0 46px; }
  .theme-rail {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
  }
  .theme-track { min-width: 0; }
}

/* v15 focused offer, intake, legal and full-page assessment additions */
:root{--svs-header-height:92px}
.honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-check{display:flex;gap:.7rem;align-items:flex-start;line-height:1.5}.form-check input{margin-top:.25rem}.package-prefill-note{padding:.8rem 1rem;border:1px solid var(--line);border-radius:14px;font-weight:700}.sensitive-data-note{max-width:68ch}.offer-ladder{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.package-card{padding:clamp(1.25rem,2vw,2rem);border:1px solid var(--line);border-radius:24px;background:var(--surface);display:flex;flex-direction:column;gap:.75rem}.package-card h3{font-size:clamp(1.45rem,2.1vw,2.15rem);margin:0}.package-card h4{margin:.4rem 0 0}.package-card ul{margin:.25rem 0 .5rem;padding-left:1.25rem}.package-card .btn{margin-top:auto;align-self:flex-start}.package-price{font-size:1.35rem}.package-featured{box-shadow:0 18px 50px rgba(0,0,0,.08)}.package-note{font-size:.9rem;opacity:.8}.investment-factors{margin-top:1.25rem;padding:1.35rem;border:1px solid var(--line);border-radius:20px}.legal-page .secondary-hero{padding-bottom:1rem}.legal-content{max-width:860px}.legal-content h2{margin-top:2rem}.legal-draft{padding:1rem 1.2rem;border:1px solid var(--line);border-radius:16px;margin-bottom:1.5rem}.growth-check-fullpage{padding:calc(var(--svs-header-height) + 32px) 0 100px;min-height:100dvh}.growth-check-fullpage [data-growth-check-stage]{max-width:920px;margin:0 auto;scroll-margin-top:calc(var(--svs-header-height) + 24px)}.growth-check-fullpage .gc-screen{padding:0!important;border:0!important;box-shadow:none!important;background:transparent!important;max-height:none!important;overflow:visible!important}.growth-check-fullpage .gc-close{display:none!important}.growth-check-page main{overflow:visible}.growth-check-page .growth-check-overlay{position:static!important;background:transparent!important;display:block!important;overflow:visible!important;padding:0!important}.growth-check-page .growth-check-dialog{max-width:none!important;width:auto!important;max-height:none!important;height:auto!important;border:0!important;background:transparent!important;box-shadow:none!important;overflow:visible!important}.article-back-link{display:inline-flex;align-items:center;gap:.5rem;margin:0 0 1.2rem;font-weight:800}.article-back-link:hover{transform:translateX(-2px)}
@media(max-width:900px){:root{--svs-header-height:76px}.offer-ladder{grid-template-columns:1fr}.growth-check-fullpage{padding-top:calc(var(--svs-header-height) + 24px);padding-bottom:120px}}
@media(max-width:480px){.growth-check-fullpage{padding-top:calc(var(--svs-header-height) + 18px);padding-left:.15rem;padding-right:.15rem}.package-card{border-radius:18px}}
@media(prefers-reduced-motion:reduce){.article-back-link:hover{transform:none}}
/* v15 Insights alignment + true night image handling */
.insights-feature{grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr)}
.insights-feature-copy h2{font-size:clamp(32px,3.4vw,50px);line-height:.98;overflow-wrap:anywhere}
.insights-row{grid-template-columns:minmax(210px,32%) minmax(0,1fr);align-items:start}
.insights-row-media{width:100%;min-height:0;aspect-ratio:4/3}
.insights-row-copy{min-height:100%;padding-block:4px}
.insights-row-copy h3{font-size:clamp(23px,2vw,30px);overflow-wrap:anywhere}
.blog-cover-media>img.engineered{filter:none;transform:none}
@media(max-width:980px){.insights-feature{grid-template-columns:1fr}.insights-feature-media{border-right:0;border-bottom:1px solid var(--border);min-height:320px}.insights-row{grid-template-columns:180px minmax(0,1fr)}}
@media(max-width:700px){.insights-row{grid-template-columns:1fr}.insights-row-media{aspect-ratio:16/10}.insights-row-copy{padding-top:10px}}
.service-fit-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.service-fit-grid .engagement-card h3{margin-top:.5rem}@media(max-width:760px){.service-fit-grid{grid-template-columns:1fr}}

/* v15.1 contact form control refinement: compact, accessible consent rows. */
.page-contact .elevated-form {
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
}
.page-contact .elevated-form .field input:not([type="checkbox"]),
.page-contact .elevated-form .field select {
  min-height: 46px;
}
.page-contact .elevated-form .field textarea {
  min-height: 126px;
}
.page-contact .form-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 92%, var(--bg));
  line-height: 1.45;
  cursor: pointer;
}
.page-contact .form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
  border: 1.5px solid color-mix(in srgb, var(--text) 48%, var(--border));
  border-radius: 5px;
  background: var(--bg);
  display: grid;
  place-content: center;
  cursor: pointer;
  flex: 0 0 20px;
}
.page-contact .form-check input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--action-bg);
  transform: scale(0);
  transition: transform .14s ease;
}
.page-contact .form-check input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.page-contact .form-check input[type="checkbox"]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-ink) 28%, transparent);
  outline-offset: 2px;
}
.page-contact .form-check:has(input[type="checkbox"]:checked) {
  border-color: color-mix(in srgb, var(--accent-ink) 36%, var(--border));
}
.page-contact .form-check span {
  min-width: 0;
}
.page-contact .form-check a {
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .page-contact .elevated-form { padding: 20px; gap: 13px; }
  .page-contact .form-check { padding: 11px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .page-contact .form-check input[type="checkbox"]::before { transition: none; }
}
