/* ============================================================
   MONEY SKILLS — MAIN STYLESHEET
   Palette: Orange × White × Black
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --orange:      #FF6B00;
  --orange-dim:  #E05500;
  --orange-light:#FFF0E6;
  --orange-mid:  #FFB380;

  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --white:       #FFFFFF;
  --gray-50:     #F8F8F8;
  --gray-100:    #F0F0F0;
  --gray-200:    #E0E0E0;
  --gray-400:    #9A9A9A;
  --gray-600:    #555555;

  --bg:          #FFFFFF;
  --bg-alt:      #F8F8F8;
  --bg-dark:     #0A0A0A;
  --bg-card:     #FFFFFF;
  --bg-card-dark:#111111;

  --border:      rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.1);
  --border-orange: rgba(255,107,0,0.3);

  --text:        #0A0A0A;
  --text-muted:  #555555;
  --text-dim:    #9A9A9A;
  --text-white:  #FFFFFF;

  --shadow-orange: 0 4px 24px rgba(255,107,0,0.25);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.08);
  --shadow-card-lg:0 8px 40px rgba(0,0,0,0.12);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-pill: 999px;

  --font-main: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 68px;
  --container: 1200px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 20px;
}
.section__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--black);
}
.section__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* dark section overrides */
.section--dark .section__label { color: var(--orange); border-color: var(--orange); }
.section--dark .section__title { color: var(--white); }
.section--dark .section__sub   { color: rgba(255,255,255,0.6); }

/* ── HIGHLIGHTS ──────────────────────────────────────────── */
.highlight--green  { color: var(--orange); }
.highlight--pink   { color: var(--orange); }
.highlight--yellow { color: var(--orange); }
.highlight--red    { color: var(--orange); }
.highlight--purple { color: var(--orange); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.35);
}
.btn--neon {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn--neon:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn--xl { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.pulse-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,107,0,0.3); }
  50%       { box-shadow: 0 4px 40px rgba(255,107,0,0.55); }
}

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.badge--glow {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
.logo-text strong { color: var(--orange); }
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--black); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}
.blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: float1 8s ease-in-out infinite;
}
.blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FF6B00 0%, transparent 70%);
  top: 100px; right: -150px;
  opacity: 0.1;
  animation: float2 10s ease-in-out infinite;
}
.blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #FFB380 0%, transparent 70%);
  bottom: -100px; left: 30%;
  opacity: 0.15;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-30px, 40px) scale(1.05); }
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 620px;
}
.hero__badge {
  margin-bottom: 24px;
}
.hero__headline {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--black);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--black); }

.hero__bullets {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 36px;
  list-style: none;
  flex-wrap: wrap;
}
.hero__bullets li {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  flex: 1;
  min-width: 140px;
  line-height: 1.5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s ease;
}
.hero__bullets li:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.hero__bullets li .bullet-icon {
  font-size: 1.4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat__num {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* XP Bar */
.xp-bar {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 420px;
}
.xp-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}
.xp-bar__level { color: var(--orange); }
.xp-bar__track {
  height: 10px;
  background: var(--gray-200);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.xp-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #FF9A4D);
  border-radius: var(--radius-pill);
  position: relative;
  transition: width 1.5s ease;
}
.xp-bar__glow {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
}
.xp-bar__hint {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── Phone Mockup ────────────────────────────────────────── */
.hero__phone {
  position: relative;
  flex-shrink: 0;
}
.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--black-2);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.2),
    0 32px 80px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: var(--radius-pill);
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tiktok-feed {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.tiktok-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 16px 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.tiktok-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.tiktok-card__bg {
  position: absolute;
  inset: 0;
}
.tiktok-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 48px;
}
.tiktok-avatar {
  font-size: 3rem;
  margin-bottom: 12px;
}
.tiktok-card__content h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.tiktok-card__content h3 em {
  font-style: normal;
  color: var(--orange);
}
.tiktok-card__content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.tiktok-actions {
  position: absolute;
  right: 12px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}
