:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5b6770;
  --line: #d7dedc;
  --paper: #f6f2ea;
  --white: #fffdf8;
  --pine: #123d35;
  --teal: #1f6c67;
  --steel: #334d5d;
  --amber: #c9862c;
  --rust: #9b4f2e;
  --shadow: 0 18px 45px rgba(18, 35, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(23, 32, 38, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--pine);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--pine);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 128px clamp(18px, 5vw, 72px) 84px;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 32, 31, 0.88) 0%, rgba(11, 32, 31, 0.7) 42%, rgba(11, 32, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 32, 31, 0.28), rgba(11, 32, 31, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 720px;
}

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

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  background: var(--amber);
  color: #1e170c;
}

.button-secondary {
  border-color: rgba(255, 253, 248, 0.55);
  color: var(--white);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 44px);
  background: var(--white);
}

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

.proof-band strong {
  color: var(--pine);
  font-size: 18px;
}

.proof-band span {
  max-width: 360px;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.feature-card,
.price-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 0 rgba(23, 32, 38, 0.04);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(31, 108, 103, 0.12);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p,
.price-card p,
.workflow p,
.cta-section p {
  margin: 0;
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--pine);
  color: var(--white);
}

.workflow-copy p:last-child {
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 18px;
}

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

.steps li {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
}

.steps strong {
  color: var(--white);
}

.steps span {
  color: rgba(255, 253, 248, 0.72);
}

.pricing-section {
  background: #e9efe9;
}

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

.price-card {
  min-height: 230px;
}

.price-card.featured {
  border-color: rgba(31, 108, 103, 0.35);
  box-shadow: var(--shadow);
}

.price {
  margin: 8px 0 16px;
  color: var(--rust);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 72px clamp(18px, 5vw, 72px);
  background: var(--steel);
  color: var(--white);
}

.cta-section div {
  max-width: 760px;
}

.cta-section p {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 18px;
}

@media (max-width: 960px) {
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
  }

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

  .hero {
    min-height: 94vh;
    padding-top: 142px;
    padding-bottom: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 32, 31, 0.9), rgba(11, 32, 31, 0.66)),
      linear-gradient(180deg, rgba(11, 32, 31, 0.22), rgba(11, 32, 31, 0.72));
  }

  .button {
    width: 100%;
  }

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

  .feature-card,
  .price-card {
    min-height: auto;
  }

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

  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }
}
