:root {
  --ink: #101828;
  --storm: #063348;
  --storm-2: #08293a;
  --cream: #fff6e8;
  --shell: #eed7b8;
  --surface: #f7f1e7;
  --white: #ffffff;
  --copper: #a6422c;
  --copper-dark: #87331f;
  --mango: #ffb51b;
  --teal: #087c89;
  --proof: #3e5962;
  --gray: #52616c;
  --line: rgba(16, 24, 40, 0.14);
  --shadow: 0 18px 45px rgba(6, 51, 72, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 38px;
  color: var(--white);
  background: rgba(6, 51, 72, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand img {
  width: 194px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--mango);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--storm);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: image-set(
    url("/assets/hero-900.webp") 1x,
    url("/assets/hero-1600.webp") 2x
  );
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero-shade {
  background: rgba(4, 25, 34, 0.56);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 68px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--mango);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.38;
  font-weight: 620;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 12px 25px rgba(166, 66, 44, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.source-note {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--storm-2);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item {
  min-height: 132px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item strong {
  display: block;
  color: var(--mango);
  font-size: 16px;
  margin-bottom: 8px;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band,
.offers-band,
.inventory-band,
.proof-band,
.match-band,
.terms-band {
  padding: 76px 0;
}

.intro-band {
  background: var(--white);
}

.offers-band {
  background: var(--surface);
}

.inventory-band {
  background: var(--white);
}

.proof-band {
  background: var(--surface);
}

.match-band {
  background: var(--storm);
  color: var(--white);
}

.terms-band {
  background: var(--surface);
}

.two-column,
.match-layout,
.terms-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
}

.plain-copy p,
.section-heading p,
.match-copy p,
.terms-list p {
  margin: 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.62;
}

.plain-copy p + p {
  margin-top: 18px;
  color: var(--proof);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

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

.offer-card,
.lead-form,
.next-steps,
.terms-list article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.offer-card.featured {
  border-color: rgba(166, 66, 44, 0.42);
  box-shadow: var(--shadow);
}

.offer-topline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.offer-topline span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-topline strong {
  color: var(--copper);
  font-size: 24px;
  font-weight: 900;
}

.offer-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.offer-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.55;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 22px 0 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.unit-list {
  display: grid;
  gap: 10px;
}

.unit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.unit-row strong,
.unit-row span {
  display: block;
}

.unit-row strong {
  font-size: 19px;
  margin-bottom: 4px;
}

.unit-row span {
  color: var(--gray);
  line-height: 1.45;
}

.unit-row p {
  margin: 0;
  color: var(--copper);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.preferred-unit {
  border-color: rgba(8, 124, 137, 0.45);
  background: #f5fbfb;
}

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

.proof-grid div {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.proof-grid strong {
  color: var(--teal);
  margin-bottom: 8px;
}

.proof-grid span {
  color: var(--gray);
  line-height: 1.45;
}

.match-copy .section-kicker {
  color: var(--mango);
}

.match-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.next-steps {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.next-steps strong {
  display: block;
  color: var(--mango);
  margin-bottom: 12px;
}

.next-steps ol {
  margin: 0;
  padding-left: 22px;
}

.next-steps li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-intro {
  margin: 0;
  color: var(--proof);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.optional-details {
  border: 1px solid rgba(16, 24, 40, 0.16);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.optional-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.optional-details summary span {
  color: var(--gray);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.optional-details[open] {
  padding-bottom: 14px;
}

.optional-details[open] summary {
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  margin-bottom: 14px;
}

.optional-details .form-row {
  padding: 0 14px;
}

.optional-details .form-row + .form-row {
  margin-top: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

label span {
  color: var(--gray);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 24, 40, 0.22);
  border-radius: 7px;
  font: inherit;
  font-weight: 520;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 181, 27, 0.34);
  border-color: var(--copper);
}

.checkbox-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.checkbox-line input {
  min-height: auto;
  margin-top: 2px;
}

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

.privacy-note,
.form-status {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  font-weight: 760;
}

.form-status.success {
  color: #2e6f40;
}

.form-status.error {
  color: #a6422c;
}

.terms-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.terms-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.terms-list article {
  padding: 20px;
  background: var(--white);
}

.terms-list strong {
  display: block;
  color: var(--teal);
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 38px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--storm-2);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  margin-bottom: 4px;
}

.site-footer p {
  max-width: 580px;
  margin: 0;
  line-height: 1.45;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  color: var(--white);
  background: var(--copper);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 51, 72, 0.32);
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

  .brand img {
    width: 164px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-inner {
    width: min(100% - 36px, 720px);
    padding: 132px 0 44px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 48px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 18px;
  }

  .trust-strip,
  .offer-grid,
  .two-column,
  .match-layout,
  .terms-grid,
  .terms-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    min-height: 0;
  }

  .intro-band,
  .offers-band,
  .inventory-band,
  .proof-band,
  .match-band,
  .terms-band {
    padding: 56px 0;
  }

  h2 {
    font-size: 34px;
  }

  .offer-card,
  .proof-grid div {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    background: rgba(6, 51, 72, 0.72);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero-shade {
    background: rgba(4, 25, 34, 0.66);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-top: 152px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .form-row,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  h2 {
    font-size: 30px;
  }

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

  .unit-row p {
    white-space: normal;
  }

  .lead-form {
    padding: 20px;
  }

  input,
  select,
  textarea,
  .optional-details summary {
    min-height: 50px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
  }

  .sticky-cta {
    display: flex;
  }
}
