:root {
  --bg: #060D08;
  --bg-deep: #030603;
  --card: #0C1C10;
  --card-hi: #122A18;
  --border: rgba(0, 255, 71, 0.14);
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.66);
  --ink-dim: rgba(255, 255, 255, 0.42);
  --green: #00FF47;
  --green-deep: #00B833;
  --gold: #FFD700;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
main { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 76px 0; }
h1, h2 { font-weight: 800; letter-spacing: -0.5px; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 22px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.2px; font-size: 18px; text-decoration: none; color: var(--ink); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #04150A; text-decoration: none;
  padding: 9px 18px; border-radius: 100px; font-weight: 800; font-size: 13px;
}

/* Hero */
.hero { padding: 36px 0 60px; text-align: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,255,71,0.10); color: var(--green);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.6px;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
  border: 1px solid var(--border);
}
h1 {
  font-size: clamp(32px, 5.8vw, 56px);
  line-height: 1.1; letter-spacing: -0.5px;
  margin-bottom: 20px;
}
h1 em { color: var(--green); font-style: normal; }
.hero-sub {
  color: var(--ink-soft); font-size: clamp(16px, 2.2vw, 19px);
  max-width: 600px; margin: 0 auto 34px; font-weight: 400;
}
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #04150A; text-decoration: none;
  padding: 15px 28px; border-radius: 16px; font-weight: 800; font-size: 16px;
  box-shadow: 0 14px 30px -10px rgba(0,255,71,0.4);
}
.btn-store svg { width: 20px; height: 20px; }
.coming-soon-note { color: var(--ink-dim); font-size: 13px; }
.rating-note { color: var(--ink-dim); font-size: 13px; }

.hero-showcase {
  margin-top: 56px; display: flex; justify-content: center; gap: 18px;
  overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x proximity;
}
.hero-showcase a { flex-shrink: 0; scroll-snap-align: center; }
.hero-showcase img {
  width: 210px; border-radius: 18px; border: 1px solid var(--border);
  box-shadow: 0 18px 40px -18px rgba(0,255,71,0.25);
  object-fit: cover;
}

.trust-strip {
  margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 28px; padding-top: 28px; border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.trust-icon { font-size: 15px; }

/* Before/after highlight */
.ba-wrap { display: flex; justify-content: center; align-items: flex-end; gap: 20px; margin: 40px auto 0; max-width: 560px; }
.ba-item { text-align: center; }
.ba-item.ba-before img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); }
.ba-item.ba-after img { width: 220px; border-radius: 18px; object-fit: cover; aspect-ratio: 3/4; border: 1px solid var(--border); box-shadow: 0 24px 50px -20px rgba(0,255,71,0.3); }
.ba-arrow { color: var(--green); font-size: 24px; align-self: center; margin-bottom: 40px; }
.ba-label { display: block; margin-top: 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-dim); }

/* Section headers */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.kicker {
  color: var(--green); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.5px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* Screens gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { text-align: center; }
.gallery-item a { display: block; text-decoration: none; color: inherit; }
.gallery-item img { border-radius: 16px; border: 1px solid var(--border); margin-bottom: 12px; width: 100%; height: auto; }
.gallery-item span { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 20px; }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(0,255,71,0.12);
  color: var(--green); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(0,255,71,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); font-size: 18px; font-weight: 800;
}
.feature h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.feature p { color: var(--ink-soft); font-size: 14px; }

