:root {
  color-scheme: light;
  --navy: #0B1320;
  --foam: #F7FBFA;
  --teal: #2A8F8A;
  --sand: #F6E8D5;
  --coral: #E86F5C;
  --watermark: #DFECEC;
  --teal-ink: #176D68;
  --coral-ink: #A93D31;
  --teal-tint: #E6F2F1;
  --coral-tint: #FCE6E1;
  --on-dark: #F7FBFA;
  --on-dark-soft: rgba(247, 251, 250, 0.74);
  --surface-gloss: rgba(255, 255, 255, 0.62);
  --surface-gloss-strong: rgba(255, 255, 255, 0.82);
  --ink-soft: rgba(11, 19, 32, 0.72);
  --ink-muted: rgba(11, 19, 32, 0.58);
  --line: rgba(11, 19, 32, 0.12);
  --shadow-soft: 0 24px 70px rgba(11, 19, 32, 0.09);
  --shadow-small: 0 12px 34px rgba(11, 19, 32, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-card: 24px;
  --radius-panel: 34px;
  --shell: 1180px;
  --font-sans: "Manrope", "Avenir Next Rounded", "Avenir Next", "Nunito Sans", "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --navy: #F7FBFA;
  --foam: #0B1320;
  --sand: #172331;
  --watermark: #223743;
  --teal-ink: #73D1C9;
  --coral-ink: #FF9C8D;
  --teal-tint: rgba(42, 143, 138, 0.18);
  --coral-tint: rgba(232, 111, 92, 0.18);
  --on-dark: #F7FBFA;
  --on-dark-soft: rgba(247, 251, 250, 0.74);
  --surface-gloss: rgba(247, 251, 250, 0.08);
  --surface-gloss-strong: rgba(247, 251, 250, 0.12);
  --ink-soft: rgba(247, 251, 250, 0.74);
  --ink-muted: rgba(247, 251, 250, 0.58);
  --line: rgba(247, 251, 250, 0.14);
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shadow-small: 0 16px 42px rgba(0, 0, 0, 0.22);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: var(--foam);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--navy);
  background:
    radial-gradient(circle at top left, rgba(42, 143, 138, 0.09), transparent 34rem),
    linear-gradient(180deg, var(--foam) 0%, #fbf7f0 46%, var(--foam) 100%);
  text-rendering: geometricPrecision;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  color: var(--ink-soft);
  line-height: 1.62;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  scroll-margin-top: 112px;
  padding: 104px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--foam);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(247, 251, 250, 0.86), rgba(247, 251, 250, 0));
  pointer-events: none;
}

.nav-shell {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 250, 0.58));
  box-shadow: 0 18px 54px rgba(11, 19, 32, 0.11);
  backdrop-filter: blur(22px) saturate(1.14);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 164px;
}

.brand img {
  width: 168px;
  height: auto;
}

.logo-dark {
  display: none;
}

[data-theme="dark"] .logo-light {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: block;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 650;
  color: rgba(11, 19, 32, 0.75);
}

.nav-links a,
.footer-links a {
  position: relative;
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 19, 32, 0.14);
  font-weight: 750;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 232, 213, 0.62));
  box-shadow: 0 8px 24px rgba(11, 19, 32, 0.06);
}

