:root {
  --navy: #0c2238;
  --navy-soft: #173750;
  --blue: #2f61ef;
  --blue-dark: #1d4dc8;
  --blue-pale: #eaf1ff;
  --lime: #c7e64b;
  --paper: #f6f8fa;
  --white: #ffffff;
  --ink: #10283c;
  --muted: #536b7d;
  --line: #cbd7e1;
  --line-dark: rgba(255, 255, 255, 0.19);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --max: 1440px;
  --shell: min(var(--max), calc(100% - 96px));
  --shadow: 0 28px 70px rgba(6, 31, 54, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(47, 97, 239, 0.14);
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

h1,
h2 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

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

.demo-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--navy);
  color: #d7e2eb;
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-bar a {
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  height: 80px;
  align-items: center;
  gap: 42px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2 + 24px));
  border-bottom: 1px solid rgba(16, 40, 60, 0.14);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex: 0 0 40px;
  background: var(--navy);
  color: var(--white);
  place-items: center;
}

.brand-mark i {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 22px;
  height: 22px;
  background: var(--lime);
  transform: rotate(45deg);
}

.brand-mark b {
  position: relative;
  font-size: 18px;
  font-weight: 800;
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand-name strong {
  font-weight: 800;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
  padding-block: 8px;
}

.site-header nav a::after {
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: right 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  right: 0;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 18px;
  border: 1px solid var(--blue);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta {
  min-width: 236px;
  color: var(--blue-dark);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(520px, 0.94fr) minmax(580px, 1.06fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 86px clamp(48px, 4vw, 80px) 78px max(48px, calc((100vw - var(--max)) / 2 + 24px));
  animation: hero-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 9px;
  background: var(--lime);
  vertical-align: middle;
}

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

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(52px, 5.1vw, 82px);
  font-weight: 800;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

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

.button.primary {
  min-width: 248px;
  background: var(--blue);
  color: var(--white);
}

.button.secondary {
  min-width: 202px;
  background: var(--white);
  color: var(--blue-dark);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.03em;
  list-style: none;
}

.hero-assurances li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(199, 230, 75, 0.22);
  content: "";
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  animation: hero-in 800ms 100ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 34, 56, 0.02) 45%, rgba(12, 34, 56, 0.38));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-label {
  position: absolute;
  right: 30px;
  top: 28px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font: 500 9px/1.3 var(--mono);
  letter-spacing: 0.08em;
}

.closing-board {
  position: absolute;
  right: clamp(24px, 4vw, 62px);
  bottom: 38px;
  z-index: 3;
  width: min(420px, calc(100% - 48px));
  padding: 22px 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.closing-board header,
.closing-board footer,
.closing-board li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.closing-board header {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.closing-board header div {
  display: grid;
  gap: 3px;
}

.closing-board header span,
.closing-board time,
.closing-board footer span,
.closing-board small {
  color: var(--muted);
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.07em;
}

.closing-board header strong {
  font-size: 18px;
}

.closing-board time {
  color: var(--blue-dark);
}

.board-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 0 12px;
}

.board-progress > span {
  height: 6px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #dfe7ef;
}

.board-progress i {
  display: block;
  width: 78%;
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
}

.board-progress b {
  color: var(--blue-dark);
  font: 500 11px var(--mono);
}

.closing-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.closing-board li {
  padding: 10px 0;
  border-bottom: 1px solid #e3e9ef;
  font-size: 11px;
}

.closing-board li > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.closing-board li strong {
  color: var(--navy);
  font-size: 10px;
}

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

.status.done {
  background: var(--lime);
}

.status.active {
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-pale);
}

.closing-board footer {
  padding-top: 13px;
}

.closing-board footer strong {
  font-size: 11px;
}

.closing-board small {
  display: block;
  margin-top: 11px;
  font-size: 8px;
  text-align: right;
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.confidence-strip > div {
  position: relative;
  min-width: 0;
  padding: 28px clamp(24px, 3vw, 46px);
  border-right: 1px solid var(--line);
}

.confidence-strip > div:last-child {
  border-right: 0;
}

.confidence-strip span {
  position: absolute;
  right: 18px;
  top: 16px;
  color: #a9b9c6;
  font: 500 9px var(--mono);
}

.confidence-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.confidence-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-heading h2,
.monthly-copy h2,
.segment-menu h2,
.faq h2,
.contact h2,
.control-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.split-heading > p,
.segment-menu > p,
.monthly-copy > p,
.control-copy > p,
.contact > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(580px, 1.22fr);
  gap: clamp(60px, 8vw, 126px);
  padding-block: 118px;
}

.outcomes .section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.outcomes .section-heading h2 {
  font-size: clamp(42px, 4vw, 60px);
}

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

.outcome-list article {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-index,
.outcome-tag,
.service-code {
  color: var(--blue-dark);
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.08em;
}

.outcome-list h3 {
  margin-bottom: 9px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.outcome-list p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.outcome-tag {
  padding: 7px 9px;
  border-radius: var(--radius-pill);
  background: var(--blue-pale);
  white-space: nowrap;
}

.services {
  padding-block: 112px;
  background: var(--navy);
  color: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-bottom: 58px;
}

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

.services .split-heading > p {
  margin-bottom: 4px;
  color: #c6d4df;
}

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

.service-card {
  grid-column: span 3;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 200ms ease, transform 200ms ease;
}

.service-card:hover {
  background: var(--navy-soft);
  transform: translateY(-3px);
}

.service-featured {
  grid-column: span 6;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-lg);
  background: var(--blue);
}

.service-code {
  color: #9eb4c6;
}

.service-featured .service-code {
  color: #d8e3ff;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 55px 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  color: var(--lime);
  place-items: center;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: #c9d7e1;
  font-size: 13px;
}

.service-featured p {
  max-width: 620px;
  color: #edf2ff;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  font: 500 9px var(--mono);
}

.monthly-map {
  overflow: hidden;
  background: #081a2a;
  color: var(--white);
}

.monthly-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 8vw, 130px);
  padding-block: 112px 90px;
}

