:root {
  color-scheme: light;
  --navy: #0b1726;
  --navy-2: #10253d;
  --navy-3: #193552;
  --blue: #075fe4;
  --blue-dark: #0649ad;
  --cyan: #00a7c2;
  --cyan-ink: #00788d;
  --cyan-soft: #e7f8fb;
  --canvas: #f4f7fa;
  --paper: #ffffff;
  --ink: #13243a;
  --muted: #52657a;
  --border: #cad8e5;
  --border-dark: #36516d;
  --pilot: #f4b942;
  --pilot-dark: #7a5100;
  --success: #176b4d;
  --error: #b64a52;
  --shadow: 0 18px 46px rgba(11, 23, 38, 0.1);
  --radius: 12px;
  --radius-small: 8px;
  --header-height: 72px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menuOpen {
  overflow: hidden;
}

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

a {
  color: var(--blue-dark);
  text-underline-offset: 0.18em;
}

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

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

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.skipLink {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-160%);
}

.skipLink:focus {
  transform: translateY(0);
}

.siteHeader {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
  color: var(--paper);
}

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

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

.brandMark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(94, 173, 255, 0.5);
  border-radius: 10px;
  background: #061022;
  box-shadow: 0 0 14px rgba(0, 110, 255, 0.28);
  object-fit: cover;
}

.brandName {
  font-size: 1.24rem;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.brandDescriptor {
  max-width: 68px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 8px;
  color: #bfeff6;
  font-size: 0.66rem;
  font-weight: 760;
  line-height: 1.1;
  text-transform: uppercase;
}

.menuButton {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menuIcon {
  width: 25px;
  height: 25px;
}

.primaryNav {
  position: fixed;
  z-index: 99;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
  padding: 28px 20px max(28px, env(safe-area-inset-bottom));
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.primaryNav[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.navLinks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navLinks a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  font-weight: 680;
  text-decoration: none;
}

.navLinks a:hover,
.navLinks a[aria-current="page"] {
  color: #7fe0ee;
}

.navCta {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  padding: 10px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
}

.buttonPrimary {
  background: var(--blue);
  color: var(--paper);
}

.buttonPrimary:hover {
  background: var(--blue-dark);
}

.buttonSecondary {
  border-color: var(--blue);
  background: var(--paper);
  color: var(--blue-dark);
}

.buttonSecondary:hover {
  background: #edf4ff;
}

.buttonPilot {
  background: var(--pilot);
  color: var(--navy);
}

.buttonPilot:hover {
  background: #ffd06c;
}

.buttonLarge {
  min-height: 52px;
  padding: 13px 21px;
}

.button[aria-busy="true"],
.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan-ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sectionNavy .eyebrow,
.finalCta .eyebrow {
  color: #58d4e6;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 7.8vw, 4.5rem);
  max-width: 15ch;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 5.2vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

p {
  margin-top: 0;
}

.hero {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.heroGrid {
  display: grid;
  gap: 36px;
  padding-block: clamp(54px, 8vw, 96px);
}

.heroCopy,
.heroInterface,
.interfaceContent,
.sectionIntro,
.opportunityRecord,
.verificationChecklist,
.pricingCard,
.splitContent > *,
.applicationShell {
  min-width: 0;
}

.heroLead {
  max-width: 64ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.5vw, 1.2rem);
}

.buttonRow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.trustStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
}

.trustStrip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trustStrip svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-ink);
}

.riskLine {
  margin: 19px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.heroInterface {
  align-self: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.interfaceTruthLabel {
  padding: 8px 14px;
  background: var(--pilot);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-align: center;
}

.interfaceBar {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.76rem;
}

.interfaceBar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.interfaceBar strong {
  margin-left: auto;
  font-weight: 700;
}

.interfaceBody {
  display: grid;
  grid-template-columns: minmax(92px, 0.34fr) 1fr;
  min-height: 330px;
}

.interfaceRail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  background: #f8fafc;
}

.interfaceRail span {
  padding: 8px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.interfaceRail .active {
  background: #eaf2ff;
  color: var(--blue-dark);
}

.interfaceContent {
  display: flex;
  flex-direction: column;
  padding: 22px 16px;
}

.interfaceStatus {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 0.74rem;
}

.interfaceStatus strong {
  color: var(--success);
  font-size: 1rem;
}

.interfaceLines {
  display: grid;
  gap: 11px;
  padding-block: 24px;
}

.interfaceLines span {
  height: 9px;
  border-radius: 9px;
  background: #dfe7ef;
}

.interfaceLines span:nth-child(2) {
  width: 74%;
}

.interfaceLines span:nth-child(3) {
  width: 56%;
}

.serviceChips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.serviceChips span {
  border: 1px solid #9fdce6;
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--cyan-soft);
  color: #03687a;
  font-size: 0.66rem;
  font-weight: 750;
}

.decisionBar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
  border-radius: var(--radius-small);
  padding: 13px;
  background: var(--navy);
  color: #b8c9da;
  font-size: 0.72rem;
}

.decisionBar strong {
  color: var(--paper);
  font-size: 0.92rem;
}

.section {
  padding-block: clamp(64px, 8vw, 108px);
}

.sectionWhite {
  background: var(--paper);
}

.sectionCanvas {
  background: var(--canvas);
}

.sectionNavy {
  background: var(--navy);
  color: #d7e3ee;
}

.sectionNavy h2,
.sectionNavy h3 {
  color: var(--paper);
}

.sectionNavy .sectionIntro > p:last-child {
  color: #b7c8d8;
}

.sectionIntro {
  max-width: 760px;
  margin-bottom: 38px;
}

.sectionIntro > p:last-child {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.problemGrid {
  display: grid;
  gap: 0 24px;
}

.problemGrid article {
  min-width: 0;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.problemGrid svg,
.processGrid svg {
  width: 31px;
  height: 31px;
  margin-bottom: 16px;
  color: var(--cyan-ink);
}

.problemGrid p,
.processGrid p,
.criteriaGrid p {
  margin-bottom: 0;
  color: var(--muted);
}

.processGrid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.processGrid li {
  position: relative;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  background: var(--paper);
}

.stepNumber {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 850;
}

.controlStatement {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  border: 1px solid #9ed6df;
  border-radius: var(--radius);
  padding: 18px;
  background: var(--cyan-soft);
  color: var(--navy);
}

.controlStatement > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--cyan-ink);
}

.controlStatement p {
  margin: 0;
}

.sampleLayout {
  display: grid;
  gap: 18px;
}

.opportunityRecord,
.verificationChecklist {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--navy-2);
}

