:root {
  --ink: #14201d;
  --muted: #5f6b66;
  --line: #dfe7e1;
  --paper: #f7faf6;
  --white: #ffffff;
  --green: #0d7a5f;
  --green-dark: #07513f;
  --amber: #c8872d;
  --charcoal: #0d1412;
  --shadow: 0 22px 70px rgba(12, 24, 20, 0.18);
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 15, 13, 0.78), rgba(8, 15, 13, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--white);
}

.nav {
  gap: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 12, 10, 0.86) 0%, rgba(6, 12, 10, 0.62) 38%, rgba(6, 12, 10, 0.1) 76%),
    linear-gradient(180deg, rgba(6, 12, 10, 0.18) 50%, rgba(6, 12, 10, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 150px clamp(20px, 6vw, 72px) 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.hero-stats,
.plans,
.problem-band,
.feature-grid,
.cta-section {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  margin: 30px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin: 0;
}

.hero-stats div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats dt {
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 6vw, 72px);
}

.intro-grid,
.split,
.pricing-head,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-grid p,
.split p,
.cta-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.problem-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 44px;
  padding-bottom: 44px;
  color: var(--white);
  background: var(--charcoal);
}

.problem-band article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 22px;
}

.problem-band span {
  color: var(--amber);
  font-weight: 900;
}

.problem-band p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.timeline li {
  position: relative;
  padding: 20px 20px 20px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span,
.feature-grid article p,
.plan p,
.pricing-note,
.footer {
  color: var(--muted);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
}

.feature-intro {
  grid-column: 1 / -1;
  max-width: 820px;
}

.feature-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.pricing {
  background: #edf5ef;
}

.pricing-head {
  margin-bottom: 32px;
}

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

.plan {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan.featured {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.plan.featured p,
.plan.featured span {
  color: rgba(255, 255, 255, 0.74);
}

.plan strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.plan strong span {
  font-size: 0.95rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #d7f2e7;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-note {
  margin: 22px 0 0;
}

.cta-section {
  align-items: stretch;
  color: var(--white);
  background: var(--charcoal);
}

.cta-section .section-kicker {
  color: #e0a04b;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card .button {
  margin-top: 10px;
}

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

.footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 12, 10, 0.44) 0%, rgba(6, 12, 10, 0.9) 64%),
      linear-gradient(90deg, rgba(6, 12, 10, 0.34), rgba(6, 12, 10, 0.34));
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .problem-band,
  .feature-grid,
  .plans,
  .intro-grid,
  .split,
  .pricing-head,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.8rem;
  }
}