.monthly-copy h2 {
  max-width: 650px;
}

.monthly-copy > p {
  max-width: 600px;
  color: #b7c9d8;
}

.text-link {
  display: inline-flex;
  gap: 30px;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.month-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: center;
}

.month-track::before {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 56px;
  height: 1px;
  background: #506578;
  content: "";
}

.month-track article {
  position: relative;
  min-width: 0;
  padding: 0 20px;
}

.month-track article:first-child {
  padding-left: 0;
}

.month-track article:last-child {
  padding-right: 0;
}

.month-track span {
  color: #8fa6b8;
  font: 500 8px var(--mono);
  letter-spacing: 0.08em;
}

.month-track i {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  margin: 27px 0 28px;
  border: 3px solid #081a2a;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
}

.month-track h3 {
  margin-bottom: 9px;
  font-size: 16px;
}

.month-track p {
  margin: 0;
  color: #afc1ce;
  font-size: 12px;
}

.deliverables {
  display: grid;
  width: var(--shell);
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  margin: 0 auto 82px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
}

.deliverables-heading {
  display: grid;
  gap: 8px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
}

.deliverables-heading span {
  color: var(--lime);
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
}

.deliverables-heading strong {
  font-size: 17px;
}

.deliverables ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0 26px;
  list-style: none;
}

.deliverables li {
  padding: 22px 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #d6e1e9;
  font-size: 12px;
}

.deliverables li:nth-child(even) {
  border-right: 0;
}

.deliverables li span {
  margin-right: 8px;
  color: var(--lime);
}

.segments {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(600px, 1.22fr);
  padding-block: 112px;
}

.segment-menu {
  padding-right: clamp(50px, 6vw, 90px);
}

.segment-menu h2 {
  font-size: clamp(40px, 3.9vw, 58px);
}

.tab-list {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.tab-list button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.tab-list button span {
  color: #95a8b7;
  font: 500 9px var(--mono);
}

.tab-list button[aria-selected="true"] {
  padding-left: 22px;
  background: var(--blue-pale);
  border-color: #abc2ee;
  box-shadow: inset 4px 0 var(--blue);
  color: var(--blue-dark);
}

.segment-detail {
  display: flex;
  min-width: 0;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 70px clamp(54px, 7vw, 100px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--paper), var(--white) 72%);
}

.segment-detail .segment-code {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font: 500 9px var(--mono);
  letter-spacing: 0.11em;
}

