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

:root {
  --navy:    #0a0f1e;
  --navy2:   #0f1628;
  --navy3:   #151d35;
  --amber:   #f59e0b;
  --white:   #f8f9fc;
  --muted:   rgba(248,249,252,0.5);
  --subtle:  rgba(248,249,252,0.1);
  --max:     1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }

/* ════════════════════════
   NAV
════════════════════════ */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-login {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--amber);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  color: #080808;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Inter', sans-serif;
}
.nav-login:hover { opacity: 0.88; }

/* ════════════════════════
   HERO
════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,12,26,0.95) 0%, rgba(8,12,26,0.55) 55%, rgba(8,12,26,0.1) 100%),
    linear-gradient(to top, rgba(8,12,26,1) 0%, rgba(8,12,26,0.5) 30%, transparent 60%);
}

.hero-copy {
  position: relative;
  z-index: 10;
  padding: 140px 0 72px;
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 12vw, 120px);
  line-height: 0.90;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(248,249,252,0.65);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; max-width: none; }
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: #080808;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 15px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero-login-link {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}
.hero-login-link span {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  cursor: pointer;
}

/* ════════════════════════
   STATS STRIP
════════════════════════ */
.stats-strip {
  background: #060a14;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.stats-strip::-webkit-scrollbar { display: none; }

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  gap: 0;
  padding: 0 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  white-space: nowrap;
}

/* ════════════════════════
   SECTION COMMON
════════════════════════ */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.93;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}

/* ════════════════════════
   HOW IT WORKS
════════════════════════ */
.how {
  padding: 96px 0;
  background: var(--navy);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .step:not(:last-child)::after { display: none; }
}

.step {
  display: flex;
  gap: 20px;
  position: relative;
}

/* Vertical connector on mobile */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 50px;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, rgba(245,158,11,0.4), rgba(245,158,11,0.04));
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--amber);
  background: rgba(245,158,11,0.06);
  flex-shrink: 0;
  z-index: 1;
}

.step-body { padding-bottom: 44px; flex: 1; }
@media (min-width: 768px) { .step-body { padding-bottom: 0; } }

.step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  padding-top: 8px;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 768px) {
  .step {
    flex-direction: column;
    gap: 16px;
  }
  .step-num { align-self: flex-start; }
}

/* ════════════════════════
   FEATURES
════════════════════════ */
.features {
  background: var(--navy2);
  padding: 96px 0;
}

.card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.card-row::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    padding: 0;
    margin-bottom: 24px;
  }
}

.drill-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.2s;
}
.drill-card:hover { border-color: rgba(255,255,255,0.15); }
@media (min-width: 768px) { .drill-card { width: auto; flex-shrink: 1; } }

.drill-card-photo {
  width: 100%;
  height: 160px;
  background: var(--navy3);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.drill-card-body { padding: 18px; }

.drill-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.drill-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.drill-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* Feature UI cards */
.feature-ui-mock {
  width: 100%;
  height: 160px;
  background: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background-size: cover;
  background-position: center top;
}

.mock-target {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mock-target::before {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.mock-target::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.shot-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  border: 1px solid rgba(0,0,0,0.4);
}

/* ════════════════════════
   FINAL CTA
════════════════════════ */
.final-cta {
  background: var(--navy);
  padding: 112px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.final-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.final-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: #060a14;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.6); }

.footer-made {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
