@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-variable.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-600-latin.woff2") format("woff2");
}

:root {
  --void: #05070d;
  --deck: #0a1020;
  --deck-2: #0d1526;
  --edge: #1b2740;
  --edge-blue: #22407e;
  --edge-red: #4a211c;
  --blue: #1e5eff;
  --blue-deep: #0a2a6b;
  --blue-lift: #6e9bff;
  --red: #ff3b2f;
  --red-deep: #7a1109;
  --white: #ffffff;
  --muted-2: #64789b;
  --display: "Archivo", "Liberation Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "DejaVu Sans Mono", monospace;
  --navy-950: #05070d;
  --navy-900: #0a1020;
  --navy-800: #0d1526;
  --blue-700: #6e9bff;
  --blue-600: #1e5eff;
  --blue-100: #0d1526;
  --gold-500: #ffb627;
  --gold-100: rgba(255, 182, 39, 0.12);
  /* Brand accent (Replit design port, batch 1 revised): Old Glory Red.
     Semantic use ONLY for brand highlights and accent elements - never as a
     replacement for gold/amber warnings or red danger states. */
  --brand-accent: #ff3b2f;
  --brand-accent-100: rgba(255, 59, 47, 0.12);
  --ink: #ffffff;
  --muted: #93a7c9;
  --line: #1b2740;
  --surface: #05070d;
  --surface-soft: #0a1020;
  --success: #3dd68c;
  /* Batch 2: layered subtle shadow system from the Replit design */
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 10px 26px rgba(0, 0, 0, 0.45);
  --radius-lg: 20px;
  --radius-md: 16px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid rgba(36, 105, 216, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 900;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 229, 239, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 950;
  letter-spacing: -0.035em;
  font-size: 20px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--navy-900);
  color: #fff;
  font-size: 21px;
}

.brand strong {
  color: var(--blue-600);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #3c4c62;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--blue-700);
}

.btn,
.site-nav .nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  background: var(--navy-900);
  color: #fff;
}

.btn-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 10px 25px rgba(36, 105, 216, 0.24);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-dark {
  background: var(--navy-900);
  color: #fff;
}

.btn-light {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}

.btn-gold {
  background: var(--gold-500);
  color: #172033;
}

.btn-block {
  width: 100%;
}

.hero {
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.hero-grid {
  min-height: min(690px, 82svh);
  display: grid;
  grid-template-columns: minmax(440px, 0.85fr) minmax(620px, 1.25fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
  padding: 72px clamp(34px, 5vw, 82px);
}

.hero-copy::after {
  position: absolute;
  top: -35%;
  right: -210px;
  width: 270px;
  height: 170%;
  content: "";
  background: linear-gradient(90deg, var(--navy-950), transparent);
  pointer-events: none;
}

.hero-visual {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(4, 21, 44, 0.14), transparent 30%),
    url("/assets/hero-background.jpg") center center / cover no-repeat;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #bcd8ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand-accent);
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 53ch;
  margin: 24px 0 0;
  color: #dce9f8;
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.hero-paths .btn {
  min-height: 58px;
  padding-inline: 11px;
  font-size: 14px;
}

.hero-note {
  margin-top: 18px;
  color: #a9bdd5;
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.proof-item {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  color: var(--navy-900);
  font-size: 15px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--navy-950);
  color: #fff;
}

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

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #9cc6ff;
}

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

h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-dark h2 {
  color: #fff;
}

h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-head p,
.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p {
  color: #b7c8dc;
}

.role-grid,
.price-grid,
.trust-grid,
.steps-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.offer-layout .section-head {
  margin-bottom: 0;
}

.offer-board {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #cbd9e9;
  border-radius: 22px;
  background: #f8fbff;
  box-shadow: var(--shadow);
}

.offer-board-head,
.offer-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-board-head {
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 900;
}

.offer-board-head b {
  color: var(--blue-600);
}

.status-pill,
.offer-agreed {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e9f7ef;
  color: var(--success);
  font-size: 11px;
  font-weight: 900;
}

.offer-request {
  display: grid;
  gap: 2px;
  margin: 18px 0 12px;
  padding: 14px 15px;
  border-radius: 13px;
  background: var(--navy-900);
  color: #fff;
}

.offer-request span,
.offer-card small,
.offer-footnote {
  color: var(--muted);
  font-size: 12px;
}

.offer-request span {
  color: #c7d8ee;
}

.offer-card {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.offer-card.accepted {
  border-color: #87caab;
  background: #fbfffc;
}

.offer-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 14px;
}

.offer-card strong small {
  display: block;
  margin-left: 3px;
  font-weight: 700;
}

.profile-dot {
  width: 33px;
  height: 33px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue-700);
  color: #fff;
  font-size: 11px;
}

