:root {
  --navy: #143c55;
  --navy-deep: #0c1d25;
  --ink: #0c161c;
  --white: #ffffff;
  --mist: #edf3f5;
  --paper: #f8fafb;
  --aqua: #5ad2ce;
  --coral: #eb5c52;
  --sky: #2c7ca4;
  --border: #b9ccd3;
  --muted: #5d6c73;
  --shell: 1320px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: 4rem;
  font-weight: 800;
}

h3 {
  font-size: 2rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--aqua);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.section-index,
.case-type,
.sanitized-label {
  margin-bottom: 22px;
  color: var(--sky);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-light,
.section-index-light {
  color: var(--aqua);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 15px max(32px, calc((100vw - var(--shell)) / 2));
  color: var(--navy-deep);
  background: rgba(248, 250, 251, 0.84);
  border-bottom: 1px solid rgba(20, 60, 85, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  width: 188px;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  margin-right: 32px;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--coral);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: var(--ink);
  background: var(--aqua);
  border: 1px solid var(--aqua);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-ghost {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 60, 85, 0.42);
}

.button-dark {
  color: var(--white);
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--navy-deep);
  background: var(--paper);
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backdrop {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(248, 250, 251, 0.98) 0%,
    rgba(248, 250, 251, 0.92) 31%,
    rgba(248, 250, 251, 0.62) 43%,
    rgba(248, 250, 251, 0.08) 62%,
    rgba(248, 250, 251, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 146px 0 130px;
}

.hero-content::before {
  width: 54px;
  height: 5px;
  margin-bottom: 28px;
  content: "";
  background: linear-gradient(90deg, var(--coral) 0 32%, var(--aqua) 32% 68%, var(--navy) 68%);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: 5.15rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.25rem;
}

.hero .eyebrow-light {
  color: var(--sky);
}

.hero .button:not(.button-ghost) {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero .button:hover,
.hero .button:focus-visible {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

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

.hero-footer {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: var(--navy-deep);
  border-top: 1px solid rgba(20, 60, 85, 0.24);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-footer p {
  margin: 0;
}

.hero-footer a {
  color: var(--sky);
  text-decoration: none;
}

.manifesto {
  padding: 130px 0;
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 310px;
  gap: 56px;
  align-items: start;
}

.manifesto-kicker {
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 1.05rem;
  font-weight: 800;
}

.manifesto h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.manifesto-note {
  padding-top: 54px;
  color: var(--muted);
  font-size: 1rem;
}

.work-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
  padding-top: 120px;
  padding-bottom: 68px;
}

.section-heading > p,
.section-heading > div + p {
  color: var(--muted);
  font-size: 1.04rem;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.75fr);
  gap: 74px;
  align-items: center;
  padding-bottom: 128px;
}

.spotlight-visual {
  position: relative;
  padding: 28px 28px 0 0;
}

.spotlight-visual::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 62%;
  height: 72%;
  content: "";
  background: var(--aqua);
}

.spotlight-visual a {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 26px 58px rgba(12, 22, 28, 0.17);
}

.spotlight-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.work-number {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: -34px;
  color: var(--navy-deep);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
}

.spotlight-copy h3 {
  margin-bottom: 26px;
  font-size: 3.4rem;
}

.spotlight-copy > p:not(.case-type) {
  color: var(--muted);
}

.outcome-list,
.included-list {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.outcome-list li,
.included-list li {
  padding: 11px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.systems-showcase {
  overflow: hidden;
  padding: 128px 0 154px;
  color: var(--white);
  background: var(--navy-deep);
}

.systems-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 92px;
  align-items: center;
}

.systems-copy h2 {
  font-size: 3.7rem;
}

.systems-copy > p:not(.eyebrow, .section-index, .sanitized-label) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.sanitized-label {
  margin-top: 42px;
  color: var(--coral);
}

.product-stage {
  position: relative;
  min-height: 610px;
}

.product-screen {
  position: absolute;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.product-screen-primary {
  top: 20px;
  right: 0;
  width: 92%;
  min-height: 470px;
  transform: rotate(1deg);
}

.screen-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
}

.screen-topbar button {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--aqua);
  border: 0;
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 800;
}

.screen-mark {
  width: 18px;
  height: 18px;
  border: 3px solid var(--aqua);
  transform: rotate(45deg);
}

.screen-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 405px;
}

.screen-body aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 18px;
  color: #9fb1ba;
  background: #102b39;
  font-size: 0.68rem;
}

.screen-body aside b {
  color: var(--aqua);
}

