:root {
  --navy: #092142;
  --navy-deep: #06152c;
  --ink: #121a24;
  --stone: #3e4a55;
  --surface: #f4f4f2;
  --surface-2: #e9e9e6;
  --line: #e3e4e1;
  --white: #fff;
  --accent: #121a24;
  --accent-ink: #fff;
  --radius: 0.375rem;
  --radius-btn: 0.5rem;
  --max: 80rem;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 500ms;
  --dur-fast: 150ms;
  --font-display: "Jost", "Jost Variable", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Montserrat", "Montserrat Variable", ui-sans-serif, system-ui, sans-serif;
  --sticky-cta-space: 0px;
  /* Stack: 1 fields, 20 open morph, 40 sticky CTA, 50 header (drawer/backdrop live in header) */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  width: 100%;
  overscroll-behavior-x: none;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) var(--surface);
}
/* TTS: do not clip html/body. That steals the viewport scroller and breaks sticky. */
html, body {
  overflow-x: visible;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
}
#main, .site-footer { overflow-x: clip; max-width: 100%; }
.split > *,
.split-3 > *,
.split-4 > *,
.cards-2 > *,
.cards-6 > *,
.page-grid > *,
.trust-row > *,
.mega-row > * {
  min-width: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--navy);
  margin: 0 0 10px;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }
h3 { font-size: 1.125rem; }
p { margin: 0 0 12px; text-wrap: pretty; }
.muted { color: var(--stone); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  main { animation: page-in var(--dur) var(--ease-out) both; }
}
@keyframes page-in {
  from { transform: translateY(8px); }
  to { transform: none; }
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
}
.js-reveal [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.draft-bar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.draft-bar a { color: #fff; }
.draft-bar details { font-size: 13px; }
.draft-bar summary { cursor: pointer; }
.draft-bar details a { display: inline-block; margin: 4px 10px 0 0; }

.wf-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--line);
  padding: 2px 6px;
  margin-bottom: 8px;
}

.ph {
  background: var(--surface);
  border: 1px dashed #b5b5b0;
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  border-radius: var(--radius);
}
.ph-logo { width: 168px; height: 44px; }
.ph-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
}
.ph-hero-media { min-height: 280px; }
.ph-card-img { min-height: 140px; }
.ph-avatar { width: 72px; height: 72px; border-radius: 50%; }
.ph-map { min-height: 280px; }
.ph-video { min-height: 220px; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wrap { width: min(var(--max), calc(100% - 4rem)); }
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 0 rgb(17 61 28 / 0.1);
}
.topbar {
  display: none;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
@media (min-width: 1024px) {
  .topbar { display: block; }
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 12px;
  flex-wrap: wrap;
  padding: 6px 0;
}
.topbar a { color: rgb(255 255 255 / 0.75); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.topbar a:hover { color: #fff; }
.topbar .phone-link {
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 2px 6px;
  transition: background-color 200ms var(--ease-out), font-weight 200ms var(--ease-out);
}
.topbar .phone-link:hover { background: rgb(255 255 255 / 0.15); font-weight: 700; }

.nav-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
@media (min-width: 1280px) {
  .nav-row { height: 80px; }
}

.nav-links {
  display: none;
  align-items: stretch;
  align-self: stretch;
  gap: 4px;
  margin-right: auto;
  margin-left: 16px;
}
@media (min-width: 1280px) {
  .nav-links { display: flex; }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--navy);
  border-radius: 0.375rem;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--ink); }
@media (min-width: 1536px) {
  .nav-link { font-size: 15px; padding: 8px 12px; }
}

.hub { display: flex; align-items: stretch; }
.hub-trigger { position: relative; }
.hub-trigger .icon { width: 12px; height: 12px; opacity: 0.6; }
.hub-underline {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease-spring);
}
.hub:hover .hub-underline,
.hub:focus-within .hub-underline,
.hub.is-open .hub-underline { transform: scaleX(1); }

.mega {
  visibility: hidden;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  margin-top: -12px;
  padding-top: 12px;
  opacity: 0;
  transform: scaleY(0.98);
  transform-origin: top;
  transition: opacity var(--dur) var(--ease-spring), transform var(--dur) var(--ease-spring), visibility var(--dur) var(--ease-out);
  z-index: 40;
}
.hub:hover .mega,
.hub:focus-within .mega,
.hub.is-open .mega {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.mega-card {
  background: #fff;
  border: 1px solid rgb(9 33 66 / 0.1);
  border-top: 0;
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 20px;
  box-shadow: 0 20px 40px -16px rgb(9 33 66 / 0.18);
}
.mega-row { display: flex; gap: 16px; }
.mega-tile {
  position: relative;
  flex: 1 1 0;
  min-height: 190px;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--surface-2);
  color: var(--navy);
  text-decoration: none;
  transition: flex-grow var(--dur) var(--ease-spring);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.mega-tile.is-featured { flex-grow: 2.6; background: var(--navy); color: #fff; }
.mega-tile .eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.mega-tile.is-featured .eyebrow { opacity: 1; }
.mega-tile .title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
}
.mega-tile .blurb {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
  transition: max-height 300ms var(--ease-out), opacity 300ms var(--ease-out);
}
.mega-tile.is-featured .blurb { max-height: 5rem; opacity: 0.85; }
.mega-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgb(9 33 66 / 0.1);
  display: flex;
  justify-content: flex-end;
}
.mega-foot a {
  background: var(--surface);
  padding: 10px 16px;
  border-radius: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.mega-foot a:hover { background: var(--surface-2); }

.header-cta { display: none; align-items: center; gap: 16px; }
@media (min-width: 1280px) {
  .header-cta { display: flex; }
}
.quote-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-underline-offset: 4px;
}
.quote-text:hover { color: var(--ink); }