.opportunityRecord {
  overflow: hidden;
}

.recordHeader {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--border-dark);
  padding: 20px;
}

.recordHeader h3 {
  margin: 12px 0 0;
  font-size: 1.4rem;
}

.sampleLabel {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.sampleDisclosure {
  max-width: 58ch;
  margin: 10px 0 0;
  color: #a9c0d4;
  font-size: 0.8rem;
  line-height: 1.55;
}

.priceBadge {
  align-self: flex-start;
  border-radius: var(--radius-small);
  padding: 10px 15px;
  background: var(--pilot);
  color: var(--navy);
}

.priceBadge span,
.priceBadge strong {
  display: block;
}

.priceBadge span {
  font-size: 0.69rem;
  font-weight: 750;
}

.priceBadge strong {
  font-size: 1.7rem;
  line-height: 1.05;
}

.recordFields {
  display: grid;
  margin: 0;
}

.recordFields > div {
  min-width: 0;
  border-bottom: 1px solid var(--border-dark);
  padding: 15px 20px;
}

.recordFields dt {
  color: #8eb1cd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recordFields dd {
  margin: 4px 0 0;
  color: var(--paper);
  font-weight: 690;
}

.protectedNotice {
  display: flex;
  gap: 12px;
  margin: 18px;
  border-radius: var(--radius-small);
  padding: 15px;
  background: #15324e;
}

.protectedNotice > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.protectedNotice strong,
.protectedNotice span {
  display: block;
}

.protectedNotice strong {
  color: var(--paper);
}

.protectedNotice span {
  margin-top: 3px;
  color: #b7c8d8;
  font-size: 0.83rem;
}

.verificationChecklist {
  padding: 22px;
}

.checkList,
.plainCheckList,
.notCoveredList,
.serviceList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkList {
  display: grid;
  gap: 14px;
}

.checkList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkList svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border-radius: 50%;
  padding: 3px;
  background: var(--cyan);
  color: var(--navy);
}

.checkList strong,
.checkList span span {
  display: block;
}

.checkList strong {
  color: var(--paper);
}

.checkList li > span {
  color: #b7c8d8;
  font-size: 0.86rem;
}

.finePrint {
  margin: 20px 0 0;
  border-top: 1px solid var(--border-dark);
  padding-top: 16px;
  color: #a9becf;
  font-size: 0.78rem;
}

.sectionLinkRow {
  margin-top: 24px;
}

.textLink {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.textLink svg {
  width: 18px;
  height: 18px;
}

.textLink.onDark {
  color: #72d7e6;
}

.verificationLayout,
.standardGrid {
  display: grid;
  gap: 28px;
}

.bodyLarge {
  color: var(--muted);
  font-size: 1.05rem;
}

.standardGrid {
  align-content: start;
}

.plainCheckList,
.notCoveredList,
.serviceList {
  display: grid;
  gap: 10px;
}

.plainCheckList li,
.serviceList li {
  position: relative;
  padding-left: 27px;
}

.plainCheckList li::before,
.serviceList li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: #057689;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.notCoveredList li {
  position: relative;
  padding-left: 24px;
}

.notCoveredList li::before {
  position: absolute;
  left: 3px;
  color: var(--error);
  content: "—";
  font-weight: 900;
}

.limitPanel,
.qualificationPanel,
.confirmationPanel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--canvas);
}

.limitPanel strong,
.qualificationPanel h2 {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
}

.limitPanel ul {
  margin: 0;
  padding-left: 20px;
}

.pricingGrid {
  display: grid;
  gap: 18px;
}

.pricingCard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--paper);
}

.pricingPilot {
  border-color: #d49a19;
  box-shadow: inset 0 5px 0 var(--pilot);
}

.tierLabel {
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 850;
}

.tierPrice {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 3.4rem;
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 1;
}

.tierPrice span {
  font-size: 1.3rem;
  vertical-align: top;
}

.tierPriceRange {
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: -0.045em;
}

.tierSummary {
  min-height: 0;
  color: var(--muted);
}

.tierDetails {
  margin: 6px 0 20px;
}

.tierDetails > div {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.tierDetails dt {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tierDetails dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.tierBoundaries {
  margin: 0 0 18px;
  border-left: 3px solid var(--cyan);
  padding-left: 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.pricingExplanation {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  border: 1px solid #9ed6df;
  border-radius: var(--radius);
  padding: 20px;
  background: var(--cyan-soft);
}

.pricingExplanation p {
  margin: 0;
}

.notGuaranteed {
  margin-top: auto;
  margin-bottom: 0;
  border-radius: var(--radius-small);
  padding: 12px;
  background: #f7f9fb;
  color: var(--muted);
  font-size: 0.78rem;
}

.centeredAction {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 34px;
  text-align: center;
}

.centeredAction p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.protectionLayout,
.founderBand,
.faqLayout,
.splitContent,
.policyColumns {
  display: grid;
  gap: 32px;
}

blockquote {
  margin: 0 0 24px;
  border-left: 4px solid var(--cyan);
  padding: 18px 0 18px 20px;
  color: var(--navy);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 680;
}

.protectionGrid {
  display: grid;
  gap: 10px;
}

.protectionGrid span {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 12px 14px;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

.protectionGrid svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--cyan-ink);
}

.founderBand {
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
}

.founderIcon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
}

.founderIcon svg {
  width: 34px;
  height: 34px;
}

.founderBand h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.founderBand p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.founderBand dl {
  margin: 0;
}

.founderBand dl > div {
  border-top: 1px solid var(--border);
  padding: 9px 0;
}

.founderBand dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founderBand dd {
  margin: 1px 0 0;
  color: var(--navy);
  font-weight: 760;
}

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

.faqItem {
  border-bottom: 1px solid var(--border);
}

.faqItem h3 {
  margin: 0;
}

.faqItem button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 15px 4px;
  background: transparent;
  color: var(--navy);
  font-weight: 790;
  text-align: left;
  cursor: pointer;
}

