/* Production stylesheet: 2026-07-28 revision 5. */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/roboto-latin-20260710-2.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #0c0c0e;
  --bg-deep: #09090b;
  --surface: #141418;
  --elevated: #1a1a1f;
  --border: #2a2a32;
  --border-soft: rgba(255, 255, 255, 0.06);
  --navy: #0c0c0e;
  --navy-deep: #0c0c0e;
  --navy-mid: #e8710a;
  --accent: #e8710a;
  --accent-bright: #f59e0b;
  --accent-soft: rgba(232, 113, 10, 0.12);
  --accent-glow: rgba(232, 113, 10, 0.18);
  --signal: #0ea5e8;
  --signal-soft: rgba(14, 165, 232, 0.12);
  --sky: #141418;
  --text: #c4c4cc;
  --muted: #8b8b96;
  --bright: #eaeaea;
  --white: #f5f5f7;
  --on-accent: #0c0c0e;
  --header-glass: rgba(12, 12, 14, 0.84);
  --header-panel: rgba(12, 12, 14, 0.88);
  --header-solid: rgba(12, 12, 14, 0.98);
  --header-shadow: rgba(12, 12, 14, 0.5);
  --footer-bg: #0a0a0c;
  --ghost-border: rgba(255, 255, 255, 0.4);
  --ghost-bg: rgba(20, 20, 24, 0.4);
  --panel-tint: rgba(255, 255, 255, 0.045);
  --faq-open: #15171c;
  --track-bg: rgba(20, 20, 24, 0.62);
  --line-strong: rgba(255, 255, 255, 0.13);
  --standard-muted: #aebed0;
  --stripe: rgba(255, 255, 255, 0.008);
  --display: "Roboto", Arial, sans-serif;
  --body: "Roboto", Arial, sans-serif;
  --content: 1160px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-deep: #eef3f8;
  --surface: #ffffff;
  --elevated: #f1f5f9;
  --border: #cbd5e1;
  --border-soft: rgba(15, 23, 42, 0.09);
  --navy: #f8fafc;
  --navy-deep: #eef3f8;
  --navy-mid: #b54708;
  --accent: #b54708;
  --accent-bright: #93370d;
  --accent-soft: rgba(181, 71, 8, 0.09);
  --accent-glow: rgba(181, 71, 8, 0.12);
  --signal: #0369a1;
  --signal-soft: rgba(3, 105, 161, 0.1);
  --sky: #ffffff;
  --text: #273449;
  --muted: #526176;
  --bright: #0f172a;
  --white: #0b1220;
  --on-accent: #ffffff;
  --header-glass: rgba(248, 250, 252, 0.92);
  --header-panel: rgba(255, 255, 255, 0.94);
  --header-solid: rgba(248, 250, 252, 0.98);
  --header-shadow: rgba(15, 23, 42, 0.13);
  --footer-bg: #e9eff5;
  --ghost-border: rgba(15, 23, 42, 0.32);
  --ghost-bg: rgba(255, 255, 255, 0.76);
  --panel-tint: rgba(255, 255, 255, 0.76);
  --faq-open: #f6eee8;
  --track-bg: #e9eff5;
  --line-strong: rgba(15, 23, 42, 0.17);
  --standard-muted: #44546a;
  --stripe: rgba(15, 23, 42, 0.018);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: -2px;
}

