:root {
  --ink: #121719;
  --muted: #5f6a6f;
  --paper: #f2f4f1;
  --paper-deep: #dfe6e1;
  --line: rgba(18, 23, 25, 0.16);
  --line-strong: rgba(18, 23, 25, 0.34);
  --accent: #b88a3e;
  --accent-deep: #7a5724;
  --accent-soft: #d5b678;
  --white: #fbfcf8;
  --shadow: 0 18px 54px rgba(18, 23, 25, 0.11);
  --soft-shadow: 0 14px 34px rgba(18, 23, 25, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --sans: "Poppins", sans-serif;
  --serif: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 23, 25, 0.055) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(18, 23, 25, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 80% 16%, rgba(184, 138, 62, 0.2), transparent 34rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.32;
}

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

.signal-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(18, 23, 25, 0.1);
  background: rgba(242, 244, 241, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  width: 54px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  place-items: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.logo-shape {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark .logo-shape {
  filter: invert(1);
}

.orbit-emblem .logo-shape {
  opacity: 1;
  filter: none;
  transition: transform 260ms ease;
}

.hero-orbit:hover .orbit-emblem .logo-shape {
  transform: scale(1.12);
}

.brand-name,
.nav-links {
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  align-items: end;
  min-height: 100svh;
  padding: 132px clamp(18px, 5vw, 76px) 54px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 0;
  left: clamp(18px, 5vw, 76px);
  height: 1px;
  content: "";
  background: var(--line);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 136px;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 34px;
  color: #293134;
  font-size: 30px;
  line-height: 1.28;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.primary:hover {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
}

.button.ghost {
  background: rgba(255, 253, 248, 0.22);
  color: var(--ink);
}

.button.light {
  border-color: rgba(251, 252, 248, 0.34);
  background: rgba(251, 252, 248, 0.08);
  color: var(--paper);
}

.button.light:hover {
  border-color: var(--accent-soft);
  background: rgba(213, 182, 120, 0.13);
}

.button.large {
  min-height: 56px;
  padding-inline: 30px;
}

.hero-orbit {
  position: relative;
  align-self: center;
  min-height: 520px;
  isolation: isolate;
  --orbit-x: 0px;
  --orbit-y: 0px;
  --orbit-sep: 0px;
}

.hero-orbit::before {
  position: absolute;
  inset: 70px 32px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184, 138, 62, 0.12), transparent 54%),
    linear-gradient(90deg, transparent 49.8%, rgba(184, 138, 62, 0.18) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(18, 23, 25, 0.12) 50%, transparent 50.2%);
  transform: rotate(-10deg);
}

.orbit-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 254px;
  color: rgba(18, 23, 25, 0.22);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 470px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  background: rgba(251, 252, 248, 0.62);
  box-shadow: 0 26px 78px rgba(18, 23, 25, 0.12);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(18, 23, 25, 0.06);
  z-index: 0;
}

.orbit-core::after {
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  content: "";
  background:
    radial-gradient(circle at 20% 18%, rgba(184, 138, 62, 0.16), transparent 56%),
    radial-gradient(circle at 86% 78%, rgba(18, 23, 25, 0.06), transparent 60%);
  opacity: 0.9;
}

.orbit-straps {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orbit-straps path {
  fill: none;
  stroke: rgba(184, 138, 62, 0.55);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.orbit-node {
  position: absolute;
  width: 190px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(251, 252, 248, 0.72);
  box-shadow: 0 18px 48px rgba(18, 23, 25, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, box-shadow 220ms ease;
  z-index: 2;
}

.hero-orbit:hover .orbit-node {
  box-shadow: 0 22px 56px rgba(18, 23, 25, 0.11);
}

.orbit-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.node-two .orbit-dot,
.node-four .orbit-dot {
  left: 16px;
  right: auto;
}

.orbit-node strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.orbit-node span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.node-one {
  top: 24px;
  left: 18px;
  --dir-x: -1;
  --dir-y: -1;
  transform: translate(
    calc((var(--dir-x) * var(--orbit-sep)) + (var(--orbit-x) * -0.8)),
    calc((var(--dir-y) * var(--orbit-sep)) + (var(--orbit-y) * -0.7))
  );
}

.node-two {
  top: 76px;
  right: 6px;
  --dir-x: 1;
  --dir-y: -1;
  transform: translate(
    calc((var(--dir-x) * var(--orbit-sep)) + (var(--orbit-x) * 0.75)),
    calc((var(--dir-y) * var(--orbit-sep)) + (var(--orbit-y) * -0.85))
  );
}

.node-three {
  bottom: 80px;
  left: 0;
  --dir-x: -1;
  --dir-y: 1;
  transform: translate(
    calc((var(--dir-x) * var(--orbit-sep)) + (var(--orbit-x) * -0.7)),
    calc((var(--dir-y) * var(--orbit-sep)) + (var(--orbit-y) * 0.75))
  );
}

.node-four {
  right: 42px;
  bottom: 26px;
  --dir-x: 1;
  --dir-y: 1;
  transform: translate(
    calc((var(--dir-x) * var(--orbit-sep)) + (var(--orbit-x) * 0.8)),
    calc((var(--dir-y) * var(--orbit-sep)) + (var(--orbit-y) * 0.7))
  );
}

/* Orbit straps are drawn via SVG + JS (see script.js). */

.intro-band {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.intro-band p {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.1;
}

.capability-section,
.image-story-section,
.benefits-section,
.proof-section,
.systems-image-section,
.operating-section,
.cta-section {
  padding: clamp(72px, 10vw, 134px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.skills-header {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(38px, 7vw, 86px);
}

.skills-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.skills-visual {
  position: sticky;
  top: 112px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(251, 252, 248, 0.6);
  box-shadow: var(--soft-shadow);
}

.skills-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.skills-matrix {
  display: grid;
  gap: 14px;
}

.skill-cluster {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 23, 25, 0.08);
  border-radius: var(--radius);
  background: rgba(251, 252, 248, 0.68);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.skill-cluster:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 62, 0.36);
  box-shadow: 0 20px 52px rgba(18, 23, 25, 0.12);
}

.skill-cluster > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--ink);
  color: var(--accent-soft);
  font-size: 22px;
}

.skill-cluster h3 {
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1.14;
}

.skill-cluster p {
  margin-bottom: 16px;
  color: var(--muted);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(184, 138, 62, 0.11);
  color: #3b3325;
  font-size: 12px;
  font-weight: 700;
}

.services-spectrum {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
  margin-top: clamp(52px, 8vw, 104px);
  padding-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.service-point {
  text-align: center;
}

.service-point i {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 24px;
  background: rgba(184, 138, 62, 0.1);
  color: var(--accent-deep);
  font-size: 30px;
  box-shadow: inset 0 0 0 1px rgba(184, 138, 62, 0.22), var(--soft-shadow);
}

.service-point h3 {
  max-width: 240px;
  margin: 0 auto 14px;
  font-size: 21px;
  line-height: 1.15;
}

.service-point p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
}

.section-title {
  position: sticky;
  top: 116px;
}

h2 {
  max-width: 870px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.08;
}

.capability-list {
  border-top: 1px solid var(--line-strong);
}

.capability-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row > span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}

.capability-row h3 {
  margin-bottom: 9px;
  font-size: 30px;
  line-height: 1.15;
}

.capability-row p,
.operating-section > p,
.proof-metric span,
.site-footer {
  color: var(--muted);
  font-size: 16px;
}

.capability-row p {
  max-width: 690px;
  margin-bottom: 0;
}

.proof-section {
  background: rgba(223, 230, 225, 0.52);
}

.image-story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.visual-panel,
.wide-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.48);
  box-shadow: var(--soft-shadow);
}