.faqChevron {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--cyan-ink);
  transition: transform 160ms ease;
}

.faqItem button[aria-expanded="true"] .faqChevron {
  transform: rotate(180deg);
}

.faqItem [role="region"] {
  padding: 0 34px 18px 4px;
  color: var(--muted);
}

.faqItem [role="region"] p {
  margin: 0;
}

.finalCta {
  padding-block: 52px;
  background: var(--navy);
  color: #c7d7e5;
}

.finalCtaInner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.finalCta h2 {
  max-width: 760px;
  color: var(--paper);
}

.finalCta p:last-child {
  margin-bottom: 0;
}

.pageHero {
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
}

.pageHeroInner {
  padding-block: clamp(56px, 8vw, 92px);
}

.pageHero h1 {
  max-width: 18ch;
}

.pageHeroInner > p:not(.eyebrow) {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.pageHero .buttonRow {
  margin-top: 26px;
}

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

.qualificationPanel {
  align-self: start;
  background: var(--navy);
  color: #d7e3ee;
}

.qualificationPanel h2 {
  color: var(--paper);
  font-size: 1.55rem;
}

.qualificationPanel .plainCheckList li::before {
  background: #184260;
  color: #63d6e7;
}

.criteriaGrid {
  display: grid;
  gap: 14px;
}

.criteriaGrid article {
  border-top: 3px solid var(--cyan);
  padding: 20px 0;
}

.detailSteps {
  display: grid;
  gap: 0;
}

.detailSteps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}

.detailSteps article > span {
  color: var(--cyan-ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.detailSteps h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.detailSteps p {
  margin-bottom: 0;
  color: var(--muted);
}

.compactPolicy {
  display: grid;
  gap: 24px;
  align-items: center;
}

.compactPolicy .sectionIntro {
  margin-bottom: 0;
}

.definitionList {
  margin: 0;
}

.definitionList > div {
  border-top: 1px solid var(--border);
  padding: 15px 0;
}

.definitionList dt {
  color: var(--navy);
  font-weight: 850;
}

.definitionList dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.policyLead {
  max-width: 900px;
}

.policyColumns article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

.numberedPolicy {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: policy;
  list-style: none;
}

.numberedPolicy li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  counter-increment: policy;
}

.numberedPolicy li::before {
  content: counter(policy, decimal-leading-zero);
  color: var(--cyan-ink);
  font-weight: 900;
}

.numberedPolicy strong,
.numberedPolicy span {
  grid-column: 2;
}

.numberedPolicy span {
  color: var(--muted);
}

.applicationSection {
  padding-top: 42px;
}

.applicationShell {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 5vw, 42px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.applicationHeader {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.applicationHeader > p {
  margin: 0;
  color: var(--cyan-ink);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stepProgress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stepProgress span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.stepProgress b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
}

.stepProgress .active {
  color: var(--navy);
}

.stepProgress .active b {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy);
}

.errorSummary {
  margin: 24px 0;
  border: 2px solid var(--error);
  border-radius: var(--radius-small);
  padding: 16px 18px;
  background: #fff5f5;
}

.errorSummary h2 {
  margin-bottom: 8px;
  color: #7c2830;
  font-size: 1.15rem;
}

.errorSummary ul {
  margin: 0;
  padding-left: 20px;
}

.errorSummary a {
  color: #7c2830;
  font-weight: 750;
}

.buyerApplication fieldset {
  min-width: 0;
  border: 0;
  padding: 0;
}

.formStep {
  margin: 30px 0 0;
}

.formStep > legend {
  padding: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.stepIntro {
  margin: 8px 0 24px;
  color: var(--muted);
}

.formGrid {
  display: grid;
  gap: 20px;
}

.field,
.choiceGroup {
  min-width: 0;
}

.field label,
.choiceGroup > legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #9eb1c4;
  border-radius: var(--radius-small);
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #68849e;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.choiceGroup[aria-invalid="true"] {
  border-color: var(--error);
}

.fieldHint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.fieldError {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 700;
}

.checkboxGrid,
.radioGrid {
  display: grid;
  gap: 9px;
}

.checkboxGrid label,
.radioGrid label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 10px 12px;
  color: var(--navy);
  cursor: pointer;
}

.checkboxGrid input,
.radioGrid input,
.consentStack input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.choiceGroup {
  margin-top: 22px;
}

.formActions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.formActions > p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.formActions > p svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--cyan-ink);
}