/* Club grid */
.league-group { margin-bottom: 36px; }
.league-group h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 16px; }
.club-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.club-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: flex; gap: 14px; align-items: center; }
.club-badge {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #04150A;
}
.club-card h4 { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.club-card p { font-size: 11px; color: var(--ink-dim); line-height: 1.4; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; text-align: center; }
.price-card.featured { border-color: rgba(0,255,71,0.4); background: rgba(0,255,71,0.06); }
.price-card .badge { display: inline-block; background: var(--gold); color: #04150A; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.price-card h3 { font-size: 15px; font-weight: 800; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.price-card .amount { font-size: 30px; font-weight: 800; margin-bottom: 4px; color: var(--green); }
.price-card .period { color: var(--ink-dim); font-size: 13px; margin-bottom: 16px; }
.price-card p.desc { color: var(--ink-soft); font-size: 13px; }
.credit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.credit-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 14px; text-align: center; }
.credit-card .amt { font-size: 22px; font-weight: 800; color: var(--gold); }
.credit-card .lbl { font-size: 11px; color: var(--ink-dim); margin-top: 4px; }

/* Privacy strip */
.privacy-strip { background: rgba(0,255,71,0.06); border: 1px solid rgba(0,255,71,0.2); color: var(--ink); border-radius: 24px; padding: 44px; text-align: center; }
.privacy-strip h2 { color: var(--ink); font-size: 26px; margin-bottom: 10px; }
.privacy-strip p { color: var(--ink-soft); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 15px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--ink-soft); margin-bottom: 30px; }

footer { border-top: 1px solid var(--border); padding: 36px 20px; text-align: center; }
footer .links { display: flex; justify-content: center; gap: 22px; margin-bottom: 16px; flex-wrap: wrap; }
footer a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--green); }
footer .copy { color: var(--ink-dim); font-size: 13px; }

/* Blog list */
.blog-cats { display: flex; flex-direction: column; gap: 44px; }
.blog-cat h2 { font-size: 20px; margin-bottom: 18px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.post-card img { width: 100%; height: 140px; object-fit: cover; }
.post-card .pc-body { padding: 16px; }
.post-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; line-height: 1.35; }
.post-card p { color: var(--ink-soft); font-size: 13px; }

/* Blog post detail */
.post-hero { padding: 12px 0 20px; }
.post-hero-img { max-width: 560px; margin: 0 auto 32px; }
.post-hero-img img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); }
.post-title { max-width: 720px; margin: 0 auto 28px; }
.post-title h1 { font-size: clamp(26px, 4.4vw, 40px); }
.post-body { max-width: 720px; margin: 0 auto 40px; color: var(--ink); font-size: 16px; line-height: 1.8; }
.post-body > p.intro { font-size: 18px; color: var(--ink-soft); margin-bottom: 8px; }
.post-body h3 { font-size: 19px; font-weight: 800; margin: 30px 0 10px; color: var(--ink); }
.post-body p { margin-bottom: 6px; }
.post-body ul, .post-body ol { margin: 4px 0 14px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--green); }
.post-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.related-posts { max-width: 720px; margin: 0 auto; }
.related-posts h2 { font-size: 20px; margin-bottom: 16px; }

/* Detail pages (screens) */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin: 8px 0 28px; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.6; }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

.detail-hero { padding: 12px 0 20px; }
.detail-image { max-width: 380px; margin: 0 auto 32px; }
.detail-image img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--border); box-shadow: 0 28px 64px -28px rgba(0,255,71,0.25); }
.detail-title { text-align: center; margin-bottom: 28px; }
.detail-title .kicker { justify-content: center; }
.detail-title h1 { font-size: clamp(28px, 4.6vw, 42px); }
.detail-caption { max-width: 680px; margin: 0 auto 36px; color: var(--ink); font-size: 16px; line-height: 1.8; }
.detail-caption p + p { margin-top: 14px; }
.detail-caption ul { margin: 10px 0; padding-left: 22px; }
.detail-caption li { margin-bottom: 8px; }
.detail-cta { text-align: center; margin-bottom: 20px; }

.related-head { text-align: center; margin: 8px 0 24px; }
.related-head .kicker { justify-content: center; }

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .credit-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .club-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .club-grid { grid-template-columns: 1fr; }
  .ba-wrap { flex-direction: column; }
  section { padding: 56px 0; }
}
