:root {
  --bg: #0a0812;
  --bg-alt: #120e1f;
  --card: #17122a;
  --border: #2a2140;
  --text: #ede9f5;
  --text-muted: #a99fc2;
  --violet: #a855f7;
  --violet-dark: #7c3aed;
  --violet-glow: rgba(168, 85, 247, 0.35);
  --toxic: #7cf29c;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  font-size: 17px;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.logo span { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  background: var(--violet-dark);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
}

.nav-links .nav-cta:hover { background: var(--violet); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.55) 0%, rgba(10, 8, 18, 0.88) 65%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10, 8, 18, 0.75) 0%, rgba(10, 8, 18, 0.2) 40%, rgba(10, 8, 18, 0.2) 60%, rgba(10, 8, 18, 0.75) 100%),
    url('../images/splashart.jpg');
  background-size: cover;
  background-position: center 20%;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.eyebrow {
  color: var(--toxic);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--violet), var(--toxic));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: linear-gradient(90deg, var(--violet-dark), var(--violet));
  color: #fff;
  box-shadow: 0 0 0 rgba(168, 85, 247, 0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--violet-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--violet);
  color: var(--violet);
}

/* About / Stats */
.about { background: var(--bg-alt); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--violet);
}

.stat-sub {
  color: var(--text-muted);
  font-size: 14px;
}

/* Coaching package */
.package-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  max-width: 620px;
}

.package-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.package-head h3 {
  font-size: 24px;
}

.package-price span {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--toxic);
}

.package-note {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.package-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--text);
}

.package-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-size: 12px;
  top: 5px;
}

/* Booking */
.booking { background: var(--bg-alt); }

.calendar-embed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.calendar-embed iframe {
  display: block;
  border: none;
}

/* Socials */
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.social-icon { font-size: 18px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: underline;
}

.site-footer a:hover { color: var(--violet); }

.footer-disclaimer {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 12px;
  color: #6b6280;
  line-height: 1.5;
}

/* Responsive */
/* Legal pages */
.legal {
  padding: 140px 0 96px;
}

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

.legal h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 8px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--violet);
}

.legal p {
  color: var(--text-muted);
  font-size: 15px;
}

.legal a {
  color: var(--toxic);
  text-decoration: underline;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 20px;
    display: none;
  }

  .nav-links.open { display: flex; }

  .stats-grid { grid-template-columns: 1fr; }

  .package-head { flex-direction: column; align-items: flex-start; }

  section { padding: 64px 0; }
}