.confirmationPanel {
  margin-top: 24px;
  border-color: #9ed6df;
  background: var(--cyan-soft);
}

.criteriaCarryover {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 16px;
  background: #f8fafc;
}

.criteriaCarryover h2 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.criteriaCarryover p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.confirmationPanel h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.confirmationPanel p {
  margin: 0;
}

.consentStack {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.consentStack > label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink);
  font-size: 0.88rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.submissionStatus {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 700;
}

.submissionStatus.isError {
  color: var(--error);
}

.successHero {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding-block: 60px;
  background: var(--canvas);
}

.successCard {
  max-width: 760px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 60px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.successIcon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 15px;
  background: #e7f6f0;
  color: var(--success);
}

.successCard h1 {
  max-width: 14ch;
}

.successCard > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.successCard ol {
  margin: 24px 0;
  padding-left: 22px;
}

.successReference {
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  padding: 12px 14px;
  background: var(--canvas);
}

.successReference span,
.successReference strong {
  display: block;
}

.successReference span {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.legalContent {
  max-width: 820px;
}

.legalContent h2 {
  margin-top: 40px;
  font-size: 1.45rem;
}

.legalContent h2:first-child {
  margin-top: 0;
}

.legalContent p {
  color: var(--muted);
}

.comingSoonNotice {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  border: 1px solid #d49a19;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff9e9;
}

.comingSoonNotice > svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--pilot-dark);
}

.comingSoonNotice p {
  margin-bottom: 0;
}

.siteFooter {
  padding-top: 52px;
  background: #07121e;
  color: #b8c9d8;
}

.footerGrid {
  display: grid;
  gap: 34px;
}

.footerGrid > div:first-child p {
  max-width: 45ch;
  margin-top: 16px;
  color: #9eb2c4;
}

.footerGrid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footerHeading {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footerGrid a {
  min-height: 44px;
  color: #c7d7e5;
  text-decoration: none;
}

.footerGrid a:hover {
  color: #6ed8e8;
  text-decoration: underline;
}

.footerBrand {
  min-height: auto !important;
  color: var(--paper) !important;
}

.footerBottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 38px;
  border-top: 1px solid #25394d;
  padding-block: 20px;
  color: #8299ac;
  font-size: 0.78rem;
}

.purchaseModelLine {
  font-size: 0.8rem;
  line-height: 1.55;
}

.siteFooter .purchaseModelLine {
  margin-top: 12px;
  color: #9db1c2;
}

.audienceBridge {
  border-block: 1px solid #d8e3ec;
  padding: clamp(44px, 6vw, 76px) 0;
  background: #edf3f8;
}

.audienceBridgeGrid,
.customerHeroGrid,
.customerReviewGrid,
.customerServiceLayout {
  display: grid;
  gap: 24px;
}

.audienceBridgeIntro h2,
.customerApplicationHeader h2,
.safetyNotice h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.audienceBridgeIntro > p:last-child,
.customerApplicationHeader > div > p:last-child { color: var(--muted); }

.audienceCard {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(11, 23, 38, 0.07);
}

.audienceCardPrimary { border-top: 4px solid var(--blue); }
.audienceCard h3 { margin: 12px 0 6px; color: var(--navy); font-size: 1.35rem; line-height: 1.25; }
.audienceCard p { flex: 1; margin: 0 0 20px; color: var(--muted); }
.audienceTag { color: var(--cyan-ink); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }

.customerHero {
  overflow: hidden;
  padding: clamp(54px, 8vw, 100px) 0;
  background: var(--navy);
  color: var(--paper);
}