.screen-content {
  padding: 28px;
  background: var(--mist);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.metric-row div {
  padding: 16px;
  background: var(--white);
  border-top: 3px solid var(--aqua);
}

.metric-row div:nth-child(2) {
  border-color: var(--sky);
}

.metric-row div:nth-child(3) {
  border-color: var(--coral);
}

.metric-row small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
}

.metric-row strong {
  font-size: 1.5rem;
}

.pipeline-head,
.pipeline-line {
  display: grid;
  grid-template-columns: 18px 1fr 86px 32px;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 12px;
  background: var(--white);
  border-bottom: 1px solid #d9e3e7;
  font-size: 0.64rem;
}

.pipeline-head {
  grid-template-columns: 1fr 86px 32px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.pipeline-line i {
  width: 8px;
  height: 8px;
  background: var(--aqua);
  border-radius: 50%;
}

.pipeline-line:nth-child(5) i {
  background: var(--coral);
}

.pipeline-line b {
  color: var(--sky);
}

.pipeline-line em {
  font-style: normal;
  font-weight: 800;
}

.product-screen-flow {
  bottom: 12px;
  left: -18px;
  width: 58%;
  padding: 24px;
  background: var(--aqua);
  transform: rotate(-2deg);
}

.product-screen-flow p,
.product-screen-insight p {
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  font-weight: 700;
}

.flow-line i {
  height: 1px;
  background: rgba(12, 22, 28, 0.38);
}

.product-screen-insight {
  right: -18px;
  bottom: -28px;
  width: 30%;
  padding: 22px;
  color: var(--white);
  background: var(--coral);
  transform: rotate(3deg);
}

.product-screen-insight strong {
  font-size: 2.2rem;
}

.mini-bars {
  display: flex;
  height: 54px;
  align-items: flex-end;
  gap: 5px;
  margin-top: 12px;
}

.mini-bars i {
  flex: 1;
  height: 32%;
  background: rgba(255, 255, 255, 0.8);
}

.mini-bars i:nth-child(2) { height: 48%; }
.mini-bars i:nth-child(3) { height: 42%; }
.mini-bars i:nth-child(4) { height: 68%; }
.mini-bars i:nth-child(5) { height: 78%; }
.mini-bars i:nth-child(6) { height: 100%; }

.services-section {
  padding-bottom: 120px;
  background: var(--white);
}

.section-heading-compact {
  padding-top: 120px;
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-list article {
  display: grid;
  grid-template-columns: 90px minmax(260px, 0.7fr) minmax(300px, 1fr) 250px;
  gap: 36px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--border);
}

.service-list article > span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-list article:nth-child(2) > span {
  color: var(--sky);
}

.service-list article:nth-child(3) > span {
  color: var(--aqua);
}

.service-list h3 {
  margin: 0;
}

.service-list p {
  margin: 0;
  color: var(--muted);
}

.service-list b {
  color: var(--sky);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.approach-section {
  padding: 130px 0;
  background: var(--mist);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 110px;
}

.approach-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.approach-heading > p:last-child {
  max-width: 420px;
  color: var(--muted);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--border);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.process-list span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 14px;
}

.process-list p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 120px;
  color: var(--ink);
  background: var(--white);
}

.pricing-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 8px;
  content: "";
  background: var(--aqua);
}

.pricing-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--border);
}

.pricing-heading .section-index,
.pricing-heading .eyebrow {
  margin-bottom: 12px;
}

.pricing-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: 3.8rem;
}

.pricing-heading > p {
  margin: 0;
  color: var(--muted);
}

.pricing-blueprint {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: 620px;
  border-bottom: 1px solid var(--border);
}

.pricing-monument {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  background: var(--mist);
  border-right: 1px solid var(--border);
  isolation: isolate;
}

.pricing-monument::before {
  position: absolute;
  z-index: -1;
  top: -230px;
  right: -230px;
  width: 510px;
  height: 510px;
  content: "";
  background: var(--white);
  border: 1px solid var(--border);
  transform: rotate(45deg);
}

.pricing-monument::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 34%;
  content: "";
  background: rgba(90, 210, 206, 0.48);
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

.monument-rule {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
}

.monument-rule i {
  width: 32px;
  height: 5px;
  background: var(--coral);
}

.monument-rule i:nth-child(2) {
  width: 48px;
  background: var(--aqua);
}

.monument-rule i:nth-child(3) {
  width: 66px;
  background: var(--navy);
}

.monument-label,
.spec-label {
  margin-bottom: 14px;
  color: var(--sky);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin-bottom: 12px;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 0.88;
}