.visual-panel img,
.wide-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.image-story-copy p:not(.section-kicker),
.systems-copy p:not(.section-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.benefits-section {
  background: linear-gradient(180deg, rgba(251, 252, 248, 0.5), rgba(223, 230, 225, 0.44));
}

.benefits-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 76px);
}

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

.benefit-item {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(18, 23, 25, 0.08);
  border-radius: var(--radius);
  background: rgba(251, 252, 248, 0.64);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 62, 0.32);
  box-shadow: 0 18px 46px rgba(18, 23, 25, 0.12);
}

.benefit-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.benefit-topline span {
  color: var(--accent);
  font-family: var(--serif);
}

.benefit-topline i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 138, 62, 0.1);
  color: var(--accent-deep);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(184, 138, 62, 0.18);
}

.benefit-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
}

.proof-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 82px);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.42fr 1fr;
  gap: 16px;
  background: transparent;
  border: 0;
}

.proof-grid > * {
  border: 0;
  border-radius: var(--radius);
  background: rgba(251, 252, 248, 0.64);
  box-shadow: var(--soft-shadow);
}

.proof-metric {
  min-height: 330px;
  padding: 26px;
}

.proof-metric strong {
  display: block;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
}

.project-slider {
  padding: 26px;
}

.slider-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-control {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-control:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
}

