@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("/assets/fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #0868e8;
  --yellow: #ffd21a;
  --white: #ffffff;
  --blue-rgb: 8, 104, 232;
  --yellow-rgb: 255, 210, 26;
  --white-rgb: 255, 255, 255;
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-geist-sans), "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--yellow);
  color: var(--blue);
}

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(var(--blue-rgb), 0.22);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.section-shell {
  width: min(calc(100% - 112px), 1240px);
  margin-inline: auto;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

a:hover .arrow-icon,
a:focus-visible .arrow-icon {
  transform: translateX(4px);
}

.desktop-only {
  display: inline;
}

/* Header and hero */
.precision-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.precision-hero::before {
  content: "";
  position: absolute;
  top: -224px;
  right: -218px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(var(--white-rgb), 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.precision-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background-image:
    linear-gradient(rgba(var(--white-rgb), 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--white-rgb), 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 34%);
  pointer-events: none;
}

.precision-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: 88px;
  border-bottom: 1px solid rgba(var(--blue-rgb), 0.18);
  background: var(--white);
}

.precision-brand,
.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 13px;
}

.logo-mark {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 42px;
  flex: 0 0 auto;
}

.logo-mark i,
.logo-mark b {
  position: absolute;
  display: block;
  width: 29px;
  height: 29px;
  clip-path: polygon(0 0, 100% 0, 54% 50%, 100% 100%, 0 100%, 47% 50%);
}

.logo-mark i {
  top: 0;
  left: 0;
  background: var(--blue);
}

.logo-mark b {
  right: 0;
  bottom: 0;
  background: var(--yellow);
  transform: rotate(180deg);
}

.precision-brand-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.precision-brand-name small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.precision-brand-name b {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.precision-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.precision-nav a {
  position: relative;
  padding: 34px 0 32px;
}

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

.precision-nav a:hover::after,
.precision-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.precision-header-contact {
  display: inline-flex;
  min-width: 176px;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 21px;
  border-right: 7px solid var(--yellow);
  border-radius: 12px 12px 4px 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: padding 180ms ease;
}

.precision-header-contact:hover,
.precision-header-contact:focus-visible {
  padding-right: 17px;
}

.precision-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(64px, 7vw, 108px);
  min-height: 680px;
  padding-block: 82px 88px;
}

.precision-hero-inner::after {
  display: none;
}

.precision-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.precision-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 27px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
}

.precision-eyebrow::before {
  content: "";
  width: 34px;
  height: 5px;
  background: var(--yellow);
}