.btn, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  width: 100%;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
@media (min-width: 40rem) {
  .btn, .btn-ghost { width: auto; }
}
.btn { background: var(--accent); color: var(--accent-ink); }
.btn:hover { background: var(--navy-deep); }
.btn-ghost {
  background: transparent;
  border-color: rgb(9 33 66 / 0.22);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(9 33 66 / 0.15);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .menu-toggle { display: none; }
}

.mobile-nav {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  z-index: 1;
  max-height: calc(100dvh - 72px);
  overflow: hidden;
  border-top: 1px solid rgb(9 33 66 / 0.1);
  background: #fff;
  box-shadow: 0 20px 40px -16px rgb(9 33 66 / 0.18);
}
.mobile-nav.is-open { display: block; }
.mobile-nav-inner {
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  padding: 16px 0 24px;
}
.mobile-nav a, .mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgb(9 33 66 / 0.5);
}
.mobile-backdrop.is-open { display: block; }

section { padding: 64px 0; }
@media (min-width: 1024px) {
  section { padding: 80px 0; }
}
.hero { padding: 28px 0 48px; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.split-3, .cards-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.split-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.card, .box {
  border: 1px solid var(--line);
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur) var(--ease-spring);
}
@media (hover: hover) {
  a.card:hover, .card-link:hover {
    border-color: var(--navy);
    transform: translateY(-2px);
  }
}
.card-fill { background: var(--surface); }
.stat {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--surface);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.trust-item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  min-height: 88px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 24px -16px rgb(9 33 66 / 0.25);
}
.trust-item strong { font-weight: 600; color: var(--navy); }

.sidebar { display: grid; gap: 16px; }
.page-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.qf {
  display: grid;
  gap: 16px;
  overflow: visible;
}
.box { overflow: visible; }
.qf-float {
  position: relative;
  isolation: isolate;
  z-index: 1;
  overflow: visible;
}
.qf-float.is-open {
  z-index: 20;
}
.qf-float input,
.qf-float select,
.qf-float textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgb(9 33 66 / 0.15);
  background: #fff;
  color: var(--navy);
  padding: 1.35rem 0.9rem 0.5rem;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 200ms var(--ease-out);
}
.qf-float textarea {
  min-height: 3.25rem;
  resize: none;
  field-sizing: content;
}
.qf-float input:focus,
.qf-float select:focus,
.qf-float textarea:focus { border-color: var(--navy); }
.qf-float label {
  position: absolute;
  left: 0.9rem;
  top: 1.15rem;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--stone);
  transform-origin: left center;
  transition: top var(--dur) var(--ease-spring), font-size var(--dur) var(--ease-spring), color 200ms var(--ease-out);
}
.qf-float:focus-within label,
.qf-float:has(input:not(:placeholder-shown)) label,
.qf-float:has(textarea:not(:placeholder-shown)) label,
.qf-float:has(select option:checked:not([value=""])) label,
.qf-float.is-filled label,
.qf-float.is-open label,
html.js-pick .qf-float.morph-select-host label {
  top: 0.4rem;
  font-size: 11px;
  color: var(--navy);
}
html.js-pick .qf-float.morph-select-host:not(:focus-within):not(.is-filled):not(.is-open) label {
  color: var(--stone);
}

/* beUI Morph Select. The trigger grows into the panel. One surface. */
html.js-pick .qf-float:has([data-morph-native]) select,
html.js-pick [data-morph-native] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  pointer-events: none;
}

