:root {
  --ink: #071426;
  --ink-2: #0c1c31;
  --ink-3: #132640;
  --paper: #f4f4ef;
  --white: #ffffff;
  --text: #172235;
  --muted: #5e6978;
  --line: rgba(14, 31, 51, 0.15);
  --line-dark: rgba(255, 255, 255, 0.14);
  --blue: #2b60e8;
  --blue-bright: #4a79ff;
  --green: #8ed6b4;
  --green-dark: #287653;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(5, 16, 32, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: rgba(7, 20, 38, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-bright), #174bd6);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(47, 102, 246, 0.28);
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 999px;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

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

.section-white {
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at -10% 20%, rgba(47, 102, 246, 0.12), transparent 30%),
    radial-gradient(circle at 95% 115%, rgba(142, 214, 180, 0.11), transparent 34%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #8fb1ff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}

.hero-note {
  max-width: 650px;
  margin: 0 0 30px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.6);
  border-left: 2px solid var(--green);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(47, 102, 246, 0.22);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: #2458dc;
  border-color: #2458dc;
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 3px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.build-card {
  min-width: 0;
  padding: 18px;
  background: rgba(14, 35, 62, 0.72);
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.build-card-header,
.build-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.build-card-header {
  padding: 0 2px 16px;
  border-bottom: 1px solid var(--line-dark);
}

.status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 7px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(142, 214, 180, 0.7);
}

.screen {
  margin: 18px 0;
  overflow: hidden;
  background: #f8f8f4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.screen-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 15px;
  color: #596474;
  background: #e9ecf0;
  border-bottom: 1px solid #d8dce2;
}

.screen-top span {
  width: 7px;
  height: 7px;
  background: #aeb6c1;
  border-radius: 999px;
}

.screen-top small {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
}

.screen-body {
  min-height: 420px;
  padding: 50px 42px 34px;
  background:
    radial-gradient(circle at 90% 12%, rgba(47, 102, 246, 0.12), transparent 32%),
    #f8f8f4;
}

.screen-body p {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.screen-title {
  width: 88%;
  height: 26px;
  margin-bottom: 11px;
  background: #122037;
  border-radius: 5px;
}

.screen-title.short {
  width: 68%;
}

.screen-copy {
  width: 72%;
  height: 8px;
  margin-top: 22px;
  background: #b8c0c9;
  border-radius: 999px;
}

.screen-copy.short {
  width: 52%;
  margin-top: 10px;
}

.screen-button {
  width: max-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.screen-grid span {
  height: 82px;
  background: #e5e8eb;
  border: 1px solid #d7dce1;
  border-radius: 10px;
}

.build-footer {
  padding: 0 2px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}

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

.section-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-intro.muted {
  color: rgba(255, 255, 255, 0.58);
}

#fit,
#included,
#process,
#terms,
#contact {
  padding: 110px 0;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card {
  min-width: 0;
  min-height: 270px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
  color: var(--blue);
  background: rgba(47, 102, 246, 0.08);
  border: 1px solid rgba(47, 102, 246, 0.15);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.fit-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 20px 24px;
  color: #425065;
  background: #e8e9e4;
  border-radius: 14px;
}

.fit-strip strong {
  margin-right: 8px;
  color: var(--text);
}

.fit-strip span {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}

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

.scope-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.scope-list article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.scope-list h3 {
  margin-bottom: 6px;
}

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

.scope-summary {
  position: sticky;
  top: 96px;
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scope-summary > strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.scope-summary > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.scope-summary ul {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.scope-summary li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: rgba(255, 255, 255, 0.76);
}

.scope-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

#process {
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 102, 246, 0.13), transparent 35%),
    var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-grid article {
  min-width: 0;
  min-height: 330px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid var(--line-dark);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article:hover {
  background: rgba(255, 255, 255, 0.05);
}

.process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 65px;
  color: var(--green);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 10px;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid article > p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.terms-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: 80px;
  align-items: start;
}

.price-panel {
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: clamp(5rem, 9vw, 7.8rem);
  font-weight: 780;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.price span {
  margin: 5px 6px 0 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.3rem;
  letter-spacing: 0;
}

.price-copy {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
}

.price-panel dl {
  margin: 0 0 28px;
  border-top: 1px solid var(--line-dark);
}

.price-panel dl > div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.price-panel dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.price-panel dd {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.price-panel .button {
  width: 100%;
}

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

.terms-copy > p:not(.eyebrow):not(.change-note) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.exclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.exclusion-grid li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.exclusion-grid li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.change-note {
  padding: 18px 20px;
  color: #344154;
  background: #e8e9e4;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  font-size: 13px;
}

.proof-contact {
  background:
    radial-gradient(circle at 0% 100%, rgba(142, 214, 180, 0.08), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(47, 102, 246, 0.15), transparent 34%),
    var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 72px;
  align-items: start;
}

.proof-copy h2 {
  max-width: 590px;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.62);
}

.proof-label {
  display: grid;
  gap: 6px;
  margin: 34px 0;
  padding: 20px;
  background: rgba(142, 214, 180, 0.08);
  border: 1px solid rgba(142, 214, 180, 0.24);
  border-radius: 12px;
}

.proof-label strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-label span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.proof-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.proof-checks li {
  position: relative;
  padding: 13px 0 13px 20px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.proof-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.direct-contact {
  display: grid;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact a {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.form-panel {
  min-width: 0;
  padding: 34px;
  color: var(--white);
  background: rgba(18, 38, 65, 0.78);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.form-intro {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.58);
}

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

.form-grid label,
.form-grid .full {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid label > span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
}

.form-grid em {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  font-weight: 400;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
}

.form-grid input {
  min-height: 50px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 135px;
  padding: 13px 14px;
  resize: vertical;
}

.form-grid input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(142, 214, 180, 0.13);
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--white);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-align: center;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #d6f7e7;
  background: rgba(142, 214, 180, 0.12);
  border: 1px solid rgba(142, 214, 180, 0.3);
}

.form-status.is-error {
  color: #ffd9d9;
  background: rgba(255, 107, 107, 0.11);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.site-footer {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.52);
  background: #050f1d;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.site-footer > div {
  display: grid;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  width: fit-content;
}

@media (max-width: 1120px) {
  .menu-button {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 0;
    z-index: 49;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 60px;
    overflow-y: auto;
    background: rgba(7, 20, 38, 0.99);
  }

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

  .primary-nav > a:not(.button) {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .primary-nav .button {
    margin-top: 24px;
  }

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

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

  .build-card {
    width: 100%;
    max-width: 760px;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

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

  .proof-copy {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .split-heading,
  .included-layout,
  .terms-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

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

  .problem-card > span {
    margin-bottom: 34px;
  }

  .scope-summary {
    position: static;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand-copy small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .primary-nav {
    inset: 66px 0 0;
  }

  .hero {
    padding: 70px 0 62px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  #fit,
  #included,
  #process,
  #terms,
  #contact {
    padding: 80px 0;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-facts li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 10px;
  }

  .build-card {
    padding: 12px;
    border-radius: 18px;
  }

  .screen-body {
    min-height: 340px;
    padding: 36px 24px 28px;
  }

  .screen-title {
    width: 94%;
    height: 20px;
  }

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

  .screen-grid span:nth-child(n + 2) {
    display: none;
  }

  .split-heading {
    margin-bottom: 34px;
  }

  .fit-strip {
    align-items: flex-start;
  }

  .fit-strip strong {
    width: 100%;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-number {
    margin-bottom: 40px;
  }

  .exclusion-grid,
  .proof-checks,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .form-panel,
  .price-panel,
  .scope-summary {
    padding: 26px;
  }

  .proof-grid {
    gap: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 16px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    max-width: 125px;
    font-size: 7px;
  }

  .hero {
    padding-top: 58px;
  }

  .price-panel dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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