.segment-detail h3 {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: clamp(34px, 3.7vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.segment-detail > p {
  max-width: 720px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 16px;
}

.benefit-list {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.benefit-list div {
  padding: 24px 22px 0;
  border-right: 1px solid var(--line);
}

.benefit-list div:first-child {
  padding-left: 0;
}

.benefit-list div:last-child {
  border-right: 0;
}

.benefit-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 13px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.transition {
  padding-block: 104px 116px;
  border-top: 1px solid var(--line);
}

.dark-copy > p {
  color: var(--muted);
}

.transition-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.transition-steps li {
  position: relative;
  min-height: 240px;
  padding: 30px 28px 24px;
  border-right: 1px solid var(--line);
}

.transition-steps li:last-child {
  border-right: 0;
}

.transition-steps li::before {
  position: absolute;
  left: 26px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--white);
  content: "";
}

.transition-steps span {
  color: var(--blue-dark);
  font: 500 9px var(--mono);
}

.transition-steps h3 {
  margin: 54px 0 10px;
  font-size: 18px;
}

.transition-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.control-section {
  padding-block: 106px;
  background: var(--blue);
  color: var(--white);
}

.control-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.control-copy > p {
  color: #dce6ff;
}

.control-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.control-cards article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-md);
  background: rgba(12, 34, 56, 0.08);
}

.control-cards span {
  color: var(--lime);
  font: 500 9px var(--mono);
}

.control-cards h3 {
  margin: 70px 0 12px;
  font-size: 17px;
}

.control-cards p {
  margin: 0;
  color: #dbe5ff;
  font-size: 12px;
}

.faq-contact {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  padding-block: 112px;
}

.faq {
  padding-right: clamp(50px, 7vw, 110px);
}

.faq h2,
.contact h2 {
  font-size: clamp(38px, 3.7vw, 56px);
}

.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.contact > p {
  color: #bdccd7;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 30px;
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.contact label {
  margin-top: 5px;
  color: #bfd0dc;
  font: 500 9px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact input,
.contact select,
.contact textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #52697c;
  border-radius: var(--radius-sm);
  background: #102a40;
  color: var(--white);
  font-size: 13px;
}

.contact input,
.contact select {
  min-height: 46px;
  padding: 11px 12px;
}

.contact textarea {
  min-height: 102px;
  padding: 12px;
  resize: vertical;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #8197a8;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: var(--lime);
}

.contact form button {
  grid-column: 1 / -1;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 13px 16px;
  border: 1px solid var(--lime);
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.contact form button:hover,
.contact form button:focus-visible {
  border-color: var(--white);
  background: var(--white);
  transform: translateY(-2px);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 19px;
  margin: 3px 0 0;
  color: var(--lime);
  font-size: 11px;
}

.final-cta {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 64px max(48px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--blue);
  color: var(--white);
}

.final-cta h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.light-button {
  min-width: 270px;
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 60px;
  align-items: center;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--navy);
  color: var(--white);
}

.footer-brand .brand-name {
  display: grid;
}

.footer-brand small {
  color: #95aabd;
  font: 400 8px var(--mono);
  letter-spacing: 0.04em;
}

.site-footer > p {
  margin: 0;
  color: #c6d4df;
  font-size: 13px;
}

.footer-lopora {
  padding-left: 42px;
  border-left: 1px solid #536a7d;
  color: #aebfcb;
  font: 400 9px/1.4 var(--mono);
  letter-spacing: 0.04em;
}

.footer-lopora a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--lime);
  border-radius: var(--radius-pill);
  color: var(--lime);
}

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