.price-label {
  margin: 0 0 70px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.monument-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-details {
  padding: 58px 0 58px 72px;
}

.care-plan-heading {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

.care-plan-heading > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 54px;
}

.plan-row article {
  position: relative;
  min-height: 210px;
  padding: 30px;
  background: var(--paper);
  border-top: 5px solid var(--navy);
  border-bottom: 1px solid var(--border);
}

.plan-row article:nth-child(2) {
  border-top-color: var(--aqua);
}

.plan-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.plan-row strong {
  display: block;
  margin-bottom: 30px;
  font-size: 2.2rem;
  line-height: 1;
}

.plan-row strong span {
  color: var(--muted);
  font-size: 0.78rem;
}

.plan-row h3 {
  margin-bottom: 7px;
  font-size: 1.2rem;
}

.plan-row article > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pricing-inclusions {
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 10px 0 36px;
}

.included-list li {
  position: relative;
  padding-left: 20px;
  border-color: var(--border);
}

.included-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--aqua);
}

.included-list li:nth-child(3n)::before {
  background: var(--coral);
}

.scope-note {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.custom-scope {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 36px;
  align-items: center;
  margin-top: 54px;
  padding: 30px 34px;
  color: var(--white);
  background: var(--navy-deep);
  border-left: 8px solid var(--coral);
}

.custom-scope > span {
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.custom-scope p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.custom-scope a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 146px 0 154px;
  color: var(--white);
  background: var(--navy-deep);
}

.contact-architecture {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(48vw, 720px);
  height: 100%;
  pointer-events: none;
}

.contact-architecture span {
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 72%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.035);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.contact-architecture span:nth-child(2) {
  right: 34%;
  bottom: -22%;
  width: 50%;
  background: rgba(90, 210, 206, 0.07);
}

.contact-architecture span:nth-child(3) {
  right: 8%;
  bottom: -8%;
  width: 24%;
  background: rgba(235, 92, 82, 0.09);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  gap: 108px;
  align-items: start;
}

.contact-copy {
  padding-top: 34px;
}

.contact-copy h2 {
  max-width: 560px;
  font-size: 3.8rem;
}

.contact-copy > p:not(.eyebrow, .section-index) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-sequence {
  padding: 0;
  margin: 50px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-sequence li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-sequence li > span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-sequence p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.contact-sequence strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.84rem;
}

.contact-form {
  position: relative;
  padding: 0 44px 44px;
  color: var(--ink);
  background: var(--white);
  border-left: 8px solid var(--aqua);
  box-shadow: 30px 36px 0 rgba(90, 210, 206, 0.08);
}

.contact-form::after {
  position: absolute;
  top: -12px;
  right: 38px;
  width: 82px;
  height: 12px;
  content: "";
  background: var(--coral);
}

.form-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end;
  margin: 0 -44px 34px;
  padding: 28px 44px;
  background: var(--mist);
  border-bottom: 1px solid var(--border);
}

.form-heading div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading div strong {
  color: var(--coral);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label,
.contact-form legend {
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form > label,
.field-row label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  outline: 0;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  resize: vertical;
}

.contact-form fieldset {
  padding: 18px 0 8px;
  margin: 6px 0 20px;
  border: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.choice-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.choice-row input {
  width: 17px;
  height: 17px;
  padding: 0;
  accent-color: var(--sky);
}

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

.form-footer p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: none;
}

.contact-form .button {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  color: var(--ink);
  background: var(--aqua);
  border-color: var(--aqua);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.66);
  background: #071319;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 72px;
  align-items: end;
}

.footer-layout img {
  width: 230px;
}

.footer-layout p,
.footer-layout a {
  margin-bottom: 0;
  font-size: 0.75rem;
}

.footer-layout a {
  color: var(--aqua);
}

.legal-page {
  min-height: 100vh;
  padding: 110px 0;
  background: var(--mist);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-size: 4.5rem;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 1.5rem;
}