.nav-cta-short {
  display: none;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 13px 8px 8px;
  border: 1px solid rgba(11, 19, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.30);
  color: var(--navy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: none;
  opacity: 0.72;
  transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
}

.toggle-dot {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: inset -6px -4px 0 rgba(42, 143, 138, 0.28);
}

[data-theme="dark"] .toggle-dot {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(42, 143, 138, 0.14);
}

.hero {
  padding-top: 56px;
  padding-bottom: 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.inverse {
  color: rgba(247, 251, 250, 0.74);
}

h1 {
  max-width: 760px;
  font-size: clamp(2.82rem, 6.1vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 720;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 760;
}

.hero-lede {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  opacity: 1;
  background: rgba(255, 255, 255, 0.54);
}

.button-primary {
  background: var(--navy);
  color: var(--foam);
  box-shadow: 0 16px 38px rgba(11, 19, 32, 0.18);
}

.button-secondary {
  border: 1px solid rgba(11, 19, 32, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
}

.ops-map-note,
.proof-line,
.trust-line {
  margin-top: 18px;
  max-width: 570px;
  font-size: 0.95rem;
  color: rgba(11, 19, 32, 0.62);
}

.ops-map-note {
  max-width: 540px;
  color: var(--teal-ink);
  font-weight: 780;
}

.proof-line {
  margin-top: 10px;
  max-width: 560px;
  padding-left: 14px;
  border-left: 3px solid rgba(42, 143, 138, 0.28);
  color: rgba(11, 19, 32, 0.70);
  font-weight: 720;
}

.trust-line {
  margin-top: 12px;
}

.local-pill {
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 9px 12px;
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: 999px;
  background: var(--surface-gloss-strong);
  box-shadow: 0 12px 28px rgba(11, 19, 32, 0.06);
  backdrop-filter: blur(14px);
  font-size: 0.83rem;
}

.local-pill span {
  color: var(--teal-ink);
  font-weight: 820;
}

.local-pill strong {
  color: var(--navy);
  font-weight: 820;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(140deg, rgba(246, 232, 213, 0.88), rgba(247, 251, 250, 0.94) 52%, rgba(230, 242, 241, 0.76)),
    var(--foam);
  box-shadow: var(--shadow-soft);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 25px;
  border: 1px solid rgba(11, 19, 32, 0.07);
  background:
    linear-gradient(90deg, rgba(11, 19, 32, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 19, 32, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
  pointer-events: none;
}

.map-label {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(42, 143, 138, 0.24);
  border-radius: 999px;
  background: rgba(247, 251, 250, 0.92);
  color: #176D68;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 19, 32, 0.05);
}

.map-stage,
.map-hub-label {
  position: absolute;
  z-index: 2;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  background: rgba(247, 251, 250, 0.82);
  color: rgba(11, 19, 32, 0.66);
  font-size: 0.68rem;
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(11, 19, 32, 0.05);
}

.map-stage-left {
  top: 62px;
  left: 44px;
}

.map-stage-right {
  top: 62px;
  right: 44px;
}

.map-hub-label {
  top: 196px;
  left: 50%;
  color: var(--teal-ink);
  background: rgba(230, 242, 241, 0.94);
  transform: translateX(-50%);
}

.flow-lines {
  position: absolute;
  inset: 42px 30px 96px 30px;
  width: calc(100% - 60px);
  height: auto;
  overflow: visible;
}

.flow-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 4;
}

.flow-line.muted {
  stroke: rgba(11, 19, 32, 0.18);
}

.flow-line.main {
  stroke: var(--teal);
  stroke-width: 5;
}

.flow-hub,
.flow-end-dot {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.flow-hub {
  top: 232px;
  left: 50%;
  width: 34px;
  border: 4px solid var(--teal);
  background: rgba(247, 251, 250, 0.90);
  box-shadow: 0 12px 24px rgba(42, 143, 138, 0.16);
}

.flow-hub span {
  display: block;
  width: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px var(--foam);
}

.flow-end-dot {
  top: 232px;
  left: 82%;
  width: 18px;
  border: 3px solid var(--foam);
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(42, 143, 138, 0.20);
}

.loose-card {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  display: inline-flex;
  width: clamp(142px, 32%, 184px);
  gap: 9px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(247, 251, 250, 0.88);
  border: 1px solid rgba(11, 19, 32, 0.10);
  box-shadow: var(--shadow-small);
  color: rgba(11, 19, 32, 0.80);
  font-size: 0.88rem;
  font-weight: 780;
}

.loose-card span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.card-lead { top: 112px; left: 52px; }
.card-quote { top: 112px; right: 52px; }
.card-intake { bottom: 158px; left: 52px; }
.card-work { bottom: 158px; right: 52px; }

.next-step-card {
  position: absolute;
  z-index: 3;
  left: 56px;
  right: 56px;
  bottom: 36px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: 22px;
  background: rgba(247, 251, 250, 0.96);
  color: #0B1320;
  box-shadow: 0 16px 38px rgba(11, 19, 32, 0.11);
  backdrop-filter: blur(12px);
}

.next-step-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 16px;
  background: #F7FBFA;
  box-shadow: inset 0 0 0 5px rgba(42, 143, 138, 0.08), 0 10px 20px rgba(11, 19, 32, 0.08);
}

.next-step-card img {
  width: 34px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.next-step-card > div > span {
  display: block;
  color: var(--teal-ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.next-step-card strong {
  display: block;
  margin-top: 4px;
  color: #0B1320;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list article,
.service-card,
.engagement-list article,
.before-after article {
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: var(--radius-card);
  background: rgba(247, 251, 250, 0.74);
  box-shadow: 0 14px 36px rgba(11, 19, 32, 0.05);
}

.problem-list article {
  display: grid;
  grid-template-columns: 56px minmax(120px, 0.3fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.problem-list span,
.engagement-list span {
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.08em;
}

.problem-list p {
  font-size: 0.96rem;
}

.difference {
  padding-top: 32px;
}

.difference-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 0%, rgba(42, 143, 138, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(246, 232, 213, 0.52));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.difference-grid {
  display: grid;
  gap: 12px;
}

.difference-grid article {
  padding: 20px;
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 24px;
  background: rgba(247, 251, 250, 0.70);
}

.difference-grid span {
  color: var(--coral-ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.difference-grid h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.services {
  background:
    radial-gradient(circle at 84% 14%, rgba(232, 111, 92, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(246, 232, 213, 0.46), rgba(247, 251, 250, 0.9));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.06rem;
}

.accent-wordmark {
  width: 146px;
  margin-bottom: 22px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 999px;
  background: rgba(247, 251, 250, 0.70);
  box-sizing: content-box;
}

[data-theme="dark"] .accent-wordmark {
  border-color: rgba(247, 251, 250, 0.12);
  background: rgba(247, 251, 250, 0.90);
}

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

.service-card {
  min-height: 252px;
  padding: 28px;
}

.service-card.featured {
  background: var(--navy);
  color: var(--on-dark);
}

.service-card.featured h3 {
  color: var(--on-dark);
}

.service-card.featured p {
  color: var(--on-dark-soft);
}

.service-card.soft {
  background: var(--sand);
}

.card-kicker {
  margin-bottom: 32px;
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card.featured .card-kicker {
  color: var(--teal);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.visuals {
  background:
    radial-gradient(circle at 12% 22%, rgba(42, 143, 138, 0.10), transparent 20rem),
    linear-gradient(180deg, rgba(247, 251, 250, 0.92), rgba(230, 242, 241, 0.42));
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.asset-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: 30px;
  background: rgba(247, 251, 250, 0.78);
  box-shadow: 0 16px 44px rgba(11, 19, 32, 0.06);
}

.asset-card-large {
  min-height: 430px;
}

.asset-card h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
}

.asset-card p:not(.card-kicker) {
  max-width: 620px;
  font-size: 0.96rem;
}

.outcome-line {
  margin-top: 10px;
  color: var(--ink-soft);
}

.outcome-line strong {
  color: var(--teal-ink);
}

.asset-frame,
.domain-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 24px;
  background: #F7FBFA;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.asset-zoom {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.asset-zoom:focus-visible {
  outline: 3px solid rgba(42, 143, 138, 0.72);
  outline-offset: -6px;
}

.asset-frame img,
.domain-map img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(8px, 1vw, 16px);
  object-fit: contain;
}

.theme-asset-dark {
  display: none !important;
}

[data-theme="dark"] .theme-asset-light {
  display: none !important;
}

[data-theme="dark"] .theme-asset-dark {
  display: block !important;
}

.asset-open-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(11, 19, 32, 0.12);
  border-radius: 999px;
  background: rgba(247, 251, 250, 0.88);
  color: #176D68;
  box-shadow: 0 10px 22px rgba(11, 19, 32, 0.10);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.asset-card-large .asset-frame {
  min-height: 260px;
}

.asset-card:not(.asset-card-large) .asset-frame {
  min-height: 260px;
}

.domain-system {
  padding-top: 34px;
  background: linear-gradient(180deg, var(--foam), rgba(246, 232, 213, 0.44));
}

.domain-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 12%, rgba(42, 143, 138, 0.12), transparent 22rem),
    rgba(247, 251, 250, 0.78);
  box-shadow: var(--shadow-soft);
}

.domain-copy {
  align-self: center;
}

.domain-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.03rem;
}

.domain-copy strong {
  color: var(--teal-ink);
}

.domain-map {
  min-height: 410px;
}

.domain-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.domain-cards article {
  min-height: 164px;
  padding: 18px;
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.domain-cards span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.domain-cards strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.domain-cards p {
  margin-top: 10px;
  font-size: 0.83rem;
  line-height: 1.45;
}

.loop {
  padding: 96px 0;
}

.loop-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(520px, 1.38fr);
  gap: 34px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(42, 143, 138, 0.14), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(246, 232, 213, 0.82), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 251, 250, 0.70));
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.loop-panel .eyebrow.inverse {
  color: var(--teal-ink);
}

.loop-panel h2 {
  max-width: 560px;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.15rem);
}

.loop-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--ink-soft);
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr) auto) minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.loop-step {
  min-height: 164px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 232, 213, 0.34));
  box-shadow: 0 12px 34px rgba(11, 19, 32, 0.06);
}

.loop-step-title {
  display: block;
  color: var(--navy);
  font-weight: 820;
  letter-spacing: -0.02em;
}

.loop-arrow {
  display: grid;
  place-items: center;
  min-width: 18px;
  color: var(--teal);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.92;
}

.loop-step p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

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

.engagement-list article {
  min-height: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.engagement-list h3 {
  margin-top: 34px;
  margin-bottom: 14px;
}

.proof {
  background: linear-gradient(180deg, var(--foam), rgba(246, 232, 213, 0.58));
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: stretch;
}

.proof-note {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 34px;
  border-radius: 34px;
  background: var(--sand);
  border: 1px solid rgba(11, 19, 32, 0.08);
}

.proof-note img {
  width: 88px;
  margin-bottom: 46px;
}

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

.before-after article {
  min-height: 202px;
  padding: 26px;
}

.label {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(11, 19, 32, 0.07);
  color: rgba(11, 19, 32, 0.66);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label.after {
  background: var(--teal-tint);
  color: var(--teal-ink);
}

.before-after h3 {
  margin-bottom: 12px;
}

.operator-note {
  padding-top: 34px;
}

.operator-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(247, 251, 250, 0.84), rgba(230, 242, 241, 0.58)),
    var(--foam);
  box-shadow: var(--shadow-small);
}

.operator-card h2 {
  max-width: 780px;
}

.operator-card p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  font-size: 1.05rem;
}

.operator-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  background: var(--surface-gloss-strong);
  border: 1px solid rgba(11, 19, 32, 0.08);
  box-shadow: 0 18px 36px rgba(11, 19, 32, 0.08);
}

.operator-mark img {
  width: 58px;
}

.about-hero {
  padding-top: 72px;
  padding-bottom: 86px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.about-hero-copy {
  max-width: 780px;
}

.about-signal-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 12%, rgba(42, 143, 138, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 232, 213, 0.7));
  box-shadow: var(--shadow-soft);
}

