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

:root {
  --primary: #E11D48;
  --primary-dark: #9F1239;
  --accent: #F97316;
  --bg: #0D0610;
  --surface: #160B1A;
  --border: rgba(255,255,255,0.08);
  --text: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

em { font-style: italic; color: var(--primary); font-family: 'Playfair Display', serif; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(13,6,16,0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.nav-cta {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* HERO */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225,29,72,0.15) 0%, transparent 70%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.g1 {
  width: 400px; height: 400px;
  background: rgba(225,29,72,0.2);
  top: -100px; left: -100px;
}
.g2 {
  width: 300px; height: 300px;
  background: rgba(249,115,22,0.15);
  top: 50px; right: -80px;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(225,29,72,0.4);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  background: rgba(225,29,72,0.1);
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: .9; }
.btn-primary.large { padding: 18px 36px; font-size: 18px; border-radius: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.2); }

.btn-primary-sm {
  display: block;
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-primary-sm:hover { opacity: .9; }

.btn-outline {
  display: block;
  text-align: center;
  color: var(--text-secondary);
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.btn-outline:hover { color: white; border-color: rgba(255,255,255,0.3); }

/* MOCK PHONES */
.hero-phones {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.phone {
  width: 240px;
  height: 440px;
  border-radius: 36px;
  background: #1A0E1F;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: absolute;
}
.phone-back {
  transform: rotate(-8deg) translateX(-120px) translateY(30px);
  z-index: 1;
  opacity: 0.85;
}
.phone-front {
  z-index: 2;
  transform: rotate(3deg) translateX(80px);
}
.phone-screen { padding: 20px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; }

.app-card {
  background: linear-gradient(135deg, #2D0A1E, #1A0612);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(225,29,72,0.2);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.app-label {
  font-size: 9px;
  font-weight: 800;
  color: rgba(225,29,72,0.8);
  letter-spacing: 1.5px;
}
.app-phrase {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: white;
  line-height: 1.5;
  font-style: italic;
}
.app-translation {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.app-header { display: flex; flex-direction: column; gap: 2px; }
.app-greeting { font-size: 11px; color: rgba(255,255,255,0.4); }
.app-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: white; }

.app-lesson-card {
  background: linear-gradient(135deg, #E11D48, #9F1239);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-lesson-title { font-size: 14px; font-weight: 800; color: white; }
.app-lesson-sub { font-size: 10px; color: rgba(255,255,255,0.7); }
.app-progress-bar { height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.app-progress-fill { height: 100%; width: 40%; background: white; border-radius: 2px; }
.app-start-btn {
  background: white;
  color: #E11D48;
  font-size: 12px;
  font-weight: 800;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}
.app-stats {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px 8px;
}
.app-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-num { font-size: 16px; font-weight: 800; }
.stat-label { font-size: 9px; color: rgba(255,255,255,0.4); }

/* SECTIONS */
section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(225,29,72,0.1);
  border-radius: 100px;
  border: 1px solid rgba(225,29,72,0.2);
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* FEATURES */
.features { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(225,29,72,0.3); transform: translateY(-4px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* TRACKS */
.tracks { text-align: center; }
.tracks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.track-pill {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  transition: all .2s;
}
.track-pill:hover {
  border-color: rgba(225,29,72,0.4);
  color: white;
  background: rgba(225,29,72,0.08);
}

/* PRICING */
.pricing { background: var(--surface); text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(225,29,72,0.06);
}
.plan-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--primary);
  color: white;
  letter-spacing: 1px;
  width: fit-content;
}
.plan-badge.gold { background: #F59E0B; color: #1A0E0A; }
.plan-name { font-size: 18px; font-weight: 700; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: white; line-height: 1; }
.plan-period { font-size: 13px; color: var(--text-muted); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--text-secondary); }

/* CTA */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(225,29,72,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta h2 { margin-bottom: 16px; }
.cta p { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; }
.cta-note { font-size: 13px; color: var(--text-muted); margin-top: 20px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

@media (max-width: 640px) {
  .hero-phones { height: 320px; }
  .phone { width: 180px; height: 330px; }
  .phone-back { transform: rotate(-8deg) translateX(-80px) translateY(20px); }
  .phone-front { transform: rotate(3deg) translateX(60px); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
}
