:root {
  --navy: #0b1f73;
  --navy-deep: #172047;
  --blue: #2a67ff;
  --blue-soft: #bfd0ff;
  --red: #e60f34;
  --ink: #13203d;
  --muted: #5f6c86;
  --paper: #ffffff;
  --line: #e4e8f2;
  --soft: #f5f7fb;
  --shadow: 0 18px 50px rgba(11, 31, 115, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 8%, rgba(230, 15, 52, 0.06), transparent 26%),
    radial-gradient(circle at 86% 4%, rgba(11, 31, 115, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 54%, #f7f9fd 100%);
  color: var(--ink);
  overflow-x: hidden;
}

#network {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(120%) blur(10px);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 16px;
}

.brand img {
  width: 138px;
  height: 70px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 16px;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.91rem;
  letter-spacing: 0;
}

.pill-link {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #18379f 0%, #0b1f73 100%);
  color: #fff !important;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  transition: filter 0.18s ease, box-shadow 0.18s ease;
}

.pill-link:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -4px 10px rgba(0, 0, 0, 0.14);
}

.pill-link:active {
  filter: brightness(0.98);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 6px rgba(0, 0, 0, 0.18);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 44px;
}

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

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.about-hero {
  min-height: 52vh;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 42px;
}

.about-copy {
  max-width: 760px;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 500px;
}

.about-network-canvas {
  width: min(660px, 100%);
  height: 500px;
  display: block;
  opacity: 0.92;
}

.eyebrow {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

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

h1 {
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 14ch;
}

.lede {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  color: var(--muted);
  max-width: 700px;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  margin: 10px 10px 0 0;
}

.primary {
  background: linear-gradient(135deg, var(--red), #c90f3c);
  color: #fff;
  box-shadow: var(--shadow);
}

.ghost {
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(11, 31, 115, 0.05);
}

.service-card,
.capability-shell,
.tech,
.industry,
.contact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
}

.section-heading p,
.split p,
.contact p,
.industry p,
.service-card p,
.cap-content p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.service-card,
.industry {
  padding: 26px;
  transition: 0.25s ease;
}

.service-card:hover,
.industry:hover {
  transform: translateY(-4px);
}

.service-card span {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 14px;
}

.service-card h3,
.industry h3,
.cap-content h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.capability-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  padding: 22px;
  margin-top: 30px;
}

.cap-tabs {
  display: grid;
  gap: 10px;
}

.cap-tabs button {
  border: 0;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  background: #f7f9fe;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  letter-spacing: 0;
  outline: none;
  box-shadow: none;
}

.cap-tabs button.active,
.cap-tabs button:hover {
  background: var(--navy);
  color: #fff;
}

.cap-tabs button:focus,
.cap-tabs button:focus-visible {
  outline: none;
  box-shadow: none;
}

.cap-content {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.92));
}

.cap-content ul {
  padding-left: 20px;
  color: #33415d;
  line-height: 1.8;
}

.tech {
  padding: 30px 34px 34px;
}

.tech-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.tech-ribbon {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 22px;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  scrollbar-width: none;
}

.tech-ribbon::-webkit-scrollbar {
  display: none;
}

.tech-ribbon-track {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  min-width: max-content;
}

.tech-logo-card {
  flex: 0 0 clamp(150px, 16vw, 210px);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid rgba(207, 217, 240, 0.9);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.98), rgba(243, 247, 255, 0.92));
  box-shadow: 0 10px 24px rgba(15, 32, 77, 0.04);
}

.tech-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.industries .industry-grid {
  grid-template-columns: repeat(3, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 22px;
  padding: 22px;
}

.timeline strong {
  color: var(--red);
}

.contact {
  text-align: center;
  padding: 34px 28px;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.contact .eyebrow {
  margin-bottom: 2px;
}

.contact h2 {
  margin: 0;
  line-height: 1.08;
}

.contact p {
  max-width: 720px;
  margin: 0;
}

.contact .button {
  margin-top: 6px;
}

.founder-section {
  padding-top: 18px;
}

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

.founder-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 0;
}

.founder-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(230, 15, 52, 0.08), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(11, 31, 115, 0.1), transparent 36%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fd 100%);
  border: 1px dashed rgba(11, 31, 115, 0.14);
}

.founder-photo-placeholder span {
  color: var(--navy);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0;
}

.founder-body h3 {
  margin-bottom: 10px;
}

.founder-body p {
  margin: 0;
  color: var(--muted);
  max-width: 32ch;
}

.consulting-visual {
  position: relative;
  width: min(620px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 48% 46%, rgba(11, 31, 115, 0.07), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(230, 15, 52, 0.045), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.86));
  border: 1px solid rgba(217, 224, 236, 0.7);
  box-shadow: 0 30px 82px rgba(15, 32, 77, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.consulting-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 86px;
  bottom: 98px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(230, 15, 52, 0.14), rgba(11, 31, 115, 0.14), transparent);
  opacity: 0.45;
  z-index: 0;
  transform: scaleY(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.consulting-visual:hover::before,
.consulting-visual:focus-within::before {
  animation: signalGlow 3.6s ease-in-out infinite;
}

.consulting-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 34px 90px rgba(15, 32, 77, 0.1);
  z-index: 0;
}

