@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-600.ttf") format("truetype");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/fraunces-800.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/space-mono-400.ttf") format("truetype");
}

@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/space-mono-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --paper: #f3f5f6;
  --white: #ffffff;
  --ink: #151820;
  --muted: #626874;
  --soft: #ece7dd;
  --line: rgba(21, 24, 32, 0.14);
  --line-strong: rgba(21, 24, 32, 0.26);
  --navy: #0f1720;
  --blue: #1f5f87;
  --cyan: #17a3b8;
  --green: #32705b;
  --plum: #68425d;
  --rust: #b65c43;
  --gold: #c2953f;
  --blue-soft: #dcecf3;
  --cyan-soft: #d9f2f5;
  --green-soft: #dfefe6;
  --plum-soft: #eadfe7;
  --rust-soft: #f4dfd7;
  --gold-soft: #f3ead4;
  --shadow: rgba(15, 23, 32, 0.16);
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "Space Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 7%, rgba(23, 163, 184, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(31, 95, 135, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(21, 24, 32, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 24, 32, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

a {
  color: inherit;
}

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

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.34;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(243, 245, 246, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.18);
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

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

.hero {
  display: grid;
  min-height: calc(100svh - 118px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 58px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 70px;
}

.eyebrow,
.step,
.service-card span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--rust);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow-cyan { color: var(--cyan); }
.eyebrow-green { color: var(--green); }
.eyebrow-purple { color: var(--plum); }

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.85vw, 40px);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.12;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.42;
}

.hero-support,
.section-heading > p,
.contact-section p,
.thesis-copy p,
.assurance-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-support {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
}

.command-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 15% 18%, rgba(23, 163, 184, 0.24), transparent 16rem),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.1), transparent 16rem),
    linear-gradient(145deg, #0f1720, #202d3b);
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.28);
}

.command-panel::after {
  position: absolute;
  inset: auto -60px -80px auto;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.panel-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 62px;
}

.panel-topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.system-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 212, 71, 0.72);
  border-radius: 10px;
  background: #ffd447;
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(255, 212, 71, 0.2);
  backdrop-filter: blur(12px);
}

.system-card p {
  margin: 0 0 10px;
  color: rgba(21, 24, 32, 0.66);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.system-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.14;
}

.system-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.system-flow span {
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(23, 163, 184, 0.18), rgba(23, 163, 184, 0.94));
}

.system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.system-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.system-grid span {
  color: #83dbe6;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.system-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
}

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

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 52px;
  align-items: end;
}

.split-heading p {
  margin-bottom: 6px;
}

.thesis-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.thesis-section .section-heading {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(15, 23, 32, 0.08);
}

.thesis-copy {
  display: grid;
  gap: 12px;
}

.thesis-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  margin: 0;
  padding: 18px 20px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 30px rgba(15, 23, 32, 0.055);
}

.thesis-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
  content: "";
}

.thesis-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-top: 2px;
  padding: 5px 7px;
  border: 1px solid rgba(21, 24, 32, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.thesis-card h3 {
  grid-column: 2;
  margin-bottom: 10px;
  font-size: 22px;
}

.thesis-card p {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
}

.thesis-card-gold {
  border-color: rgba(194, 149, 63, 0.3);
  background:
    linear-gradient(90deg, rgba(243, 234, 212, 0.7), rgba(255, 255, 255, 0.88));
}

.thesis-card-gold::before {
  background: var(--gold);
}

.thesis-card-green {
  border-color: rgba(50, 112, 91, 0.28);
  background:
    linear-gradient(90deg, rgba(223, 239, 230, 0.72), rgba(255, 255, 255, 0.88));
}

.thesis-card-green::before {
  background: var(--green);
}

.thesis-card-blue {
  border-color: rgba(31, 95, 135, 0.28);
  background:
    linear-gradient(90deg, rgba(220, 236, 243, 0.72), rgba(255, 255, 255, 0.88));
}

.thesis-card-blue::before {
  background: var(--blue);
}

.local-section {
  padding-top: 22px;
}

.local-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(131, 219, 230, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(15, 23, 32, 0.98), rgba(25, 42, 52, 0.96)),
    var(--navy);
  color: var(--white);
  box-shadow: 0 28px 72px rgba(15, 23, 32, 0.24);
}

.local-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(131, 219, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 219, 230, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(135deg, black, transparent 78%);
}

.local-panel::after {
  position: absolute;
  right: 38px;
  bottom: 34px;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #83dbe6);
  content: "";
}

.local-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.local-copy h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.local-copy p:not(.eyebrow) {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.68;
}

.local-copy p:last-child {
  margin-bottom: 0;
}

.local-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 12px 17px;
  border: 1px solid rgba(131, 219, 230, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #83dbe6;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.local-link:hover {
  border-color: rgba(131, 219, 230, 0.56);
  transform: translateY(-2px);
}