.about-signal-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 999px;
}

.about-signal-card > * {
  position: relative;
  z-index: 1;
}

.about-signal-card img {
  width: 74px;
  margin-bottom: 42px;
}

.about-signal-mark-dark {
  display: none;
}

[data-theme="dark"] .about-signal-mark-light {
  display: none;
}

[data-theme="dark"] .about-signal-mark-dark {
  display: block;
}

.about-signal-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-signal-card p:not(.card-kicker) {
  margin-top: 18px;
  font-size: 1.03rem;
}

.about-method {
  background: linear-gradient(180deg, rgba(246, 232, 213, 0.42), rgba(247, 251, 250, 0.82));
}

.about-method-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-small);
}

.method-steps,
.fit-grid,
.principle-list {
  display: grid;
  gap: 14px;
}

.method-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-steps article,
.fit-card,
.principle-list article {
  padding: 24px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}

.method-steps span,
.principle-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-steps h3,
.fit-card h3 {
  margin-bottom: 12px;
}

.about-note-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.about-note-copy {
  display: grid;
  gap: 18px;
}

.about-note-copy p {
  font-size: 1.08rem;
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-card {
  min-height: 380px;
  padding: clamp(26px, 4vw, 38px);
}

.fit-card ul {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.not-fit li::before {
  background: var(--coral);
}

.about-proof {
  padding-top: 38px;
}

.about-proof-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(30px, 5vw, 52px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 10%, rgba(232, 111, 92, 0.12), transparent 18rem),
    #0B1320;
  box-shadow: var(--shadow-soft);
}

.about-proof-card h2,
.about-proof-card .eyebrow {
  color: var(--on-dark);
}

.about-proof-card p {
  color: var(--on-dark-soft);
}

.principle-list article {
  background: rgba(247, 251, 250, 0.08);
  border-color: rgba(247, 251, 250, 0.12);
}

.principle-list span {
  margin-bottom: 12px;
  color: var(--on-dark);
}

[data-theme="dark"] .about-method {
  background:
    radial-gradient(circle at 84% 14%, rgba(232, 111, 92, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(23, 35, 49, 0.52), rgba(11, 19, 32, 0.94));
}

[data-theme="dark"] .about-proof-card {
  border: 1px solid rgba(247, 251, 250, 0.12);
  background:
    radial-gradient(circle at 8% 10%, rgba(232, 111, 92, 0.14), transparent 18rem),
    #07101C;
}

[data-theme="dark"] .about-signal-card,
[data-theme="dark"] .about-method-panel,
[data-theme="dark"] .method-steps article,
[data-theme="dark"] .fit-card {
  border-color: rgba(247, 251, 250, 0.12);
  background: var(--surface-gloss);
}

[data-theme="dark"] .about-signal-mark-dark {
  filter: drop-shadow(0 0 18px rgba(247, 251, 250, 0.14));
}

.who-hero {
  padding-top: 72px;
  padding-bottom: 86px;
}

.who-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.who-hero-copy {
  max-width: 820px;
}

.who-signal-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(11, 19, 32, 0.09);
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 14%, rgba(42, 143, 138, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(246, 232, 213, 0.74));
  box-shadow: var(--shadow-soft);
}

.who-signal-card::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: -95px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 999px;
}

