/* ── Variables ───────────────────────────────── */
:root {
  --bg:          #0A0A0F;
  --bg-card:     #14141E;
  --bg-card2:    #1A1A28;
  --border:      rgba(255,255,255,.07);
  --green:       #22C55E;
  --green-light: #4ADE80;
  --yellow:      #EAB308;
  --text-main:   #F0F0F0;
  --text-muted:  #9CA3AF;
  --text-soft:   #6B7280;
  --radius:      1rem;
  --radius-lg:   1.5rem;
  --radius-xl:   2rem;
  --max-w:       640px;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(34,197,94,.2); }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 64px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(34,197,94,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(234,179,8,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* ── Channel preview card ────────────────────── */
.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 999px;
}
.channel-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
}
.channel-info {
  text-align: left;
}
.channel-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}
.channel-meta {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.channel-badge {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  font-size: .75rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: .04em;
  flex-shrink: 0;
}

/* ── Hero text ───────────────────────────────── */
.hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.accent {
  background: linear-gradient(135deg, var(--green-light), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
}

/* ── CTA Button ──────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green), #16a34a 50%, var(--green));
  background-size: 200% auto;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 44px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background-position .4s;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(34,197,94,.25);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(34,197,94,.45), 0 12px 32px rgba(0,0,0,.4);
  background-position: right center;
}
.btn-cta--large {
  font-size: 1.1rem;
  padding: 20px 52px;
}
.btn-icon {
  font-size: 1.1rem;
}
.btn-note {
  font-size: .8rem;
  color: var(--text-soft);
  margin-top: -12px;
}

/* ── Sections ────────────────────────────────── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 0;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

/* ── Perks grid ──────────────────────────────── */
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.perk-card {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .25s, transform .25s;
}
.perk-card:hover {
  border-color: rgba(34,197,94,.25);
  transform: translateY(-2px);
}
.perk-icon {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 10px;
}
.perk-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}
.perk-text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Quote ───────────────────────────────────── */
.quote-section {
  padding: 64px 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.quote-inner {
  position: relative;
  padding: 32px 32px 32px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,.15);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-lg);
}
.quote-mark {
  position: absolute;
  top: 12px; left: 16px;
  font-size: 3.5rem;
  color: var(--green);
  opacity: .15;
  line-height: 1;
  font-style: normal;
}
.quote-text {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
}

/* ── Checklist ───────────────────────────────── */
.list-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .97rem;
  color: var(--text-main);
  line-height: 1.65;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.list-checks li:hover { border-color: rgba(34,197,94,.2); }
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── About card ──────────────────────────────── */
.about-card {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.about-card strong { color: var(--text-main); }

/* ── CTA section ─────────────────────────────── */
.cta-section {
  position: relative;
  max-width: var(--max-w);
  margin: 64px auto 0;
  padding: 56px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(34,197,94,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.cta-sub {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}
.footer-brand {
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--green);
  cursor: default;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  transition: color .25s;
}
.footer-links a:hover { color: var(--green); }
.footer-copy {
  font-size: .72rem;
  color: rgba(156,163,175,.3);
  text-align: center;
}

/* ── Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ──────────────────────────────────── */
@media (max-width: 500px) {
  .perks-grid { grid-template-columns: 1fr; }
  .channel-card { border-radius: var(--radius-lg); }
  .btn-cta, .btn-cta--large { width: 100%; }
  .quote-inner { padding: 28px 24px 28px 32px; }
  .about-card { padding: 24px 20px; }
  .cta-section { padding: 40px 20px; }
}
