/* style.css */
@font-face {
  font-family: 'Baloo 2';
  src: url('../fonts/Baloo2-Regular.woff2') format('woff2'),
       url('../fonts/Baloo2-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-ExtraLight.woff2') format('woff2'),
       url('../fonts/Nunito-ExtraLight.woff') format('woff');
  font-weight: 200;
}

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/Quicksand-Light.woff2') format('woff2'),
       url('../fonts/Quicksand-Light.woff') format('woff');
  font-weight: 300;
}


:root {
  --navy: #0a0a1a;
  --midnight: #120f3d;
  --purple: #1a1550;
  --luma: #b8aaff;
  --luma-soft: #d4ccff;
  --luma-pale: #f0edff;
  --gold: #ffe8a3;
  --gold-deep: #ffcc44;
  --orange: #ff9f43;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(184,170,255,0.2);
  --red-soft: #ffb8b8;
  --teal: #a8f0e8;
  --green: #b8f0c8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  font-family: 'Nunito', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* STARS */
#stars-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* SCROLL PROGRESS */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--luma), var(--gold));
  z-index: 1000;
  transition: width 0.1s;
  width: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c8b8ff, #7c6fe0 50%, #2d1a60);
  box-shadow: 0 0 16px rgba(124,111,224,0.5);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.nav-brand {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
}

.nav-brand span {
  color: var(--gold);
}

.nav-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--luma);
  opacity: 0.6;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}
.main-nav{
  display: flex;
  flex-wrap: wrap;
}

.nav-ctas {
    flex-shrink: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--luma-soft);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  animation: ctaPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,232,163,0.4);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,232,163,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,232,163,0); }
}

/* SECTION BASE */
section {
  position: relative;
  z-index: 1;
}

.section-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 14px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--luma), var(--gold));
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,111,224,0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(255,232,163,0.06) 0%, transparent 50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,170,255,0.1);
  border: 1px solid rgba(184,170,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--luma);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(124,111,224,0.3);
}

.hero-headline span {
  color: var(--luma);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--luma-soft);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  animation: ctaPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
  text-align: center;
  width: fit-content;
}

.btn-hero-primary:hover {
  transform: scale(1.04);
}

.btn-hero-ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--luma-soft);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}

.btn-hero-ghost:hover {
  border-color: var(--luma);
  color: var(--white);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}

.planet-hero {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #c8b8ff, #7c6fe0 40%, #3d2fa0 70%, #1a1550);
  box-shadow: 0 0 80px rgba(124,111,224,0.5), 0 0 160px rgba(124,111,224,0.2), inset -30px -30px 60px rgba(0,0,0,0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: planetFloat 6s ease-in-out infinite;
}

@keyframes planetFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-18px); }
}

.planet-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(184,170,255,0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.planet-ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(184,170,255,0.08);
  animation-delay: 1s;
}

.planet-ring-3 {
  width: 500px;
  height: 500px;
  border-color: rgba(184,170,255,0.05);
  animation-delay: 2s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

.mist-hero {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(124,111,224,0.08) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.book-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -40%) rotate(-8deg);
  width: 140px;
  background: linear-gradient(135deg, rgba(184,170,255,0.15), rgba(124,111,224,0.08));
  border: 1px solid rgba(184,170,255,0.3);
  border-radius: 8px;
  padding: 12px;
  font-family: 'Baloo 2', cursive;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--luma-soft);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: bookFloat 7s ease-in-out infinite;
}

@keyframes bookFloat {
  0%, 100% { transform: translate(-20%, -40%) rotate(-8deg) translateY(0); }
  50% { transform: translate(-20%, -40%) rotate(-6deg) translateY(-8px); }
}

.book-float-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.book-float-sub {
  opacity: 0.6;
  font-size: 0.65rem;
}

/* ── PROBLEM ── */
#problem {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--navy), #0e0b2e);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.problem-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,170,255,0.4);
}

.problem-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.problem-card-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--luma);
  margin-bottom: 10px;
}

.problem-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.problem-close {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.problem-close p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--white);
}

.problem-close span {
  color: var(--gold);
}

/* ── BELIEF ── */
#belief {
  padding: 120px 80px;
  background: radial-gradient(ellipse at center, rgba(124,111,224,0.15) 0%, transparent 70%), linear-gradient(180deg, #0e0b2e, #0a0820);
  text-align: center;
}

.belief-inner {
  max-width: 800px;
  margin: 0 auto;
}

.belief-why {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 32px;
}

.belief-quote {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
  text-shadow: 0 0 60px rgba(124,111,224,0.4);
}

.belief-quote .highlight {
  color: var(--luma);
}

.belief-sub {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--luma-soft);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.belief-tagline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ── SOLUTION ── */
#solution {
  padding: 100px 80px;
  background: linear-gradient(180deg, #0a0820, var(--midnight));
}

.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solution-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.solution-headline span {
  color: var(--luma);
}

.solution-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.solution-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.solution-col {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}

.solution-col:hover {
  background: rgba(124,111,224,0.08);
  border-color: rgba(124,111,224,0.4);
  transform: translateY(-4px);
}