main section[id] {
  scroll-margin-top: 92px;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  padding-top: 8px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: border-color 260ms ease, background 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-stuck {
  border-bottom-color: rgba(232, 113, 10, 0.12);
  background: var(--header-glass);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  height: 64px;
  margin: 0 auto;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  transition: border-color 260ms ease, border-radius 340ms var(--ease), background 260ms ease, box-shadow 340ms var(--ease);
}

.site-header.is-stuck .nav-inner {
  border-color: rgba(42, 42, 50, 0.72);
  border-radius: 32px;
  background: var(--header-panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 24px var(--header-shadow);
}

.wordmark {
  display: inline-grid;
  gap: 2px;
  min-width: 0;
  text-decoration: none;
  line-height: 1;
}

.wordmark-main {
  color: var(--bright);
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-main span {
  color: var(--accent);
}

.wordmark-sub {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current] {
  color: var(--bright);
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after,
.site-nav > a:not(.nav-cta).is-active::after,
.site-nav > a:not(.nav-cta)[aria-current]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(232, 113, 10, 0.65);
  border-radius: 4px;
  color: var(--accent-bright);
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

.site-nav .nav-cta:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(232, 113, 10, 0.18);
  color: var(--on-accent);
}

.theme-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--bright);
  cursor: pointer;
  transition: transform 200ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.js .theme-toggle {
  display: inline-flex;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent-bright);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-icon-moon {
  display: none;
}

html[data-theme="light"] .theme-icon-sun {
  display: none;
}

html[data-theme="light"] .theme-icon-moon {
  display: block;
}

.theme-toggle-standalone {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--bright);
}

.menu-lines {
  display: grid;
  gap: 5px;
  width: 20px;
}

.menu-lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 96px 32px 128px;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 113, 10, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 113, 10, 0.065) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 72% 56% at 50% 42%, #000 0%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 17%;
  left: 50%;
  width: min(780px, 76vw);
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-drift 16s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  text-align: center;
}

.hero-badge,
.section-tag {
  color: var(--accent);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-block;
  margin: 0 0 24px;
  padding: 10px 26px;
  border: 1px solid rgba(232, 113, 10, 0.36);
  border-radius: 4px;
  background: rgba(232, 113, 10, 0.06);
}

.hero h1 {
  max-width: 1200px;
  margin: 0 auto 32px;
  color: var(--white);
  font-family: var(--display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-sub {
  margin: 0 auto 12px;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.45;
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  text-wrap: balance;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 200px;
  min-height: 54px;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 300ms var(--ease), background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 300ms var(--ease);
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--accent-bright);
  color: var(--on-accent);
}

.button-primary:hover {
  background: var(--accent);
  box-shadow: 0 7px 28px rgba(232, 113, 10, 0.34), 0 0 42px rgba(232, 113, 10, 0.14);
}

.button-ghost {
  border-color: var(--ghost-border);
  background: var(--ghost-bg);
  color: var(--bright);
}

.hero .button-ghost {
  min-width: 250px;
}

.button-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 7px 24px rgba(232, 113, 10, 0.12);
  color: var(--white);
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding: 0 20px;
}

.hero-proof li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(232, 113, 10, 0.45);
}

.scroll-cue {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 42px auto 0;
  color: var(--muted);
  text-decoration: none;
  animation: scroll-drift 2.6s ease-in-out infinite;
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

.section-band {
  position: relative;
  padding: 80px 32px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.section-header {
  max-width: 970px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-lede {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-tag {
  margin: 0 0 16px;
}

.section-header h1,
.section-header h2,
.contact h1,
.contact h2 {
  margin: 0;
  color: var(--bright);
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1.16;
  text-wrap: balance;
}

.hero.hero-compact {
  min-height: 76svh;
  padding-bottom: 104px;
}

.hero-compact h1 {
  font-size: 4.6rem;
}

.ethics-note {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: center;
}

.intel-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 76px;
  padding: 34px 38px;
  border: 1px solid rgba(232, 113, 10, 0.2);
  border-top-width: 2px;
  border-top-color: var(--accent);
  background: rgba(232, 113, 10, 0.035);
}

.intel-teaser-copy {
  display: grid;
  gap: 8px;
}

.intel-teaser-copy .section-tag {
  margin: 0;
  font-size: 0.9rem;
}

.intel-teaser-copy h3 {
  margin: 0;
  color: var(--bright);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.25;
}

.intel-teaser-copy p:not(.section-tag) {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
}

.intel-teaser .button {
  flex-shrink: 0;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(14, 165, 232, 0.025) 3px, rgba(14, 165, 232, 0.025) 4px);
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 620px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(14, 165, 232, 0.08), transparent 70%);
  pointer-events: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding-top: 0;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card.intelligence-card {
  align-items: flex-start;
  padding: 30px 26px;
  border-top-width: 1px;
  background: rgba(255, 255, 255, 0.018);
  text-align: left;
}

.intelligence-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  background: var(--accent-soft);
  box-shadow: none;
  color: var(--accent);
}

.service-card.intelligence-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card.intelligence-card > p:not(.card-meta) {
  min-height: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 44px 36px 32px;
  overflow: hidden;
  border: 1px solid rgba(232, 113, 10, 0.2);
  border-top-width: 2px;
  border-top-color: var(--accent);
  border-radius: 4px;
  background: rgba(232, 113, 10, 0.035);
  text-align: center;
  transition: transform 400ms var(--ease), border-color 250ms ease, box-shadow 400ms var(--ease), background 250ms ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--accent);
  background: rgba(232, 113, 10, 0.055);
  box-shadow: 0 22px 54px rgba(232, 113, 10, 0.16), inset 0 0 42px rgba(232, 113, 10, 0.04);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  box-shadow: 0 5px 22px rgba(232, 113, 10, 0.28);
  color: var(--on-accent);
}