.profile-dot.alt {
  background: #5c4ea5;
}

.offer-price {
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 950;
  text-align: right;
}

.offer-price small {
  display: block;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card p {
  margin: 0;
  color: #4d5e74;
  font-size: 13px;
}

.offer-footnote {
  margin: 15px 0 1px;
  text-align: center;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.role-card,
.price-card,
.trust-card,
.step-card,
.support-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: clamp(24px, 3vw, 34px);
}

.role-card {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--blue-600);
}

.role-card:nth-child(2) {
  border-top-color: var(--gold-500);
}

.role-card:nth-child(3) {
  border-top-color: var(--success);
}

.role-label,
.pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
}

.role-card p,
.price-card p,
.trust-card p,
.step-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.role-card ul,
.price-card ul,
.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-card li,
.price-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: #405168;
  font-size: 14px;
  font-weight: 750;
}

.role-card li::before,
.price-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 950;
}

.role-card .btn,
.price-card .btn {
  margin-top: auto;
}

.step-card {
  counter-increment: steps;
}

.step-card::before {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy-900);
  color: #fff;
  content: counter(steps);
  font-weight: 950;
}

.trust-card {
  box-shadow: none;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--gold-100);
  font-size: 22px;
}

.price-card.featured {
  border: 2px solid var(--blue-600);
  box-shadow: var(--shadow);
}

.price {
  color: var(--navy-900);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: #0a2447;
}

.proof-panel h2 {
  color: #fff;
}

.proof-panel p {
  color: #bfd0e3;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list article {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 4px;
  color: #b8c9dc;
  font-size: 13px;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 12px;
  margin-inline: auto;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy-900);
  font-weight: 900;
}

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

.final-cta {
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(4, 21, 44, 0.96), rgba(11, 45, 89, 0.88)),
    url("/assets/hero-background.jpg") center 58% / cover;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 650px;
  margin: 16px auto 26px;
  color: #d4e1ef;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(36, 105, 216, 0.34),
      transparent 38%
    ),
    var(--navy-950);
  color: #fff;
}

.page-hero .container {
  max-width: 920px;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: #c9d9e9;
  font-size: 19px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #b7cae1;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: #fff;
}

.content-narrow {
  max-width: 850px;
}

.prose {
  display: grid;
  gap: 22px;
}

.prose article {
  padding: clamp(24px, 4vw, 38px);
}

.prose h2 {
  font-size: clamp(27px, 3vw, 36px);
}

.prose h3 {
  margin-top: 18px;
}

.prose p,
.prose li {
  color: #4c5d73;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 9px;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--gold-500);
  border-radius: 10px;
  background: var(--gold-100);
  color: #594318;
}

.form-shell {
  max-width: 760px;
  margin-inline: auto;
}

.form-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 44px);
}

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

.form-card label {
  display: grid;
  gap: 7px;
  color: #42546b;
  font-size: 14px;
  font-weight: 900;
}

.form-card label[hidden] {
  display: none;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #cfdbe8;
  border-radius: 12px;
  background: #fbfdff;
  color: var(--ink);
  font-size: 16px; /* ≥16px prevents iOS auto-zoom on focus */
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(36, 105, 216, 0.14);
}

.check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 700 !important;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.status {
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
}

.status.error {
  background: #fff0f0;
  color: #a82b2b;
}

.status.success {
  background: #e9f7ef;
  color: #12623e;
}

.status[hidden] {
  display: none;
}

.plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #cfe0f3;
  border-radius: 14px;
  background: var(--blue-100);
}

.plan-summary strong,
.plan-summary span {
  display: block;
}

.plan-summary span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--navy-950);
  color: #c3d1e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 1fr));
  gap: 38px;
}

