:root {
  --ink: #17362d;
  --ink-soft: #36574d;
  --deep: #0f2f27;
  --leaf: #287c51;
  --leaf-light: #e5f6df;
  --mint: #dff4e4;
  --cream: #fff5d9;
  --paper: #fffdf6;
  --white: #ffffff;
  --gold: #ffbf36;
  --gold-deep: #da8419;
  --coral: #f25a3d;
  --coral-deep: #b63322;
  --line: rgba(23, 54, 45, 0.14);
  --shadow: 0 14px 38px rgba(19, 58, 43, 0.12);
  --shadow-strong: 0 22px 54px rgba(19, 58, 43, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.urgency-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: #ff2c2c;
  color: var(--white);
  font-size: clamp(0.76rem, 2.5vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(179, 51, 34, 0.16);
}

.urgency-bar span {
  color: inherit;
}

#today-date {
  font-weight: 950;
  white-space: nowrap;
}

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

.narrow {
  width: min(840px, calc(100% - 40px));
}

section {
  padding: 72px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, #fffdf6 0%, #eff9e9 64%, #fffdf6 100%);
}

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

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

.section-mint {
  background: linear-gradient(180deg, #f6fff7 0%, var(--mint) 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 1.12rem;
  font-weight: 800;
}

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

h1,
h2,
h3 {
  color: var(--deep);
  line-height: 1.08;
}

h1 {
  max-width: 950px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(2.25rem, 4.6vw, 4.45rem);
  font-weight: 850;
}

h1 strong {
  color: var(--coral);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero {
  padding: 42px 0 46px;
}

.hero-inner {
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.hero-copy {
  padding: 8px 0;
}

.lead {
  margin-bottom: 24px;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  color: var(--ink);
}

.lead strong,
.proof-line strong {
  color: var(--deep);
}

.proof-line {
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 750;
  color: var(--ink);
}

.hero-showcase {
  display: grid;
  gap: 18px;
  align-content: center;
}

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

.benefit-pills span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(15, 47, 39, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 22px rgba(19, 58, 43, 0.08);
  color: var(--deep);
  font-weight: 700;
  text-align: center;
  line-height: 1.12;
}

.benefit-pills small {
  display: block;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.benefit-pills strong {
  display: block;
  color: var(--leaf);
  font-weight: 900;
}

.hero-image {
  width: min(100%, 620px);
  margin-inline: auto;
  border-radius: var(--radius);
  filter: saturate(1.04) contrast(1.02);
  box-shadow: var(--shadow-strong);
}

.button {
  min-height: 58px;
  width: min(100%, 420px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.button:active {
  transform: translateY(5px);
}

.button-primary {
  background: linear-gradient(180deg, var(--coral) 0%, #df4129 100%);
  color: var(--white);
  box-shadow: 0 10px 0 var(--coral-deep), 0 18px 34px rgba(242, 90, 61, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 12px 0 var(--coral-deep), 0 24px 42px rgba(242, 90, 61, 0.34);
}

.button-primary:active {
  box-shadow: 0 5px 0 var(--coral-deep), 0 12px 22px rgba(242, 90, 61, 0.24);
}

.button-secondary {
  background: linear-gradient(180deg, var(--leaf) 0%, #1d6541 100%);
  color: var(--white);
  box-shadow: 0 10px 0 #12472d, 0 18px 34px rgba(29, 101, 65, 0.24);
}

.button-gold {
  background: linear-gradient(180deg, var(--gold) 0%, #f0a51e 100%);
  color: #2d1a05;
  box-shadow: 0 10px 0 var(--gold-deep), 0 18px 34px rgba(255, 191, 54, 0.28);
}

.recipe-strip {
  padding: 24px 0 56px;
}

.strip-track,
.testimonial-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--leaf) transparent;
}

.strip-track img,
.testimonial-strip img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.notice-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(242, 90, 61, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.notice-card h2 {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

.notice-card p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.notice-card .button {
  margin-top: 18px;
}

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

.persona-grid article,
.bonus-grid article,
.product-card,
.plan,
.today-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.persona-grid article {
  padding: 22px 18px;
}

.persona-grid .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 1.4rem;
}

.persona-grid h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.persona-grid p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.today-box {
  width: min(860px, 100%);
  margin: 30px auto 0;
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
}

.today-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  line-height: 1.48;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.today-box .button {
  margin-top: 26px;
}

.product-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
}

.product-media img {
  margin-inline: auto;
  filter: drop-shadow(0 20px 28px rgba(23, 54, 45, 0.16));
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #2b1905;
  font-size: 0.82rem;
  font-weight: 900;
}

.product-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.and-more {
  margin-top: 18px;
  color: var(--leaf);
  font-weight: 900;
}

.bonuses {
  padding-top: 78px;
}

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

.bonus-grid article {
  overflow: hidden;
}

.bonus-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream);
}

.bonus-grid span,
.popular {
  display: inline-flex;
  width: fit-content;
  margin: 18px 18px 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--gold);
  color: #3b2206;
  font-size: 0.78rem;
  font-weight: 900;
}

.bonus-grid h3,
.bonus-grid p {
  padding-inline: 18px;
}

.bonus-grid h3 {
  margin-bottom: 10px;
}

.bonus-grid p {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.testimonials {
  padding-bottom: 80px;
}

.testimonial-strip {
  grid-auto-columns: minmax(260px, 28%);
}

.offer {
  padding-top: 82px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.plan {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.plan h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.plan img {
  margin: 0 auto 24px;
}

.plan .price {
  margin: 26px 0 20px;
  color: var(--coral);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.plan .button {
  display: flex;
  margin-inline: auto;
}

.secure,
.final-call,
.upsell-note,
.limited,
.from-price {
  text-align: center;
}

.secure {
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.upsell-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--leaf-light);
  color: var(--deep);
  font-weight: 700;
}

.upsell-note span {
  text-decoration: underline;
}

.plan-complete {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #143e31 0%, var(--deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.plan-complete h3,
.plan-complete p,
.plan-complete li {
  color: var(--white);
}

.plan-complete .check-list li::before {
  background: var(--gold);
  color: #2b1905;
}

.plan-complete .price {
  color: var(--gold);
}

.plan-complete .popular {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  transform: rotate(2deg);
}

.from-price {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
}

.from-price s {
  color: #ff5b4b;
}

.limited {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 191, 54, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 191, 54, 0.12);
  color: var(--white);
  font-weight: 750;
}

.limited span {
  text-decoration: underline;
}

.final-call {
  color: var(--white);
  font-weight: 800;
}

.payments {
  width: min(440px, 100%);
  margin-top: 24px;
  opacity: 0.96;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.guarantee-grid img {
  margin-inline: auto;
}

.guarantee-grid h2 {
  margin-bottom: 18px;
}

.guarantee-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.guarantee-items span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--deep);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--deep);
  font-weight: 900;
}

.faq-list details[open] summary {
  background: var(--leaf-light);
}

.faq-list details p {
  padding: 0 20px 18px;
  margin-bottom: 0;
}

.faq .button {
  display: flex;
  margin: 28px auto 0;
}

.footer {
  padding: 34px 0;
  background: var(--deep);
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer p:first-child {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-layout,
  .product-card,
  .pricing-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    order: -1;
  }

  .hero-copy {
    text-align: center;
  }

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

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

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

  section {
    padding: 52px 0;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 12px;
  }

  h1 {
    margin-bottom: 26px;
    font-size: clamp(2.05rem, 9.4vw, 2.75rem);
  }

  .hero-layout {
    gap: 26px;
  }

  .lead {
    font-size: 1.08rem;
  }

  .proof-line {
    margin-top: 22px;
  }

  .benefit-pills {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .benefit-pills span {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .button {
    width: 100%;
  }

  .strip-track {
    grid-auto-columns: 78%;
  }

  .recipe-strip {
    padding-top: 12px;
  }

  .notice-card {
    text-align: left;
  }

  .notice-card .button {
    margin-inline: auto;
  }

  .persona-grid,
  .bonus-grid,
  .guarantee-items {
    grid-template-columns: 1fr;
  }

  .product-card,
  .plan,
  .today-box,
  .notice-card {
    padding: 22px 16px;
  }

  .testimonial-strip {
    grid-auto-columns: 82%;
  }

  .plan-complete .popular {
    position: static;
    margin: 0 auto 12px;
    transform: none;
  }

  .payments {
    width: 100%;
  }
}
