:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5d6863;
  --paper: #f7f4ed;
  --panel: #ffffff;
  --line: #d9ddd6;
  --forest: #1d4f42;
  --terra: #b8562d;
  --sky: #d9e7ee;
  --gold: #d7a642;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  min-height: calc(100svh - 68px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  height: 100%;
  min-height: calc(100svh - 68px);
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 24, 20, 0.82), rgba(12, 24, 20, 0.34) 48%, rgba(12, 24, 20, 0.12));
  z-index: 1;
}

.hero-copy {
  color: #fff;
  max-width: 760px;
  padding: 0 clamp(20px, 6vw, 72px) 9vh;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--terra);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7c46d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.02;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 680px;
}

.button {
  background: var(--gold);
  color: #1b170d;
  display: inline-flex;
  font-weight: 800;
  margin-top: 12px;
  padding: 14px 20px;
  text-decoration: none;
}

.proof-strip {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 150px;
  padding: 30px clamp(20px, 4vw, 48px);
}

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

.proof-strip strong {
  font-size: 18px;
  margin-bottom: 8px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 72px);
}

.section-intro {
  max-width: 780px;
}

.feature-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid article {
  background: var(--panel);
  min-height: 270px;
  padding: 30px;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sky);
}

.image-band figure {
  margin: 0;
}

.image-band img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

figcaption {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.45;
  padding: 22px clamp(20px, 4vw, 46px) 32px;
}

.pricing-section {
  background: #ffffff;
}

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

.price-card {
  border: 1px solid var(--line);
  min-height: 310px;
  padding: 28px;
}

.price-card.highlight {
  border-color: var(--forest);
  box-shadow: inset 0 6px 0 var(--forest);
}

.model {
  color: var(--muted);
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 20px;
}

.price-card a {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.fit-section {
  align-items: start;
  background: var(--forest);
  color: #fff;
  display: grid;
  gap: clamp(28px, 6vw, 84px);
  grid-template-columns: 0.9fr 1.1fr;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 72px);
}

.fit-section .eyebrow {
  color: #f7c46d;
}

.fit-section li,
.fit-section p {
  color: rgba(255, 255, 255, 0.8);
}

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

.fit-section li + li {
  margin-top: 16px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 72px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-strip,
  .feature-grid,
  .image-band,
  .pricing-grid,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .feature-grid article,
  .price-card {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(12, 24, 20, 0.88), rgba(12, 24, 20, 0.25));
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    padding-bottom: 48px;
  }
}
