:root {
  --bg: #120724;
  --bg-2: #1b0f35;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-2: rgba(255, 255, 255, 0.14);
  --text: #fff8ff;
  --muted: #eadcf8;
  --pink: #ff4fad;
  --purple: #8b5cf6;
  --sky: #77d7ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 173, 0.25), transparent 22%),
    radial-gradient(circle at top right, rgba(119, 215, 255, 0.18), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.28), transparent 24%),
    linear-gradient(180deg, #120724 0%, #1a0d34 50%, #120724 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.stars, .orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.stars-1 {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 18%, rgba(255,255,255,0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 52%, rgba(255,255,255,0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 34%, rgba(255,255,255,0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 82%, rgba(255,255,255,0.7) 0 1px, transparent 2px);
}

.stars-2 {
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 15% 55%, rgba(255,255,255,0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.65) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 76%, rgba(255,255,255,0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,0.7) 0 1px, transparent 2px);
}

.orb-1 { background: radial-gradient(circle at 15% 15%, rgba(255, 79, 173, 0.22), transparent 22%); }
.orb-2 { background: radial-gradient(circle at 85% 10%, rgba(119, 215, 255, 0.16), transparent 20%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(12, 5, 26, 0.58);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand img { height: 54px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  font-weight: 800;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
}

.nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }

.nav .nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 12px 28px rgba(255, 79, 173, 0.25);
}

.lang-switcher-wrap { display: flex; justify-content: flex-end; }
.lang-switcher {
  appearance: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 12px 42px 12px 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.lang-switcher option { color: #111; }

.hero { padding: 72px 0 36px; }
.hero-grid, .section-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 42px; align-items: center; }

.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.hero-logo { margin: 18px 0 10px; width: min(100%, 540px); }

h1, h2, h3 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.05;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: 1.65rem; }

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 79, 173, 0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.btn-large { padding: 18px 30px; font-size: 1.08rem; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 560px; }

.stat-card, .feature-card, .cta-card, .story-card, .glow-card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.stat-card { padding: 18px 14px; text-align: center; }
.stat-card span { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; }
.stat-card small { color: var(--muted); font-size: 0.96rem; }

.glow-card { overflow: hidden; position: relative; }
.glow-card::before {
  content: "";
  position: absolute;
  inset: auto auto 100% 20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 122, 198, 0.32);
  filter: blur(46px);
}
.glow-card img, .story-card img { width: 100%; height: auto; }
.hero-card { transform: rotate(-2deg); }

.section { padding: 48px 0; }
.section-head { margin: 0 auto 28px; max-width: 860px; }
.center { text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.feature-card { padding: 24px; }
.feature-card .icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.65rem; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255, 79, 173, 0.16), rgba(119, 215, 255, 0.14));
  border: 1px solid rgba(255,255,255,0.1);
}

.box-section .section-grid.reverse { grid-template-columns: 0.94fr 1.06fr; }
.check-list { list-style: none; padding: 0; margin: 18px 0 24px; }
.check-list li { position: relative; padding-left: 34px; margin: 12px 0; color: var(--muted); font-weight: 700; }
.check-list li::before { content: "★"; position: absolute; left: 0; top: 0; color: #ffd76c; }

.gallery-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 18px; }
.gallery-grid .large { grid-row: span 2; }
.cta-section { padding-bottom: 80px; }
.cta-card {
  padding: 40px 28px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.14), transparent 30%), linear-gradient(135deg, rgba(255, 79, 173, 0.2), rgba(139, 92, 246, 0.2), rgba(119, 215, 255, 0.14));
}
.cta-card img { width: min(100%, 420px); margin: 0 auto 18px; }

@media (max-width: 1100px) {
  .nav-wrap { grid-template-columns: 1fr; }
  .nav, .lang-switcher-wrap { justify-content: center; }
}

@media (max-width: 980px) {
  .hero-grid, .section-grid, .box-section .section-grid.reverse, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .large { grid-column: span 2; grid-row: auto; }
  h1 { max-width: 14ch; }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .hero-grid, .section-grid, .box-section .section-grid.reverse, .gallery-grid, .feature-grid, .stats { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  h1 { max-width: none; }
  .hero-card { transform: none; }
  .section { padding: 34px 0; }
}