.service-card h3 {
  margin: 0 0 15px;
  color: var(--bright);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.28;
}

.service-card > p:not(.card-meta) {
  min-height: 88px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--accent-bright);
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-panel {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.detail-panel h2,
.detail-panel h3 {
  margin-top: 0;
  color: var(--bright);
  font-family: var(--display);
}

.feature-list {
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  list-style: none;
  text-align: left;
}

.feature-list li {
  position: relative;
  padding: 5px 0 5px 20px;
}

.feature-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.card-meta {
  width: calc(100% + 72px);
  margin: auto -36px -32px;
  padding: 18px 22px;
  border-top: 1px solid rgba(232, 113, 10, 0.14);
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.card-meta span {
  padding: 0 4px;
  color: var(--accent);
}

.process::before {
  content: "";
  position: absolute;
  bottom: -220px;
  left: 50%;
  width: 650px;
  height: 430px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(232, 113, 10, 0.07), transparent 70%);
}

.process {
  background: var(--bg);
}

.process-steps {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  flex: 1 1 0;
  padding: 0 22px;
  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 124px;
  transform: translateY(-50%);
  background: linear-gradient(transparent, var(--border) 28%, var(--border) 72%, transparent);
}

.process-num {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.72;
}

.process-step h3 {
  margin: 0 0 12px;
  color: var(--bright);
  font-family: var(--display);
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.track-record {
  border-top-color: var(--border);
  background: var(--track-bg);
}

.track-record .section-header {
  margin-bottom: 40px;
}

.track-record .section-header h2 {
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 920px;
  margin: 0 auto 32px;
}

.stat {
  flex: 1 1 0;
  text-align: center;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 58px;
  background: linear-gradient(var(--signal-soft), rgba(232, 113, 10, 0.28));
}

.investigation-standard {
  max-width: 930px;
  margin: 0 auto 34px;
  padding: 20px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--panel-tint);
  box-shadow: inset 0 1px var(--border-soft);
}

.standard-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--standard-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.standard-heading span:first-child { color: var(--white); }

.standard-heading-single {
  justify-content: center;
  text-align: center;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.standard-grid li {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line-strong);
  text-align: center;
}

.standard-grid li:last-child {
  border-right: 0;
}

.standard-grid strong {
  color: var(--white);
  font-size: 1.05rem;
}

.standard-grid span {
  margin-top: 6px;
  color: var(--standard-muted);
  font-size: 1rem;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 930px;
  margin: 0 auto;
}

.outcome-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-top: 2px solid rgba(232, 113, 10, 0.5);
  border-radius: 6px;
  background: var(--surface);
  text-align: center;
  transition: transform 300ms var(--ease), border-color 200ms ease, box-shadow 300ms ease;
}

.outcome-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 113, 10, 0.52);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.outcome-card > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.95rem;
}