.morph-select {
  position: relative;
  overflow: visible;
}
.morph-sizer { min-height: 3.25rem; }
.morph-surface {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 3;
  height: 3.25rem;
  overflow: hidden;
  border: 1px solid rgb(9 33 66 / 0.15);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
.morph-select.is-open .morph-surface {
  z-index: 30;
  box-shadow: 0 18px 40px -24px rgb(9 33 66 / 0.45);
}
.morph-row {
  display: flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 1.35rem 0.9rem 0.5rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.morph-row [data-morph-value] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.morph-row [data-morph-value].is-placeholder {
  color: var(--stone);
}
.morph-row:focus { outline: none; }
.morph-select.is-open .morph-surface,
.morph-row:focus-visible {
  border-color: var(--navy);
}
.morph-chevron {
  width: 16px;
  height: 16px;
  color: var(--stone);
  flex-shrink: 0;
  margin-bottom: 2px;
  transition: transform var(--dur) var(--ease-spring), color 200ms var(--ease-out);
}
.morph-select.is-open .morph-chevron {
  transform: rotate(180deg);
  color: var(--navy);
}
.morph-list {
  margin: 0;
  padding: 4px;
  list-style: none;
}
.morph-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.morph-list li:hover,
.morph-list li.is-active { background: var(--surface); }
.morph-list li[aria-selected="true"] { background: var(--surface-2); }
.morph-select.is-open .morph-list li {
  animation: morph-item 400ms var(--ease-spring) both;
}
.morph-select.is-open .morph-list li:nth-child(1) { animation-delay: 80ms; }
.morph-select.is-open .morph-list li:nth-child(2) { animation-delay: 115ms; }
.morph-select.is-open .morph-list li:nth-child(3) { animation-delay: 150ms; }
.morph-select.is-open .morph-list li:nth-child(4) { animation-delay: 185ms; }
.morph-select.is-open .morph-list li:nth-child(5) { animation-delay: 220ms; }
@keyframes morph-item {
  from { opacity: 0; transform: translateY(-6px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .morph-select.is-open .morph-list li { animation: none; }
}

.faq details {
  border-bottom: 1px solid rgb(9 33 66 / 0.1);
  padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid rgb(9 33 66 / 0.1); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  transition: transform var(--dur) var(--ease-spring);
}
.faq details[open] .plus { transform: rotate(45deg); }

.office-list { display: grid; gap: 8px; }
.office {
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: var(--radius);
}

.sticky-call {
  pointer-events: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  transform: translateY(100%);
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 0.95);
  padding: 8px 8px max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgb(9 33 66 / 0.08);
  backdrop-filter: blur(8px);
  transition: transform var(--dur) var(--ease-spring);
}
.sticky-call.is-visible {
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-call .call-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 0.5rem;
  padding: 10px 12px;
  text-decoration: none;
}
.sticky-call .call-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  border-radius: 0.5rem;
}
.sticky-call small {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sticky-call b {
  font-family: var(--font-display);
  font-size: 22px;
}
@media (min-width: 1280px) {
  .sticky-call { display: none; }
}

.lp-top { border-bottom: 1px solid var(--line); padding: 10px 0; }
.lp-top-inner { display: flex; justify-content: space-between; align-items: center; }

.note {
  font-size: 13px;
  color: var(--stone);
  border-left: 3px solid var(--navy);
  padding-left: 10px;
}

ul.plain { margin: 0 0 12px 18px; padding: 0; }
ul.plain li { margin-bottom: 6px; }
ol.steps { margin: 0 0 12px 18px; }
ol.steps li { margin-bottom: 8px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 calc(32px + var(--sticky-cta-space));
  background: var(--surface);
}
.legal { font-size: 13px; color: var(--stone); }

.pop {
  position: relative;
}
.pop-panel {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px -16px rgb(9 33 66 / 0.22);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease-spring), transform var(--dur) var(--ease-spring), visibility var(--dur) var(--ease-out);
  z-index: 20;
}
.pop:hover .pop-panel,
.pop:focus-within .pop-panel {
  visibility: visible;
  opacity: 1;
  transform: none;
}

@media (max-width: 1279px) {
  .split, .split-3, .split-4, .cards-2, .cards-6, .page-grid, .trust-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .split, .split-3, .split-4, .cards-2, .cards-6, .page-grid, .trust-row, .mega-row {
    grid-template-columns: 1fr;
  }
  .mega { display: none; }
}

.build-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.build-pill {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
}
.build-pill strong { color: var(--navy); }
.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.build-field {
  display: grid;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--stone);
}
.build-field input,
.build-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgb(9 33 66 / 0.15);
  border-radius: 0.5rem;
  padding: 0 12px;
  color: var(--navy);
  background: #fff;
  font-weight: 500;
}
.build-checks { display: grid; gap: 8px; }
.build-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.build-check input { margin-top: 4px; }
.build-scan {
  display: grid;
  gap: 12px;
}
.build-scan-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
}
.build-scan-row h3 { margin-bottom: 6px; }
.build-scan-row code {
  display: inline-block;
  margin: 2px 6px 2px 0;
  padding: 2px 6px;
  background: var(--surface);
  border-radius: 4px;
  font-size: 12px;
}
.build-ok { color: var(--navy); font-weight: 600; }
@media (max-width: 640px) {
  .build-grid { grid-template-columns: 1fr; }
}