.who-signal-card > * {
  position: relative;
  z-index: 1;
}

.who-signal-mark {
  width: 74px;
  margin-bottom: 40px;
}

.who-signal-card h2 {
  max-width: 520px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.who-signal-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.who-signal-rows span,
.fit-pill span,
.source-type {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--teal-tint);
  color: var(--teal-ink);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.who-signal-rows span {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(42, 143, 138, 0.16);
  background: rgba(230, 242, 241, 0.72);
}

.artifact-list span {
  display: block;
  margin-bottom: 10px;
}

.who-fit {
  background: linear-gradient(180deg, rgba(246, 232, 213, 0.42), rgba(247, 251, 250, 0.82));
}

.who-fit-panel,
.audience-panel,
.artifact-preview {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-small);
}

.fit-pill-grid,
.leak-grid,
.scenario-grid,
.source-grid,
.artifact-list {
  display: grid;
  gap: 16px;
}

.fit-pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fit-pill,
.leak-card,
.scenario-card,
.source-card,
.artifact-list article {
  padding: 24px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.fit-pill span,
.source-type {
  padding: 7px 10px;
  margin-bottom: 18px;
}

.not-fit-pill span {
  background: var(--coral-tint);
  color: var(--coral-ink);
}

.leak-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.leak-card {
  min-height: 300px;
}

.leak-card span,
.artifact-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.leak-card h3,
.scenario-card h3,
.source-card h3 {
  margin-bottom: 12px;
}

.leak-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  line-height: 1.38;
}