@media (min-width: 1600px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding-right: 56px;
  }

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1080px);
  }

  .site-header {
    gap: 24px;
  }

  .site-header nav {
    gap: 20px;
  }

  .header-cta {
    min-width: 210px;
  }

  .hero {
    grid-template-columns: minmax(460px, 0.95fr) minmax(500px, 1.05fr);
  }

  .hero-copy {
    padding-inline: 32px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.5vw, 68px);
  }

  .outcomes,
  .segments {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
  }

  .service-card {
    grid-column: span 4;
  }

  .service-featured {
    grid-column: span 8;
  }

  .monthly-layout,
  .control-layout {
    gap: 56px;
  }

  .control-cards {
    grid-template-columns: 1fr;
  }

  .control-cards article {
    min-height: 170px;
  }

  .control-cards h3 {
    margin-top: 28px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header {
    height: 72px;
    padding-inline: 20px;
  }

  .site-header nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    align-content: center;
    gap: 6px;
    margin-left: auto;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header nav.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 71px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(12, 34, 56, 0.16);
  }

  .site-header nav.open a {
    padding: 13px 10px;
    border-bottom: 1px solid #e3e9ef;
  }

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

  .hero-copy {
    min-height: 640px;
    padding: 76px max(28px, calc((100vw - 760px) / 2)) 70px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(58px, 8.4vw, 78px);
  }

  .hero-visual {
    min-height: 620px;
  }

  .confidence-strip {
    grid-template-columns: 1fr 1fr;
  }

  .confidence-strip > div:nth-child(2) {
    border-right: 0;
  }

  .confidence-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .outcomes,
  .segments,
  .monthly-layout,
  .control-layout,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .outcomes {
    padding-block: 90px;
  }

  .outcomes .section-heading {
    position: static;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card,
  .service-featured {
    grid-column: span 6;
  }

  .monthly-layout {
    padding-block: 90px 72px;
  }

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

  .deliverables-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .segments {
    padding-block: 90px;
  }

  .segment-menu {
    padding-right: 0;
  }

  .segment-detail {
    min-height: 480px;
    padding: 60px;
    border: 1px solid var(--line);
  }

  .transition-steps {
    grid-template-columns: 1fr 1fr;
  }

  .transition-steps li:nth-child(2) {
    border-right: 0;
  }

  .transition-steps li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .control-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .control-cards article {
    min-height: 220px;
  }

  .faq {
    padding-right: 0;
  }

  .contact {
    margin-top: 60px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-lopora {
    grid-column: 1 / -1;
    padding: 30px 0 0;
    border-top: 1px solid #536a7d;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .demo-bar {
    justify-content: center;
    padding-inline: 16px;
    text-align: center;
  }

  .demo-bar > span {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero-copy {
    min-height: auto;
    padding: 58px 18px 56px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.7vw, 58px);
    line-height: 0.99;
  }

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

  .actions {
    flex-direction: column;
  }

  .button,
  .button.primary,
  .button.secondary {
    width: 100%;
    min-width: 0;
  }

  .hero-assurances {
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-photo {
    bottom: 138px;
  }

  .hero-photo img {
    object-position: 58% center;
  }

  .photo-label {
    right: 14px;
    top: 14px;
    font-size: 7px;
  }

  .closing-board {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 18px 16px 13px;
  }

  .closing-board header strong {
    font-size: 16px;
  }

  .confidence-strip {
    grid-template-columns: 1fr;
  }

  .confidence-strip > div {
    min-height: 102px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading h2,
  .monthly-copy h2,
  .segment-menu h2,
  .faq h2,
  .contact h2,
  .control-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .outcomes {
    gap: 36px;
    padding-block: 72px;
  }

  .outcome-list article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .outcome-tag {
    grid-column: 2;
    justify-self: start;
  }

  .outcome-list h3 {
    font-size: 19px;
  }

  .services {
    padding-block: 76px;
  }

  .services .split-heading {
    margin-bottom: 42px;
  }

  .service-card,
  .service-featured {
    grid-column: 1 / -1;
    min-height: 280px;
    padding: 24px;
  }

  .service-icon {
    margin-top: 38px;
  }

  .monthly-layout {
    gap: 48px;
    padding-block: 76px 64px;
  }

  .month-track {
    grid-template-columns: 1fr;
  }

  .month-track::before {
    left: 6px;
    right: auto;
    top: 6px;
    bottom: 6px;
    width: 1px;
    height: auto;
  }

  .month-track article,
  .month-track article:first-child,
  .month-track article:last-child {
    padding: 0 0 28px 36px;
  }

  .month-track i {
    position: absolute;
    left: 0;
    top: 1px;
    margin: 0;
  }

  .month-track h3 {
    margin: 8px 0 5px;
  }

  .deliverables ul {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .deliverables li,
  .deliverables li:nth-child(even) {
    border-right: 0;
  }

  .segments {
    padding-block: 76px;
  }

  .segment-detail {
    min-height: 0;
    padding: 46px 22px;
  }

  .segment-detail h3 {
    font-size: 36px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list div,
  .benefit-list div:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .transition {
    padding-block: 76px;
  }

  .transition-steps {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .transition-steps li,
  .transition-steps li:nth-child(2) {
    min-height: 0;
    padding: 0 0 34px 34px;
    border-right: 0;
    border-bottom: 0;
  }

  .transition-steps li::before {
    left: -6px;
    top: 5px;
  }

  .transition-steps h3 {
    margin: 8px 0;
  }

  .control-section {
    padding-block: 76px;
  }

  .control-layout {
    gap: 42px;
  }

  .control-cards {
    grid-template-columns: 1fr;
  }

  .control-cards article {
    min-height: 190px;
  }

  .faq-contact {
    padding-block: 76px;
  }

  .contact {
    margin-top: 48px;
    padding: 30px 22px;
  }

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

  .contact label,
  .form-field,
  .form-field-wide,
  .contact form button,
  .form-status {
    grid-column: 1;
  }

  .final-cta {
    min-height: 360px;
    gap: 40px;
    padding: 58px 20px;
  }

  .final-cta h2 {
    font-size: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 20px;
  }

  .footer-lopora {
    grid-column: auto;
  }
}

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