.tiktok-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 1.3rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.tiktok-action span {
  font-size: 0.6rem;
  font-weight: 700;
}
.tiktok-progress {
  position: relative;
  z-index: 3;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin-bottom: 4px;
}
.tiktok-progress__fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
}
.tiktok-meta {
  position: relative;
  z-index: 3;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.phone-nav-bar {
  height: 52px;
  background: rgba(10,10,10,0.98);
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,107,0,0.2);
}
.float-badge--1 { top: 60px; left: -90px; }
.float-badge--2 { top: 180px; right: -80px; }
.float-badge--3 { bottom: 120px; left: -100px; }

.bounce-slow { animation: bounceSlow 3s ease-in-out infinite; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  z-index: 1;
}
.scroll-hint__arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ══════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.ticker {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.ticker span strong { color: var(--orange); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker { animation-play-state: paused; }

/* ══════════════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════════════ */
.problem { background: var(--gray-50); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.problem-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.problem-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.problem-card__bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 8px;
}
.problem-card__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #FF9A4D);
  border-radius: var(--radius-pill);
  transition: width 1.5s ease;
}
.problem-card__stat {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
}
.problem__cta {
  text-align: center;
}
.problem__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how { background: var(--white); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}
.step { flex: 1; position: relative; }
.step__number {
  font-family: var(--font-main);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}
.step__card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}
.step__card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.step__icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border: 1.5px solid var(--border-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.step__card h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.step__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.step__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-orange);
}
.step__types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.type-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.type-badge--green  { background: var(--orange-light); color: var(--orange); }
.type-badge--purple { background: var(--orange-light); color: var(--orange-dim); }
.type-badge--pink   { background: #fff0e0; color: #cc5500; }
.type-badge--yellow { background: #fff8e0; color: #996600; }
.step__levels {
  display: flex;
  gap: 6px;
  align-items: center;
}
.level {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  color: var(--text-dim);
}
.level--done   { background: var(--orange); border-color: var(--orange); color: #fff; }
.level--active {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
  animation: levelPulse 2s ease-in-out infinite;
}
.level--locked { opacity: 0.4; }
@keyframes levelPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(255,107,0,0); }
}
.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-top: 80px;
  flex-shrink: 0;
  width: 48px;
}
.connector-arrow { font-size: 1.5rem; color: var(--gray-400); }
.how__cta { text-align: center; }

