/* ═══════════════════════════════════════════════════════════
   MINDORIA LANDING PAGE
   Aesthetic: Playful-Premium — bold gradients, depth, warmth
   ═══════════════════════════════════════════════════════════ */

:root {
  --indigo: #4F46E5;
  --indigo-dark: #3730A3;
  --indigo-light: #818CF8;
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --teal: #0D9488;
  --pink: #EC4899;
  --purple: #7C3AED;
  --bg: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A25;
  --text: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--amber); }

/* ─── Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--primary {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 4px 0 var(--indigo-dark), 0 8px 24px rgba(79,70,229,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--indigo-dark), 0 12px 32px rgba(79,70,229,0.4);
}
.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--indigo-dark);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--indigo); color: var(--indigo-light); }
.btn--premium {
  background: linear-gradient(135deg, #7C3AED, #9333EA);
  color: #fff;
  box-shadow: 0 4px 0 #5B21B6, 0 8px 24px rgba(124,58,237,0.3);
}
.btn--premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #5B21B6, 0 12px 32px rgba(124,58,237,0.4);
}
.btn--white {
  background: #fff;
  color: #0A0A0F;
  box-shadow: 0 4px 0 #d1d5db;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #d1d5db, 0 8px 20px rgba(0,0,0,0.2); }
.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* ─── Section Utilities ────────────────────────────── */
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section__tag--light {
  color: var(--amber-light);
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.25);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: var(--nav-height);
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}
.nav__logo-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  background: var(--indigo);
  border-radius: var(--radius-xs);
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--indigo-dark); }
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(16px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}
.mobile-menu__cta {
  background: var(--indigo);
  padding: 14px !important;
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 60px;
}
.hero__bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.4), transparent 70%);
  top: -10%; right: -5%;
  animation: float 20s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.3), transparent 70%);
  bottom: 10%; left: -5%;
  animation: float 25s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(13,148,136,0.3), transparent 70%);
  top: 40%; left: 30%;
  animation: float 30s ease-in-out infinite;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__content {
  flex: 1;
  min-width: 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--teal);
  background: rgba(13,148,136,0.1);
  border: 1px solid rgba(13,148,136,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--amber), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__stat { text-align: center; }