.audience-section {
  background: linear-gradient(180deg, rgba(247, 251, 250, 0.72), rgba(246, 232, 213, 0.36));
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-card {
  min-height: 440px;
}

.scenario-meta {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--teal-ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.52;
}

.scenario-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.artifact-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.artifact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artifact-list strong {
  display: block;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

.artifact-list article {
  display: grid;
  align-content: start;
  gap: 6px;
}

.source-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-card {
  min-height: 360px;
}

.source-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-ink);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

[data-theme="dark"] .who-signal-card,
[data-theme="dark"] .who-fit-panel,
[data-theme="dark"] .audience-panel,
[data-theme="dark"] .artifact-preview,
[data-theme="dark"] .fit-pill,
[data-theme="dark"] .leak-card,
[data-theme="dark"] .scenario-card,
[data-theme="dark"] .source-card,
[data-theme="dark"] .artifact-list article {
  border-color: rgba(247, 251, 250, 0.12);
  background: var(--surface-gloss);
}

[data-theme="dark"] .who-fit,
[data-theme="dark"] .audience-section,
[data-theme="dark"] .source-notes {
  background:
    radial-gradient(circle at 84% 14%, rgba(232, 111, 92, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(23, 35, 49, 0.52), rgba(11, 19, 32, 0.94));
}

[data-theme="dark"] .who-signal-mark {
  filter: brightness(0) invert(98%) sepia(8%) saturate(117%) hue-rotate(116deg) brightness(103%) contrast(98%) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

[data-theme="dark"] .leak-card strong,
[data-theme="dark"] .artifact-list strong {
  color: var(--on-dark);
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 38px;
  border: 1px solid rgba(11, 19, 32, 0.08);
  background:
    radial-gradient(circle at 92% 8%, rgba(232, 111, 92, 0.12), transparent 20rem),
    var(--foam);
  box-shadow: var(--shadow-soft);
}

.contact-card h2 {
  max-width: 760px;
}

.contact-card p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
}

.contact-email {
  font-weight: 720;
}

.contact-email a {
  color: var(--teal-ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-card > div {
  position: relative;
  z-index: 1;
}

.contact-watermark {
  position: absolute;
  top: clamp(-18px, -0.8vw, -8px);
  right: clamp(18px, 3.6vw, 48px);
  bottom: auto;
  width: min(620px, 46vw);
  max-width: none;
  opacity: 1;
  pointer-events: none;
}

.contact-watermark-dark {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(11, 19, 32, 0.64);
  backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.modal-panel {
  position: relative;
  width: min(1120px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(42, 143, 138, 0.62) rgba(11, 19, 32, 0.08);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(247, 251, 250, 0.20);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 8%, rgba(42, 143, 138, 0.12), transparent 22rem),
    rgba(247, 251, 250, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.modal-panel::-webkit-scrollbar {
  width: 12px;
}

.modal-panel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(11, 19, 32, 0.06);
}

.modal-panel::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(42, 143, 138, 0.62);
  background-clip: content-box;
}

.modal-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(23, 109, 104, 0.78);
  background-clip: content-box;
}

.modal-header {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.modal-header h2 {
  max-width: 760px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.modal-header p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 10px;
  color: var(--ink-soft);
}

.modal-close {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(11, 19, 32, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.modal-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 19, 32, 0.10);
  border-radius: 26px;
  background: #F7FBFA;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.modal-frame img {
  display: block;
  width: 100%;
  height: auto;
  padding: clamp(8px, 1.4vw, 18px);
}

.site-footer {
  padding: 52px 0;
  background: var(--navy);
  color: var(--on-dark);
}

.footer-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.footer-logo {
  width: 168px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 560px;
  color: rgba(247, 251, 250, 0.66);
}

.footer-email {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--on-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: rgba(247, 251, 250, 0.78);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(42, 143, 138, 0.58);
  outline-offset: 4px;
}

[data-theme="dark"] .site-header {
  background: linear-gradient(180deg, rgba(11, 19, 32, 0.88), rgba(11, 19, 32, 0));
}

[data-theme="dark"] .nav-shell {
  border-color: rgba(247, 251, 250, 0.13);
  background: linear-gradient(135deg, rgba(247, 251, 250, 0.10), rgba(247, 251, 250, 0.055));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(42, 143, 138, 0.16), transparent 34rem),
    linear-gradient(180deg, #0B1320 0%, #111E2B 48%, #0B1320 100%);
}

[data-theme="dark"] .nav-links,
[data-theme="dark"] .nav-cta,
[data-theme="dark"] .theme-toggle {
  color: rgba(247, 251, 250, 0.82);
}

[data-theme="dark"] .nav-cta,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .button-secondary {
  border-color: rgba(247, 251, 250, 0.22);
  background: rgba(247, 251, 250, 0.08);
}

[data-theme="dark"] .button-secondary {
  border-color: rgba(247, 251, 250, 0.34);
  background: rgba(247, 251, 250, 0.12);
}

[data-theme="dark"] .ops-map-note,
[data-theme="dark"] .proof-line,
[data-theme="dark"] .trust-line {
  color: var(--on-dark-soft);
}

[data-theme="dark"] .ops-map-note {
  color: var(--teal-ink);
}

[data-theme="dark"] .proof-line {
  border-left-color: rgba(42, 143, 138, 0.46);
  color: rgba(247, 251, 250, 0.74);
}

[data-theme="dark"] .map-label,
[data-theme="dark"] .map-stage,
[data-theme="dark"] .map-hub-label {
  background: rgba(247, 251, 250, 0.92);
  color: #176D68;
  border-color: rgba(247, 251, 250, 0.24);
}

[data-theme="dark"] .proof-note img,
[data-theme="dark"] .operator-mark img {
  filter: brightness(0) invert(98%) sepia(8%) saturate(117%) hue-rotate(116deg) brightness(103%) contrast(98%) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

[data-theme="dark"] .trust-line {
  color: var(--on-dark-soft);
}

[data-theme="dark"] .hero-panel {
  background:
    linear-gradient(140deg, rgba(23, 35, 49, 0.94), rgba(11, 19, 32, 0.94) 52%, rgba(18, 44, 52, 0.76)),
    #0B1320;
  border-color: rgba(247, 251, 250, 0.12);
}

[data-theme="dark"] .hero-panel::before,
[data-theme="dark"] .problem-list article,
[data-theme="dark"] .difference-panel,
[data-theme="dark"] .domain-panel,
[data-theme="dark"] .domain-cards article,
[data-theme="dark"] .asset-card,
[data-theme="dark"] .difference-grid article,
[data-theme="dark"] .service-card,
[data-theme="dark"] .engagement-list article,
[data-theme="dark"] .before-after article,
[data-theme="dark"] .proof-note,
[data-theme="dark"] .operator-card,
[data-theme="dark"] .operator-mark,
[data-theme="dark"] .contact-card {
  border-color: rgba(247, 251, 250, 0.12);
}

[data-theme="dark"] .loose-card,
[data-theme="dark"] .problem-list article,
[data-theme="dark"] .difference-grid article,
[data-theme="dark"] .domain-cards article,
[data-theme="dark"] .asset-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .engagement-list article,
[data-theme="dark"] .before-after article,
[data-theme="dark"] .operator-mark {
  background: rgba(247, 251, 250, 0.055);
}

[data-theme="dark"] .asset-frame,
[data-theme="dark"] .domain-map,
[data-theme="dark"] .modal-frame {
  background: #101A27;
  border-color: rgba(247, 251, 250, 0.18);
}

[data-theme="dark"] .asset-open-hint {
  border-color: rgba(247, 251, 250, 0.18);
  background: rgba(16, 26, 39, 0.88);
  color: #73D1C9;
}

[data-theme="dark"] .modal-panel {
  background:
    radial-gradient(circle at 92% 8%, rgba(42, 143, 138, 0.15), transparent 22rem),
    rgba(12, 22, 34, 0.97);
  border-color: rgba(247, 251, 250, 0.18);
  scrollbar-color: rgba(115, 209, 201, 0.70) rgba(247, 251, 250, 0.08);
}

[data-theme="dark"] .modal-panel::-webkit-scrollbar-track {
  background: rgba(247, 251, 250, 0.08);
}

[data-theme="dark"] .modal-panel::-webkit-scrollbar-thumb {
  background: rgba(115, 209, 201, 0.70);
  background-clip: content-box;
}

[data-theme="dark"] .modal-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(115, 209, 201, 0.88);
  background-clip: content-box;
}

[data-theme="dark"] .modal-close {
  border-color: rgba(247, 251, 250, 0.18);
  background: rgba(247, 251, 250, 0.10);
  color: var(--navy);
}

[data-theme="dark"] .next-step-card {
  background: rgba(247, 251, 250, 0.92);
  border-color: rgba(247, 251, 250, 0.28);
  color: #0B1320;
}

[data-theme="dark"] .next-step-card span {
  color: #176D68;
}

[data-theme="dark"] .next-step-card strong {
  color: #0B1320;
}

[data-theme="dark"] .loose-card {
  color: rgba(247, 251, 250, 0.80);
}

[data-theme="dark"] .loop-panel {
  border-color: rgba(247, 251, 250, 0.12);
  background:
    radial-gradient(circle at 12% 18%, rgba(42, 143, 138, 0.22), transparent 22rem),
    #07101C;
  color: var(--on-dark);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

[data-theme="dark"] .site-footer {
  background: #07101C;
}

[data-theme="dark"] .loop-panel .eyebrow.inverse {
  color: var(--on-dark-soft);
}

[data-theme="dark"] .loop-panel h2,
[data-theme="dark"] .loop-step-title {
  color: var(--on-dark);
}

[data-theme="dark"] .loop-copy p:not(.eyebrow),
[data-theme="dark"] .loop-step p {
  color: var(--on-dark-soft);
}

[data-theme="dark"] .loop-step {
  border-color: rgba(247, 251, 250, 0.12);
  background:
    linear-gradient(180deg, rgba(247, 251, 250, 0.085), rgba(247, 251, 250, 0.045));
  box-shadow: none;
}

[data-theme="dark"] .services,
[data-theme="dark"] .visuals,
[data-theme="dark"] .proof {
  background:
    radial-gradient(circle at 84% 14%, rgba(232, 111, 92, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(23, 35, 49, 0.52), rgba(11, 19, 32, 0.94));
}

[data-theme="dark"] .difference-panel,
[data-theme="dark"] .domain-panel,
[data-theme="dark"] .operator-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(42, 143, 138, 0.12), transparent 20rem),
    rgba(247, 251, 250, 0.055);
}

[data-theme="dark"] .service-card.featured {
  background: #07101C;
}

[data-theme="dark"] .service-card.soft,
[data-theme="dark"] .proof-note {
  background: rgba(246, 232, 213, 0.08);
}

[data-theme="dark"] .contact-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(232, 111, 92, 0.12), transparent 20rem),
    rgba(247, 251, 250, 0.055);
}

[data-theme="dark"] .button-primary {
  background: var(--navy);
  color: #0B1320;
}

[data-theme="dark"] .label {
  background: rgba(247, 251, 250, 0.10);
  color: rgba(247, 251, 250, 0.72);
}

[data-theme="dark"] .flow-line.muted {
  stroke: rgba(247, 251, 250, 0.22);
}

[data-theme="dark"] .flow-hub {
  background: rgba(247, 251, 250, 0.92);
}

[data-theme="dark"] .flow-end-dot,
[data-theme="dark"] .flow-hub span {
  box-shadow: 0 0 0 3px rgba(247, 251, 250, 0.92);
}

[data-theme="dark"] .contact-watermark-light {
  display: none;
}

[data-theme="dark"] .contact-watermark-dark {
  display: block;
}

@media (min-width: 981px) and (max-height: 820px) {
  .site-header {
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 58px;
    padding-block: 7px;
  }

  .brand img {
    width: 154px;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .theme-toggle {
    min-height: 40px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 54px;
  }

  .hero-grid {
    gap: 38px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    font-size: clamp(2.6rem, 5.05vw, 4.55rem);
    line-height: 0.96;
  }

  .hero-lede {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-line {
    margin-top: 16px;
  }

  .local-pill {
    margin-top: 12px;
  }

  .hero-panel {
    min-height: 456px;
  }

  .map-label {
    top: 24px;
  }

  .flow-lines {
    inset: 32px 28px 84px 28px;
    width: calc(100% - 56px);
  }

  .map-hub-label {
    top: 162px;
  }

  .flow-hub,
  .flow-end-dot {
    top: 198px;
  }

  .card-lead { top: 94px; left: 44px; }
  .card-quote { top: 94px; right: 44px; }
  .card-intake { bottom: 138px; left: 44px; }
  .card-work { bottom: 138px; right: 44px; }

  .next-step-card {
    left: 44px;
    right: 44px;
    bottom: 28px;
    padding: 15px 16px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .nav-shell {
    min-height: 68px;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 28px;
  }

  .nav-links {
    order: 4;
    flex: 0 0 100%;
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    padding: 8px 4px 2px;
    border-top: 1px solid rgba(11, 19, 32, 0.08);
    font-size: 0.82rem;
  }

  .nav-links a {
    display: inline-flex;
    min-height: 44px;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .nav-links a::after {
    bottom: 5px;
    left: 14px;
    right: 14px;
  }

  [data-theme="dark"] .nav-links {
    border-top-color: rgba(247, 251, 250, 0.11);
  }

  .nav-cta {
    margin-left: auto;
    min-height: 44px;
  }

  .theme-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .hero-grid,
  .about-hero-grid,
  .who-hero-grid,
  .about-note-grid,
  .about-proof-card,
  .artifact-preview,
  .split-section,
  .difference-panel,
  .domain-panel,
  .loop-panel,
  .proof-grid,
  .operator-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .asset-grid {
    grid-template-columns: 1fr;
  }

  .fit-pill-grid,
  .leak-grid,
  .source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-card-large {
    grid-row: auto;
    min-height: 0;
  }

  .domain-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: 520px;
  }

  .service-grid,
  .engagement-list,
  .method-steps,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loop-steps {
    grid-template-columns: 1fr;
  }

  .loop-arrow {
    min-height: 24px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 132px;
  }

  .section {
    scroll-margin-top: 0;
  }

  .site-header {
    padding: 6px 0;
  }

  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 66px;
  }

  .brand img {
    width: 124px;
  }

  .brand {
    min-width: 124px;
  }

  .nav-shell {
    gap: 6px;
    padding: 6px 7px 7px 12px;
  }

  .nav-links {
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: -0.03em;
    padding-top: 4px;
  }

  .nav-links a[href="#difference"],
  .nav-links a[href="/#difference"] {
    display: none;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 4px;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .nav-cta-full,
  .theme-toggle .toggle-label {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .theme-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    gap: 0;
    padding: 7px;
  }

  .theme-toggle .toggle-dot {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
  }

  [data-theme="dark"] .theme-toggle .toggle-dot {
    box-shadow: 0 0 0 4px rgba(42, 143, 138, 0.08);
  }

  h1 {
    font-size: clamp(2.78rem, 12.6vw, 4rem);
    line-height: 0.96;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    margin-top: 22px;
  }

  .proof-line,
  .trust-line {
    margin-top: 14px;
  }

  .local-pill {
    margin-top: 14px;
    padding: 10px 13px;
    line-height: 1.35;
  }

  h2 {
    font-size: clamp(2.18rem, 10vw, 3rem);
  }

  .hero-actions,
  .contact-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 490px;
    border-radius: 26px;
  }

  .about-hero {
    padding-top: 38px;
  }

  .about-signal-card {
    min-height: 0;
  }

  .about-method-panel,
  .about-proof-card,
  .fit-card {
    border-radius: 28px;
  }

  .method-steps,
  .fit-grid,
  .fit-pill-grid,
  .leak-grid,
  .scenario-grid,
  .source-grid,
  .artifact-list,
  .about-proof-card {
    grid-template-columns: 1fr;
  }

  .map-label {
    top: 22px;
    left: 20px;
  }

  .flow-lines {
    top: 48px;
    right: 22px;
    bottom: auto;
    left: 22px;
    width: calc(100% - 44px);
    height: 330px;
  }

  .map-hub-label {
    top: 168px;
    padding: 5px 8px;
    font-size: 0.61rem;
    letter-spacing: 0.045em;
  }

  .flow-hub {
    top: 209px;
    width: 30px;
    border-width: 4px;
  }

  .flow-hub span {
    width: 8px;
  }

  .flow-end-dot {
    top: 209px;
    left: 82%;
    width: 16px;
    border-width: 3px;
  }

  .loose-card {
    width: auto;
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .card-lead { top: 84px; left: 26px; }
  .card-quote { top: 92px; right: 24px; }
  .card-intake { bottom: 162px; left: 28px; }
  .card-work { bottom: 164px; right: 24px; }

  .next-step-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }

  .next-step-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .next-step-card img {
    width: 32px;
  }

  .problem-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-grid,
  .engagement-list,
  .before-after,
  .loop-steps,
  .domain-cards {
    grid-template-columns: 1fr;
  }

  .asset-card,
  .domain-cards article {
    min-height: auto;
  }

  .asset-card {
    padding: 20px;
    border-radius: 24px;
  }

  .asset-frame,
  .domain-map {
    border-radius: 18px;
  }

  .asset-open-hint {
    right: 10px;
    bottom: 10px;
    font-size: 0.64rem;
  }

  .image-modal {
    padding: 10px;
  }

  .modal-panel {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    padding: 14px;
    border-radius: 24px;
  }

  .modal-header {
    flex-direction: column;
    gap: 12px;
  }

  .modal-close {
    align-self: flex-start;
  }

  .asset-card-large .asset-frame,
  .asset-card:not(.asset-card-large) .asset-frame,
  .domain-map {
    min-height: 220px;
  }

  .difference-panel,
  .loop-panel,
  .operator-card,
  .contact-card {
    padding: 28px;
    border-radius: 26px;
  }

  .loop-step {
    min-height: auto;
  }

  .contact-watermark {
    top: 8px;
    right: 18px;
    bottom: auto;
    left: auto;
    width: min(270px, 66vw);
    transform: none;
  }

  .contact-card > div:first-of-type {
    padding-top: 62px;
  }

  .footer-grid {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(2.24rem, 10.9vw, 2.95rem);
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .hero-lede {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .button {
    min-height: 48px;
    padding-block: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
