:root {
  --paper: #f2f4f6;
  --paper-2: #e5e9ed;
  --panel: #ffffff;
  --navy: #0c2438;
  --navy-2: #14324b;
  --ink: #101820;
  --steel: #55606e;
  --steel-2: #8792a0;
  --hairline: #d3d9df;
  --blue: #14487e;
  --blue-dark: #0e355f;
  --blue-light: #5aa3d8;
  --copper: #9e5420;
  --copper-light: #c87a3a;
  --alert: #c2311f;
  --go: #0f7a46;
  --display: "Oswald", "DIN Condensed", "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 3px;
  --shell: 1240px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

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

img,
svg {
  display: block;
}

p,
h1,
h2,
h3,
h4,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
.brand-word,
.button {
  font-family: var(--display);
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 span {
  color: var(--blue);
}

::selection {
  background: var(--copper);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: white;
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  transform: translateY(-150%);
}

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

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

.section {
  padding-block: clamp(88px, 10vw, 148px);
}

.data-label {
  color: var(--steel-2);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgb(242 244 246 / 96%);
  border-bottom: 1px solid var(--hairline);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgb(255 255 255 / 97%);
  border-bottom-color: #bcc4cc;
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-word {
  color: var(--ink);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-word em {
  color: var(--copper);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  padding: 11px 15px 10px;
  background: var(--blue);
  border: 2px solid var(--blue);
  color: white;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.nav-cta:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Mobile-only shortcut to the check-up form. Hidden by default at every width
   and revealed inside the 680px block,
so desktop is untouched. */
.sticky-cta {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(54px, 7vw, 96px);
  background: var(--navy);
  background-image: url("assets/blueprint-grid.svg");
  color: white;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 44px;
  right: -100px;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  border: 1px solid rgb(90 163 216 / 25%);
  border-radius: 50%;
}

.hero::after {
  top: 102px;
  right: -44px;
  width: min(27vw, 360px);
  height: min(27vw, 360px);
  border: 1px solid rgb(200 122 58 / 30%);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
}

.hero-copy {
  max-width: 740px;
  padding-bottom: clamp(56px, 7vw, 100px);
}

.kicker {
  margin-bottom: 13px;
  color: var(--copper-light);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 8.1vw, 8.3rem);
  letter-spacing: -0.025em;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
  color: var(--copper-light);
}

.hero-lead {
  max-width: 660px;
  margin-top: 28px;
  color: #c2ced7;
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px 11px;
  border: 2px solid;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button svg,
.cost-callout a svg,
.team-details a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-primary {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}

.button-primary:hover {
  background: #824418;
  border-color: #824418;
}

.button-quiet {
  background: transparent;
  border-color: #7590a5;
  color: white;
}

.button-quiet:hover {
  background: white;
  border-color: white;
  color: var(--navy);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: #9fb1c0;
  font-size: 0.85rem;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--go);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.dispatch-frame {
  position: relative;
  align-self: end;
  margin-bottom: clamp(55px, 7vw, 96px);
  padding: 22px;
  background: #f8fafb;
  border: 2px solid #6f8393;
  color: var(--ink);
}

.frame-rivets::before,
.frame-rivets::after,
.dispatch-frame::before,
.dispatch-frame::after {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #7f8e99;
  border-radius: 50%;
  content: "";
}

.frame-rivets::before {
  top: 8px;
  left: 8px;
}

.frame-rivets::after {
  top: 8px;
  right: 8px;
}

.dispatch-frame::before {
  bottom: 8px;
  left: 8px;
}

.dispatch-frame::after {
  right: 8px;
  bottom: 8px;
}

.dispatch-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5px 6px 16px;
  border-bottom: 1px solid var(--hairline);
}

.dispatch-head > div {
  display: grid;
  gap: 2px;
}

.dispatch-head strong,
.incoming-card strong,
.dispatch-result strong {
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  background: #e4f4eb;
  border: 1px solid #add7c0;
  color: var(--go);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.live-badge i {
  width: 7px;
  height: 7px;
  background: var(--go);
  border-radius: 50%;
  animation: status-pulse 1.8s steps(2, end) infinite;
}

.incoming-card {
  display: grid;
  align-items: center;
  gap: 13px;
  margin: 16px 0;
  padding: 14px;
  background: white;
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--blue);
  grid-template-columns: auto 1fr auto;
}

.incoming-card > div:nth-child(2) {
  display: grid;
  gap: 2px;
}

.incoming-card > div:nth-child(2) > span:last-child {
  color: var(--steel);
  font-size: 0.78rem;
}

.call-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #e9f1f8;
  color: var(--blue);
}

.call-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.call-time {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
}

.dispatch-log {
  display: grid;
  list-style: none;
}

.dispatch-log li {
  display: grid;
  min-height: 42px;
  align-items: center;
  border-top: 1px solid #dce1e5;
  color: var(--steel);
  font-size: 0.78rem;
  grid-template-columns: 82px 1fr auto;
}

.dispatch-log li::before {
  display: none;
}

.dispatch-log b {
  padding: 3px 5px;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dispatch-log .is-complete b {
  background: #e4f4eb;
  color: var(--go);
}

.dispatch-log .is-active {
  color: var(--ink);
  font-weight: 600;
}

.dispatch-log .is-active b {
  background: #e9f1f8;
  color: var(--blue);
}

.log-time {
  color: var(--steel-2);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.dispatch-result {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding: 14px;
  background: var(--navy);
  border-bottom: 3px solid var(--copper-light);
  color: white;
}

.dispatch-result .data-label {
  color: #9fb1c0;
}

.dispatch-result > span:last-child {
  color: #aebfcb;
  font-size: 0.76rem;
}

.spec-rail {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 88px;
  background: var(--panel);
  border-top: 4px solid var(--copper);
  color: var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.spec-rail > div {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 17px 22px;
  border-right: 1px solid var(--hairline);
}

.spec-rail > div:last-child {
  border-right: 0;
}

.spec-rail span {
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-rail strong {
  font-family: var(--display);
  font-size: 1.36rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.spec-bar {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 42px);
  padding: 8px 12px 7px;
  background: var(--blue);
  border-bottom: 3px solid var(--copper);
  color: white;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.spec-bar span:last-child {
  color: #f0c9a8;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.spec-bar-copper {
  background: var(--copper);
  border-bottom-color: #e2a676;
}

.spec-bar-copper span:last-child {
  color: white;
}

.heading-grid {
  display: grid;
  align-items: end;
  gap: clamp(34px, 8vw, 116px);
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
}

.heading-grid > p {
  max-width: 560px;
  padding-bottom: 8px;
  color: var(--steel);
  font-size: 1.04rem;
}

.problem-section {
  padding-bottom: clamp(76px, 8vw, 120px);
}

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

.loss-card {
  position: relative;
  min-height: 272px;
  padding: 29px 28px 27px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-top: 5px solid var(--blue);
}

.loss-card:nth-child(2) {
  border-top-color: var(--copper);
}

.loss-card:nth-child(3) {
  border-top-color: var(--go);
}

.card-index {
  position: absolute;
  top: 17px;
  right: 18px;
  color: var(--steel-2);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.loss-card > strong {
  display: block;
  margin: 28px 0 8px;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(3.3rem, 6vw, 5.1rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.loss-card:nth-child(2) > strong {
  color: var(--copper);
}

.loss-card:nth-child(3) > strong {
  color: var(--go);
}

.loss-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.loss-card p {
  color: var(--steel);
  font-size: 0.92rem;
}

.cost-callout {
  display: grid;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 24px 26px;
  background: white;
  border: 1px solid var(--hairline);
  border-left: 7px solid var(--alert);
  grid-template-columns: auto 1fr auto;
}

.cost-callout p {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.cost-callout a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--alert);
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.systems-section {
  padding-top: 26px;
}

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

.system-card {
  position: relative;
  display: grid;
  min-height: 340px;
  align-content: start;
  padding: clamp(26px, 4vw, 38px);
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-top: 6px solid var(--blue);
}

.system-copper {
  border-top-color: var(--copper);
}

.system-green {
  border-top-color: var(--go);
}

.system-red {
  border-top-color: var(--alert);
}

.system-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  background: #e9f1f8;
  color: var(--blue);
}

.system-copper .system-icon {
  background: #f7ebe2;
  color: var(--copper);
}

.system-green .system-icon {
  background: #e3f2ea;
  color: var(--go);
}

.system-red .system-icon {
  background: #fae8e5;
  color: var(--alert);
}

.system-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.system-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.system-card p {
  max-width: 52ch;
  margin-bottom: 24px;
  color: var(--steel);
  font-size: 0.96rem;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 5px 7px;
  border: 1px solid;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.tag-blue {
  background: #e9f1f8;
  border-color: #b9cee0;
  color: var(--blue);
}

.tag-copper {
  background: #f7ebe2;
  border-color: #dfb996;
  color: var(--copper);
}

.tag-green {
  background: #e3f2ea;
  border-color: #b1d5c1;
  color: var(--go);
}

.tag-red {
  background: #fae8e5;
  border-color: #efb7ae;
  color: var(--alert);
}

.integration-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
  padding: 17px 20px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
}

.integration-strip > span {
  flex: 0 0 auto;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.integration-list b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 46px;
  padding: 6px 12px;
  background: white;
  border: 1px solid #c6ced6;
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Third-party marks are shown unmodified and scaled to fit a common box.
   ServiceTitan's guidelines ask for breathing room around the mark, hence
   the padding above rather than a tight crop. */
.integration-list img {
  width: auto;
  height: auto;
  max-width: 108px;
  max-height: 30px;
  object-fit: contain;
}

.ownership-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  background-image: url("assets/blueprint-grid.svg");
  color: white;
}

.ownership-section::before {
  position: absolute;
  top: 0;
  right: 8vw;
  width: 1px;
  height: 100%;
  background: rgb(90 163 216 / 16%);
  content: "";
}

.on-dark h2 span {
  color: var(--copper-light);
}

.on-dark .heading-grid > p {
  color: #b7c5cf;
}

.option-table {
  border: 1px solid #41586b;
}

.option-row {
  display: grid;
  min-height: 72px;
  align-items: center;
  background: #102b41;
  border-bottom: 1px solid #41586b;
  grid-template-columns: 1.5fr repeat(5, 1fr);
}

.option-row:last-child {
  border-bottom: 0;
}

.option-row > * {
  padding: 16px 19px;
  border-right: 1px solid #41586b;
}

.option-row > *:last-child {
  border-right: 0;
}

.option-row strong {
  font-family: var(--display);
  font-size: 1.16rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.option-row span {
  color: #c4d0d8;
  font-size: 0.85rem;
}

.option-head {
  min-height: 42px;
  background: #081b2a;
}

.option-head span {
  color: #8fa4b3;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.option-row .bad {
  color: #f0a69b;
}

.option-row .warn {
  color: #e7b98f;
}

.option-row .good {
  color: #84d0a6;
  font-weight: 600;
}

.option-featured {
  background: var(--blue);
  border-top: 3px solid var(--copper-light);
}

.option-featured > * {
  border-right-color: #5276a0;
}

.option-featured span {
  color: white;
}

.timeline {
  position: relative;
  display: grid;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 157px;
  width: 2px;
  background: #bcc7d0;
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 142px;
  align-items: start;
  gap: 28px;
  padding-bottom: 28px;
  grid-template-columns: 126px 36px 1fr;
}

.week {
  padding-top: 10px;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--paper);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.timeline li:last-child .timeline-node {
  background: var(--go);
  border-color: var(--go);
  color: white;
}

.timeline li > div:last-child {
  max-width: 760px;
  padding: 6px 0 30px 22px;
  border-bottom: 1px solid var(--hairline);
}

.timeline h3 {
  margin-bottom: 9px;
  font-size: 1.6rem;
}

.timeline p {
  color: var(--steel);
}

.calculator-section {
  background: var(--paper-2);
  border-block: 1px solid #cbd2d8;
}

.calculator-grid {
  display: grid;
  align-items: start;
  gap: clamp(40px, 8vw, 104px);
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
}

.calculator-copy .spec-bar {
  margin-bottom: 34px;
}

.calculator-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.1rem);
}

.calculator-copy > p {
  max-width: 550px;
  margin-top: 22px;
  color: var(--steel);
  font-size: 1.05rem;
}

.calculator-note {
  margin-top: 36px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-left: 5px solid var(--blue);
}

.calculator-note p {
  margin-top: 6px;
  color: var(--steel);
  font-size: 0.88rem;
}

.work-order {
  background: var(--panel);
  border: 2px solid #aeb9c2;
}

.work-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--navy);
  border-bottom: 4px solid var(--copper);
  color: white;
}

.work-order-head > div {
  display: grid;
  gap: 3px;
}

.work-order-head .data-label {
  color: #9fb1c0;
}

.work-order-head strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.work-order-head > span {
  color: #d6aa86;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}

.calculator-control {
  padding: 22px 24px;
  border-bottom: 1px solid var(--hairline);
}

.calculator-control label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-control output {
  color: var(--blue);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0;
}

input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: #c9d2d9;
  border: 1px solid #aebac4;
}

input[type="range"]::-moz-range-track {
  height: 5px;
  background: #c9d2d9;
  border: 1px solid #aebac4;
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -9px;
  appearance: none;
  background: var(--blue);
  border: 3px solid white;
  border-radius: 0;
  outline: 1px solid var(--blue);
}

input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  background: var(--blue);
  border: 3px solid white;
  border-radius: 0;
  outline: 1px solid var(--blue);
}

.range-ends {
  display: flex;
  justify-content: space-between;
  color: var(--steel-2);
  font-family: var(--mono);
  font-size: 0.59rem;
}

.estimate-lines {
  padding: 9px 24px 20px;
}

.estimate-lines > div {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
}

.estimate-lines span {
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.estimate-lines strong {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.estimate-lines .estimate-total {
  min-height: 69px;
  border-bottom: 0;
}

.estimate-total strong {
  color: var(--alert);
  font-size: 2rem;
}

.work-order > .button {
  width: calc(100% - 48px);
  margin: 0 24px 24px;
}

.team-section {
  padding-top: 40px;
}

.team-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.team-card {
  display: grid;
  min-height: 340px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  grid-template-columns: 130px 1fr;
}

/* Holds the head-and-shoulders portrait at the top of the card's left
   column; the blue blueprint panel fills whatever height remains. */
.team-monogram {
  display: grid;
  align-items: start;
  padding: 0;
  overflow: hidden;
  background: var(--blue);
  background-image: url("assets/blueprint-grid.svg");
}

.team-monogram img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 35%;
}

.team-card:nth-child(2) .team-monogram {
  background-color: var(--navy);
}

/* Mirror the second card so the two portraits bookend the row: first photo
   sits on the outer left, second on the outer right. */
.team-card:nth-child(2) {
  grid-template-columns: 1fr 130px;
}

.team-card:nth-child(2) .team-details {
  order: 1;
}

.team-card:nth-child(2) .team-monogram {
  order: 2;
}

.team-details {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
}

.team-details h3 {
  margin: 8px 0 24px;
  font-size: 2.15rem;
}

.team-details ul {
  display: grid;
  gap: 11px;
  color: var(--steel);
  font-size: 0.9rem;
  list-style: none;
}

.team-details li {
  position: relative;
  padding-left: 19px;
}

.team-details li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--copper);
  content: "";
}

.team-details a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkup-section {
  background: var(--navy);
  background-image: url("assets/blueprint-grid.svg");
  color: white;
}

.checkup-grid {
  display: grid;
  align-items: start;
  gap: clamp(44px, 8vw, 96px);
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
}

.checkup-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.checkup-copy .spec-bar {
  margin-bottom: 34px;
}

.checkup-copy h2 {
  font-size: clamp(3.3rem, 6vw, 5.3rem);
}

.checkup-copy > p {
  margin-top: 24px;
  color: #b8c6d0;
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 31px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d2dce3;
  font-size: 0.92rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #62bd8a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.contact-block {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid #587084;
  border-left: 5px solid var(--copper-light);
}

.contact-block .data-label {
  color: #9fb1c0;
}

.contact-block a {
  width: fit-content;
  border-bottom: 1px solid var(--copper-light);
  color: white;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.checkup-form {
  background: var(--paper);
  border: 2px solid #698095;
  color: var(--ink);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 19px 22px;
  background: var(--blue);
  border-bottom: 4px solid var(--copper-light);
  color: white;
}

.form-head > div {
  display: grid;
  gap: 3px;
}

.form-head .data-label {
  color: #bed1e1;
}

.form-head strong {
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.form-head > span {
  color: #f0c9a8;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.form-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}

.field {
  position: relative;
  min-width: 0;
  padding: 18px 20px 20px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.field:nth-child(2n) {
  border-right: 0;
}

.field-wide {
  border-right: 0;
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field label small {
  color: var(--steel-2);
  font-size: 0.58rem;
  font-weight: 400;
}

.field input:not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #a8b3bc;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.field input:not([type="radio"]) {
  height: 43px;
}

.field select {
  height: 43px;
  padding-right: 24px;
}

.field textarea {
  min-height: 105px;
  padding-top: 8px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--blue);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-bottom-color: var(--alert);
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: var(--alert);
  font-size: 0.72rem;
  line-height: 1.25;
}

.contact-choice {
  margin: 0;
}

.contact-choice legend {
  margin-bottom: 12px;
}

.contact-choice label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 24px 0 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-choice input,
.consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 20px 22px 0;
  color: var(--steel);
  cursor: pointer;
  font-size: 0.78rem;
}

.consent input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.consent-error {
  margin: 4px 22px 0;
}

.submit-button {
  width: calc(100% - 44px);
  margin: 16px 22px 0;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 54px;
  margin: 13px 22px 0;
  color: var(--steel);
  font-size: 0.82rem;
  text-align: center;
}

.form-status.is-error {
  color: var(--alert);
}

.form-status.is-success {
  color: var(--go);
  font-weight: 600;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-block: 52px;
  background: #081b2a;
  border-top: 5px solid var(--copper);
  color: white;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.2fr 1fr 1fr auto;
}

.brand-inverse .brand-word {
  color: white;
}

.site-footer p,
.site-footer a:not(.brand) {
  margin-top: 8px;
  color: #aebdca;
  font-size: 0.84rem;
}

.site-footer a:not(.brand):hover {
  color: white;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  color: #7e94a5;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-meta a {
  font-family: var(--body);
  letter-spacing: 0;
  text-transform: none;
}

html.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes status-pulse {
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
  }

  .dispatch-frame {
    padding: 17px;
  }

  .incoming-card {
    grid-template-columns: auto 1fr;
  }

  .call-time {
    display: none;
  }

  .checkup-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  }

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

  .footer-meta {
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before {
    position: absolute;
    top: -6px;
  }

  .menu-lines::after {
    position: absolute;
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    align-content: start;
    padding: 34px 18px;
    background: var(--paper);
    grid-template-columns: 1fr;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 17px 12px;
    border-bottom: 1px solid var(--hairline);
    font-size: 1.25rem;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    border-bottom: 2px solid var(--blue);
    text-align: center;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

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

  .dispatch-frame {
    width: min(100%, 620px);
    margin-bottom: 62px;
  }

  .spec-rail {
    width: 100%;
  }

  .heading-grid,
  .calculator-grid,
  .checkup-grid {
    grid-template-columns: 1fr;
  }

  .heading-grid {
    align-items: start;
  }

  .heading-grid > p {
    max-width: 680px;
  }

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

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

  .option-row {
    grid-template-columns: 1.45fr repeat(4, 1fr);
  }

  .option-row > * {
    padding-inline: 12px;
  }

  .option-row strong {
    font-size: 1rem;
  }

  .option-row span {
    font-size: 0.74rem;
  }

  .calculator-copy {
    max-width: 720px;
  }

  .work-order {
    width: min(100%, 720px);
  }

  .checkup-copy {
    position: static;
    max-width: 720px;
  }

  .checkup-form {
    width: min(100%, 760px);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
    /* Room for the sticky CTA so it never covers the footer. */
    padding-bottom: 76px;
  }

  /* Mobile trim: a phone visitor is here to book the check-up,
  so the
     persuasion sections give way to keep the form close. Card grids collapse
     to one column at this width,
  which is what makes them so tall.
     See docs/superpowers/specs/2026-08-01-mobile-content-trim-design.md */
  .problem-section,
  .process-section,
  .ownership-section,
  .team-section {
    display: none;
  }

  /* Keep the nav honest: these two would otherwise scroll to hidden targets. */
  .site-nav a[href="#ownership"],
  .site-nav a[href="#team"] {
    display: none;
  }

  .sticky-cta {
    display: block;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 50;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: var(--blue);
    border-top: 2px solid var(--blue-dark);
    color: #fff;
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .sticky-cta:hover,
  .sticky-cta:focus-visible {
    background: var(--blue-dark);
  }

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

  .section {
    padding-block: 78px;
  }

  h2 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-word {
    font-size: 1.55rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 20vw, 5.8rem);
  }

  .hero-lead {
    margin-top: 23px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .dispatch-frame {
    padding: 13px;
  }

  .dispatch-head {
    padding-inline: 4px;
  }

  .dispatch-log li {
    grid-template-columns: 72px 1fr auto;
  }

  .dispatch-log b {
    max-width: 88px;
    text-align: right;
  }

  .spec-rail {
    grid-template-columns: 1fr 1fr;
  }

  .spec-rail > div {
    border-bottom: 1px solid var(--hairline);
  }

  .spec-rail > div:nth-child(2n) {
    border-right: 0;
  }

  .spec-rail > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .spec-bar {
    gap: 12px;
  }

  .spec-bar span:last-child {
    text-align: right;
  }

  .heading-grid {
    gap: 24px;
  }

  .cost-callout {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .systems-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .integration-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .option-table {
    border: 0;
  }

  .option-head {
    display: none;
  }

  .option-row {
    display: grid;
    margin-bottom: 12px;
    border: 1px solid #41586b;
    grid-template-columns: 1fr 1fr;
  }

  .option-row > * {
    position: relative;
    min-height: 67px;
    padding: 28px 14px 11px;
    border-right: 1px solid #41586b;
    border-bottom: 1px solid #41586b;
  }

  .option-row > strong {
    min-height: auto;
    padding: 14px;
    border-right: 0;
    grid-column: 1 / -1;
  }

  .option-row > span:nth-child(3),
  .option-row > span:nth-child(5) {
    border-right: 0;
  }

  .option-row > span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .option-row > span::before {
    position: absolute;
    top: 8px;
    left: 14px;
    color: #7f96a7;
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .option-row > span:nth-child(2)::before {
    content: "Company";
  }

  .option-row > span:nth-child(3)::before {
    content: "Software";
  }

  .option-row > span:nth-child(4)::before {
    content: "Customer data";
  }

  .option-row > span:nth-child(5)::before {
    content: "Decision";
  }

  .option-featured > * {
    border-color: #5276a0;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline li {
    gap: 17px;
    grid-template-columns: 36px 1fr;
  }

  .week {
    display: none;
  }

  .timeline li > div:last-child {
    padding-left: 8px;
  }

  .work-order-head {
    padding-inline: 16px;
  }

  .calculator-control,
  .estimate-lines {
    padding-inline: 17px;
  }

  .estimate-lines .estimate-total {
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
  }

  .work-order > .button {
    width: calc(100% - 34px);
    margin-inline: 17px;
  }

  .team-card {
    grid-template-columns: 74px 1fr;
  }

  .team-card:nth-child(2) {
    grid-template-columns: 1fr 74px;
  }

  .team-monogram {
    padding-inline: 10px;
    font-size: 3rem;
  }

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

  .field,
  .field:nth-child(2n) {
    border-right: 0;
  }

  .contact-choice label {
    margin-right: 16px;
  }

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

@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;
  }

  html.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .checkup-form,
  .site-footer {
    display: none;
  }

  body,
  .hero,
  .ownership-section,
  .checkup-section {
    background: white;
    color: black;
  }

  .section {
    padding-block: 30px;
  }
}