.local-focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.local-focus-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.local-focus-grid article:last-child {
  border-bottom: 0;
}

.local-focus-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #83dbe6, rgba(50, 112, 91, 0.8));
  content: "";
}

.local-focus-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #83dbe6;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.local-focus-grid h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 23px;
}

.local-focus-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.58;
}

.services-section {
  position: relative;
  border-top: 1px solid var(--line);
}

.services-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.service-slider {
  display: grid;
  grid-auto-columns: minmax(280px, 355px);
  grid-auto-flow: column;
  gap: 18px;
  margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding: 8px calc((100vw - min(1180px, calc(100vw - 40px))) / 2) 20px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 20px;
  scroll-snap-type: inline mandatory;
}

.service-slider::-webkit-scrollbar {
  height: 10px;
}

.service-slider::-webkit-scrollbar-track {
  background: rgba(21, 24, 32, 0.08);
  border-radius: 99px;
}

.service-slider::-webkit-scrollbar-thumb {
  background: rgba(21, 24, 32, 0.26);
  border-radius: 99px;
}

.service-card {
  min-height: 286px;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 20px 58px rgba(15, 23, 32, 0.1);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--muted);
}

.service-card h3 {
  max-width: 13ch;
}

.service-card p,
.capability-grid p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.58;
}

.service-card-ai { background: linear-gradient(145deg, var(--cyan-soft), var(--white)); }
.service-card-crm { background: linear-gradient(145deg, var(--blue-soft), var(--white)); }
.service-card-hr { background: linear-gradient(145deg, var(--green-soft), var(--white)); }
.service-card-finance { background: linear-gradient(145deg, var(--gold-soft), var(--white)); }
.service-card-governance { background: linear-gradient(145deg, var(--plum-soft), var(--white)); }
.service-card-web { background: linear-gradient(145deg, var(--rust-soft), var(--white)); }
.service-card-mobile { background: linear-gradient(145deg, var(--blue-soft), var(--white)); }
.service-card-founder { background: linear-gradient(145deg, var(--green-soft), var(--white)); }

.capability-section {
  padding-top: 66px;
}

.capability-panel {
  overflow: hidden;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 0%, rgba(23, 163, 184, 0.2), transparent 22rem),
    var(--navy);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.25);
}

.capability-panel h2 {
  max-width: 680px;
  margin-bottom: 30px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.capability-grid article {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-grid h3 {
  color: var(--white);
  font-size: 22px;
}

.capability-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.approach-section {
  border-top: 1px solid var(--line);
}

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

.process-list article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 42px rgba(15, 23, 32, 0.075);
}

.step {
  color: var(--rust);
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.assurance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.assurance-copy p {
  margin-bottom: 0;
}

.assurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.assurance-grid div {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(21, 24, 32, 0.08);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-insights {
  grid-column: 1 / -1;
}

.contact-insights > .eyebrow {
  margin-bottom: 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 32, 0.08);
}

.impact-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.impact-grid article:last-child {
  border-right: 0;
}

.impact-grid article:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(243, 234, 212, 0.72), transparent 58%);
}

.impact-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(220, 236, 243, 0.72), transparent 58%);
}

.impact-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(234, 223, 231, 0.72), transparent 58%);
}

.impact-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.impact-grid h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.impact-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(21, 24, 32, 0.1);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-link {
  max-width: 100%;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.company-detail {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: flex-start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-company {
  display: grid;
  gap: 4px;
  max-width: 310px;
}

.footer-company span {
  color: var(--ink);
  font-weight: 800;
}

.footer-company address {
  font-style: normal;
}

.site-footer a {
  color: var(--blue);
}

@media (max-width: 980px) {
  .hero,
  .thesis-section,
  .split-heading,
  .local-panel,
  .assurance-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .command-panel {
    min-height: 460px;
  }

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

  .service-slider {
    margin-right: -20px;
    padding-right: 20px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
    align-items: center;
    gap: 12px;
  }

  .brand {
    max-width: 132px;
    line-height: 1.15;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(30px, 8.4vw, 39px);
  }

  h2 {
    font-size: clamp(24px, 6.4vw, 31px);
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions,
  .button,
  .local-link {
    width: 100%;
  }

  .command-panel {
    padding: 18px;
  }

  .panel-topline {
    margin-bottom: 36px;
  }

  .system-grid,
  .capability-grid,
  .impact-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-grid article:last-child {
    border-bottom: 0;
  }

  .service-slider {
    grid-auto-columns: minmax(254px, 82vw);
  }

  .service-card {
    min-height: 264px;
  }

  .capability-panel {
    padding: 26px;
  }

  .local-panel {
    padding: 26px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ambient-canvas {
    display: none;
  }
}
