/* hero */
.landing .hero { padding: 56px 0 56px; border-bottom: 1px solid rgba(21, 57, 31, 0.18); display: grid; grid-template-columns: 1fr; gap: 36px; }
.landing .hero .hero-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #c8401a; margin-bottom: 22px; }
.landing .hero .hero-heading { font-size: 46px; font-weight: 800; letter-spacing: -1px; text-transform: uppercase; line-height: 0.98; color: #15391f; }
.landing .hero .hero-lede { font-size: 19px; line-height: 1.5; color: #3d4a39; max-width: 520px; margin-top: 24px; }
.landing .hero .hero-sub { font-size: 15px; line-height: 1.65; color: #63654c; max-width: 480px; margin-top: 14px; }
.landing .hero .hero-cta { margin-top: 32px; }
.landing .hero .hero-stats { background: #15391f; padding: 30px 28px; display: flex; flex-direction: column; justify-content: center; gap: 22px; align-self: stretch; }
.landing .hero .hero-stat { border-bottom: 1px solid rgba(243, 233, 210, 0.25); padding-bottom: 18px; }
.landing .hero .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.landing .hero .hero-stat-number { font-size: 34px; font-weight: 800; letter-spacing: -1px; color: #e3a72f; line-height: 1; }
.landing .hero .hero-stat-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #d9c9a3; margin-top: 7px; }

/* shared section bits */
.landing .section-heading { font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: #15391f; margin-bottom: 26px; display: flex; align-items: center; gap: 14px; }
.landing .section-heading::after { content: ""; flex: 1; height: 1px; background: rgba(21, 57, 31, 0.18); }
.landing .about, .landing .how-to, .landing .challenges, .landing .faq { padding: 54px 0 0; }

/* about */
.landing .about .about-text { max-width: 680px; }
.landing .about .about-text p { margin-bottom: 16px; color: #3d4a39; font-size: 16px; line-height: 1.75; }
.landing .about .about-text p:first-child { font-size: 18px; line-height: 1.65; }
.landing .about .about-text strong { color: #15391f; }

/* how to play: numbered editorial rows */
.landing .how-to .how-to-steps { max-width: 680px; }
.landing .how-to .how-to-step { display: flex; gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(21, 57, 31, 0.18); }
.landing .how-to .how-to-step:first-child { border-top: 1px solid rgba(21, 57, 31, 0.18); }
.landing .how-to .step-number { flex-shrink: 0; width: 64px; font-size: 15px; color: #c8401a; padding-top: 2px; }
.landing .how-to .step-title { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #15391f; margin-bottom: 4px; }
.landing .how-to .step-text { font-size: 14px; line-height: 1.65; color: #63654c; }

/* challenges */
.landing .challenges .challenges-list { max-width: 680px; }
.landing .challenges .challenge-item { display: flex; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(21, 57, 31, 0.18); font-size: 15px; color: #3d4a39; }
.landing .challenges .challenge-marker { flex-shrink: 0; width: 8px; height: 8px; background: #c8401a; }

/* faq */
.landing .faq .faq-list { max-width: 680px; border-top: 1px solid rgba(21, 57, 31, 0.18); }
.landing .faq .faq-item { border-bottom: 1px solid rgba(21, 57, 31, 0.18); }
.landing .faq .faq-question-row { display: block; }
.landing .faq .faq-question { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 2px; font-size: 15px; font-weight: 700; color: #15391f; cursor: pointer; }
.landing .faq .faq-question:hover { color: #c8401a; }
.landing .faq .faq-toggle { flex-shrink: 0; position: relative; width: 14px; height: 14px; }
.landing .faq .faq-toggle::before { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 2px; background: #c8401a; }
.landing .faq .faq-toggle::after { content: ""; position: absolute; left: 6px; top: 0; width: 2px; height: 14px; background: #c8401a; transition: transform 0.2s ease; }
.landing .faq .faq-item.open .faq-toggle::after { transform: scaleY(0); }
.landing .faq .faq-answer { display: none; padding: 0 2px 18px; }
.landing .faq .faq-answer p { font-size: 14px; line-height: 1.7; color: #63654c; max-width: 560px; }
.landing .faq .faq-item.open .faq-answer { display: block; }

/* closing */
.landing .closing { margin-top: 64px; text-align: center; background: #15391f; padding: 52px 24px; }
.landing .closing .closing-heading { font-size: 28px; font-weight: 800; letter-spacing: -1px; text-transform: uppercase; color: #f3e9d2; }
.landing .closing .closing-text { font-size: 16px; color: #d9c9a3; margin-top: 10px; }
.landing .closing .closing-cta { margin-top: 26px; }

@media (min-width: 768px) {
  .landing .hero { padding: 76px 0 64px; grid-template-columns: 1fr 280px; gap: 48px; align-items: center; }
  .landing .hero .hero-heading { font-size: 64px; }
  .landing .about, .landing .how-to, .landing .challenges, .landing .faq { padding-top: 64px; }
}
@media (min-width: 1024px) {
  .landing .hero .hero-heading { font-size: 76px; }
}
