:root {
  color-scheme: light;
  --bg: #f4f2ec;
  --ink: #111713;
  --muted: #5b655d;
  --line: rgba(17, 23, 19, .14);
  --accent: #1f8f69;
  --accent-dark: #126347;
  --soft: #e4efe8;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(20, 30, 24, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img,
.final-cta img {
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(24, 35, 29, .18);
}

.nav-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.primary-cta {
  background: var(--ink);
  color: var(--white);
}

.secondary-cta {
  background: var(--soft);
  color: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 370px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(38px, 7vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244,242,236,.96) 0%, rgba(244,242,236,.84) 40%, rgba(244,242,236,.40) 74%, rgba(244,242,236,.20) 100%),
    linear-gradient(0deg, rgba(244,242,236,.96) 0%, rgba(244,242,236,0) 24%);
}

.hero-copy {
  max-width: 760px;
}

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

h1 {
  max-width: 740px;
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: .94;
  font-weight: 900;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 26px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.22;
  color: #253129;
  font-weight: 650;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.price-note {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.phone-card {
  justify-self: end;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 48px;
  background: linear-gradient(160deg, #16211a, #34443a);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 84px;
  height: 24px;
  margin: 4px auto 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.timer-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.timer-label {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.timer-time {
  font-size: 72px;
  line-height: .9;
  font-weight: 900;
}

.timer-line {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8e2da;
}

.timer-line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.timer-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.problem,
.steps,
.split,
.final-cta,
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px clamp(18px, 4vw, 36px);
}

.problem h2,
.split h2,
.final-cta h2 {
  max-width: 870px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
}

.problem p,
.split p,
.final-cta p {
  max-width: 690px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 600;
}

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

.steps article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.steps h3 {
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.05;
}

.steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split .secondary-cta {
  margin-top: 30px;
}

.final-cta {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding-bottom: 86px;
}

.final-cta h2 {
  margin-top: 6px;
}

.final-cta p {
  max-width: 610px;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.45;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: center;
  padding-top: 26px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 42px 18px 62px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(244,242,236,.96) 0%, rgba(244,242,236,.90) 55%, rgba(244,242,236,.68) 100%);
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-copy p {
    font-size: 21px;
  }

  .phone-card {
    justify-self: center;
    width: min(100%, 318px);
  }

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

  .steps article {
    min-height: 0;
  }

  .problem,
  .steps,
  .split,
  .final-cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (max-width: 440px) {
  .brand span {
    display: none;
  }

  .nav-cta,
  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .site-header .nav-cta {
    width: auto;
  }

  .timer-time {
    font-size: 58px;
  }
}