@media (max-width: 1100px) {
  h2 {
    font-size: 3.25rem;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 4.8rem;
  }

  .manifesto-grid {
    grid-template-columns: 130px 1fr;
  }

  .manifesto-note {
    grid-column: 2;
    padding-top: 0;
  }

  .service-list article {
    grid-template-columns: 60px minmax(250px, 0.7fr) 1fr;
  }

  .service-list b {
    grid-column: 2 / -1;
    padding-bottom: 26px;
  }

  .product-stage {
    min-height: 560px;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    margin-left: 12px;
    color: var(--navy-deep);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(20, 60, 85, 0.32);
    border-radius: 3px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-nav {
    position: fixed;
    inset: 88px 0 0;
    display: flex;
    flex-direction: column;
    padding: 28px 32px;
    background: var(--navy-deep);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 20px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 1.1rem;
  }

  .section-heading,
  .spotlight,
  .systems-layout,
  .approach-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .spotlight {
    gap: 60px;
  }

  .systems-layout,
  .approach-layout,
  .contact-layout {
    gap: 68px;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-heading h2 {
    max-width: 760px;
  }

  .pricing-heading > p {
    max-width: 620px;
  }

  .pricing-blueprint {
    grid-template-columns: 1fr;
  }

  .pricing-monument {
    min-height: 470px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .pricing-details {
    padding: 54px 0;
  }

  .custom-scope {
    grid-template-columns: 170px 1fr;
  }

  .custom-scope a {
    grid-column: 2;
  }

  .product-stage {
    width: min(100%, 760px);
    min-height: 600px;
    margin-inline: auto;
  }

  .approach-heading,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

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

  h2 {
    font-size: 2.55rem;
  }

  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand {
    width: 150px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    top: 76px;
  }

  .hero-backdrop {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(248, 250, 251, 0.98) 0%,
      rgba(248, 250, 251, 0.96) 46%,
      rgba(248, 250, 251, 0.72) 67%,
      rgba(248, 250, 251, 0.14) 100%
    );
  }

  .hero-content {
    justify-content: flex-start;
    padding: 136px 0 150px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .manifesto,
  .systems-showcase,
  .approach-section,
  .pricing-section,
  .contact-section {
    padding: 84px 0;
  }

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

  .manifesto-note {
    grid-column: 1;
  }

  .section-heading {
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .spotlight {
    padding-bottom: 92px;
  }

  .spotlight-visual {
    padding: 15px 15px 0 0;
  }

  .work-number {
    right: 0;
    bottom: -24px;
    font-size: 4.8rem;
  }

  .spotlight-copy h3,
  .systems-copy h2,
  .contact-copy h2 {
    font-size: 2.75rem;
  }

  .product-stage {
    min-height: 430px;
  }

  .product-screen-primary {
    width: 100%;
    min-height: 350px;
  }

  .screen-body {
    grid-template-columns: 70px 1fr;
    min-height: 290px;
  }

  .screen-body aside {
    gap: 14px;
    padding: 18px 10px;
    font-size: 0.5rem;
  }

  .screen-content {
    padding: 14px;
  }

  .metric-row {
    gap: 6px;
    margin-bottom: 14px;
  }

  .metric-row div {
    padding: 8px;
  }

  .pipeline-head,
  .pipeline-line {
    grid-template-columns: 10px 1fr 50px;
    min-height: 42px;
    padding: 0 6px;
    font-size: 0.45rem;
  }

  .pipeline-head {
    grid-template-columns: 1fr 50px;
  }

  .pipeline-head span:last-child,
  .pipeline-line em {
    display: none;
  }

  .product-screen-flow {
    left: 0;
    width: 72%;
    padding: 16px;
  }

  .product-screen-insight {
    right: 0;
    bottom: -18px;
    width: 34%;
    padding: 15px;
  }

  .product-screen-insight strong {
    font-size: 1.5rem;
  }

  .service-list article {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .service-list p,
  .service-list b {
    grid-column: 2;
  }

  .service-list b {
    padding-bottom: 0;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
  }

  .pricing-heading {
    padding-bottom: 38px;
  }

  .pricing-heading h2 {
    font-size: 2.55rem;
  }

  .pricing-monument {
    min-height: 430px;
    padding: 34px;
  }

  .pricing-monument::before {
    top: -260px;
    right: -280px;
  }

  .price-label {
    margin-bottom: 48px;
  }

  .monument-foot {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-details {
    padding: 42px 0;
  }

  .care-plan-heading {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price {
    font-size: 4.35rem;
  }

  .plan-row,
  .included-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .plan-row article {
    min-height: 180px;
    padding: 26px;
  }

  .pricing-action {
    align-items: stretch;
    flex-direction: column;
  }

  .custom-scope {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px;
  }

  .custom-scope a {
    grid-column: 1;
    margin-top: 8px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-sequence {
    margin-top: 36px;
  }

  .contact-form {
    padding: 0 22px 26px;
    border-left-width: 5px;
    box-shadow: 12px 16px 0 rgba(90, 210, 206, 0.08);
  }

  .form-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 -22px 28px;
    padding: 24px 22px;
  }

  .contact-form::after {
    right: 20px;
    width: 64px;
  }

  .choice-row,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .legal-content h1 {
    font-size: 2.75rem;
  }
}

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