/* ══════════════════════════════════════════════════════════
   TEST SECTION
══════════════════════════════════════════════════════════ */
.test-section { background: var(--black); }
.test-section .section__label { color: var(--orange); border-color: var(--orange); }
.test-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid rgba(255,107,0,0.3);
}
.test-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.test-card__left {
  padding: 56px 48px;
  background: var(--black-2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.test-card__left h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.test-card__left h2 .highlight--yellow { color: var(--orange); }
.test-card__left p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.test-types {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.test-type {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.test-type:hover { border-color: var(--orange); color: var(--orange); }
.test-type__emoji { font-size: 1.4rem; }
.test-card__right {
  padding: 56px 48px;
  background: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quiz Preview */
.quiz-preview {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 320px;
}
.quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.quiz-progress-dots { display: flex; gap: 6px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.dot--done   { background: var(--orange); }
.dot--active { background: var(--orange); animation: levelPulse 1.5s ease-in-out infinite; }
.quiz-step { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.quiz-q {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
  color: var(--white);
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.quiz-option {
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.quiz-option:hover { border-color: var(--orange); color: var(--white); }
.quiz-option--selected {
  background: rgba(255,107,0,0.12);
  border-color: var(--orange);
  color: var(--orange);
  font-weight: 600;
}
.quiz-footer { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; }
.quiz-xp { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════════════
   LESSONS
══════════════════════════════════════════════════════════ */
.lessons { background: var(--gray-50); }
.lessons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.lesson-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.lesson-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lg);
  border-color: var(--orange);
}
.lesson-card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.lesson-card__hot-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 10;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.lesson-card__thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.lesson-card__thumb:hover .lesson-card__play { transform: translate(-50%, -50%) scale(1.15); }
.lesson-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-orange);
}
.lesson-card__duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.lesson-card__emoji { font-size: 4rem; opacity: 0.35; }
.lesson-card__body { padding: 20px; }
.lesson-card__tags {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--orange-light);
  color: var(--orange);
}
.tag--pink   { background: #fff0e0; color: var(--orange-dim); }
.tag--purple { background: #fff0e0; color: #cc4400; }
.lesson-card__body h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--black);
}
.lesson-card__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.lesson-card__stats {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.lessons__more {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lessons__more p { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════════════ */
.products { background: var(--white); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-lg);
}
.product-card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  background: #FFFAF7;
}
.product-card__popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  white-space: nowrap;
}
.product-card__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 20px;
}
.product-card__badge--glow {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}
.product-card__visual {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  min-height: 160px;
  align-items: center;
}

/* 3D Book */
.book-3d {
  display: flex;
  transform-style: preserve-3d;
  transform: perspective(400px) rotateY(-20deg);
  transition: transform 0.4s ease;
}
.product-card:hover .book-3d { transform: perspective(400px) rotateY(-8deg); }
.book-3d__front {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, var(--black), var(--black-3));
  border-radius: 4px 12px 12px 4px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.book-3d__title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.book-3d__sub { font-size: 0.6rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.book-3d__decor { font-size: 1.8rem; }
.book-3d__spine {
  width: 18px;
  height: 160px;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border-radius: 4px 0 0 4px;
  order: -1;
}

/* Course preview */
.course-preview { width: 100%; }
.course-modules { display: flex; flex-direction: column; gap: 8px; }
.module {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.module--done   { background: #FFFAF7; border-color: rgba(255,107,0,0.2); color: var(--black); }
.module--active { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
.module__icon  { font-size: 1rem; }
.module__check { color: var(--orange); margin-left: auto; font-weight: 700; }
.module__progress { color: var(--orange); margin-left: auto; font-size: 0.75rem; font-weight: 700; }
.module__lock  { color: var(--text-dim); margin-left: auto; }

/* Bundle visual */
.bundle-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 3.5rem;
}
.bundle-plus { font-size: 1.5rem; color: var(--text-dim); font-weight: 700; }
.bundle-emoji--glow {
  filter: drop-shadow(0 0 12px rgba(255,107,0,0.5));
  animation: glow-emoji 2s ease-in-out infinite;
}
@keyframes glow-emoji {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,107,0,0.4)); }
  50%       { filter: drop-shadow(0 0 20px rgba(255,107,0,0.7)); }
}

/* Product content */
.product-card__content h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}
.product-card__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.product-features li { font-size: 0.875rem; color: var(--text-muted); }
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.price__old  { font-size: 1rem; color: var(--text-dim); text-decoration: line-through; }
.price__new  { font-family: var(--font-main); font-size: 2rem; font-weight: 900; color: var(--black); }
.price__note { font-size: 0.75rem; color: var(--orange); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   GAMIFICATION
══════════════════════════════════════════════════════════ */
.gamification { background: var(--black); }
.gamification .section__label { color: var(--orange); border-color: var(--orange); }
.gamification .section__title { color: var(--white); }
.gamification .section__title .highlight--yellow { color: var(--orange); }
.game-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-feature {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.game-feature:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.game-feature__icon { font-size: 3rem; margin-bottom: 16px; }
.game-feature h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.game-feature p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }

.streak-display { display: flex; gap: 8px; justify-content: center; }
.streak-day {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  color: rgba(255,255,255,0.3);
}
.streak-day--done   { background: var(--orange); border-color: var(--orange); color: #fff; }
.streak-day--active { background: rgba(255,107,0,0.15); border-color: var(--orange); color: var(--orange); animation: levelPulse 1.5s ease-in-out infinite; }

.level-display { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.level-item { padding: 8px 14px; border-radius: var(--radius-md); font-size: 0.8rem; color: rgba(255,255,255,0.25); border: 1px solid transparent; }
.level-item--done   { color: rgba(255,255,255,0.5); }
.level-item--active { background: rgba(255,107,0,0.1); border-color: var(--orange); color: var(--orange); font-weight: 700; }

.badges-display { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.achievement-badge {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  width: 64px; height: 72px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 1.6rem; padding: 8px 4px;
  color: var(--text-dim);
  transition: all 0.2s; opacity: 0.4;
}
.achievement-badge span { font-size: 0.55rem; font-weight: 600; color: rgba(255,255,255,0.4); }
.achievement-badge.achieved {
  opacity: 1;
  border-color: rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.06);
}
.achievement-badge.achieved span { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════════
   CTA BLOCK
══════════════════════════════════════════════════════════ */
.cta-section { background: var(--gray-50); }
.cta-block {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(255,107,0,0.2);
}
.cta-block__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}
.cta-blob--1 { width: 400px; height: 400px; background: var(--orange); top: -100px; left: -100px; }
.cta-blob--2 { width: 300px; height: 300px; background: var(--orange); bottom: -50px; right: -50px; }
.cta-block__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-emoji { font-size: 4rem; margin-bottom: 24px; }
.cta-block__content h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--white);
}
.cta-block__content p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-size: 1.05rem;
}
.cta-section .btn--neon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.cta-section .btn--neon:hover {
  background: var(--orange-dim);
  border-color: var(--orange-dim);
  box-shadow: var(--shadow-orange);
}
.cta-guarantee {
  margin-top: 20px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.testi-card__stars { margin-bottom: 16px; font-size: 1rem; }
.testi-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 0.9rem; color: var(--black); }
.testi-card__author span  { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   B2B
══════════════════════════════════════════════════════════ */
.b2b { background: var(--gray-50); }
.b2b__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.b2b-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.b2b-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.b2b-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.b2b-card h3 { font-family: var(--font-main); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.b2b-card p  { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.b2b-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.b2b-features li {
  font-size: 0.8rem; color: var(--text-muted);
  padding-left: 16px; position: relative;
}
.b2b-features li::before { content: '→'; position: absolute; left: 0; color: var(--orange); }
.b2b__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.b2b__cta p { color: var(--text-muted); font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .logo-text { color: var(--white); }
.footer__brand .logo-text strong { color: var(--orange); }
.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer__socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.footer__links { display: flex; gap: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer__legal a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   STICKY CTA (MOBILE)
══════════════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-200);
}
.sticky-cta .btn--neon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__phone { display: none; }
  .hero__stats { margin: 0 auto 36px; }
  .hero__cta-group { justify-content: center; }
  .xp-bar { margin: 0 auto; }
  .hero__badge { margin: 0 auto 24px; display: block; text-align: center; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .products__grid .product-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .steps { flex-direction: column; max-width: 480px; margin: 0 auto 48px; }
  .step__connector { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__title { font-size: 1.8rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px; gap: 24px;
    border-bottom: 1px solid var(--gray-200);
    z-index: 999;
  }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__headline { font-size: 2.2rem; }
  .hero__stats { flex-direction: column; gap: 12px; align-items: flex-start; }
  .stat__divider { display: none; }
  .hero__cta-group { flex-direction: column; }
  .problem__grid { grid-template-columns: 1fr; }
  .lessons__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .products__grid .product-card:last-child { max-width: 100%; }
  .game-features { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .b2b__grid { grid-template-columns: 1fr; }
  .test-card__inner { grid-template-columns: 1fr; }
  .test-card__right { display: none; }
  .cta-block { padding: 48px 24px; }
  .cta-guarantee { flex-direction: column; gap: 8px; }
  .footer__links { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .float-badge { display: none; }
}
