:root {
  --bg: #0b1020;
  --panel: #151c2e;
  --panel-2: #101627;
  --border: #263149;
  --gold: #d4af37;
  --cyan: #18c7d7;
  --emerald: #20d17b;
  --ruby: #ef4444;
  --saffron: #f59e0b;
  --violet: #9f7aea;
  --text: #f6f8ff;
  --muted: #aeb8cc;
  --radius: 16px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }
.accent { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.light { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.know-more { color: var(--gold); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 4px; }
.know-more span { transition: transform 0.15s ease; }
.know-more:hover span { transform: translateX(3px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f0cf6b);
  color: #17130a;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand-mark { color: var(--gold); font-size: 20px; }
.brand-logo { width: 38px; height: 38px; border-radius: 9px; object-fit: cover; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 14.5px; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 6px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

/* Sections shared */
section { padding: 88px 24px; max-width: var(--maxw); margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 30px; font-weight: 900; }
.section-head.light h2 { color: #fff; }
.section-note { font-size: 12.5px; color: var(--muted); opacity: 0.75; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 96px;
  max-width: none;
  background: radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(24, 199, 215, 0.08), transparent 45%),
              var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.orb-gold { width: 380px; height: 380px; background: var(--gold); top: -140px; left: -100px; }
.orb-cyan { width: 340px; height: 340px; background: var(--cyan); bottom: -160px; right: -80px; }

.mandala { position: absolute; width: 220px; height: 220px; opacity: 0.16; fill: none; stroke: var(--gold); stroke-width: 1; }
.mandala-tl { top: -30px; left: -30px; }
.mandala-br { bottom: -30px; right: -30px; }

/* Night sky (stars / shooting stars / planets) - injected by script.js */
.star-layer { position: absolute; inset: 0; }
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation-name: twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.9; }
}
.shooting-star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: shoot 1.1s linear forwards;
}
.shooting-star::before {
  content: "";
  position: absolute;
  top: 1px; right: 0;
  width: 90px; height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
  transform: rotate(-35deg);
  transform-origin: right center;
}
@keyframes shoot {
  from { transform: translate(0, 0); opacity: 1; }
  to { transform: translate(-160px, 110px); opacity: 0; }
}
.planet {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation-name: driftPlanet;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.planet-1 { background: radial-gradient(circle at 35% 30%, #f0cf6b, var(--gold) 70%); }
.planet-2 { background: radial-gradient(circle at 35% 30%, #7de7f0, var(--cyan) 70%); }
.planet-3 { background: radial-gradient(circle at 35% 30%, #c9a8f5, var(--violet) 70%); }
@keyframes driftPlanet {
  from { transform: translateY(-8px); }
  to { transform: translateY(8px); }
}

/* Day sky (sun + clouds) - injected by script.js */
.sun-glow {
  position: absolute;
  top: -60px; right: 10%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 70%);
}
.cloud {
  position: absolute;
  width: 140px; height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  filter: blur(2px);
  animation-name: driftCloud;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.cloud-1 { top: 20%; left: 5%; animation-duration: 22s; }
.cloud-2 { top: 55%; left: 60%; width: 100px; height: 30px; animation-duration: 28s; }
@keyframes driftCloud {
  from { transform: translateX(0); }
  to { transform: translateX(40px); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
.hero-sub { font-size: 16.5px; max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge-wrap { display: flex; justify-content: center; }
.hero-badge {
  position: relative;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1c2540, #0b1020 75%);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.06), 0 20px 60px rgba(0, 0, 0, 0.5);
}
.hero-badge-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.5);
  animation: spinSlow 40s linear infinite;
}
.hero-badge-ring::before, .hero-badge-ring::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-size: 12px;
}
.hero-badge-ring::before { top: -6px; left: 50%; transform: translateX(-50%); }
.hero-badge-ring::after { bottom: -6px; left: 50%; transform: translateX(-50%); }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-badge-text {
  position: relative;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.35;
  color: #fff;
  padding: 0 30px;
}
.hero-badge-logo {
  position: relative;
  width: 78%;
  height: 78%;
  object-fit: contain;
  border-radius: 50%;
}

/* ============ OUR PROMISE ============ */
.promise {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.promise-visual {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-orb {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.02) 70%);
  border: 1px solid var(--border);
}
.promise-glyph { position: absolute; font-size: 46px; color: var(--gold); }
.promise-copy h2.highlight { font-size: 24px; font-weight: 800; color: var(--gold); }
.promise-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

/* ============ VIDEO (admin-controlled) ============ */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.hidden { display: none !important; }

/* ============ SERVICES (split) ============ */
.services { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.services-list h2 { font-size: 28px; font-weight: 900; margin-bottom: 26px; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
.service-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--icon-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 45%, transparent);
  margin-bottom: 12px;
}
.service-item h3 { font-size: 15.5px; font-weight: 800; }
.service-item p { font-size: 13.5px; margin-bottom: 10px; }

.services-visual { display: flex; justify-content: center; }
.mock-panel {
  width: 100%; max-width: 320px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.mock-dot.r { background: var(--ruby); }
.mock-dot.g { background: var(--emerald); }
.mock-dot.b { background: var(--gold); }
.mock-bar { height: 8px; border-radius: 4px; background: var(--panel-2); border: 1px solid var(--border); margin-top: 16px; }
.mock-bar.w70 { width: 70%; }
.mock-bar.w40 { width: 40%; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.mock-grid div { aspect-ratio: 1; border-radius: 8px; background: var(--panel-2); border: 1px solid var(--border); }
.mock-grid div:nth-child(1) { background: color-mix(in srgb, var(--gold) 25%, var(--panel-2)); }
.mock-grid div:nth-child(5) { background: color-mix(in srgb, var(--emerald) 25%, var(--panel-2)); }

/* ============ WHY CHOOSE (carousel) ============ */
.why-carousel-wrap { display: flex; align-items: center; gap: 14px; }
.why-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  flex: 1;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.why-carousel::-webkit-scrollbar { display: none; }
.why-card {
  scroll-snap-align: start;
  flex: 0 0 260px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.why-icon { font-size: 26px; margin-bottom: 12px; }
.why-card h3 { font-size: 16px; font-weight: 800; }
.why-card p { font-size: 13.5px; margin-bottom: 0; }
.why-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.why-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ============ HOW IT WORKS (band) ============ */
.how-band {
  max-width: none;
  text-align: center;
  background: linear-gradient(135deg, #3a1f10, #1c1230);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto 36px;
}
.how-step { width: 190px; }
.how-circle {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.how-step h3 { font-size: 15px; font-weight: 800; color: #fff; }
.how-step p { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 0; }
.how-arrow { color: rgba(255, 255, 255, 0.5); font-size: 22px; margin-top: 28px; }

/* ============ PRICING ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #17130a;
  font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 17px; font-weight: 800; }
.price { font-size: 32px; font-weight: 900; margin-bottom: 20px; }
.price span { font-size: 13px; color: var(--muted); font-weight: 500; }
.price-card ul { margin-bottom: 24px; flex: 1; }
.price-card li { font-size: 14px; color: var(--muted); padding: 6px 0; padding-left: 22px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }
.price-card .btn { width: 100%; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}
.testimonial-avatars { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 18px; }
.avatar-placeholder {
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px dashed var(--border);
  display: inline-block;
}
.avatar-placeholder.sm { width: 32px; height: 32px; opacity: 0.6; }
.avatar-placeholder.lg { width: 54px; height: 54px; }
.avatar-placeholder.active { border: 2px solid var(--gold); }
.testimonial-name { display: block; font-size: 15px; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; }
.testimonial-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.dot.active { background: var(--gold); }

/* ============ INSIGHTS ============ */
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.insight-feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.insight-feature-visual { height: 140px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.insight-orb {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--violet), rgba(159, 122, 234, 0.05) 75%);
}
.insight-feature h3 { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.insight-list { display: flex; flex-direction: column; gap: 18px; }
.insight-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.insight-thumb {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--icon-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 45%, transparent);
}
.insight-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }

/* ============ CONTACT ============ */
.contact-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.contact-email { font-size: 20px; font-weight: 800; color: var(--gold); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 28px 24px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.footer-inner a { color: var(--gold); font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .promise, .services, .insights-grid { grid-template-columns: 1fr; }
  .hero-badge-wrap { order: -1; }
  .hero-badge { width: 220px; height: 220px; }
  .hero-badge-text { font-size: 18px; }
  .promise-visual { height: 160px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .hero-copy h1 { font-size: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
}