.outcome-card h3 {
  margin: 8px 0 9px;
  color: var(--bright);
  font-family: var(--display);
  font-size: 1.2rem;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.about::before {
  content: "";
  position: absolute;
  top: 24%;
  right: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(ellipse, rgba(232, 113, 10, 0.06), transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1000px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 64px;
}

.about-copy > p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.82;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.about-chips li {
  padding: 8px 13px;
  border: 1px solid rgba(232, 113, 10, 0.28);
  border-radius: 4px;
  color: var(--bright);
  font-size: 1.065rem;
  font-weight: 600;
}

.profile-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.profile-head {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
}

.profile-head span {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.profile-head strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 2.15rem;
}

.profile-panel dl {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 28px 20px;
}

.profile-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.profile-panel dl div:last-child { border-bottom: 0; }

.profile-panel dt,
.profile-panel dd {
  margin: 0;
  font-size: 1rem;
}

.profile-panel dt { color: var(--muted); }
.profile-panel dd { color: var(--bright); font-weight: 600; text-align: right; }

.faq {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%),
    var(--bg-deep);
}

.faq-inner {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  transition: border-color 200ms ease, background 200ms ease;
}

.faq-item[open] {
  border-color: rgba(232, 113, 10, 0.48);
  background: var(--faq-open);
}

.faq-item summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--bright);
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--accent);
  font-family: var(--body);
  font-size: 1.45rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: -3px;
}

