:root {
      --gold: #c9a84c;
      --gold-light: #e8cc80;
      --gold-dim: #7a5f28;
      --navy: #090d1a;
      --navy-mid: #0e1630;
      --navy-light: #162040;
      --sky: #1a2a5e;
      --cream: #f2e8d5;
      --cream-dim: #c4b490;
      --glow: rgba(201, 168, 76, 0.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--cream);
      font-family: 'Cormorant Garamond', serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── STAR CANVAS ── */
    #stars-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 24px 80px;
      text-align: center;
    }

    /* nebula glow behind logo */
    .hero::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(26,42,94,0.7) 0%, rgba(9,13,26,0) 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .logo-wrap {
      position: relative;
      width: min(320px, 72vw);
      height: min(320px, 72vw);
      margin-bottom: 40px;
      animation: floatLogo 6s ease-in-out infinite;
    }

    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .logo-wrap::before {
      content: '';
      position: absolute;
      inset: -18px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 60%, var(--gold) 75%, transparent 80%, transparent 90%, var(--gold-light) 96%, transparent 100%);
      animation: rotateConic 20s linear infinite;
      opacity: 0.4;
    }

    @keyframes rotateConic {
      to { transform: rotate(360deg); }
    }

    .logo-wrap img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 60px rgba(201,168,76,0.25), 0 0 120px rgba(201,168,76,0.1);
    }

    .badge {
      display: inline-block;
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.35em;
      color: var(--gold);
      border: 1px solid var(--gold-dim);
      padding: 6px 18px;
      border-radius: 100px;
      margin-bottom: 24px;
      background: rgba(201,168,76,0.06);
      animation: fadeUp 1s ease both 0.2s;
    }

    .hero-title {
      font-family: 'Noto Sans Gujarati', sans-serif;
      font-size: clamp(42px, 10vw, 82px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--cream);
      text-shadow: 0 0 40px rgba(201,168,76,0.3);
      animation: fadeUp 1s ease both 0.4s;
      letter-spacing: -0.01em;
    }

    .hero-subtitle-gu {
      font-family: 'Noto Sans Gujarati', sans-serif;
      font-size: clamp(14px, 3.5vw, 19px);
      font-weight: 300;
      color: var(--gold-light);
      margin-top: 12px;
      letter-spacing: 0.05em;
      animation: fadeUp 1s ease both 0.55s;
    }

    .divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 28px auto;
      animation: fadeUp 1s ease both 0.65s;
    }

    .hero-desc {
      max-width: 580px;
      font-size: clamp(16px, 2.5vw, 20px);
      font-weight: 300;
      line-height: 1.8;
      color: var(--cream-dim);
      animation: fadeUp 1s ease both 0.75s;
    }

    .tagline-gu {
      font-family: 'Noto Sans Gujarati', sans-serif;
      font-size: clamp(13px, 2vw, 16px);
      color: var(--gold);
      margin-top: 10px;
      font-weight: 300;
      font-style: italic;
      animation: fadeUp 1s ease both 0.85s;
    }

    /* ── LISTEN ON ── */
    .listen-section {
      position: relative;
      z-index: 1;
      padding: 0 24px 100px;
      text-align: center;
    }

    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 11px;
      letter-spacing: 0.4em;
      color: var(--gold-dim);
      text-transform: uppercase;
      margin-bottom: 36px;
      animation: fadeUp 1s ease both 1s;
    }

    .platforms {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .platform-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 26px;
      border: 1px solid var(--gold-dim);
      border-radius: 100px;
      background: rgba(201,168,76,0.05);
      color: var(--cream);
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: 0.08em;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      animation: fadeUp 1s ease both;
    }

    .platform-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.12), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .platform-btn:hover {
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(201,168,76,0.15);
    }

    .platform-btn:hover::before { opacity: 1; }

    .platform-btn .icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    /* staggered delays */
    .platform-btn:nth-child(1) { animation-delay: 1.0s; }
    .platform-btn:nth-child(2) { animation-delay: 1.1s; }
    .platform-btn:nth-child(3) { animation-delay: 1.2s; }
    .platform-btn:nth-child(4) { animation-delay: 1.3s; }
    .platform-btn:nth-child(5) { animation-delay: 1.4s; }

    /* ── ABOUT ── */
    .about-section {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
      padding: 60px 24px 100px;
      text-align: center;
    }

    .about-section h2 {
      font-family: 'Cinzel', serif;
      font-size: clamp(20px, 4vw, 30px);
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: 28px;
      letter-spacing: 0.12em;
    }

    .about-section p {
      font-size: clamp(15px, 2.2vw, 18px);
      line-height: 1.9;
      color: var(--cream-dim);
      margin-bottom: 18px;
    }

    .about-section p strong {
      color: var(--cream);
      font-weight: 600;
    }

    .topics {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 36px;
    }

    .topic-chip {
      font-family: 'Cormorant Garamond', serif;
      font-size: 14px;
      font-style: italic;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.25);
      padding: 5px 16px;
      border-radius: 100px;
      background: rgba(201,168,76,0.04);
    }

    /* ── FOOTER ── */
    footer {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 36px 24px 48px;
      border-top: 1px solid rgba(201,168,76,0.1);
    }

    footer a {
      color: var(--gold);
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 13px;
      letter-spacing: 0.1em;
    }

    footer a:hover { color: var(--gold-light); }

    footer .copy {
      font-size: 12px;
      color: var(--gold-dim);
      margin-top: 12px;
      letter-spacing: 0.1em;
      font-family: 'Cinzel', serif;
    }

    /* ── UTIL ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }