:root {
  --bg: #f7f9f7;
  --paper: #ffffff;
  --ink: #17201d;
  --muted: #5e6b65;
  --line: #d9e0dc;
  --steel: #244a5e;
  --steel-2: #183544;
  --green: #2f604b;
  --earth: #746241;
  --yellow: #f3c544;
  --yellow-dark: #9e7615;
  --shadow: 0 22px 70px rgba(23, 32, 29, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  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;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 12px clamp(20px, 4vw, 44px);
  background: rgba(247, 249, 247, 0.88);
  border-bottom: 1px solid rgba(217, 224, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--steel-2);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--steel-2);
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mobile-app-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a,
.footer a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--steel);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta,
.button-primary {
  background: var(--yellow);
  color: #211900;
  border-color: #e2b637;
}

.header-cta-secondary {
  background: var(--steel-2);
  color: var(--paper);
  border-color: var(--steel-2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--steel-2);
  border-color: rgba(36, 74, 94, 0.22);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--steel-2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(760px, calc(100svh - 68px));
  padding: clamp(34px, 5vw, 64px) clamp(20px, 4vw, 44px) 28px;
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
  justify-self: end;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.98;
}

.hero p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #3f4c46;
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  padding: 9px 12px;
  background: rgba(47, 96, 75, 0.09);
  border: 1px solid rgba(47, 96, 75, 0.18);
  border-radius: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8% -10% 0 8%;
  z-index: -1;
  content: "";
  background: linear-gradient(145deg, rgba(36, 74, 94, 0.14), rgba(47, 96, 75, 0.12));
  transform: skewX(-5deg);
}

.hero-visual img {
  width: 100%;
  height: min(62vh, 570px);
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.availability-card {
  position: absolute;
  right: clamp(16px, 3vw, 42px);
  bottom: -22px;
  max-width: 310px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 224, 220, 0.88);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(23, 32, 29, 0.18);
}

.availability-label {
  display: block;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.availability-card strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1.05;
}

.availability-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.intro-strip {
  background: var(--steel-2);
  color: var(--paper);
  padding: 22px clamp(20px, 4vw, 44px);
}

.intro-strip p {
  max-width: var(--max);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
}

.section,
.network-section,
.application-choice,
.application-forms,
.fit-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.application-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: clamp(30px, 4vw, 46px);
  margin-bottom: clamp(34px, 5vw, 56px);
  background: var(--line);
  border: 1px solid var(--line);
}

.application-choice article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
}

.application-choice h2 {
  font-size: 40px;
}