.precision-hero h1 {
  margin: 0;
  max-width: 9em;
  color: var(--white);
  font-size: clamp(52px, 4.7vw, 70px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.precision-hero-title {
  display: block;
}

.precision-lead {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 27px 0 0;
  max-width: 35em;
  color: rgba(var(--white-rgb), 0.92);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.precision-lead > p {
  margin: 0;
}

.precision-business-count {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.precision-business-count strong {
  color: var(--yellow);
  font-size: 21px;
  font-weight: 900;
}

.precision-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 31px;
}

.precision-primary {
  display: grid;
  grid-template-columns: 1fr 58px;
  min-width: 258px;
  min-height: 62px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.precision-primary > span {
  display: flex;
  align-items: center;
  padding: 0 25px;
}

.precision-primary > i {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--blue);
}

.precision-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 34px;
  border-bottom: 2px solid var(--white);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.precision-hero-art {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  background: transparent;
}

.precision-hero-art::before {
  display: none;
}

.hero-services {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 0;
  overflow: visible;
  background: transparent;
  color: var(--white);
}

.hero-services::after {
  display: none;
}

.hero-service-connected::after {
  display: none;
}

.hero-services > p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.hero-services > p::before {
  content: "";
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-service-connected {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 34px 34px 14px 34px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 28px 70px rgba(0, 40, 110, 0.22);
}

.hero-connected-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 3px 7px 15px;
  border-bottom: 1px solid rgba(var(--blue-rgb), 0.12);
}

.hero-connected-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-connected-meta small {
  color: rgba(var(--blue-rgb), 0.78);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
  text-align: right;
}

.hero-service-chain {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-top: 16px;
}

.hero-service-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 25px 22px 22px;
  border: 0;
  border-radius: 22px;
}

.hero-service-item > svg {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.hero-service-connected .hero-service-item {
  background: linear-gradient(145deg, rgba(var(--blue-rgb), 0.035), rgba(var(--blue-rgb), 0.085));
  box-shadow: inset 0 0 0 1px rgba(var(--blue-rgb), 0.075);
}

.hero-service-connected .hero-service-item > svg {
  padding: 11px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
}

.hero-service-item strong {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.hero-service-connected .hero-service-item strong {
  font-size: 18px;
}

.hero-service-number {
  position: absolute;
  top: 17px;
  right: 18px;
  color: rgba(var(--blue-rgb), 0.62);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-service-body {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.hero-service-body small {
  color: rgba(var(--blue-rgb), 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-service-arrow {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(var(--blue-rgb), 0.18);
}

.hero-service-multiply {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.hero-service-arrow.hero-service-multiply {
  transform: none;
}

.hero-service-arrow .arrow-icon {
  width: 24px;
  height: 24px;
}

.hero-service-electrical {
  position: relative;
  z-index: 1;
  min-height: 132px;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  width: 78%;
  align-self: flex-end;
  margin: 0 24px 0 0;
  border: 0;
  overflow: hidden;
  border-radius: 14px 28px 28px 28px;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 20px 46px rgba(0, 40, 110, 0.18);
}

.hero-service-electrical::after {
  content: "";
  position: absolute;
  top: -72px;
  right: -54px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(var(--white-rgb), 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.hero-service-electrical > * {
  position: relative;
  z-index: 1;
}

.hero-service-electrical .hero-service-number {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
}

.hero-service-electrical > svg {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
}

.hero-service-electrical strong {
  font-size: 24px;
}

.hero-service-electrical .hero-service-body small {
  color: rgba(var(--blue-rgb), 0.8);
}

.hero-dashboard {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 570px;
  flex-direction: column;
  padding: 0 4px 18px;
  background: transparent;
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  top: 92px;
  left: -10px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  background: var(--white);
}

.dashboard-topbar {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 3;
  width: fit-content;
  margin: 0 0 -8px 24px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(var(--blue-rgb), 0.12);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.dashboard-topbar > i {
  display: flex;
  gap: 6px;
}

.dashboard-topbar > i b {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.dashboard-topbar > i b:nth-child(2) {
  background: var(--yellow);
}

.dashboard-growth {
  padding: 27px 28px 34px;
  overflow: hidden;
  border-radius: 30px 118px 76px 30px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 26px 64px rgba(var(--blue-rgb), 0.18);
}

.dashboard-growth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-growth-head > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.dashboard-growth-head span,
.dashboard-growth-head small,
.dashboard-electrical-title small,
.dashboard-electrical-facts span {
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.dashboard-growth-head strong {
  max-width: 330px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.015em;
}

.dashboard-growth-head > small {
  flex: 0 0 auto;
  padding: 8px 10px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 999px;
}

.dashboard-chart {
  position: relative;
  height: 216px;
  margin-top: 19px;
  padding: 19px 18px 15px;
  overflow: hidden;
  border-radius: 22px 22px 52px 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--yellow-rgb), 0.14), transparent 34%),
    rgba(var(--white-rgb), 0.07);
}

.dashboard-pipeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
}

.dashboard-pipeline-stage {
  display: flex;
  min-width: 0;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 15px 10px;
  border: 1px solid rgba(var(--white-rgb), 0.28);
  border-radius: 20px 8px 28px 8px;
  background: rgba(var(--white-rgb), 0.08);
}

.dashboard-pipeline-stage:nth-of-type(2) {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-5px);
}

.dashboard-pipeline-stage > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-pipeline-stage:nth-of-type(2) > span {
  color: var(--blue);
}

.dashboard-pipeline-stage b {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.dashboard-pipeline-stage small {
  margin-top: 5px;
  color: rgba(var(--white-rgb), 0.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
}

.dashboard-pipeline-stage:nth-of-type(2) small {
  color: rgba(var(--blue-rgb), 0.84);
}

.dashboard-pipeline-arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

.dashboard-pipeline-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
  transform: translateY(-50%) rotate(45deg);
}

.dashboard-feedback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(var(--white-rgb), 0.34);
  font-size: 12px;
}

.dashboard-feedback span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(var(--yellow-rgb), 0.16);
  color: var(--yellow);
  font-weight: 900;
}

.dashboard-feedback b {
  color: rgba(var(--white-rgb), 0.82);
  font-weight: 800;
}

.dashboard-modules {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  margin-top: 13px;
}

.dashboard-module {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(var(--white-rgb), 0.38);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.dashboard-module > span {
  color: var(--yellow);
}

.dashboard-module > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.dashboard-module b {
  line-height: 1.3;
}

.dashboard-module small {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.dashboard-link-label {
  display: inline-flex;
  min-width: 78px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.module-bars,
.module-signal {
  display: flex;
  height: 24px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
}

.module-bars em {
  display: block;
  width: 6px;
  background: var(--yellow);
}

.module-bars em:nth-child(1) { height: 31%; }
.module-bars em:nth-child(2) { height: 58%; }
.module-bars em:nth-child(3) { height: 47%; }
.module-bars em:nth-child(4) { height: 92%; }

.module-signal {
  align-items: center;
}

.module-signal em {
  display: block;
  width: 7px;
  height: 7px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.module-signal em:nth-child(2) {
  width: 15px;
  height: 15px;
}

.module-signal em:nth-child(3) {
  width: 23px;
  height: 23px;
}

.dashboard-separator {
  display: flex;
  min-height: 37px;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-family: inherit;
  margin: 4px 34px 0 58px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.dashboard-separator::before,
.dashboard-separator::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(var(--blue-rgb), 0.24);
}

.dashboard-electrical {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  z-index: 2;
  margin: -2px 8px 0 52px;
  padding: 20px 24px;
  border: 1px solid rgba(var(--blue-rgb), 0.27);
  border-left: 7px solid var(--yellow);
  border-radius: 28px 28px 74px 28px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 15px 36px rgba(var(--blue-rgb), 0.1);
}

.dashboard-electrical-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.dashboard-bolt {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--yellow);
  border-radius: 50%;
}

.dashboard-bolt svg {
  width: 26px;
  height: 26px;
}

.dashboard-electrical-title > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.dashboard-electrical-title strong {
  font-size: 21px;
  font-weight: 900;
}

.dashboard-electrical-facts {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 22px;
}

.dashboard-electrical-facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-electrical-facts b {
  font-family: var(--font-geist-mono), monospace;
  font-size: 14px;
  white-space: nowrap;
}

/* Shared section system */
.section-light {
  background: var(--white);
}

.section-kicker {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 22px;
}

.section-kicker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: var(--yellow);
}

.section-kicker span {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.section-kicker b {
  font-size: 13px;
  font-weight: 800;
}

.section-index {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.about h2,
.section-title-block h2,
.dark-heading-row h2,
.flow-title h2,
.company-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.24;
}

/* About */
.about {
  position: relative;
  padding: 132px 0 128px;
  background:
    linear-gradient(rgba(var(--blue-rgb), 0.035), rgba(var(--blue-rgb), 0.035)),
    var(--white);
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 84px;
}

.about-copy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  gap: 74px;
  margin-top: 63px;
  padding-top: 36px;
  border-top: 1px solid rgba(var(--blue-rgb), 0.23);
}

.about-statement {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
}

.body-copy {
  color: rgba(var(--blue-rgb), 0.86);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05;
}

.body-copy p {
  margin: 0;
}

.body-copy p + p {
  margin-top: 18px;
}

/* Services */
.services-section {
  position: relative;
  padding: 132px 0 136px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 8%, rgba(var(--blue-rgb), 0.065) 0 150px, transparent 152px),
    var(--white);
}

.services-section::before {
  content: "";
  position: absolute;
  top: 76px;
  right: -170px;
  width: 420px;
  height: 150px;
  border-top: 3px solid rgba(var(--yellow-rgb), 0.9);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.section-heading-row,
.dark-heading-row,
.flow-intro {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 84px;
}

.section-title-block,
.flow-title {
  display: grid;
  grid-template-columns: minmax(450px, 1fr) minmax(340px, 390px);
  align-items: end;
  gap: 34px;
}

.section-title-block {
  align-items: start;
  column-gap: 34px;
  row-gap: 14px;
}

.section-title-block .section-index,
.flow-title .section-index {
  grid-column: 1 / -1;
}

.section-title-block .section-index {
  margin-bottom: 0;
}

.flow-title > p:last-child {
  margin: 0 0 5px;
  color: rgba(var(--blue-rgb), 0.84);
  font-size: 16px;
  line-height: 1.8;
}

.section-title-notes {
  display: grid;
  align-self: start;
  gap: 19px;
  margin-bottom: 3px;
}

.section-title-note {
  padding-left: 16px;
  border-left: 4px solid var(--blue);
}

.section-title-note-electrical {
  border-left-color: var(--yellow);
}

.section-title-note span {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.section-title-note p {
  margin: 7px 0 0;
  color: rgba(var(--blue-rgb), 0.84);
  font-size: 16px;
  line-height: 1.75;
}

.business-architecture {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, 0.9fr);
  gap: 28px;
  margin-top: 72px;
  align-items: stretch;
}

.connected-business,
.independent-business {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.connected-business {
  padding: 31px;
  border-radius: 58px 16px 58px 16px;
  background: var(--blue);
  color: var(--white);
}

.independent-business {
  position: relative;
  padding: 25px 25px 31px;
  border: 0;
  border-top: 7px solid var(--yellow);
  border-radius: 16px 58px 16px 58px;
  background: rgba(var(--blue-rgb), 0.045);
  box-shadow: 0 22px 58px rgba(var(--blue-rgb), 0.11);
}

.independent-business::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-bottom: 7px solid var(--yellow);
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
}

.business-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 24px;
  margin-bottom: 26px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.35);
  height: 120px;
  min-height: 120px;
}

.business-group-heading > span {
  grid-column: 1 / -1;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.business-group-heading h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.business-group-heading p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.86);
  font-size: 14px;
  font-weight: 700;
}

.business-group-heading-independent {
  grid-template-columns: 1fr;
  align-items: start;
  border-color: rgba(var(--blue-rgb), 0.24);
  color: var(--blue);
}

.business-group-heading-independent h3 {
  font-size: 23px;
}

.business-group-heading-independent p {
  color: rgba(var(--blue-rgb), 0.84);
}

.connected-service-grid {
  position: relative;
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-connection {
  position: absolute;
  top: 74px;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  min-width: 92px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 0 0 6px var(--blue);
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.service-connection::after {
  content: "›";
  margin-left: 6px;
  font-size: 18px;
  line-height: 1;
}

.connected-service-grid > .service-card,
.independent-business > .service-card {
  height: 100%;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 0;
  overflow: hidden;
  border-radius: 34px 12px 54px 12px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 16px 40px rgba(var(--blue-rgb), 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 48px;
  height: 6px;
  border-radius: 0 0 0 999px;
  background: var(--yellow);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(var(--blue-rgb), 0.12);
}

.service-visual {
  display: flex;
  min-height: 148px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 0 0 72px 0;
}

.service-visual > svg {
  width: 62px;
  height: 62px;
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px 32px 31px;
}

.service-card-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-card-meta > span:first-child {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 50%;
  letter-spacing: 0;
}

.service-card p.service-proof {
  width: fit-content;
  margin: 22px 0 0;
  padding-left: 11px;
  border-left: 4px solid var(--yellow);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.service-card h3 {
  margin: 23px 0 17px;
  font-size: 24px;
  font-weight: 900;
}

.service-card-content > p:not(.service-proof) {
  margin: 0;
  color: rgba(var(--blue-rgb), 0.86);
  font-size: 16px;
  line-height: 1.9;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.service-highlights li {
  padding: 7px 9px;
  border: 1px solid rgba(var(--blue-rgb), 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.service-card-content > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  min-height: 48px;
  padding: 18px 0 9px;
  border-bottom: 2px solid var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.service-card-compact .service-visual {
  min-height: 148px;
}

.service-card-compact .service-card-content {
  padding-inline: 27px;
}

.service-card-compact h3 {
  font-size: 24px;
}

.independent-business > .service-card {
  flex: 1;
  border: 0;
  box-shadow: none;
}

.independent-business > .service-card::before {
  display: none;
}

/* Approach */
.approach-section {
  position: relative;
  padding: 132px 0 136px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(var(--white-rgb), 0.07) 0 170px, transparent 172px),
    var(--blue);
  color: var(--white);
}

.approach-section::before {
  content: "";
  position: absolute;
  right: -230px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(var(--white-rgb), 0.14);
  border-radius: 50%;
}

.section-kicker-dark span,
.section-kicker-dark b {
  color: var(--white);
}

.approach-section .section-index,
.contact-index {
  padding: 6px 9px;
  background: var(--yellow);
  color: var(--blue);
}

.company-index {
  color: var(--blue);
}

.approach-architecture {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, 0.9fr);
  gap: 28px;
  margin-top: 70px;
}

.approach-group {
  min-width: 0;
  padding: 22px;
}

.approach-group-connected {
  border: 0;
  border-radius: 48px 14px 48px 14px;
  background: rgba(var(--white-rgb), 0.075);
}

.approach-group-independent {
  border-top: 7px solid var(--yellow);
  border-radius: 14px 48px 14px 48px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 22px 58px rgba(var(--blue-rgb), 0.16);
}

.approach-group-label {
  margin: 0;
  padding: 2px 7px 19px;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.32);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.approach-group-independent .approach-group-label {
  border-color: rgba(var(--blue-rgb), 0.24);
}

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

.approach-card {
  min-height: 310px;
  padding: 31px 31px 36px;
  border: 0;
  background: transparent;
  transition: border-color 180ms ease, transform 180ms ease;
}

.approach-card:hover {
  transform: translateY(-3px);
}

.approach-group-grid .approach-card:first-child {
  border-right: 1px solid rgba(var(--white-rgb), 0.32);
}

.approach-group-independent .approach-card {
  color: var(--blue);
}

.approach-group-independent .approach-card p {
  color: rgba(var(--blue-rgb), 0.86);
}

.approach-number {
  display: inline-flex;
  min-width: 34px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.approach-card h3 {
  margin: 83px 0 18px;
  font-size: 22px;
  font-weight: 900;
}

.approach-card p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.86);
  font-size: 15px;
  line-height: 1.95;
}

/* Flow */
.flow-section {
  position: relative;
  padding: 132px 0 136px;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 80%, rgba(var(--blue-rgb), 0.05) 0 180px, transparent 182px),
    var(--white);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 76px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 272px;
  padding: 27px 21px 31px;
  border-radius: 28px 10px 28px 10px;
  background: rgba(var(--blue-rgb), 0.045);
}

.flow-list li:not(:last-child) {
  border-right: 0;
}

.flow-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 21px;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
}

.flow-list li:nth-child(3)::before {
  background: var(--yellow);
}

.flow-list li > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 900;
}

.flow-list h3 {
  margin: 67px 0 16px;
  font-size: 19px;
  font-weight: 900;
}

.flow-list p {
  margin: 0;
  color: rgba(var(--blue-rgb), 0.84);
  font-size: 15px;
  line-height: 1.85;
}

/* Company */
.company-section {
  padding: 132px 0 136px;
  background:
    linear-gradient(rgba(var(--blue-rgb), 0.035), rgba(var(--blue-rgb), 0.035)),
    var(--white);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(560px, 1.24fr);
  gap: 88px;
}

.company-section .section-kicker-dark span,
.company-section .section-kicker-dark b {
  color: var(--blue);
}

.company-section h2 {
  font-size: clamp(34px, 3vw, 44px);
  white-space: nowrap;
}

.company-index {
  margin-top: 72px;
}

.company-table {
  margin: 0;
  border-top: 5px solid var(--yellow);
  overflow: hidden;
  border-radius: 28px 10px 28px 10px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(var(--blue-rgb), 0.1);
}

.company-table > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(var(--blue-rgb), 0.18);
}

.company-table dt {
  color: rgba(var(--blue-rgb), 0.84);
  font-size: 14px;
  font-weight: 800;
}

.company-table dd {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.9;
}

.company-table dd a {
  display: inline-block;
  border-bottom: 2px solid var(--yellow);
  font-weight: 900;
}

.company-email {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.company-table .company-license-row {
  border-bottom: 0;
  background: var(--blue);
}

.company-license-row dt {
  color: var(--white);
}

.company-license-row dd {
  color: var(--white);
}

.company-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  border-top: 5px solid var(--yellow);
  border-radius: 36px 12px 36px 12px;
  background: var(--blue);
}

.company-map-info {
  display: flex;
  flex-direction: column;
  padding: 44px 38px 38px;
  color: var(--white);
}

.company-map-info > div > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.company-map-info h3 {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 900;
}

.company-map-info p {
  margin: 39px 0 0;
  color: rgba(var(--white-rgb), 0.8);
  font-size: 16px;
  line-height: 1.95;
}

.company-map-info > a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding: 0 20px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.company-map-frame {
  min-width: 0;
  min-height: 420px;
  background: var(--white);
}

.company-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Contact */
.contact-section {
  padding: 132px 0 136px;
  background: var(--blue);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: start;
  gap: 80px;
}

.contact-copy > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(var(--white-rgb), 0.86);
  font-size: 15px;
  line-height: 1.95;
}

.contact-index {
  margin-top: 70px;
}

.contact-panel {
  padding: 36px;
  border-top: 6px solid var(--yellow);
  overflow: hidden;
  border-radius: 28px 10px 28px 10px;
  background: var(--white);
  color: var(--blue);
}

.contact-panel-label {
  margin: 0 0 25px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.contact-direct {
  margin-top: 0;
  padding: 21px;
  border-left: 5px solid var(--yellow);
  border-radius: 16px 6px 16px 6px;
  background: rgba(var(--blue-rgb), 0.05);
}

.contact-channel > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.contact-channel > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 9px;
  min-height: 48px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--blue);
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-direct > small {
  display: block;
  margin-top: 14px;
  color: rgba(var(--blue-rgb), 0.84);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 68px 0 29px;
  background: var(--blue);
  color: var(--white);
  border-top: 1px solid rgba(var(--white-rgb), 0.22);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand .logo-mark i,
.footer-brand .logo-mark b {
  width: 24px;
  height: 24px;
}

.footer-brand .logo-mark i {
  top: 6px;
  left: 6px;
}

.footer-brand .logo-mark b {
  right: 6px;
  bottom: 6px;
}

.footer-brand span {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 27px;
  color: rgba(var(--white-rgb), 0.86);
  font-size: 13px;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 59px;
  padding-top: 27px;
  border-top: 1px solid rgba(var(--white-rgb), 0.2);
  color: rgba(var(--white-rgb), 0.84);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  margin-inline: 7px;
}

@media (prefers-reduced-motion: no-preference) {
  .precision-hero-copy > * {
    animation: enter-up 560ms both;
  }

  .precision-hero-copy > :nth-child(2) { animation-delay: 70ms; }
  .precision-hero-copy > :nth-child(3) { animation-delay: 140ms; }
  .precision-hero-copy > :nth-child(4) { animation-delay: 210ms; }
  .precision-hero-copy > :nth-child(5) { animation-delay: 280ms; }

  .precision-hero-art {
    animation: enter-right 650ms 120ms both;
  }

  @keyframes enter-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes enter-right {
    from { opacity: 0; transform: translateX(18px); }
    to { opacity: 1; transform: translateX(0); }
  }
}

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

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

@media (max-width: 1180px) {
  .shell,
  .section-shell {
    width: calc(100% - 64px);
  }

  .precision-header {
    gap: 24px;
  }

  .precision-nav {
    gap: 22px;
  }

  .precision-header-contact {
    min-width: 154px;
  }

  .precision-hero-inner {
    grid-template-columns: minmax(440px, 1fr) minmax(410px, 0.95fr);
    gap: 40px;
  }

  .hero-service-chain {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-service-item {
    min-height: 104px;
    flex-direction: row;
    align-items: center;
  }

  .hero-service-connected .hero-service-item strong {
    font-size: 20px;
  }

  .hero-service-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .hero-service-electrical {
    width: 100%;
    margin-right: 0;
  }

  .about-grid,
  .section-heading-row,
  .dark-heading-row,
  .flow-intro {
    grid-template-columns: 170px 1fr;
    gap: 48px;
  }

  .section-title-block,
  .flow-title {
    grid-template-columns: 1fr;
  }

  .section-title-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
  }

  .business-architecture,
  .approach-architecture {
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.9fr);
    gap: 22px;
  }

  .connected-business {
    padding: 25px;
  }

  .service-card-content {
    padding-inline: 26px;
  }

  .contact-grid {
    grid-template-columns: 1fr 390px;
    gap: 52px;
  }
}

@media (max-width: 1080px) {
  .precision-hero {
    min-height: 0;
  }

  .precision-hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: 0;
    padding: 78px 0 82px;
  }

  .precision-hero-inner::after {
    display: none;
  }

  .precision-hero-copy {
    max-width: 790px;
  }

  .precision-hero-art {
    width: min(100%, 820px);
    min-height: 0;
  }

  .hero-service-chain {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 16px;
  }

  .hero-service-item {
    min-height: 164px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-service-arrow {
    transform: none;
  }

  .hero-service-electrical {
    width: 74%;
    margin: 0 24px 0 0;
  }

  .business-architecture,
  .approach-architecture {
    grid-template-columns: 1fr;
  }

  .business-group-heading {
    height: auto;
    min-height: 0;
  }

  .independent-business,
  .approach-group-independent {
    margin-top: 16px;
  }

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

  .flow-list li {
    border-bottom: 0;
  }

  .flow-list li:nth-child(2n) {
    border-right: 0;
  }

  .flow-list li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .precision-header {
    grid-template-areas:
      "brand contact"
      "nav nav";
    grid-template-columns: 1fr auto;
    row-gap: 0;
    padding-top: 12px;
  }

  .precision-brand {
    grid-area: brand;
  }

  .precision-header-contact {
    grid-area: contact;
  }

  .precision-nav {
    grid-area: nav;
    justify-content: space-between;
    gap: 24px;
    overflow-x: auto;
    border-top: 1px solid rgba(var(--blue-rgb), 0.16);
    scrollbar-width: thin;
  }

  .precision-nav a {
    min-height: 44px;
    padding: 16px 0 14px;
  }

  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .company-map {
    grid-column: auto;
  }

  .contact-panel {
    width: min(100%, 540px);
  }
}

@media (max-width: 800px) {
  .shell,
  .section-shell {
    width: calc(100% - 40px);
  }

  .precision-hero-inner {
    gap: 46px;
    padding: 68px 0 70px;
  }

  .about,
  .services-section,
  .approach-section,
  .flow-section,
  .company-section,
  .contact-section {
    padding: 88px 0;
  }

  .about-grid,
  .section-heading-row,
  .dark-heading-row,
  .flow-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about h2,
  .section-title-block h2,
  .dark-heading-row h2,
  .flow-title h2,
  .company-section h2,
  .contact-copy h2 {
    font-size: clamp(31px, 7.4vw, 38px);
  }

  .about-copy-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 45px;
  }

  .business-architecture,
  .approach-architecture {
    margin-top: 54px;
  }

  .approach-card {
    min-height: 0;
  }

  .approach-card h3 {
    margin-top: 48px;
  }

  .company-index,
  .contact-index {
    margin-top: 42px;
  }

  .company-section h2 {
    white-space: normal;
  }

  .company-map {
    grid-template-columns: 1fr;
  }

  .company-map-info {
    min-height: 290px;
  }

  .company-map-frame,
  .company-map-frame iframe {
    min-height: 360px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .section-title-notes {
    grid-template-columns: 1fr;
  }

  .connected-service-grid,
  .approach-group-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .connected-service-grid {
    grid-auto-rows: 1fr;
  }

  .service-connection {
    top: 50%;
  }

  .service-connection::after {
    content: "↓";
    margin-left: 7px;
    font-size: 14px;
  }

  .approach-group-grid .approach-card:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--white-rgb), 0.32);
  }

  .flow-list li,
  .flow-list li:last-child {
    grid-column: auto;
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 0;
  }

  .flow-list {
    margin-top: 52px;
  }

  .flow-list h3 {
    margin-top: 34px;
  }
}

@media (max-width: 620px) {
  .precision-header {
    min-height: 76px;
  }

  .precision-brand {
    gap: 9px;
  }

  .logo-mark {
    width: 33px;
    height: 35px;
  }

  .logo-mark i,
  .logo-mark b {
    width: 24px;
    height: 24px;
  }

  .precision-brand-name small {
    font-size: 12px;
  }

  .precision-brand-name b {
    font-size: 21px;
  }

.precision-header-contact {
    min-width: 0;
    min-height: 44px;
    padding: 0 13px;
    border-right-width: 5px;
    font-size: 12px;
  }

  .precision-header-contact .arrow-icon {
    display: none;
  }

  .precision-hero-inner {
    padding-top: 58px;
  }

  .precision-eyebrow {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.55;
  }

  .precision-hero h1 {
    font-size: clamp(40px, 10.5vw, 48px);
  }

  .precision-lead {
    font-size: 16px;
  }

  .desktop-only {
    display: none;
  }

  .precision-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .precision-primary {
    width: 100%;
    min-width: 0;
  }

  .precision-secondary {
    width: fit-content;
  }

  .hero-services {
    min-height: 0;
    gap: 14px;
    padding: 0;
  }

  .hero-services > p {
    margin: 0 0 2px;
    font-size: 15px;
  }

  .hero-service-connected {
    padding: 24px 20px;
    border-radius: 28px;
  }

  .hero-connected-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 0 2px 14px;
  }

  .hero-connected-meta small {
    text-align: left;
  }

  .hero-service-chain {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-service-item {
    min-height: 96px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
  }

  .hero-service-number {
    display: none;
  }

  .hero-service-item > svg,
  .hero-service-electrical > svg {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .hero-service-item strong,
  .hero-service-electrical strong {
    font-size: 20px;
  }

  .hero-service-arrow {
    width: 42px;
    height: 42px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .hero-service-electrical {
    width: 100%;
    min-height: 96px;
    margin: 4px 0 0;
  }

  .hero-dashboard {
    min-height: 0;
    padding: 0 0 14px;
  }

  .dashboard-topbar {
    margin-left: 14px;
    font-size: 12px;
  }

  .dashboard-growth {
    padding: 20px 17px 17px;
  }

  .dashboard-growth-head strong {
    font-size: 18px;
  }

  .dashboard-growth-head > small {
    padding: 7px;
    font-size: 12px;
  }

  .dashboard-chart {
    height: auto;
    min-height: 368px;
    padding: 16px;
  }

  .dashboard-pipeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dashboard-pipeline-stage {
    min-height: 78px;
    padding: 11px 14px;
  }

  .dashboard-pipeline-stage:nth-of-type(2) {
    transform: none;
  }

  .dashboard-pipeline-stage b {
    margin-top: 3px;
  }

  .dashboard-pipeline-stage small {
    margin-top: 2px;
  }

  .dashboard-pipeline-arrow {
    width: 2px;
    height: 14px;
    justify-self: center;
  }

  .dashboard-pipeline-arrow::after {
    top: auto;
    right: 50%;
    bottom: -5px;
    width: 0;
    height: 0;
    border: 0;
    border-top: 7px solid var(--yellow);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transform: translateX(50%);
  }

  .dashboard-feedback {
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 9px;
  }

  .dashboard-module {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 7px;
    padding-inline: 8px;
  }

  .dashboard-electrical {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 18px;
    margin-left: 24px;
  }

  .dashboard-electrical-facts {
    padding-top: 14px;
    border-top: 1px solid rgba(var(--blue-rgb), 0.2);
  }

  .connected-business,
  .independent-business,
  .approach-group {
    padding: 20px;
  }

  .business-group-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .business-group-heading p {
    font-size: 14px;
  }

  .service-card-content,
  .service-card-compact .service-card-content {
    padding-inline: 24px;
  }

  .company-table > div {
    grid-template-columns: 96px 1fr;
    padding: 23px 20px;
  }

  .company-table dd {
    font-size: 15px;
  }

  .company-map-info {
    padding: 36px 26px 29px;
  }

  .company-map-frame,
  .company-map-frame iframe {
    min-height: 310px;
  }

  .contact-panel {
    padding: 28px 22px;
  }

  .contact-direct > small {
    color: rgba(var(--blue-rgb), 0.84);
    font-size: 14px;
  }

  .footer-main nav {
    gap: 18px 24px;
  }

  .footer-bottom {
    margin-top: 45px;
  }
}

@media (max-width: 480px) {
  .dashboard-modules {
    grid-template-columns: 1fr;
  }

  .dashboard-link-label {
    width: 92px;
    justify-self: center;
  }
}

@media (max-width: 420px) {
  .shell,
  .section-shell {
    width: calc(100% - 32px);
  }

  .precision-nav {
    gap: 20px;
  }

  .precision-hero h1 {
    font-size: 39px;
  }

  .dashboard-growth-head {
    gap: 10px;
  }

  .dashboard-growth-head span,
  .dashboard-electrical-title small,
  .dashboard-electrical-facts span {
    font-size: 12px;
  }

  .business-group-heading h3 {
    font-size: 23px;
  }

  .service-card-content,
  .service-card-compact .service-card-content {
    padding: 28px 20px 25px;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-channel > a {
    font-size: 13px;
  }
}

/* Static package additions: contact actions, policy and 404 */
.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-action {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 2px solid rgba(var(--blue-rgb), 0.16);
  border-radius: 16px 7px 16px 7px;
  background: rgba(var(--blue-rgb), 0.035);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  border-color: var(--blue);
  background: rgba(var(--blue-rgb), 0.08);
  transform: translateY(-2px);
}

.contact-action span {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.contact-action small {
  color: rgba(var(--blue-rgb), 0.72);
  font-size: 13px;
  font-weight: 800;
}

.contact-action strong {
  max-width: 100%;
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-action-phone,
.contact-action-line {
  border-color: var(--blue);
}

.contact-action-line {
  border-color: var(--yellow);
  background: var(--yellow);
}

.contact-action-line small,
.contact-action-line strong {
  color: var(--blue);
}

.contact-note {
  margin: 18px 1px 0;
  color: rgba(var(--blue-rgb), 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.subpage-header .precision-header-contact {
  min-width: 142px;
}

.legal-main {
  min-height: 65vh;
  padding: 104px 0 120px;
  background:
    radial-gradient(circle at 92% 7%, rgba(var(--blue-rgb), 0.06) 0 150px, transparent 152px),
    var(--white);
}

.legal-head {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: 70px;
  padding-bottom: 58px;
  border-bottom: 5px solid var(--yellow);
}

.legal-head h1 {
  margin: 15px 0 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.legal-head p {
  max-width: 690px;
  margin: 21px 0 0;
  color: rgba(var(--blue-rgb), 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.legal-content {
  display: grid;
  gap: 46px;
  max-width: 900px;
  margin: 62px 0 0 auto;
}

.legal-introduction {
  margin: 0;
  padding: 32px 36px;
  border-top: 5px solid var(--yellow);
  border-radius: 24px 8px 24px 8px;
  background: rgba(var(--blue-rgb), 0.055);
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.legal-section {
  padding: 0 0 42px;
  border-bottom: 1px solid rgba(var(--blue-rgb), 0.2);
}

.legal-section h2 {
  margin: 0 0 19px;
  font-size: 22px;
  line-height: 1.5;
}

.legal-section h3 {
  margin: 34px 0 15px;
  padding-left: 13px;
  border-left: 4px solid var(--yellow);
  font-size: 18px;
  line-height: 1.6;
}

.legal-section p,
.legal-section li {
  color: var(--blue);
  font-size: 16px;
  line-height: 2;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ol + p,
.legal-section ul + p {
  margin-top: 13px;
}

.legal-section ol,
.legal-section ul {
  display: grid;
  gap: 7px;
  margin: 17px 0 0;
  padding-left: 1.55em;
}

.legal-section .legal-note {
  margin-top: 20px;
  padding: 15px 18px;
  border-radius: 13px 5px 13px 5px;
  background: rgba(var(--yellow-rgb), 0.32);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.legal-section a {
  border-bottom: 2px solid var(--yellow);
  font-weight: 800;
}

.legal-updated {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.error-main {
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: 80px 20px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.error-card {
  position: relative;
  width: min(100%, 760px);
  padding: 72px clamp(25px, 7vw, 78px);
  border-top: 8px solid var(--yellow);
  border-radius: 60px 16px 60px 16px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 30px 90px rgba(0, 40, 110, 0.3);
}

.error-code {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(72px, 16vw, 160px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 2px var(--blue);
}

.error-card h1 {
  margin: 42px 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.3;
}

.error-card > p:not(.error-code) {
  margin: 0;
  color: rgba(var(--blue-rgb), 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.error-card .precision-primary {
  margin-top: 35px;
}

@media (max-width: 800px) {
  .legal-main {
    padding: 76px 0 88px;
  }

  .legal-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-content {
    margin-top: 48px;
  }

  .legal-introduction {
    padding: 26px 24px;
  }
}

@media (max-width: 620px) {
  .subpage-header .precision-nav {
    display: none;
  }

  .subpage-header {
    grid-template-areas: "brand contact";
  }

  .contact-action {
    min-height: 70px;
    padding-inline: 14px;
  }

  .contact-action strong {
    font-size: 14px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

  .error-card {
    border-radius: 36px 12px 36px 12px;
  }
}