.footer-brand p {
  max-width: 38ch;
  color: #99adc4;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  color: #fff;
}

.footer-col a {
  color: #b9c9d9;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa4ba;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-copy::after {
    display: none;
  }

  .hero-visual {
    min-height: min(68vw, 650px);
    background-size: cover;
  }

  .proof-strip .container,
  .proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 90;
    background: rgba(4, 21, 44, 0.42);
    backdrop-filter: blur(2px);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 102;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 12px;
    bottom: auto;
    width: min(calc(100vw - 24px), 390px);
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid #c8d8e9;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(4, 21, 44, 0.34);
    z-index: 101;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 14px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: var(--navy-900);
    font-size: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    border-color: #bed2eb;
    background: var(--blue-100);
    color: var(--blue-700);
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    color: #fff;
  }

  .hero-copy {
    padding: 54px 24px;
  }

  .hero-paths,
  .role-grid,
  .price-grid,
  .trust-grid,
  .steps-grid,
  .support-grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .hero-paths {
    max-width: 430px;
  }

  .proof-strip .container {
    width: 100%;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .container {
    width: min(calc(100% - 24px), var(--content));
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-visual {
    min-height: 72vw;
    background-position: 54% center;
  }

  .section {
    padding: 64px 0;
  }

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

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

  .footer-bottom {
    display: grid;
  }

  .plan-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Premium freight visual system - public, pricing, knowledge, and legal pages. */
html {
  color-scheme: dark;
  background: var(--void);
}
html body {
  min-height: 100vh;
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  background:
    radial-gradient(
      ellipse 980px 760px at -8% -12%,
      rgba(30, 94, 255, 0.42),
      transparent 70%
    ),
    radial-gradient(
      ellipse 820px 720px at 108% 4%,
      rgba(255, 59, 47, 0.24),
      transparent 70%
    ),
    radial-gradient(
      ellipse 900px 780px at 48% 72%,
      rgba(30, 94, 255, 0.16),
      transparent 72%
    ),
    var(--void);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
html body h1,
html body h2,
html body h3,
html body h4 {
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
}
html body p,
html body li,
html body small {
  color: var(--muted);
}
html body :focus-visible {
  outline: 2px solid var(--blue-lift);
  outline-offset: 3px;
}

html body .site-header {
  border-color: var(--edge);
  background: rgba(5, 7, 13, 0.84);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}
html body .brand {
  color: var(--white);
}
html body .brand strong {
  color: var(--blue-lift);
}
html body .brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--edge-blue);
  border-radius: 10px;
  background: rgba(30, 94, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 24px rgba(30, 94, 255, 0.12);
}
html body .site-nav a {
  color: var(--muted);
}
html body .site-nav a:hover {
  color: var(--white);
}
html body .nav-toggle {
  border-color: var(--edge);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
html body .site-nav .nav-cta,
html body .btn-primary,
html body .btn-light,
html body .btn-gold {
  border-color: var(--white);
  background: var(--white);
  color: #06090f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}
html body .site-nav .nav-cta:hover,
html body .btn-primary:hover,
html body .btn-light:hover,
html body .btn-gold:hover {
  background: #dce6ff;
  color: #06090f;
}
html body .btn-dark {
  border: 1px solid var(--edge);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

html body .hero {
  color: var(--white);
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 13, 0.32) 0%,
      rgba(5, 7, 13, 0.7) 68%,
      var(--void) 100%
    ),
    linear-gradient(
      96deg,
      rgba(30, 94, 255, 0.3),
      transparent 56%,
      rgba(255, 59, 47, 0.16)
    ),
    var(--void);
}
html body .hero-copy::after {
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.98), transparent);
}
html body .hero-visual {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.14), rgba(5, 7, 13, 0.74) 92%),
    linear-gradient(
      96deg,
      rgba(30, 94, 255, 0.22),
      transparent 58%,
      rgba(255, 59, 47, 0.14)
    ),
    url("/assets/hero-background.jpg") center 58% / cover no-repeat;
}
html body .hero p,
html body .hero-note {
  color: var(--muted);
}
html body .kicker,
html body .eyebrow,
html body .role-label,
html body .pill,
html body .breadcrumbs,
html body .form-card label,
html body .proof-item span,
html body .footer-col strong {
  color: var(--blue-lift);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html body .proof-strip,
html body .section-soft {
  border-color: var(--edge);
  background: rgba(5, 7, 13, 0.34);
}
html body .proof-item {
  border-color: var(--edge);
}
html body .proof-item strong {
  color: var(--white);
}
html body .card,
html body .role-card,
html body .price-card,
html body .trust-card,
html body .step-card,
html body .support-card,
html body .offer-board,
html body .offer-card,
html body .faq-list details,
html body .form-card,
html body .prose article,
html body .notice,
html body .plan-summary {
  position: relative;
  overflow: hidden;
  border-color: var(--edge);
  border-radius: 16px;
  background: linear-gradient(
    168deg,
    rgba(13, 21, 38, 0.98),
    rgba(10, 16, 32, 0.98)
  );
  color: var(--white);
  box-shadow: var(--shadow-card);
}
html body .card::before,
html body .role-card::before,
html body .price-card::before,
html body .trust-card::before,
html body .step-card::before,
html body .support-card::before,
html body .offer-board::before,
html body .faq-list details::before,
html body .form-card::before,
html body .prose article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(110, 155, 255, 0.5),
    transparent
  );
  pointer-events: none;
}
html body .price-card.featured,
html body .offer-card.accepted {
  border-color: var(--edge-blue);
  background:
    radial-gradient(
      120% 130% at 8% 0%,
      rgba(30, 94, 255, 0.28),
      transparent 58%
    ),
    linear-gradient(168deg, var(--deck-2), var(--deck));
}
html body .price,
html body .offer-price,
html body .offer-request span,
html body .offer-agreed,
html body .status-pill {
  color: var(--blue-lift);
  font-family: var(--mono);
}
html body .status-pill,
html body .offer-agreed,
html body .pill {
  border-color: var(--edge-blue);
  background: rgba(30, 94, 255, 0.11);
}
html body .proof-panel,
html body .final-cta,
html body .page-hero,
html body .section-dark {
  border-color: var(--edge-blue);
  background:
    radial-gradient(
      120% 150% at 0% 0%,
      rgba(30, 94, 255, 0.3),
      transparent 60%
    ),
    radial-gradient(
      90% 130% at 100% 10%,
      rgba(255, 59, 47, 0.14),
      transparent 64%
    ),
    var(--deck);
}