.sol-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.sol-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.sol-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

.vs-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.vs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--glass-border);
}

.vs-col-head {
  padding: 18px 28px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.vs-col-head.others {
  color: var(--muted);
}

.vs-col-head.us {
  color: var(--gold);
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.vs-row:last-child {
  border-bottom: none;
}

.vs-cell {
  padding: 16px 28px;
  font-size: 0.88rem;
}

.vs-cell.others {
  color: rgba(255,255,255,0.35);
}

.vs-cell.us {
  color: var(--luma-soft);
  font-weight: 700;
  background: rgba(124,111,224,0.04);
}

/* ── CHARACTERS ── */
#characters {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--midnight), #100835);
}

.characters-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.chars-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.chars-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.chars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.char-panel {
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.char-panel.mio-panel {
  background: linear-gradient(135deg, rgba(184,170,255,0.1), rgba(255,232,163,0.06));
  border: 1px solid rgba(184,170,255,0.25);
}

.char-panel.glitch-panel {
  background: linear-gradient(135deg, rgba(255,159,67,0.08), rgba(30,10,5,0.8));
  border: 1px solid rgba(255,159,67,0.25);
}

.char-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.mio-avatar {
  background: radial-gradient(circle at 35% 30%, #d8e4f0, #8898b0);
  box-shadow: 0 0 40px rgba(184,170,255,0.4);
}

.glitch-avatar {
  background: radial-gradient(circle at 40% 35%, #2a1840, #100820);
  box-shadow: 0 0 40px rgba(255,159,67,0.4);
  border: 2px solid rgba(255,159,67,0.3);
}

.char-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 8px;
}

.mio-name {
  color: var(--luma);
}

.glitch-name {
  color: var(--orange);
}

.char-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}

.char-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--luma-soft);
  margin-bottom: 24px;
}

.char-quote {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid;
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

.mio-quote {
  border-color: var(--luma);
  color: var(--luma-soft);
}

.glitch-quote {
  border-color: var(--orange);
  color: #ffcc88;
}

.chars-bottom {
  text-align: center;
}

.chars-bottom p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--luma-soft);
  margin-bottom: 24px;
}

/* ── GALAXY MAP ── */
#galaxy {
  padding: 100px 80px;
  background: linear-gradient(180deg, #100835, var(--navy));
}

.galaxy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.galaxy-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.galaxy-headline span {
  color: var(--gold);
}

.galaxy-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.planets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.planet-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}

.planet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,170,255,0.4);
  background: rgba(124,111,224,0.08);
}

.planet-card.available {
  border-color: rgba(255,232,163,0.35);
  background: rgba(255,232,163,0.05);
}

.planet-card.available:hover {
  border-color: var(--gold);
  background: rgba(255,232,163,0.1);
}

.planet-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(184,170,255,0.3);
}

.available-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.coming-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.planet-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.planet-skill {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.galaxy-cta {
  text-align: center;
}

.galaxy-cta p {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  color: var(--luma-soft);
  margin-bottom: 20px;
}

/* ── INSIDE BOOK ── */
#inside {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--navy), #0d0a25);
}

.inside-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.inside-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.inside-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pages-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.page-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.page-card:hover {
  transform: translateY(-4px) rotate(1deg);
  border-color: rgba(184,170,255,0.4);
}

.page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--luma);
  border-radius: 2px 2px 0 0;
}

.page-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--luma);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-card-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.page-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

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

.qr-card {
  background: rgba(184,170,255,0.06);
  border: 1px solid rgba(184,170,255,0.2);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.qr-card:hover {
  background: rgba(184,170,255,0.1);
  transform: translateY(-3px);
}

.qr-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.qr-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.qr-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── 15 MIN ── */
#fifteen {
  padding: 120px 80px;
  background: linear-gradient(180deg, #0d0a25, #0a0820);
  text-align: center;
}

.fifteen-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 24px;
  overflow: hidden;
}

.split-side {
  padding: 48px 40px;
  position: relative;
}

.split-left {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
}

.split-right {
  background: rgba(124,111,224,0.1);
  border: 1px solid rgba(124,111,224,0.25);
}

.split-or {
  padding: 0 32px;
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--muted);
  background: var(--navy);
  z-index: 2;
  position: relative;
}

.split-emoji {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.split-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.split-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.split-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.fifteen-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.fifteen-headline .same {
  color: var(--luma);
}

.fifteen-headline .diff {
  color: var(--gold);
}

.fifteen-belief {
  font-size: 1.1rem;
  color: var(--luma-soft);
  margin-bottom: 40px;
  line-height: 1.7;
  font-style: italic;
}

.fifteen-belief span {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

/* ── PROOF ── */
#proof {
  padding: 100px 80px;
  background: linear-gradient(180deg, #0a0820, var(--midnight));
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}

.proof-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(184,170,255,0.4);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--luma-soft);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-text .highlight {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.testi-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.numbers-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
}

.number-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
}

.number-item:last-child {
  border-right: none;
}