.application-choice p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section {
  padding: clamp(48px, 6vw, 74px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.section-label {
  margin: 0 0 14px;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.section-text p,
.process-copy p,
.network-header p,
.form-copy p,
.forms-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-text p + p {
  margin-top: 20px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: clamp(34px, 5vw, 56px);
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-grid article {
  min-height: 205px;
  padding: 24px;
  background: var(--paper);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: rgba(243, 197, 68, 0.18);
  color: var(--steel-2);
  border-radius: 6px;
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-grid p,
.steps p,
.partner-grid span,
.blog-card p,
.footer p,
.contact-note span {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.process-copy p {
  margin-top: 22px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.steps p {
  grid-column: 2;
  margin: -8px 0 0;
}

.network-section {
  padding: clamp(48px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.network-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 60px);
  margin-bottom: 26px;
}

.network-header p {
  align-self: end;
}

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

.partner-grid article {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 18px;
  background: #eef3f0;
  border: 1px solid rgba(47, 96, 75, 0.12);
  border-radius: var(--radius);
}

.partner-grid strong {
  color: var(--steel-2);
  font-size: 20px;
}

.blog-preview {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(300px, 1.28fr);
  gap: clamp(28px, 5vw, 62px);
  border-top: 1px solid var(--line);
}

.blog-cards {
  display: grid;
  gap: 10px;
}

.blog-card {
  display: grid;
  gap: 9px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 74, 94, 0.32);
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.08);
}

.blog-card span {
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card p {
  margin: 0;
}

.application-forms {
  padding: clamp(48px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.forms-header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 60px);
  margin-bottom: 26px;
}

.forms-header p:not(.section-label) {
  align-self: end;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.form-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 26px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(23, 32, 29, 0.08);
}

.form-panel-alt {
  background: #eef3f0;
  border-color: rgba(47, 96, 75, 0.14);
}

.form-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
}

.form-copy p {
  margin-top: 16px;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(36, 74, 94, 0.08);
  border-left: 4px solid var(--yellow);
}

.application-form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel-2);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfb;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(36, 74, 94, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.app-main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 5vw, 62px) 0 clamp(58px, 7vw, 86px);
}

.app-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.app-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  line-height: 0.96;
}

.app-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.app-card {
  padding: clamp(22px, 3vw, 30px);
  background: var(--steel-2);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-card h2 {
  color: var(--paper);
  font-size: 34px;
}

.prep-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.prep-list li {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  border-left: 3px solid var(--yellow);
}

.app-form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(44px, 5vw, 66px) 0;
  border-bottom: 1px solid var(--line);
}

.app-page-form {
  padding: clamp(20px, 3vw, 26px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(23, 32, 29, 0.08);
}

.cross-path {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(32px, 5vw, 50px);
  padding: 22px;
  background: #eef3f0;
  border: 1px solid rgba(47, 96, 75, 0.14);
  border-radius: var(--radius);
}

.cross-path h2 {
  font-size: 38px;
}

.cross-path p:not(.section-label) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 4vw, 44px);
  background: var(--steel-2);
  color: var(--paper);
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active .nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .nav a {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-active .nav a:last-child {
    border-bottom: 0;
  }

  .site-header.menu-active .mobile-app-link {
    display: block;
  }

  .hero,
  .split,
  .process,
  .network-header,
  .blog-preview,
  .forms-header,
  .forms-grid,
  .application-choice,
  .app-hero,
  .app-form-shell,
  .cross-path {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-copy {
    justify-self: start;
  }

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

  .hero-visual img {
    min-height: 420px;
    height: 52vh;
  }

  .fit-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .application-choice article {
    min-height: auto;
  }

  .app-hero h1 {
    font-size: 64px;
  }

  .cross-path {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 180px;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 46px;
  }

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

  .intro-strip p {
    font-size: 24px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .button {
    width: auto;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    flex: 1;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .hero-proof {
    gap: 6px;
    margin-top: 18px;
  }

  .hero-proof span {
    flex: 1;
    min-width: 0;
    padding: 7px 6px;
    text-align: center;
    font-size: 11px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    min-height: 240px;
    height: 240px;
  }

  .availability-card {
    display: none;
  }

  .section,
  .network-section,
  .application-choice,
  .application-forms,
  .fit-grid,
  .app-main {
    width: calc(100% - 32px);
  }

  .app-hero h1 {
    font-size: 46px;
  }

  .app-hero p {
    font-size: 16px;
  }

  .app-card h2,
  .cross-path h2 {
    font-size: 30px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .steps p {
    grid-column: auto;
    margin-top: 0;
  }

  .footer {
    display: grid;
  }
}

/* Concept-style system carried across the site */
.site-header {
  background: #101414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: none;
}

.brand {
  color: #fff;
  font-size: 18px;
}

.brand span:last-child {
  color: #fff;
}

.brand span:last-child::first-letter {
  color: #fff;
}

.brand-mark {
  background: #132f3d;
  color: var(--yellow);
}

.nav {
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover,
.footer a:hover {
  color: var(--yellow);
}

.header-cta-secondary {
  background: #132f3d;
  border-color: #132f3d;
  color: #fff;
}

.button-ghost {
  background: rgba(10, 18, 18, 0.42);
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
}

.home-page {
  background: #fff;
}

.concept-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #111;
}

.concept-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 13, 0.93) 0%, rgba(6, 12, 13, 0.76) 35%, rgba(6, 12, 13, 0.18) 72%),
    linear-gradient(180deg, rgba(6, 12, 13, 0.2), rgba(6, 12, 13, 0.12));
}

.concept-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 70px 0 38px;
  color: #fff;
}

.concept-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(58px, 7.5vw, 104px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.concept-hero p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.45;
}

.concept-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.concept-button {
  min-width: 210px;
  min-height: 58px;
  justify-content: space-between;
  padding: 0 28px;
  border-radius: 0;
  font-size: 16px;
}

.concept-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 760px;
  margin-top: 46px;
}

.concept-proof div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: start;
}