html body input:not([type="checkbox"]):not([type="radio"]),
html body select,
html body textarea,
html body .form-card input:not([type="checkbox"]):not([type="radio"]),
html body .form-card select,
html body .form-card textarea {
  min-height: 46px;
  border: 1px solid var(--edge);
  border-radius: 12px;
  background: #070c17;
  color: var(--white);
  font-family: var(--display);
  caret-color: var(--blue-lift);
  color-scheme: dark;
}
html body input::placeholder,
html body textarea::placeholder {
  color: var(--muted-2);
  opacity: 1;
}
html body input:focus,
html body select:focus,
html body textarea:focus {
  border-color: var(--blue);
  outline: 2px solid var(--blue-lift);
  outline-offset: 1px;
  box-shadow: none;
}
html body input[type="checkbox"],
html body input[type="radio"] {
  accent-color: var(--blue);
}
html body .status.error {
  border-color: var(--edge-red);
  background: rgba(255, 59, 47, 0.11);
  color: #ff8a82;
}
html body .status.success {
  background: rgba(61, 214, 140, 0.1);
  color: var(--success);
}
html body .site-footer {
  border-color: var(--edge);
  background: #04060b;
  color: var(--muted);
}

@media (max-width: 820px) {
  html body .site-nav {
    border-color: var(--edge);
    background: rgba(5, 7, 13, 0.98);
  }
}

@media (max-width: 560px) {
  html body {
    font-size: 16px;
    background:
      radial-gradient(
        ellipse 620px 520px at -24% -8%,
        rgba(30, 94, 255, 0.34),
        transparent 70%
      ),
      radial-gradient(
        ellipse 560px 520px at 124% 8%,
        rgba(255, 59, 47, 0.18),
        transparent 70%
      ),
      var(--void);
  }
}
