/* ══════════════════════════════════════════════
   THISSTNX — STYLES.CSS
   Dark Purple · Bold · Professional
══════════════════════════════════════════════ */

:root {
  --bg:          #080010;
  --bg-2:        #0d0018;
  --purple:      #8b5cf6;
  --purple-light:#a78bfa;
  --purple-deep: #6d28d9;
  --purple-glow: rgba(139, 92, 246, 0.25);
  --purple-faint: rgba(139, 92, 246, 0.08);
  --white:       #ffffff;
  --white-dim:   rgba(255,255,255,0.6);
  --white-faint: rgba(255,255,255,0.05);
  --border:      rgba(139, 92, 246, 0.2);
  --border-soft: rgba(255,255,255,0.07);
  --font-display: 'Oxanium', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --radius:       16px;
  --radius-sm:    10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(109, 40, 217, 0.35) 0%, transparent 60%);
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* ── UTILITIES ── */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #8b5cf6 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(24px);
  background: rgba(8, 0, 16, 0.75);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 0, 16, 0.95);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--white);
}
.logo span { color: var(--purple); }

#nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

#nav-links a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

#nav-links a:hover,
#nav-links a.active {
  color: var(--white);
  background: var(--purple-faint);
}

#nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: var(--purple-faint);
}

/* ── HERO ── */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(109,40,217,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  top: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 2px;
  margin-bottom: 60px;
}

/* Watch hint */
.watch-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--white-dim);
  font-size: 14px;
  letter-spacing: 1px;
}

.watch-arrow {
  font-size: 28px;
  color: var(--purple-light);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Video wrapper */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(109,40,217,0.3), 0 20px 60px rgba(0,0,0,0.6);
  background: #0d0018;
}

.video-frame iframe,
.video-frame .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0d0018, #1a0035);
}

.video-placeholder i {
  font-size: 56px;
  color: var(--purple);
  opacity: 0.6;
}

.video-placeholder p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white-dim);
}

.video-placeholder span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── APPLY SECTION ── */
.apply-section {
  padding: 80px 0 100px;
}

.apply-intro {
  font-size: 18px;
  color: var(--white-dim);
  margin-bottom: 40px;
  font-weight: 400;
}

.apply-intro strong {
  color: var(--white);
  font-weight: 700;
}

.apply-box {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(109,40,217,0.12), rgba(99,102,241,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(109,40,217,0.15);
}

.apply-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.apply-box-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.apply-review-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: -16px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.apply-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.apply-lines span {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.apply-lines span:nth-child(1) { width: 85%; margin: 0 auto; }
.apply-lines span:nth-child(2) { width: 70%; margin: 0 auto; }
.apply-lines span:nth-child(3) { width: 55%; margin: 0 auto; }

.btn-start {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  padding: 16px 60px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(109,40,217,0.4);
  border: none;
  cursor: pointer;
}

.btn-start:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(139,92,246,0.5);
}

.apply-time {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

.watch-emoji { margin-right: 5px; }

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--white-dim);
  margin-bottom: 60px;
}

/* ── LEADERBOARD ── */
.leaderboard {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(109,40,217,0.05), transparent);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.proof-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.proof-img:hover {
  border-color: var(--border);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(109,40,217,0.2);
}

/* When actual images are added, drop the placeholder styles */
.proof-img img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: #0d0018;
}

.img-placeholder {
  background: linear-gradient(145deg, #0d0018, #150025);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  min-height: 120px;
}

.img-placeholder.tall  { min-height: 160px; }
.img-placeholder.wide  { min-height: 100px; }

.hidden-proof {
  display: none;
}

.hidden-proof.shown {
  display: block;
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-showmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-showmore:hover {
  background: var(--purple-faint);
  border-color: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── COMMUNITY ── */
.community-section {
  padding: 40px 0 60px;
}

.community-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(109,40,217,0.18), rgba(99,102,241,0.08));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(109,40,217,0.2), 0 30px 60px rgba(0,0,0,0.5);
}

.community-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%);
  pointer-events: none;
}

.community-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.community-sub {
  font-size: 16px;
  color: var(--white-dim);
  margin-bottom: 36px;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0088cc, #0055aa);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 16px 44px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,136,204,0.3);
}

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,136,204,0.45);
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}

.disclaimer p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer strong {
  color: rgba(255,255,255,0.45);
}

/* ── FOOTER ── */
footer {
  padding: 28px 0 20px;
  border-top: 1px solid var(--border-soft);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--purple); }

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--white-dim);
  transition: 0.3s;
}

.footer-links a:hover { color: var(--purple-light); }

.footer-links .divider {
  color: rgba(255,255,255,0.2);
}

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero-sub {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════
   COURSES PAGE
══════════════════════════════ */
.courses-section {
  padding: 60px 0 120px;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.course-card {
  background: linear-gradient(160deg, #0e0020, #080014);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(109,40,217,0.2);
}

.course-featured {
  border-color: var(--border);
  background: linear-gradient(160deg, #130028, #0a0018);
  box-shadow: 0 0 50px rgba(109,40,217,0.15);
}

.course-badge {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: var(--purple-faint);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.featured-badge {
  color: #fbbf24;
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.25);
}

.featured-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.course-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(109,40,217,0.2), rgba(99,102,241,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-soft);
}

.course-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--purple-faint);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--purple-light);
}

.course-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.course-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.course-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--white-dim);
}

.course-features li i {
  color: var(--purple);
  font-size: 12px;
  flex-shrink: 0;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
}

.course-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.btn-enroll {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple-light);
  background: var(--purple-faint);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-enroll:hover {
  background: var(--purple-deep);
  border-color: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-enroll-featured {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 4px 20px rgba(109,40,217,0.35);
}

.btn-enroll-featured:hover {
  box-shadow: 0 8px 30px rgba(139,92,246,0.45);
}

/* ══════════════════════════════
   LEGAL PAGES
══════════════════════════════ */
.legal-page {
  padding: 140px 0 100px;
}

.legal-container {
  max-width: 780px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.legal-date {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-block {
  background: var(--white-faint);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--purple-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.legal-block p {
  font-size: 14.5px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.legal-block ul li {
  font-size: 14px;
  color: var(--white-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.legal-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

.legal-link {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  #nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(8,0,16,0.98);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  #nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  #nav-links a {
    text-align: center;
    padding: 14px;
    font-size: 13px;
  }

  .hero { padding: 130px 0 60px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: 1fr; }
  .community-box { padding: 48px 28px; }
  .apply-box { padding: 36px 24px; }
  .legal-block { padding: 24px 20px; }
  .course-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 32px; }
}
/* ── WhatsApp Float Button ── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  z-index: 9998;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.wa-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a2e;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}