.faq-item p {
  max-width: 820px;
  margin: 0;
  padding: 0 62px 24px 24px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.page-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.about-page-copy {
  display: grid;
  gap: 20px;
}

.about-page-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-page-copy strong {
  color: var(--bright);
}

.principles {
  background: var(--track-bg);
}

.faq-page .faq-list {
  max-width: 980px;
  margin: 0 auto;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top-color: var(--border);
  background: var(--bg);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 5px, var(--stripe) 5px, var(--stripe) 6px);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact .section-tag { margin: 0 0 14px; }
.contact h1,
.contact h2 { margin-bottom: 20px; color: var(--bright); font-size: 4.3rem; }

.contact-sub {
  max-width: 650px;
  margin: 0 auto 34px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.72;
  text-wrap: balance;
}

.button-large {
  min-width: 248px;
  min-height: 62px;
  padding: 18px 34px;
  font-size: 1rem;
}

.contact-micro {
  margin: 22px 0 42px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-actions {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.contact-micro a {
  color: var(--bright);
  text-underline-offset: 4px;
}

.next-steps {
  margin-top: 42px;
  padding: 30px 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
}

.next-steps h3 {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.95rem;
  text-align: left;
  text-transform: uppercase;
}

.next-steps ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.next-steps li > span {
  display: block;
  margin-bottom: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.95rem;
}

.next-steps p {
  margin: 0;
}

.next-steps strong {
  display: inline;
  margin-bottom: 0;
  color: var(--bright);
  font-size: 1rem;
}

.next-steps small {
  display: inline;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.privacy-note {
  max-width: 600px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.privacy-note a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: start;
}

.introduction-form {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--bright);
  font-weight: 700;
}

.form-field label span,
.form-field small,
.form-fallback,
.collection-notice,
.form-status {
  color: var(--muted);
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg);
  color: var(--bright);
  font: inherit;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.collection-notice {
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  font-size: 0.94rem;
}

.collection-notice a,
.form-fallback a {
  color: var(--bright);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
}

.form-fallback {
  margin: 0;
  font-size: 0.92rem;
}

.contact-aside {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--elevated);
}

.contact-aside ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-aside li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.contact-aside li + li {
  margin-top: 20px;
}

.contact-aside li > span {
  color: var(--accent-bright);
  font-family: var(--display);
  font-weight: 800;
}

.contact-aside li p {
  margin: 0;
}

.direct-contact,
.licence-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.direct-contact span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.direct-contact a {
  color: var(--bright);
  font-weight: 700;
}

.licence-note {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-hero {
  padding-bottom: 64px;
}

.legal-section {
  padding-top: 72px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 0.65fr);
  gap: 64px;
  width: min(var(--content), 100%);
  margin: 0 auto;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

.legal-summary ul {
  padding-left: 20px;
}

.legal-summary li + li {
  margin-top: 10px;
}

.legal-copy {
  max-width: 780px;
}

.legal-copy section + section {
  margin-top: 42px;
}

.legal-copy h2 {
  margin: 0 0 12px;
  color: var(--bright);
  font-family: var(--display);
  font-size: 2rem;
}

.legal-copy a {
  color: var(--bright);
  text-underline-offset: 0.2em;
}

.site-footer {
  padding: 38px 28px;
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
}

.footer-inner nav a,
.footer-inner > p {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
}

.footer-inner nav a:hover { color: var(--bright); }
.footer-inner > p { margin: 0; text-align: right; }

.footer-legal > span { display: block; }
.footer-legal > span:last-child { margin-top: 4px; font-size: 0.9rem; }

.footer-wordmark .wordmark-main { color: var(--white); }
.footer-wordmark .wordmark-sub { color: var(--muted); }

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-load {
  opacity: 0;
  animation: hero-in 500ms var(--ease) forwards;
}

.hero-delay-1 { animation-delay: 30ms; }
.hero-delay-2 { animation-delay: 80ms; }
.hero-delay-3 { animation-delay: 140ms; }
.hero-delay-4 { animation-delay: 200ms; }
.hero-delay-5 { animation-delay: 260ms; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-up {
  from { opacity: 0; translate: 0 2rem; }
}

@keyframes fade-in {
  from { opacity: 0; }
}

@keyframes fade-out {
  to { opacity: 0; }
}

@keyframes scale-fade-in {
  from { opacity: 0; scale: 0.92; }
}

@keyframes glow-drift {
  from { opacity: 0.55; transform: translateX(-52%) scale(0.96); }
  to { opacity: 0.9; transform: translateX(-48%) scale(1.06); }
}

@keyframes scroll-drift {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(9px); }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .js [data-reveal] {
      opacity: 1;
      transform: none;
      transition: none;
      animation: fade-in-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 35%;
    }

    .js [data-reveal].service-card,
    .js [data-reveal].profile-panel,
    .js [data-reveal].outcome-card {
      animation-name: scale-fade-in;
      animation-range: entry 0% entry 42%;
    }

    .service-card:nth-child(2),
    .outcome-card:nth-child(2) {
      animation-range: entry 5% entry 47%;
    }

    .service-card:nth-child(3),
    .outcome-card:nth-child(3) {
      animation-range: entry 10% entry 52%;
    }

    .hero-content {
      animation: fade-out linear forwards;
      animation-timeline: view();
      animation-range: exit -200px exit 50%;
    }
  }
}

@media (max-width: 1160px) {
  .site-header { height: 68px; padding-top: 0; border-bottom: 1px solid var(--border); background: var(--header-solid); backdrop-filter: blur(18px); }
  .nav-inner { width: min(100% - 32px, var(--content)); height: 68px; padding: 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
  .site-header.is-stuck .nav-inner { border: 0; border-radius: 0; background: transparent; backdrop-filter: none; box-shadow: none; }
  .js .menu-toggle { display: grid; }
  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100svh - 68px);
    padding: 20px 24px 32px;
    transform: translateX(100%);
    border-top: 1px solid var(--border);
    background: var(--header-solid);
    opacity: 0;
    visibility: hidden;
    transition: transform 300ms var(--ease), opacity 200ms ease, visibility 200ms ease;
  }
  .site-nav.is-open { transform: translateX(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 18px 8px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: 20px; padding: 15px; text-align: center; }

  html:not(.js) .site-header { position: static; height: auto; }
  html:not(.js) .nav-inner { flex-wrap: wrap; height: auto; padding: 12px 0 16px; }
  html:not(.js) .site-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    height: auto;
    padding: 10px 0 0;
    transform: none;
    border-top: 1px solid var(--border);
    background: transparent;
    opacity: 1;
    visibility: visible;
  }
  html:not(.js) .site-nav .nav-cta { margin-top: 0; }
}

@media (max-width: 1020px) {
  .hero h1 { font-size: 4.15rem; }
  .section-header h1, .section-header h2 { font-size: 2.8rem; }
  .contact h1, .contact h2 { font-size: 3.4rem; }
  .service-grid { gap: 16px; }
  .intelligence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { padding-right: 24px; padding-left: 24px; }
  .card-meta { width: calc(100% + 48px); margin-right: -24px; margin-left: -24px; }
  .process-step { padding: 0 14px; }
  .about-grid { gap: 42px; }
}

@media (max-width: 800px) {
  .hero { min-height: calc(100svh - 68px); padding: 58px 20px 76px; }
  .hero.hero-compact { min-height: auto; padding-bottom: 68px; }
  .hero-content { animation: none; opacity: 1; }
  .hero h1 { font-size: 3.35rem; }
  .hero-sub { font-size: 1.35rem; }
  .hero-proof { flex-wrap: wrap; row-gap: 9px; }
  .section-band { padding: 72px 22px; }
  .section-header { margin-bottom: 46px; }
  .service-grid { grid-template-columns: 1fr; gap: 22px; padding-top: 0; }
  .service-card > p:not(.card-meta) { min-height: 0; }
  .process-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 42px 0; }
  .process-step::after { display: none; }
  .stats-row { gap: 26px; }
  .stat strong { font-size: 2.7rem; }
  .stat span { font-size: 1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .page-actions { flex-wrap: wrap; }
  .detail-grid, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
  .legal-summary { position: static; }
  .about-copy { text-align: center; }
  .about-chips { justify-content: center; }
  .standard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .standard-grid li:nth-child(2) { border-right: 0; }
  .standard-grid li:nth-child(-n + 2) { border-bottom: 1px solid var(--line-strong); }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .contact h1, .contact h2 { font-size: 3.2rem; }
  .intel-teaser { flex-direction: column; align-items: flex-start; margin-top: 56px; padding: 28px 24px; }
  .intel-teaser-copy h3 { font-size: 1.65rem; }
}

@media (max-width: 560px) {
  .wordmark-main { font-size: 1.16rem; }
  .wordmark-sub { font-size: 0.72rem; }
  .hero-grid { background-size: 44px 44px; }
  .hero-badge { margin-bottom: 18px; padding: 7px 13px; font-size: 0.9rem; }
  .hero h1 { font-size: 2.42rem; line-height: 1.13; }
  .hero-sub { margin-bottom: 10px; font-size: 1.08rem; }
  .hero-copy { margin-bottom: 26px; font-size: 1rem; line-height: 1.6; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .button { width: min(100%, 300px); min-height: 52px; }
  .hero-proof { display: grid; justify-content: center; margin-top: 24px; text-align: left; font-size: 0.9rem; }
  .hero-proof li { padding: 0; }
  .scroll-cue { margin-top: 30px; }
  .section-band { padding: 62px 18px; }
  .section-tag { font-size: 0.9rem; }
  .section-header h1, .section-header h2, .contact h1, .contact h2 { font-size: 2.18rem; }
  .service-card { padding: 36px 24px 28px; }
  .detail-panel, .introduction-form, .contact-aside { padding: 24px 20px; }
  .intelligence-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card.intelligence-card { padding: 28px 24px; }
  .service-card h3 { font-size: 1.32rem; }
  .service-card > p:not(.card-meta) { font-size: 1rem; }
  .card-meta { margin-bottom: -28px; }
  .process-steps { grid-template-columns: 1fr; gap: 38px; }
  .process-step { max-width: 350px; margin: 0 auto; padding: 0; }
  .process-num { margin-bottom: 13px; font-size: 2rem; }
  .stats-row { flex-direction: column; margin-bottom: 46px; }
  .stat-divider { width: 52px; height: 1px; }
  .stat strong { font-size: 3rem; }
  .investigation-standard { padding: 22px 16px 16px; }
  .standard-heading { display: grid; gap: 5px; text-align: center; }
  .standard-grid li { min-height: 116px; padding: 18px 10px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .about-copy > p { font-size: 1.02rem; }
  .about-page-copy p { font-size: 1.02rem; }
  .about-chips { display: grid; }
  .page-actions { flex-direction: column; align-items: center; }
  .profile-head, .profile-panel dl { padding-right: 20px; padding-left: 20px; }
  .faq-item summary { padding: 20px 54px 20px 20px; font-size: 1.06rem; }
  .faq-item summary::after { right: 20px; }
  .faq-item p { padding: 0 20px 22px; font-size: 0.98rem; }
  .contact h1, .contact h2 { font-size: 3rem; }
  .contact-sub { font-size: 1rem; }
  .next-steps { padding: 24px 20px; }
  .next-steps ol { gap: 18px; }
  .next-steps li { gap: 6px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-wordmark { justify-self: center; }
  .footer-inner > p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .button:hover, .service-card:hover, .site-nav .nav-cta:hover { transform: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