.consulting-visual > * {
  position: relative;
  z-index: 1;
}

.complexity-field {
  width: min(500px, 100%);
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  align-content: flex-start;
}

.complexity-field span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  padding: 8px 10px;
  border: 1px solid rgba(217, 224, 236, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(15, 32, 77, 0.035);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.complexity-field span:nth-child(3n + 1)::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(230, 15, 52, 0.55);
  box-shadow: 0 0 0 4px rgba(230, 15, 52, 0.06);
  flex: 0 0 auto;
}

.consulting-visual:hover .complexity-field span:nth-child(3n + 1),
.consulting-visual:focus-within .complexity-field span:nth-child(3n + 1) {
  transform: translateY(-3px) rotate(-1deg);
  border-color: rgba(230, 15, 52, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(15, 32, 77, 0.08);
}

.foundation-core {
  width: min(390px, 100%);
  justify-self: center;
  transform: translateY(4px);
  padding: 28px;
  border: 1px solid rgba(217, 224, 236, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(230, 15, 52, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.95));
  box-shadow:
    0 34px 76px rgba(15, 32, 77, 0.14),
    0 0 0 10px rgba(255, 255, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 2;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.consulting-visual:hover .foundation-core,
.consulting-visual:focus-within .foundation-core {
  transform: translateY(0);
  box-shadow:
    0 38px 84px rgba(15, 32, 77, 0.17),
    0 0 0 10px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.foundation-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foundation-core h2 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.48rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

.capability-band span {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px;
  border: 1px solid rgba(217, 224, 236, 0.72);
  border-radius: 14px;
  background: rgba(248, 250, 255, 0.86);
  color: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 830;
  line-height: 1.2;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.consulting-visual:hover .capability-band span:nth-child(odd),
.consulting-visual:focus-within .capability-band span:nth-child(odd) {
  transform: translateY(-2px);
  border-color: rgba(230, 15, 52, 0.25);
  background: #fff;
}

.capability-band span:last-child {
  grid-column: 1 / -1;
}

.outcome-stack {
  width: min(500px, 100%);
  justify-self: center;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 14px;
  align-content: center;
}

.outcome-card,
.outcome-list {
  border: 1px solid rgba(217, 224, 236, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(15, 32, 77, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.consulting-visual:hover .outcome-card,
.consulting-visual:hover .outcome-list,
.consulting-visual:focus-within .outcome-card,
.consulting-visual:focus-within .outcome-list {
  transform: translateY(-3px);
  border-color: rgba(11, 31, 115, 0.18);
  box-shadow: 0 22px 50px rgba(15, 32, 77, 0.11);
}

.outcome-card {
  padding: 16px;
}

.outcome-card span {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.25;
}

.outcome-card strong {
  display: block;
  margin: 9px 0 6px;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1;
}

.mini-sparkline {
  display: block;
  width: 100%;
  height: 32px;
  margin-top: 10px;
}

.mini-sparkline path {
  fill: none;
  stroke: #0b1f73;
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0.82;
  stroke-dasharray: 170;
  stroke-dashoffset: 0;
}

.consulting-visual:hover .mini-sparkline path,
.consulting-visual:focus-within .mini-sparkline path {
  animation: sparkDraw 4.8s ease-in-out infinite;
}

.outcome-list {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.outcome-list span {
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  padding: 7px 0;
}

.outcome-list span + span {
  border-top: 1px solid rgba(217, 224, 236, 0.72);
}

@keyframes signalGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(0.86);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes sparkDraw {
  0% {
    stroke-dashoffset: 170;
  }

  38%,
  72% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -170;
  }
}

.dashboard-stack {
  position: relative;
  width: min(650px, 100%);
  height: 540px;
}

.dashboard-card {
  position: absolute;
  background: #fff;
  border: 1px solid #d9e0ec;
  border-radius: 18px;
  box-shadow: 0 22px 46px rgba(15, 32, 77, 0.1);
  padding: 20px;
  overflow: hidden;
}

.scatter-card {
  left: 0;
  top: 146px;
  width: 78%;
  height: 392px;
  z-index: 2;
}

.kpi-card {
  right: 0;
  top: 0;
  width: 80%;
  height: 330px;
  z-index: 1;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 10px;
}

.card-kicker {
  margin: 0;
  color: var(--navy-deep);
  font-size: 0.92rem;
  font-weight: 750;
}

.card-kicker-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.card-kicker-dot::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1db5ea;
  flex: 0 0 auto;
}

.card-action {
  border: 0;
  background: transparent;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
}

.kpi-topline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 14px;
  row-gap: 4px;
  margin-bottom: 12px;
}

.kpi-topline strong {
  font-size: 2.72rem;
  line-height: 1;
  color: var(--navy-deep);
  grid-row: span 2;
}

.trend-up {
  color: #1450ff;
  font-weight: 800;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trend-up::before {
  content: "\2191";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1450ff;
  color: #fff;
  font-size: 0.78rem;
}

.trend-up-soft {
  color: #27d3d0;
}

.trend-up-soft::before {
  content: "\25B2";
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 0;
  background: transparent;
  color: #27d3d0;
  font-size: 0.72rem;
}

.kpi-topline small {
  color: var(--muted);
  font-size: 0.84rem;
}

.chart-wrap {
  position: relative;
  height: 256px;
  border-radius: 12px;
  overflow: visible;
}

.scatter-chart-wrap {
  height: 308px;
  padding: 0;
}

.kpi-chart-wrap {
  height: 174px;
  padding: 0;
}

.chart-area {
  position: absolute;
  inset: 0;
}

.chart-tooltip {
  position: absolute;
  min-width: 132px;
  max-width: 180px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(11, 31, 115, 0.14);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(11, 31, 115, 0.08);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 4;
}

.chart-tooltip strong {
  display: block;
  margin-bottom: 4px;
}

.chart-tooltip .muted {
  color: var(--muted);
  font-weight: 500;
}

.chart-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.chart-tooltip b {
  color: #1450ff;
}

.plot-point {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.plot-point::before {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
}

.scatter-hit::before {
  width: 8px;
  height: 8px;
  background: rgba(29, 181, 234, 0);
  opacity: 0;
}

.scatter-hit:hover::before {
  background: #1db5ea;
  opacity: 1;
  box-shadow: 0 0 0 5px rgba(29, 181, 234, 0.14);
}

.kpi-hit::before {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
  opacity: 0;
}

.kpi-hit:hover::before {
  opacity: 1;
  background: #0b0b0f;
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(11, 31, 115, 0.12);
}

.site-footer {
  width: 100%;
  margin: 36px 0 0;
  background: #fff;
  color: var(--ink);
  border-radius: 0;
  border-top: 1px solid var(--line);
  padding: 42px max(18px, calc((100vw - 1180px) / 2)) 18px;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.footer-brand {
  max-width: 360px;
}

.footer-mark {
  display: inline-block;
}

.footer-mark img {
  width: 156px;
  height: 78px;
  object-fit: contain;
  filter: none;
  display: block;
}

.footer-address {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--navy);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .service-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .founder-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .about-visual {
    justify-content: flex-start;
    min-height: 0;
  }

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

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    justify-content: center;
  }

  .dashboard-stack {
    width: min(680px, 100%);
  }

  .consulting-visual {
    width: min(620px, 100%);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
  }

  .brand {
    padding-left: 0;
  }

  .nav-toggle {
    display: block;
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    padding: 9px 12px;
    margin-right: 0;
  }

  .nav {
    display: none;
    position: absolute;
    right: 18px;
    top: 82px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .split,
  .capability-shell {
    grid-template-columns: 1fr;
  }

  .about-network-canvas {
    width: min(100%, 500px);
    height: 360px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .founder-photo {
    width: min(100%, 220px);
  }

  .section {
    padding: 54px 0;
  }

  .service-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industries .industry-grid {
    grid-template-columns: 1fr;
  }

  .tech {
    padding-inline: 22px;
  }

  .tech-title {
    font-size: 1.35rem;
  }

  .tech-ribbon {
    margin-top: 18px;
    gap: 12px;
  }

  .tech-ribbon-track {
    gap: 12px;
  }

  .tech-logo-card {
    flex-basis: 148px;
    height: 76px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  h1 {
    font-size: 3.1rem;
    max-width: none;
  }

  h2 {
    max-width: none;
  }

  .consulting-visual {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .consulting-visual::before,
  .consulting-visual::after {
    display: none;
  }

  .complexity-field,
  .foundation-core,
  .outcome-stack {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .complexity-field {
    margin-bottom: 18px;
  }

  .foundation-core {
    padding: 22px;
    border-radius: 22px;
  }

  .foundation-core h2 {
    font-size: 1.26rem;
  }

  .capability-band {
    grid-template-columns: 1fr;
  }

  .capability-band span:last-child {
    grid-column: auto;
  }

  .outcome-stack {
    margin-top: 18px;
    width: 100%;
    max-width: 520px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .dashboard-stack {
    width: 100%;
    height: clamp(380px, 86vw, 540px);
    padding-bottom: 0;
  }

  .dashboard-card {
    position: absolute;
    margin-bottom: 0;
    padding: clamp(12px, 3.5vw, 20px);
  }

  .scatter-card {
    left: 0;
    top: 27%;
    width: 78%;
    height: 70%;
  }

  .kpi-card {
    right: 0;
    top: 0;
    width: 80%;
    height: 60%;
  }

  .scatter-chart-wrap {
    height: calc(100% - 38px);
  }

  .kpi-chart-wrap {
    height: calc(100% - 112px);
    min-height: 100px;
  }

  .kpi-topline strong {
    font-size: clamp(1.8rem, 8vw, 2.72rem);
  }

  .card-kicker,
  .card-kicker-dot {
    font-size: clamp(0.72rem, 2.8vw, 0.92rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 22px 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
