:root {
  --green: #0f9d58;
  --green-dark: #087444;
  --green-soft: #e8f7ef;
  --ink: #14221b;
  --muted: #5d6f65;
  --line: #dce8e1;
  --surface: #ffffff;
  --surface-alt: #f6faf8;
  --cream: #fffaf0;
  --shadow: 0 24px 70px rgba(12, 45, 27, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.compact {
  padding-top: 70px;
  padding-bottom: 70px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 232, 225, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.header-nav a:hover {
  color: var(--green-dark);
}

.header-cta {
  padding: 10px 16px;
  color: var(--green-dark);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(15, 157, 88, 0.13), transparent 34%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 76%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 670px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
}

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

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

.subheadline {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(15, 157, 88, 0.28);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button-light {
  color: var(--green-dark);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 12px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--green-soft);
  border-radius: 999px;
}

.hero-media {
  min-width: 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(220, 232, 225, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.48) 44%, transparent 58% 100%);
  transform: translateX(-105%);
  animation: shine 4.8s ease-in-out infinite;
}

.video-shell img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.date-flip {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 232, 225, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(12, 45, 27, 0.12);
}

.date-flip {
  right: 26px;
  top: 28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  border-radius: 8px;
  animation: float 4s ease-in-out infinite;
}

.date-flip strong {
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.date-flip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.urgency {
  padding: 34px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.urgency .section-kicker,
.final-cta .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.urgency h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.urgency p {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.urgency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefits,
.audience {
  background: var(--surface-alt);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card,
.audience-grid article,
.model-board article,
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-card {
  padding: 22px;
}

.benefit-card.highlighted {
  grid-column: 1 / -1;
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-card.highlighted p,
.benefit-card.highlighted .icon {
  color: rgba(255, 255, 255, 0.78);
}

.icon {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.logo-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 16px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 24px;
  text-align: center;
}

.testimonial p {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.testimonial strong {
  color: var(--green-dark);
}

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

.audience-grid article {
  padding: 26px;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.models-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
}

.model-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.model-board article {
  min-height: 170px;
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(15, 157, 88, 0.08), transparent 54%),
    #fff;
}

.model-board span {
  display: block;
  margin-bottom: 46px;
  color: var(--muted);
  font-weight: 800;
}

.model-board strong {
  display: block;
  font-size: 1.45rem;
}

.process {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 36px 0 30px;
  list-style: none;
}

.steps li {
  padding: 22px;
  background: #fff;
  border: 1px solid #efe5cf;
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.center-action {
  justify-content: center;
}

.also-have {
  background: var(--surface-alt);
}

.also-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
}

.also-have .section-heading p:last-of-type {
  margin-bottom: 26px;
}

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

.also-cards article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.also-cards img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.also-cards span {
  display: inline-flex;
  margin: 20px 20px 14px;
  padding: 8px 12px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  background: var(--green-soft);
  border-radius: 999px;
}

.also-cards h3 {
  padding: 0 20px;
}

.also-cards p {
  padding: 0 20px 22px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding: 78px 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #0c4f33, #0f9d58);
}

.final-box {
  max-width: 860px;
  text-align: center;
}

.final-box p:not(.section-kicker) {
  max-width: 660px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.site-footer {
  padding: 24px 0;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-grid a {
  color: var(--green-dark);
  font-weight: 800;
}

@keyframes shine {
  0%,
  46% {
    transform: translateX(-105%);
  }
  72%,
  100% {
    transform: translateX(105%);
  }
}

@keyframes float {
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .hero-grid,
  .split,
  .models-grid,
  .also-grid,
  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .urgency-grid {
    justify-items: start;
  }

  .audience-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-pad {
    padding: 62px 0;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    width: 128px;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-actions .button,
  .center-action .button,
  .urgency .button,
  .final-cta .button {
    width: 100%;
  }

  .benefit-list,
  .audience-grid,
  .model-board,
  .also-cards,
  .steps,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .video-shell img {
    aspect-ratio: 1.12 / 1;
    object-position: 64% center;
  }

  .date-flip {
    right: 20px;
    top: 20px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