.number-val {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.number-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── FREE GIFT ── */
#gift {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--midnight), #0a0f20);
}

.gift-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,232,163,0.12);
  border: 1px solid rgba(255,232,163,0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.gift-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.gift-headline span {
  color: var(--gold);
}

.gift-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 48px;
  line-height: 1.7;
}

.gift-box {
  background: linear-gradient(135deg, rgba(255,232,163,0.08), rgba(184,170,255,0.06));
  border: 1px solid rgba(255,232,163,0.25);
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 40px;
}

.gift-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}

.gift-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 16px;
}

.gift-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gift-item-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.gift-item-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.gift-value {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--luma-soft);
  margin-bottom: 8px;
}

.gift-value span {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 8px;
}

.gift-value strong {
  color: var(--gold);
}

.gift-urgency {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0;
}

.counter-bar {
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  height: 8px;
  margin: 16px 0 8px;
  overflow: hidden;
}

.counter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 50px;
  width: 74%;
  transition: width 1s ease;
}

.counter-text {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── PARENT PROMISE ── */
#promise {
  padding: 100px 80px;
  background: linear-gradient(180deg, #0a0f20, var(--navy));
}

.promise-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.promise-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}

.promise-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.3s;
}

.promise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,170,255,0.4);
  background: rgba(124,111,224,0.06);
}

.promise-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.promise-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--luma);
  margin-bottom: 12px;
}

.promise-text {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── FAQ ── */
#faq {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--navy), #0d0a20);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}

.faq-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 60px;
  line-height: 1.7;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(184,170,255,0.4);
}

.faq-question {
  padding: 22px 28px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover {
  color: var(--luma);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(184,170,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(184,170,255,0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ── FINAL CTA ── */
#final-cta {
  padding: 140px 80px;
  background: radial-gradient(ellipse at center, rgba(124,111,224,0.18) 0%, transparent 60%), linear-gradient(180deg, #0d0a20, var(--navy));
  text-align: center;
}

.final-inner {
  max-width: 800px;
  margin: 0 auto;
}

.final-headline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(124,111,224,0.4);
}

.final-headline span {
  color: var(--luma);
}

.final-sub {
  font-size: 1.1rem;
  color: var(--luma-soft);
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-final {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy);
  padding: 20px 56px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  animation: ctaPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
  box-shadow: 0 20px 60px rgba(255,232,163,0.25);
}

.btn-final:hover {
  transform: scale(1.04);
}

.final-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.final-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.final-tagline {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.final-mio {
  font-size: 6rem;
  display: block;
  margin-bottom: 32px;
  animation: mioHeroFloat 5s ease-in-out infinite;
}

@keyframes mioHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── FOOTER ── */
footer {
  background: #060410;
  border-top: 1px solid var(--glass-border);
  padding: 60px 80px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-family: 'Baloo 2', cursive;
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand-tag {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
}

.footer-belief {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  background: rgba(184,170,255,0.15);
  border-color: var(--luma);
}

.footer-links-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--luma);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.newsletter-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--luma);
  margin-bottom: 8px;
}

.newsletter-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: var(--luma);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--luma), var(--luma) 80%);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, opacity 0.2s;
}

.newsletter-btn:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.footer-heart {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner,
  .chars-grid,
  .planets-grid {
    grid-template-columns: 1fr;
  }
  
  .planets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  nav .nav-links {
    display: none;
  }
  
  .problem-cards,
  .solution-cols,
  .testimonials,
  .promise-cards,
  .qr-section {
    grid-template-columns: 1fr;
  }
  
  .numbers-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .split-visual {
    grid-template-columns: 1fr;
  }
  
  .split-or {
    padding: 16px;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px; /* Reduced from 60px to 40px for better spacing */
  }
  
  .gift-items {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 70px 28px !important;
  }
  
  nav {
    padding: 0 20px;
  }
  
  .hero-visual {
    height: 320px;
  }
  
  /* Footer responsive improvements for 1024px */
  footer {
    padding: 50px 40px 30px; /* Reduced horizontal padding */
  }
}

@media (max-width: 768px) {
  .planets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .numbers-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .number-item {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .pages-carousel {
    grid-template-columns: 1fr;
  }
  
  .qr-section {
    grid-template-columns: 1fr;
  }
  
  /* Footer improvements for tablet */
  footer {
    padding: 40px 24px 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-btn {
    width: 100%;
    white-space: normal;
    padding: 10px 18px;
  }
  
  .newsletter-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Footer improvements for mobile */
  footer {
    padding: 40px 20px 30px;
  }
  
  .footer-grid {
    gap: 32px;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-brand-text,
  .footer-brand-tag,
  .footer-belief {
    text-align: center;
  }
  
  .footer-links-title {
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .newsletter-title,
  .newsletter-sub {
    text-align: center;
  }
  
  .footer-bottom {
    gap: 12px;
  }
  
  .footer-copy,
  .footer-heart {
    font-size: 0.7rem;
  }
  
  .footer-legal {
    gap: 12px;
  }
  
  .footer-legal a {
    font-size: 0.68rem;
  }
}