.concept-proof span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 900;
}

.concept-proof strong {
  color: #fff;
  font-size: 15px;
}

.concept-proof small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.3;
}

.land-fit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 84px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 32px;
  background: #fff;
}

.land-fit h2,
.network-path h2,
.partner-band h2,
.concept-blog h2,
.concept-intake h2 {
  margin: 0;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: 46px;
  letter-spacing: 0;
  line-height: 0.98;
}

.land-fit-copy > p {
  max-width: 410px;
  margin: 18px 0 28px;
  color: #26332f;
  font-size: 17px;
}

.fit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 42px;
}

.fit-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.fit-icon {
  color: #24522f;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.fit-list h3 {
  font-size: 17px;
  font-weight: 900;
}

.fit-list p {
  margin: 5px 0 0;
  color: #2f3a36;
  font-size: 15px;
  line-height: 1.35;
}

.land-fit-image,
.intake-image-side {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.land-fit-image img,
.intake-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parcel-line {
  position: absolute;
  inset: 12%;
  border: 5px solid var(--yellow);
  transform: rotate(-9deg);
  pointer-events: none;
}

.network-path {
  padding: 34px 0 42px;
  background: linear-gradient(180deg, #f6f8f9, #fff);
}

.network-path > h2,
.path-steps,
.blog-title-row,
.concept-blog-grid,
.concept-intake {
  width: min(1180px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.path-steps article {
  position: relative;
  min-height: 205px;
  padding-right: 20px;
  border-right: 1px solid #c9d1d5;
}

.path-steps article:last-child {
  border-right: 0;
}

.step-number {
  color: #064b81;
  font-size: 26px;
  font-weight: 900;
}

.path-steps h3 {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 900;
}

.path-steps p {
  margin: 9px 0 0;
  color: #24312f;
  font-size: 14px;
  line-height: 1.45;
}

.step-icon {
  display: block;
  margin-top: 22px;
  color: #0b4d83;
  font-size: 48px;
  font-weight: 900;
}

.partner-band {
  display: grid;
  gap: 22px;
  padding: 30px 28px 34px;
  background: linear-gradient(90deg, #08375f, #0d5587);
  color: #fff;
  text-align: center;
}

.partner-band h2 {
  color: #fff;
  font-size: 38px;
}

.partner-band div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.partner-band span {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 900;
}

.partner-band span:last-child {
  border-right: 0;
}

.concept-blog {
  padding: 38px 0 28px;
  background: #fff;
}

.blog-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.blog-title-row a {
  color: #064b81;
  font-weight: 900;
}

.concept-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.concept-blog-card {
  display: grid;
  background: #fff;
  border: 1px solid #d8dee1;
  box-shadow: 0 2px 10px rgba(20, 30, 34, 0.08);
}

.concept-blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.concept-blog-card div {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.concept-blog-card h3 {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.concept-blog-card p {
  margin: 0;
  color: #2f3a36;
  font-size: 15px;
}

.concept-blog-card span {
  color: #064b81;
  font-weight: 900;
}

.concept-intake {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 430px;
  margin-top: 0;
  margin-bottom: 34px;
  background: #183c15;
  color: #fff;
}

.intake-form-side {
  padding: 28px;
  background: linear-gradient(90deg, #183c15, #244d1b);
}

.concept-intake h2 {
  color: #fff;
  font-size: 38px;
}

.intake-form-side > p {
  margin: 6px 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.concept-form {
  display: grid;
  gap: 8px;
}

.concept-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.concept-form label {
  gap: 0;
  color: #102217;
  font-size: 0;
}

.concept-form label span {
  display: none;
}

.concept-form input,
.concept-form textarea {
  min-height: 34px;
  border-radius: 0;
  border-color: #253d25;
  background: #fff;
  font-size: 13px;
}

.concept-form input::placeholder,
.concept-form textarea::placeholder {
  color: #34423b;
}

.concept-submit {
  width: 230px;
  min-height: 44px;
  margin-top: 4px;
  border-radius: 0;
  justify-content: space-between;
}

.secure-note {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.intake-image-side {
  min-height: 430px;
}

.conversation-card {
  position: absolute;
  right: 22px;
  bottom: 28px;
  width: min(330px, calc(100% - 44px));
  padding: 22px;
  background: rgba(20, 38, 15, 0.96);
  color: #fff;
}

.conversation-card p {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.conversation-card a {
  color: var(--yellow);
  font-weight: 900;
}

.app-main {
  width: 100%;
  padding: 0;
  background: #fff;
}

.app-hero,
.blog-hero {
  position: relative;
  width: 100%;
  min-height: 470px;
  padding: 70px max(32px, calc((100vw - 1180px) / 2)) 54px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 12, 13, 0.94), rgba(6, 12, 13, 0.72), rgba(6, 12, 13, 0.2)),
    url("assets/industrial-storage-yard.png");
  background-size: cover;
  background-position: center;
}

.blog-hero {
  background-image:
    linear-gradient(90deg, rgba(6, 12, 13, 0.94), rgba(6, 12, 13, 0.72), rgba(6, 12, 13, 0.2)),
    url("../assets/industrial-storage-yard.png");
}

.app-hero > div,
.blog-hero > * {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.app-hero h1,
.blog-hero h1,
.article h1 {
  color: inherit;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.95;
}

.app-hero p,
.blog-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.app-card {
  align-self: end;
  background: rgba(14, 58, 86, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.app-form-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 44px 0;
}

.app-page-form {
  border-radius: 0;
}

.cross-path {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto 42px;
  border-radius: 0;
}

.blog-shell {
  width: 100%;
  padding: 0;
}

.article-list {
  width: min(1180px, calc(100% - 64px));
  margin: 34px auto 56px;
}

.article-row {
  border-radius: 0;
}

.article {
  width: min(900px, calc(100% - 64px));
  padding-top: 54px;
}

.article h1 {
  color: var(--ink);
}

.article-cta {
  border-radius: 0;
}

@media (max-width: 980px) {
  .site-header.menu-active .nav {
    background: #101414;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .site-header.menu-active .nav a {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .menu-toggle {
    background: #101414;
    border-color: rgba(255, 255, 255, 0.32);
  }

  .menu-toggle span {
    background: #fff;
  }

  .land-fit,
  .concept-intake,
  .app-form-shell {
    grid-template-columns: 1fr;
  }

  .path-steps,
  .partner-band div,
  .concept-blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .path-steps article:nth-child(2n) {
    border-right: 0;
  }

  .app-card {
    align-self: start;
  }
}

@media (max-width: 640px) {
  .concept-hero {
    min-height: 760px;
  }

  .concept-hero-content,
  .land-fit,
  .network-path > h2,
  .path-steps,
  .blog-title-row,
  .concept-blog-grid,
  .concept-intake,
  .app-form-shell,
  .cross-path,
  .article-list,
  .article {
    width: calc(100% - 32px);
  }

  .concept-hero h1,
  .app-hero h1,
  .blog-hero h1,
  .article h1 {
    font-size: 46px;
  }

  .concept-hero p,
  .app-hero p,
  .blog-hero p {
    font-size: 16px;
  }

  .concept-proof,
  .fit-list,
  .path-steps,
  .partner-band div,
  .concept-blog-grid,
  .concept-intake,
  .concept-form-grid {
    grid-template-columns: 1fr;
  }

  .path-steps article {
    border-right: 0;
    border-bottom: 1px solid #c9d1d5;
    min-height: auto;
    padding-bottom: 20px;
  }

  .partner-band span {
    border-right: 0;
    padding: 8px 0;
  }

  .land-fit-image,
  .intake-image-side {
    min-height: 280px;
  }

  .app-hero,
  .blog-hero {
    min-height: 520px;
    padding: 48px 16px 42px;
  }
}

/* Final screenshot-aligned consistency pass */
:root {
  --hard-black: #101414;
  --industrial-blue: #073d68;
  --industrial-blue-2: #0d5587;
  --industrial-green: #183c15;
  --action-yellow: #f6c30d;
  --text-dark: #101414;
}

body {
  background: #fff;
  color: var(--text-dark);
}

.site-header {
  min-height: 70px;
  padding: 14px clamp(18px, 3.5vw, 48px);
  background: var(--hard-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.brand {
  gap: 0;
  color: #fff;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
}

.brand-mark {
  display: none;
}

.brand .brand-word > span {
  color: var(--action-yellow);
}

.nav {
  gap: clamp(16px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.nav a:hover,
.footer a:hover,
.blog-title-row a:hover,
.concept-blog-card:hover span {
  color: var(--action-yellow);
}

.header-actions {
  gap: 10px;
}

.header-cta,
.button {
  min-height: 48px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.header-cta,
.button-primary {
  background: var(--action-yellow);
  border-color: var(--action-yellow);
  color: #151100;
}

.header-cta-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border-color: #d4dce1;
  color: #0c3555;
}

.button-ghost {
  background: rgba(8, 15, 15, 0.38);
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
}

.menu-toggle {
  border-radius: 0;
  background: var(--hard-black);
  border-color: rgba(255, 255, 255, 0.34);
}

.menu-toggle span {
  background: #fff;
}

.concept-hero {
  min-height: min(690px, calc(100svh - 72px));
  background: #0d1112;
}

.concept-hero > img {
  filter: saturate(1.05) contrast(1.04);
  object-position: center;
}

.concept-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 10, 11, 0.94) 0%, rgba(5, 10, 11, 0.8) 36%, rgba(5, 10, 11, 0.18) 74%),
    linear-gradient(180deg, rgba(5, 10, 11, 0.1), rgba(5, 10, 11, 0.24));
}

.concept-hero-content {
  width: min(1180px, calc(100% - 64px));
  padding: clamp(42px, 6vw, 76px) 0 34px;
}

.concept-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.2vw, 74px);
  line-height: 0.94;
}

.hero-nowrap {
  white-space: nowrap;
}

.concept-hero p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 18px;
}

.concept-actions {
  gap: 24px;
  margin-top: 32px;
}

.concept-button {
  min-width: 215px;
  min-height: 58px;
  padding: 0 28px;
  font-size: 15px;
}

.concept-proof {
  max-width: 760px;
  gap: 32px;
  margin-top: 46px;
}

.concept-proof span {
  width: 38px;
  height: 38px;
  border: 3px solid var(--action-yellow);
  color: var(--action-yellow);
  font-size: 18px;
}

.concept-proof strong {
  font-size: 14px;
  line-height: 1.2;
}

.concept-proof small {
  font-size: 12px;
}

.land-fit {
  width: min(1180px, calc(100% - 64px));
  gap: clamp(36px, 6vw, 82px);
  padding: 36px 0 34px;
}

.land-fit h2,
.network-path h2,
.partner-band h2,
.concept-blog h2,
.concept-intake h2,
.app-card h2,
.cross-path h2 {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  letter-spacing: 0;
}

.land-fit h2,
.network-path h2,
.concept-blog h2 {
  font-size: clamp(36px, 4vw, 48px);
}

.form-copy h2 {
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(38px, 4.6vw, 56px);
  letter-spacing: 0;
  line-height: 0.98;
}

.land-fit-copy > p {
  margin-top: 16px;
}

.fit-list {
  gap: 28px 38px;
}

.fit-icon {
  color: #254f2f;
  font-size: 42px;
}

.land-fit-image,
.intake-image-side {
  min-height: 420px;
}

.parcel-line {
  border-color: var(--action-yellow);
}

.network-path {
  padding: 34px 0 42px;
  background: linear-gradient(180deg, #f3f6f8, #fff);
}

.path-steps {
  gap: 0;
  margin-top: 32px;
}

.path-steps article {
  min-height: 212px;
  padding: 0 24px 0 0;
  margin-right: 24px;
}

.path-steps article::after {
  content: "\203a";
  position: absolute;
  top: 46%;
  right: -2px;
  color: #0c426c;
  font-size: 38px;
  line-height: 1;
}

.path-steps article:last-child::after {
  display: none;
}

.step-number {
  color: #073d68;
}

.step-icon {
  color: #0b4d83;
}

.partner-band {
  background: linear-gradient(90deg, #073a63, #0b5489);
}

.partner-band h2 {
  font-size: clamp(32px, 3vw, 40px);
}

.partner-band span {
  color: rgba(255, 255, 255, 0.94);
  padding-right: 12px;
  padding-left: 12px;
  font-size: 14px;
  white-space: nowrap;
}

.concept-blog {
  padding: 38px 0 30px;
}

.concept-blog-card {
  border-radius: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.concept-blog-card:hover {
  transform: translateY(-2px);
  border-color: #b8c3ca;
  box-shadow: 0 14px 34px rgba(18, 28, 32, 0.14);
}

.concept-blog-card h3 {
  font-size: clamp(23px, 2.3vw, 30px);
}

.concept-intake {
  width: min(1180px, calc(100% - 48px));
  margin-bottom: 36px;
  background: var(--industrial-green);
}

.intake-form-side {
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(90deg, #173813, #244d1b);
}

.concept-intake h2 {
  font-size: clamp(34px, 3.2vw, 42px);
}

.concept-form input,
.concept-form textarea,
.concept-form select {
  border-radius: 0;
}

.concept-submit {
  min-width: 230px;
}

.conversation-card {
  border-left: 4px solid var(--action-yellow);
}

.app-main {
  width: 100%;
  padding: 0;
  background: #fff;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(28px, 5vw, 62px);
  min-height: 500px;
  padding: 74px max(32px, calc((100vw - 1180px) / 2)) 56px;
  border-bottom: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 10, 11, 0.94), rgba(5, 10, 11, 0.78) 42%, rgba(5, 10, 11, 0.18)),
    url("assets/industrial-storage-yard.png");
  background-position: center;
  background-size: cover;
}

.app-hero > div,
.app-card {
  position: relative;
  z-index: 1;
}

.app-hero h1 {
  max-width: 700px;
  color: #fff;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
  font-size: clamp(52px, 6.4vw, 86px);
  line-height: 0.94;
}

.app-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
}

.app-hero .section-label,
.blog-hero .section-label {
  color: var(--action-yellow);
}

.app-card {
  align-self: end;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 0;
  background: rgba(9, 56, 91, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.app-card h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
}

.app-form-shell {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(28px, 5vw, 62px);
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 48px 0;
  border-bottom: 0;
}

.app-page-form {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #d8dee1;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 28, 32, 0.08);
}

.application-form label {
  color: #12313d;
  font-weight: 900;
}

input,
select,
textarea {
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0b4d83;
  box-shadow: 0 0 0 3px rgba(11, 77, 131, 0.14);
}

.cross-path {
  grid-template-columns: 1fr auto;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto 46px;
  padding: 26px clamp(24px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #073a63, #0b5489);
  color: #fff;
}

.cross-path h2 {
  color: #fff;
}

.cross-path p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  background: #101414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .brand {
    font-size: 24px;
  }

  .nav {
    gap: 16px;
  }

  .header-cta-secondary {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .site-header.menu-active .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--hard-black);
  }

  .site-header.menu-active .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-app-link {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .concept-hero {
    min-height: auto;
  }

  .concept-hero-content {
    padding: 48px 0 42px;
  }

  .concept-proof,
  .land-fit,
  .app-hero,
  .app-form-shell,
  .cross-path {
    grid-template-columns: 1fr;
  }

  .path-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }

  .path-steps article {
    border-right: 0;
    margin-right: 0;
  }

  .path-steps article::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 22px;
  }

  .concept-hero-content,
  .land-fit,
  .network-path > h2,
  .path-steps,
  .blog-title-row,
  .concept-blog-grid,
  .concept-intake,
  .app-form-shell,
  .cross-path {
    width: calc(100% - 32px);
  }

  .concept-hero h1,
  .app-hero h1 {
    font-size: 46px;
  }

  .hero-nowrap {
    white-space: normal;
  }

  .concept-actions,
  .hero-actions,
  .section-actions {
    display: grid;
  }

  .concept-button,
  .button {
    width: 100%;
  }

  .fit-list,
  .path-steps,
  .partner-band div,
  .concept-blog-grid,
  .concept-intake,
  .concept-form-grid {
    grid-template-columns: 1fr;
  }

  .app-hero {
    min-height: auto;
    padding: 46px 16px;
  }

  .land-fit-image,
  .intake-image-side {
    min-height: 280px;
  }

  .conversation-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -4px;
  }
}
