@font-face {
  font-family: "Inter";
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  src: url("assets/1bffadaabf893a1e-s.p.16ipb6fqu393i.woff2") format("woff2");
}

:root {
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --paper: #f7f7f4;
  --line: #e5e2dc;
  --green: #25bd59;
  --green-dark: #1fa84d;
  --forest: #09231f;
  --forest-deep: #06201d;
  --red: #dc2626;
  --pink: #e56284;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 14px 32px rgba(37, 189, 89, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 768px);
  margin-inline: auto;
}

.hero,
.cta {
  color: var(--white);
  background: var(--forest);
}

.hero-inner {
  padding-block: clamp(64px, 10vw, 96px);
  text-align: center;
}

.countdown-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.countdown-card p,
.price p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.countdown-unit {
  min-width: 36px;
  text-align: center;
}

.countdown-unit strong {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1;
}

.countdown-unit small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-divider {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 20px;
}

.eyebrow,
.content-badge,
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #e8f9ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(37, 189, 89, 0.3);
  background: rgba(37, 189, 89, 0.15);
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  animation: pulse 2s infinite;
}

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

h1 {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 20px;
  font-size: clamp(40px, 8vw, 60px);
  line-height: 1.04;
}

h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 576px;
  margin-inline: auto;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(18px, 3vw, 20px);
  line-height: 1.65;
}

.hero-note {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.4);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 28px;
}

.price s {
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 20px;
  font-weight: 400;
}

.price span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.section {
  padding-block: clamp(64px, 9vw, 80px);
  border-top: 1px solid var(--line);
}

.section-white {
  background: var(--white);
}

.section h2,
.cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.15;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 40px;
  color: var(--muted);
  line-height: 1.65;
}

.section-intro strong,
.section-strong {
  color: var(--ink);
  font-weight: 700;
}

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

.feature-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 160ms ease;
}

.feature-card:hover {
  border-color: rgba(37, 189, 89, 0.5);
}

.feature-card h3,
.risk-card h3 {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.feature-card p,
.risk-card p,
.accordion-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.check-icon,
.chapter-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f9ef;
  color: var(--green);
}

.icon {
  width: 18px;
  height: 18px;
}

.badge,
.tag {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.badge-optional {
  color: #4f46e5;
  background: #eef2ff;
}

.badge-gift {
  color: #c2410c;
  background: #fff7ed;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-marker span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.timeline-marker i {
  width: 1px;
  height: 32px;
  margin-top: 4px;
  background: var(--line);
}

.timeline-item h3 {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 14px;
}

.timeline-item.is-urgent .timeline-marker span {
  background: var(--red);
}

.timeline-item.is-urgent h3 {
  color: var(--red);
}

.timeline-item p {
  margin-bottom: 28px;
  line-height: 1.45;
}

.risk-list {
  display: grid;
  gap: 16px;
}

.risk-card {
  padding: 20px;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  background: #fff5f5;
}

.risk-card h3 {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--red);
}

.risk-card .icon {
  flex: 0 0 auto;
  margin-top: 1px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 64px);
  margin-bottom: 48px;
  text-align: center;
  flex-wrap: wrap;
}

.stats strong {
  display: block;
  color: var(--green);
  font-size: 40px;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

.centered-heading {
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
}

.content-badge,
.availability {
  margin-bottom: 16px;
  padding: 7px 14px;
}

.content-badge .icon {
  width: 14px;
  height: 14px;
}

.centered-heading p,
.cta p {
  color: var(--muted);
  line-height: 1.6;
}

.category-title {
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-title.with-space {
  margin-top: 32px;
}

.accordion-list {
  display: grid;
  gap: 8px;
}

.accordion-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.accordion-card:hover,
.accordion-card.is-open {
  border-color: rgba(37, 189, 89, 0.65);
}

.accordion-card.is-open {
  box-shadow: 0 8px 20px rgba(37, 189, 89, 0.12);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  text-align: left;
}

.accordion-card.is-open .chapter-icon {
  color: var(--white);
  background: var(--green);
}

.chapter-copy {
  min-width: 0;
  flex: 1;
}

.chapter-kicker,
.chapter-title {
  display: block;
}

.chapter-kicker {
  margin-bottom: 2px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chapter-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.chevron {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: rotate 180ms ease, color 180ms ease;
}

.accordion-card.is-open .chevron {
  color: var(--green);
  rotate: 180deg;
}

.accordion-panel {
  padding: 0 20px 20px 74px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  margin-left: 0;
  border-radius: 8px;
  color: var(--green);
  background: #e8f9ef;
  font-size: 12px;
}

.tag-warn {
  color: var(--red);
  background: #fee2e2;
}

.cta-inner {
  max-width: 672px;
  padding-block: 72px;
  text-align: center;
}

.cta .availability {
  background: rgba(37, 189, 89, 0.15);
}

.cta p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.lead-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
  padding: 12px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 189, 89, 0.1);
}

.lead-form .consent-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-form .consent-label span {
  display: inline;
  margin-bottom: 0;
}

.lead-form .consent-label a {
  color: var(--red);
}

.lead-form .consent-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  accent-color: var(--green);
}

.lead-form .button {
  width: max-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

footer {
  padding-block: 32px;
  color: rgba(255, 255, 255, 0.3);
  background: var(--forest-deep);
  text-align: center;
}

footer p {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.6;
}

footer p:last-child {
  color: rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 768px);
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-block: 56px;
  }

  .price-row {
    flex-direction: column;
  }

  .accordion-trigger {
    align-items: flex-start;
    padding: 16px;
  }

  .accordion-panel {
    padding: 0 16px 18px 70px;
  }

  .lead-form .button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .countdown {
    gap: 6px;
  }

  .countdown-unit {
    min-width: 30px;
  }

  .feature-card {
    padding: 16px;
  }

  .badge {
    margin-top: 6px;
    margin-left: 0;
  }
}