.project-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.project-pill,
.preview-tags span {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.4);
  color: #2d3639;
  font-size: 13px;
  font-weight: 600;
}

.project-pill {
  cursor: pointer;
  font-family: inherit;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-pill:hover,
.project-pill.active {
  border-color: rgba(184, 138, 62, 0.5);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.project-preview {
  min-height: 220px;
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(18, 23, 25, 0.9), rgba(18, 23, 25, 0.78)),
    radial-gradient(circle at 88% 18%, rgba(184, 138, 62, 0.28), transparent 18rem);
  color: var(--paper);
  overflow: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-preview.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.preview-label {
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-preview h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.12;
}

.project-preview p:not(.preview-label) {
  max-width: 690px;
  margin-bottom: 22px;
  color: rgba(242, 244, 241, 0.78);
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-tags span {
  border-color: rgba(213, 182, 120, 0.3);
  background: rgba(251, 252, 248, 0.08);
  color: var(--paper);
}

.systems-image-section {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.operating-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: end;
}

.operating-section > p {
  max-width: 660px;
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
}

.cta-section {
  min-height: 72svh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(18, 23, 25, 0.8), rgba(18, 23, 25, 0.8)),
    linear-gradient(120deg, #17130d, var(--ink));
  color: var(--paper);
}

.cta-inner {
  max-width: 920px;
}

.cta-inner .section-kicker {
  color: var(--accent-soft);
}

.cta-inner h2 {
  margin-bottom: 32px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.protected-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgba(242, 244, 241, 0.72);
  font-size: 14px;
}

.cta-section .button.primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .hero,
  .capability-layout,
  .skills-header,
  .skills-showcase,
  .proof-heading,
  .proof-grid,
  .image-story-section,
  .benefits-heading,
  .systems-image-section,
  .operating-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    align-items: start;
    padding-top: 116px;
  }

  .hero-orbit {
    width: min(100%, 620px);
    min-height: 440px;
  }

  h1 {
    font-size: 92px;
  }

  h2 {
    font-size: 52px;
  }

  .hero-lede {
    font-size: 24px;
  }

  .intro-band p {
    font-size: 46px;
  }

  .orbit-node strong {
    font-size: 36px;
  }

  .capability-row h3 {
    font-size: 26px;
  }

  .proof-metric strong {
    font-size: 72px;
  }

  .operating-section > p {
    font-size: 20px;
  }

  .section-title {
    position: static;
  }

  .skills-visual {
    position: static;
  }

  .proof-metric {
    min-height: 220px;
  }

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

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

  .node-one { top: 0; left: 0; }
  .node-two { top: 52px; right: 0; }
  .node-three { bottom: 72px; left: 22px; }
  .node-four { right: 22px; bottom: 0; }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    min-height: 68px;
  }

  .brand-name {
    display: none;
  }

  .nav-links {
    gap: 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 { font-size: 58px; }
  h2 { font-size: 36px; }
  .hero-lede { font-size: 19px; }
  .intro-band p { font-size: 32px; }
  .orbit-node strong { font-size: 34px; }
  .proof-metric strong { font-size: 56px; }

  .hero-actions,
  .contact-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-orbit {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .hero-orbit::before,
  .orbit-core,
  .orbit-emblem,
  .orbit-straps {
    display: none;
  }

  .orbit-node,
  .node-one,
  .node-two,
  .node-three,
  .node-four {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .skill-cluster {
    grid-template-columns: 1fr;
  }

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

  .services-spectrum {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .benefit-item {
    min-height: 0;
  }

  .benefit-topline {
    margin-bottom: 24px;
  }

  .intro-band p,
  h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

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