:root {
  --bg: #050505;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --soft: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.07);
  --green: #a3e635;
  --cyan: #22d3ee;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}
.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top center, rgba(163,230,53,0.06), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(34,211,238,0.05), transparent 24%),
    var(--bg);
}
.container {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 72px 20px;
  position: relative;
  z-index: 1;
}
.hero {
  padding-top: 96px;
  padding-bottom: 84px;
  text-align: center;
}
.label {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(163,230,53,0.32);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 8vw, 56px);
  line-height: 1.08;
  background: linear-gradient(135deg, #fff 28%, var(--green) 70%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.22;
}
h3 { margin: 0; }
p { margin: 0; }
.hero-text, .section-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.hero-text { margin: 0 0 34px; }
.section-text { margin-bottom: 34px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #050505;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 40px rgba(163,230,53,0.25);
}
#price-buy-cta { scroll-margin-top: 24px; }
.places {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.34);
}
.places span { color: var(--green); }
.divider {
  height: 1px;
  margin: 0 20px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.stack { display: grid; gap: 14px; }
.problem {
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(163,230,53,0.4);
  position: relative;
  flex: 0 0 22px;
  margin-top: 2px;
}
.dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  inset: 0;
  margin: auto;
}
.problem p, .feature p, .review p, .lesson-body li, .result-box p, .included-item span, .price-extra {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature {
  padding: 22px 18px;
  min-height: 172px;
}
.emoji {
  font-size: 24px;
  margin-bottom: 10px;
}
.feature h3 {
  color: var(--green);
  font-size: 13px;
  margin-bottom: 6px;
}
.feature p { font-size: 13px; color: rgba(255,255,255,0.5); }
.lesson-card { overflow: hidden; margin-bottom: 16px; }
.lesson-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px 16px;
  background: linear-gradient(135deg, rgba(163,230,53,0.07), rgba(34,211,238,0.04));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lesson-num {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(163,230,53,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 2px;
}
.lesson-head h3 { font-size: 17px; margin-bottom: 4px; }
.lesson-head p { color: rgba(255,255,255,0.45); font-size: 13px; }
.lesson-body { padding: 20px 24px; }
.mini-label {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lesson-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}
.lesson-body li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}
.lesson-body li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green);
  font-size: 10px;
}
.result-box {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(163,230,53,0.15);
  background: linear-gradient(135deg, rgba(163,230,53,0.08), rgba(34,211,238,0.05));
}
.included-list { display: grid; gap: 2px; }
.included-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.icon-box, .avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(163,230,53,0.08);
  flex: 0 0 40px;
}
.included-item strong {
  margin-left: auto;
  color: var(--green);
}
.review { padding: 22px; }
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(163,230,53,0.3), rgba(34,211,238,0.3));
  font-weight: 700;
}
.review h3 { font-size: 15px; margin-bottom: 2px; }
.review-top p { color: var(--green); font-size: 12px; }
.stars { margin-left: auto; color: var(--green); font-size: 12px; }
.reviews-gallery {
  width: min(100%, 460px);
}
.review-shots {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.shot-card {
  margin: 0;
  padding: 8px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.countdown-box {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown b {
  display: inline-flex;
  min-width: 44px;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--green);
  font-size: 16px;
  background: rgba(163,230,53,0.1);
  border: 1px solid rgba(163,230,53,0.25);
  font-variant-numeric: tabular-nums;
}
.countdown em { color: rgba(163,230,53,0.55); font-style: normal; }
.price-box {
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(163,230,53,0.2);
  background: linear-gradient(135deg, rgba(163,230,53,0.07), rgba(34,211,238,0.05));
}
.old-price {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.new-price {
  margin-bottom: 8px;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-note {
  margin-bottom: 26px;
  color: rgba(255,255,255,0.42);
}
.price-extra {
  margin-top: 18px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.cta-box {
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid rgba(163,230,53,0.2);
  background: linear-gradient(135deg, rgba(163,230,53,0.07), rgba(34,211,238,0.05));
}
.cta-box .section-text { margin-bottom: 28px; }
.footer {
  padding: 32px 24px 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer > p, .footer small, .footer a { color: rgba(255,255,255,0.22); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}
.footer a { text-decoration: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}
.orb-1 {
  width: 300px;
  height: 300px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(163,230,53,0.06), transparent 70%);
}
.orb-2 {
  width: 240px;
  height: 240px;
  right: -60px;
  top: 520px;
  background: radial-gradient(circle, rgba(34,211,238,0.05), transparent 70%);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 420px) {
  .grid.two { grid-template-columns: 1fr; }
  .countdown-box { flex-direction: column; }
  .new-price { font-size: 44px; }
}