.customerHeroGrid { align-items: center; }
.customerHeroCopy h1 { max-width: 720px; margin: 0; color: var(--paper); font-size: clamp(2.3rem, 6vw, 4.5rem); line-height: 0.98; letter-spacing: -0.055em; }
.customerHeroCopy .heroLead { max-width: 720px; color: #c8d9e7; }
.customerTrustLine { margin: 24px 0 0; color: #7fe0ee; font-weight: 800; }
.customerAudienceSwitch { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; margin-top: 10px; color: #bfeff6; font-weight: 750; }
.customerAudienceSwitch svg { width: 18px; }

.customerInterface {
  min-width: 0;
  border: 1px solid #36516d;
  border-radius: 16px;
  padding: 18px;
  background: #10253d;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.customerInterfaceScene {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid #284865;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 45%, #163b62 0, #0c1c30 64%);
}

.buildingOutline { position: absolute; top: 50%; left: 50%; width: 132px; height: 132px; transform: translate(-50%, -50%); color: #7fe0ee; }
.customerBuildingIcon { width: 100%; height: 100%; stroke-width: 1.1; }
.securityNode { position: absolute; z-index: 2; display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid #42c7dc; border-radius: 50%; background: #0a1a2d; color: #7fe0ee; box-shadow: 0 0 26px rgba(0, 167, 194, 0.28); }
.securityNode svg { width: 26px; }
.securityNodeCamera { top: 34px; left: 30px; }
.securityNodeDoor { right: 30px; bottom: 38px; }
.securityNodeShield { top: 42px; right: 42px; }
.connectionLine { position: absolute; height: 1px; transform-origin: left center; background: #397aa7; }
.lineOne { top: 100px; left: 74px; width: 160px; transform: rotate(19deg); }
.lineTwo { right: 72px; bottom: 92px; width: 145px; transform: rotate(-22deg); }

.customerInterfaceStatus { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 12px; }
.customerInterfaceStatus span { min-width: 0; border-radius: 6px; padding: 9px 6px; background: #163452; color: #bfeff6; font-size: 0.72rem; font-weight: 780; text-align: center; }

.customerFitGrid,
.customerProcessGrid { display: grid; gap: 16px; margin: 28px 0 0; padding: 0; list-style: none; }
.customerFitGrid article,
.customerProcessGrid li { min-width: 0; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; background: var(--paper); }
.customerFitGrid svg { width: 30px; color: var(--cyan-ink); }
.customerFitGrid h3,
.customerProcessGrid h3 { margin: 14px 0 6px; color: var(--navy); line-height: 1.25; }
.customerFitGrid p,
.customerProcessGrid p { margin: 0; color: var(--muted); }
.customerExampleGrid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.customerProcessGrid li { position: relative; padding-top: 66px; }
.customerProcessGrid li > span { position: absolute; top: 20px; left: 22px; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--navy); color: var(--paper); font-weight: 850; }

.customerServiceLayout { align-items: start; }
.customerServiceList { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.customerServiceList li { display: flex; gap: 12px; align-items: center; border: 1px solid #36516d; border-radius: 8px; padding: 13px 14px; background: #10253d; color: #eaf6fa; font-weight: 720; }
.customerServiceList svg { width: 21px; flex: 0 0 auto; color: #7fe0ee; }

.coverageTruthPanel { border: 1px solid #d5a43a; border-left: 5px solid var(--pilot); border-radius: var(--radius); padding: clamp(24px, 4vw, 36px); background: #fffaf0; }
.coverageTruthPanel h2 { margin: 0; color: var(--navy); line-height: 1.16; }
.coverageTruthPanel p { color: #5c5040; }
.coverageTruthPanel > strong { display: block; color: var(--pilot-dark); }

.customerFormShell { max-width: 980px; margin-inline: auto; border: 1px solid var(--border); border-radius: 16px; padding: clamp(20px, 4vw, 42px); background: var(--paper); box-shadow: var(--shadow); }
.customerApplicationHeader { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.customerApplicationHeader > p { margin: 0; color: var(--cyan-ink); font-weight: 850; }
.customerStepProgress { margin-bottom: 28px; }
.optional { color: var(--muted); font-size: 0.85em; font-weight: 500; }

.customerReviewSummary { margin-bottom: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--canvas); }
.customerReviewSummary dl { display: grid; margin: 0; }
.customerReviewSummary dl > div { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.customerReviewSummary dl > div:last-child { border-bottom: 0; }
.customerReviewSummary dt { color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.customerReviewSummary dd { margin: 2px 0 0; color: var(--navy); font-weight: 760; overflow-wrap: anywhere; }

.coverageNotice,
.safetyNotice { display: flex; gap: 16px; align-items: flex-start; border-radius: var(--radius); padding: 20px; }
.coverageNotice { margin-bottom: 22px; border: 1px solid #d5a43a; background: #fffaf0; }
.coverageNotice svg,
.safetyNotice > svg { width: 28px; flex: 0 0 auto; color: var(--pilot-dark); }
.coverageNotice p,
.safetyNotice p { margin: 4px 0 0; }
.customerConsentStack label { align-items: flex-start; }
.safetyNotice { border: 1px solid #9bcbd4; background: var(--cyan-soft); }
.safetyNotice > svg { color: var(--cyan-ink); }
.customerSuccessPage [data-customer-success-state="confirmed"] { border-top: 5px solid var(--success); }

@media (min-width: 600px) {
  .shell {
    width: min(100% - 48px, 1180px);
  }

  .buttonRow {
    flex-direction: row;
    align-items: center;
  }

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

  .problemGrid,
  .criteriaGrid,
  .protectionGrid,
  .policyColumns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .recordHeader {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .priceBadge {
    flex: 0 0 auto;
  }

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

  .recordFields > div:nth-child(odd) {
    border-right: 1px solid var(--border-dark);
  }

  .recordFields .recordWide {
    grid-column: 1 / -1;
    border-right: 0;
  }

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

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

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

  .fieldWide,
  .choiceGroup.fieldWide {
    grid-column: 1 / -1;
  }

  .formActionsSplit {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

  .footerBottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 800px) {
  .heroGrid,
  .verificationLayout,
  .protectionLayout,
  .faqLayout,
  .splitContent {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .heroGrid {
    align-items: center;
  }

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

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

  .processGrid li {
    padding: 24px 16px 20px;
  }

  .sampleLayout {
    grid-template-columns: minmax(0, 1.65fr) minmax(270px, 0.75fr);
    align-items: stretch;
  }

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

  .founderBand {
    grid-template-columns: auto minmax(0, 1fr) minmax(190px, 0.55fr);
  }

  .compactPolicy {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .audienceBridgeGrid {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.9fr));
    align-items: stretch;
  }

  .customerHeroGrid,
  .customerReviewGrid,
  .customerServiceLayout {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  }

  .customerFitGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .customerProcessGrid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .customerProcessGrid li { padding: 66px 16px 22px; }
  .customerReviewSummary dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .customerReviewSummary dl > div:nth-child(odd) { border-right: 1px solid var(--border); }
  .customerApplicationHeader { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (min-width: 1120px) {
  .menuButton {
    display: none;
  }

  .primaryNav {
    position: static;
    display: flex;
    visibility: visible;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    overflow: visible;
    padding: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .navLinks {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .navLinks a {
    min-height: 44px;
    border: 0;
    padding: 8px 9px;
    font-size: 0.82rem;
  }

  .navCta {
    width: auto;
    flex: 0 0 auto;
  }

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

  .tierSummary {
    min-height: 74px;
  }

  .finalCtaInner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footerGrid {
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  }
}

@media (min-width: 1200px) {
  .navLinks a {
    padding-inline: 13px;
    font-size: 0.86rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .siteHeader,
  .siteFooter,
  .finalCta,
  .button {
    display: none !important;
  }

  body,
  .section,
  .sectionNavy {
    background: #fff !important;
    color: #000 !important;
  }

  h1,
  h2,
  h3,
  .sectionNavy h2,
  .sectionNavy h3 {
    color: #000 !important;
  }
}