.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Phone Mockup */
.hero__visual {
  flex-shrink: 0;
  position: relative;
}
.hero__phone {
  width: 280px;
  background: #1A1A25;
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.hero__phone-notch {
  width: 100px;
  height: 24px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 16px;
}
.hero__phone-screen {
  padding: 0 8px 16px;
}
.hero__phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__phone-mascot { font-size: 1.8rem; }
.hero__phone-greeting {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero__phone-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}
.hero__phone-hearts {
  margin-left: auto;
  font-size: 0.85rem;
  background: rgba(220,38,38,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}
.hero__phone-card {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__phone-card--alt {
  background: rgba(13,148,136,0.1);
  border-color: rgba(13,148,136,0.2);
}
.hero__phone-card-emoji { font-size: 1.4rem; }
.hero__phone-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero__phone-card-progress {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.hero__phone-card-bar {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.hero__phone-card-fill {
  height: 100%;
  width: 65%;
  background: var(--indigo);
  border-radius: 3px;
  animation: fillBar 2s ease-out 1s both;
}
.hero__phone-card-fill--alt {
  width: 42%;
  background: var(--teal);
}
@keyframes fillBar {
  from { width: 0%; }
}
.hero__phone-streak {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
}

/* Floating badges */
.hero__float {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero__float--1 {
  top: 10%; right: -40px;
  background: var(--indigo);
  animation-delay: 0s;
}
.hero__float--2 {
  bottom: 25%; left: -50px;
  background: var(--amber);
  color: #000;
  animation-delay: 1.3s;
}
.hero__float--3 {
  top: 50%; right: -30px;
  background: var(--teal);
  animation-delay: 2.6s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #0D0D14 100%);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SUBJECTS
   ═══════════════════════════════════════════════════════════ */
.subjects {
  background: #0D0D14;
}
.subjects__carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.subject-card {
  background: hsl(var(--hue), 15%, 10%);
  border: 1px solid hsl(var(--hue), 20%, 18%);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.subject-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: hsl(var(--hue), 40%, 35%);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px hsl(var(--hue), 50%, 20%, 0.15);
}
.subject-card__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.subject-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.subject-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.subject-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--hue), 50%, 60%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   PVP
   ═══════════════════════════════════════════════════════════ */
.pvp {
  position: relative;
  overflow: hidden;
  background: #08080D;
}
.pvp__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pvp__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -200px;
  top: -200px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 60%);
  filter: blur(60px);
}
.pvp__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pvp__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pvp__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.pvp__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pvp__feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pvp__feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pvp__feature strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.pvp__feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* PvP Battle Card */
.pvp__battle-card {
  background: linear-gradient(135deg, #1a1035, #12121A);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 60px rgba(124,58,237,0.08);
}
.pvp__battle-header {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.pvp__battle-players {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
}
.pvp__player {
  text-align: center;
}
.pvp__player-avatar {
  font-size: 2rem;
  margin-bottom: 6px;
}
.pvp__player-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.pvp__player-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-muted);
}
.pvp__player-score--winning {
  color: var(--amber);
  text-shadow: 0 0 20px rgba(245,158,11,0.3);
}
.pvp__vs {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 8px;
}
.pvp__battle-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.pvp__timer-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.pvp__timer-fill {
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #F97316);
  border-radius: 3px;
  animation: timerPulse 2s ease-in-out infinite;
}
@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.pvp__battle-timer span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
}
.pvp__battle-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  line-height: 1.4;
}
.pvp__battle-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pvp__option {
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  text-align: center;
  transition: all 0.2s;
}
.pvp__option--correct {
  background: rgba(13,148,136,0.15);
  border-color: rgba(13,148,136,0.4);
  color: #5EEAD4;
}

/* ═══════════════════════════════════════════════════════════
   DISCOVER
   ═══════════════════════════════════════════════════════════ */
.discover {
  background: var(--bg);
}
.discover__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.discover__card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.discover__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: var(--radius);
  z-index: 0;
}
.discover__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 1;
}
.discover__card:hover { transform: translateY(-4px); }
.discover__card-subject {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.discover__card-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing {
  background: #0D0D14;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.pricing-card--featured {
  background: linear-gradient(135deg, #0f1a3d, #12121A);
  border-color: rgba(99,102,241,0.3);
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(99,102,241,0.1);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-card--premium {
  background: linear-gradient(135deg, #1a1035, #12121A);
  border-color: rgba(124,58,237,0.2);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
}
.pricing-card__header {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.pricing-card__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-card__price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
}
.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  padding: 8px 0;
  color: var(--text-secondary);
}
.pricing-card__feature--disabled { opacity: 0.4; text-decoration: line-through; }
.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--text-muted); }
.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__orb--1 {
  position: absolute;
  width: 600px; height: 600px;
  left: -200px; bottom: -200px;
  background: radial-gradient(circle, rgba(79,70,229,0.2), transparent 60%);
  filter: blur(80px);
}
.cta__orb--2 {
  position: absolute;
  width: 400px; height: 400px;
  right: -100px; top: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 60%);
  filter: blur(80px);
}
.cta__content {
  text-align: center;
  position: relative;
}
.cta__mascot {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  animation: floatBadge 3s ease-in-out infinite;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #08080D;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; min-height: auto; padding-top: calc(var(--nav-height) + 60px); }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .pvp__layout { grid-template-columns: 1fr; }
  .pvp__content { text-align: center; }
  .pvp__features { max-width: 400px; margin: 0 auto; }
  .pvp__visual { display: flex; justify-content: center; }
  .pvp__battle-card { max-width: 400px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .features__grid { grid-template-columns: 1fr; }
  .subjects__carousel { grid-template-columns: repeat(2, 1fr); }
  .discover__cards { grid-template-columns: 1fr; }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .hero__visual { transform: scale(0.9); }
  .section__inner { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__stats { flex-wrap: wrap; }
  .subjects__carousel { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; gap: 24px; }
  .pvp__features { grid-template-columns: 1fr; }
  .cta__buttons { flex-direction: column; align-items: center; }
}
