/* ===== BASE ===== */
:root {
  --bg: #0f2419;
  --bg2: #162e20;
  --bg3: #1d3d2a;
  --fg: #f0ede6;
  --fg2: #c4bfa8;
  --accent: #84cc16;
  --accent2: #f5a623;
  --border: rgba(132,204,22,0.15);
  --border2: rgba(245,166,35,0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }

/* ===== SECTION COMMON ===== */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132,204,22,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
}

.hero-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(160deg, transparent 0%, rgba(132,204,22,0.04) 50%, transparent 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 28px;
}

.eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--accent); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--accent); }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.headline-word { display: block; }

.headline-accent {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(132,204,22,0.3);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 52px;
  max-width: 420px;
}

/* SCOREBOARD */
.hero-scoreboard {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 48px;
  max-width: 600px;
}

.scoreboard-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.7;
}

.scoreboard-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}

.scoreboard-row:last-child { border-bottom: none; }

.scoreboard-row-active {
  background: rgba(132,204,22,0.05);
  border-radius: 6px;
  padding: 10px 8px;
  margin: -4px -8px;
}

.course-name { color: var(--fg); font-weight: 500; }

.time-badge {
  font-size: 11px;
  color: var(--fg2);
  font-family: 'DM Sans', monospace;
  opacity: 0.6;
}

.live-dot {
  color: var(--accent) !important;
  font-weight: 600;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.slot-count { color: var(--fg2); font-size: 12px; }

.slot-count-hot { color: var(--accent2); font-weight: 600; }

/* STAT ROW */
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg2);
  line-height: 1.5;
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 32px;
}

/* ===== HOW IT WORKS ===== */
.hiw {
  background: var(--bg2);
  padding: 100px 0;
}

.hiw-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 60px 0;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(132,204,22,0.4);
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 20px;
  position: absolute;
  top: 20px;
  right: 24px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.7;
}

.hiw-quote {
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin-top: 60px;
}

.hiw-quote blockquote {
  font-size: 18px;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hiw-quote cite {
  font-size: 13px;
  color: var(--fg2);
  opacity: 0.6;
}

/* ===== DIFFERENTIATORS ===== */
.diff {
  background: var(--bg);
  padding: 100px 0;
}

.diff-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-body {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.diff-features { display: flex; flex-direction: column; gap: 14px; }

.diff-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--fg);
}

.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* PRICING CARDS */
.pricing-cards { display: flex; flex-direction: column; gap: 16px; }

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 28px;
  position: relative;
}

.pricing-card-alt {
  border-color: var(--border2);
}

.card-tag {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

.card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 8px;
}

.card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.card-price span {
  font-size: 18px;
  color: var(--fg2);
}

.card-desc {
  font-size: 13px;
  color: var(--fg2);
  margin-bottom: 20px;
  opacity: 0.8;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-features span {
  font-size: 13px;
  color: var(--fg2);
  padding-left: 20px;
  position: relative;
}

.card-features span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== INSIGHT ===== */
.insight {
  background: var(--bg2);
  padding: 100px 0;
}

.insight-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.insight-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}

.insight-sub {
  font-size: 17px;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 52px;
}

.insight-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.course-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px 20px 24px;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.course-name-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.3;
}

.course-location {
  font-size: 11px;
  color: var(--fg2);
  opacity: 0.5;
  margin-top: 2px;
}

.course-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
}

.score-high { color: var(--accent); }
.score-mid { color: var(--accent2); }
.score-low { color: var(--fg2); opacity: 0.5; }

.course-bar-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg2);
  opacity: 0.5;
  margin-bottom: 6px;
}

.course-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.course-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
}

.course-meta {
  font-size: 11px;
  color: var(--fg2);
  opacity: 0.5;
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg);
  padding: 120px 0;
}

.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.closing-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 28px;
}

.closing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 64px;
}

.closing-pillars {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
}

.pillar {
  padding: 0 48px;
  border-right: 1px solid var(--border);
}

.pillar:last-child { border-right: none; }

.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar-label {
  font-size: 13px;
  color: var(--fg2);
  opacity: 0.6;
}

.closing-statement {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.closing-statement p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--fg2);
  letter-spacing: 0.04em;
  line-height: 1.6;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg2);
  opacity: 0.4;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--fg2);
  opacity: 0.5;
}

.footer-links span { cursor: pointer; }
.footer-links span:hover { opacity: 1; }

.footer-legal {
  font-size: 12px;
  color: var(--fg2);
  opacity: 0.3;
}

.footer-legal a {
  color: var(--accent);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-row { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .closing-pillars { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .pillar { border-right: none; padding: 0 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ===== SIGNUP FORM ===== */
.hero-signup-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 40px;
  max-width: 460px;
}

.signup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 20px;
}

.form-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

#signup-form { display: flex; flex-direction: column; gap: 10px; }

#signup-form input,
#signup-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

#signup-form input::placeholder { color: var(--fg2); opacity: 0.4; }

#signup-form input:focus,
#signup-form select:focus {
  border-color: var(--accent);
}

#signup-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c4bfa8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

#signup-form select option { background: var(--bg2); color: var(--fg); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

#submit-btn {
  margin-top: 6px;
  padding: 14px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

#submit-btn:hover { background: #9df01a; transform: translateY(-1px); }
#submit-btn:active { transform: translateY(0); }
#submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.form-success span { font-size: 16px; }

.form-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 4px;
}

@media (max-width: 600px) {
  .hero-inner { padding: 0 24px; }
  .hiw-inner { padding: 0 24px; }
  .diff-inner { padding: 0 24px; }
  .insight-inner { padding: 0 24px; }
  .closing-inner { padding: 0 24px; }
  .courses-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 64px; }
  .scoreboard-row { grid-template-columns: 1fr; gap: 4px; }
  .time-badge, .slot-count { font-size: 11px; }
  .hiw, .diff, .insight, .closing { padding: 80px 0; }
  .pricing-cards { margin-top: 0; }
  .form-row { grid-template-columns: 1fr; }
}