/* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/pouty-cover.jpg') center center / cover no-repeat;
    filter: brightness(0.5) saturate(1.3);
    transform: scale(1.05);
    animation: hero-breathe 12s ease-in-out infinite;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, var(--purple-deep) 0%, transparent 50%),
      linear-gradient(to top, var(--purple-deep) 0%, transparent 30%),
      radial-gradient(ellipse at 30% 50%, rgba(255,45,125,0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(0,200,255,0.08) 0%, transparent 50%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem 6rem;
    max-width: 800px;
    animation: fade-up 1.2s ease-out 0.3s both;
  }

  .hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink-glow);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  .hero-tag::before, .hero-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pink-glow));
  }

  .hero-tag::after {
    background: linear-gradient(to left, transparent, var(--pink-glow));
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-glow) 50%, var(--blue-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(255,45,125,0.3));
  }

  .hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white-soft);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255,45,125,0.3);
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255,45,125,0.5);
  }

  .btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .btn-glass:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
  }

  /* ===== STREAMING PLATFORMS ===== */
  .platforms {
    padding: 0 2rem 5rem;
    text-align: center;
    position: relative;
  }

  .platforms-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
  }

  .platform-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.02em;
  }

  .platform-link:hover { color: var(--white); }

  .platform-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  /* ===== NOW PLAYING / EMBED ===== */
  .now-playing {
    padding: 0 2rem 6rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .now-playing iframe {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }

  /* ===== SECTION STYLES ===== */
  .section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 1rem;
    color: var(--white-soft);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ===== DISCOGRAPHY ===== */
  .disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .release-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .release-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,45,125,0.35);
    box-shadow: 0 20px 50px rgba(255,45,125,0.15);
  }

  .release-art {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .release-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,10,46,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .release-card:hover .release-art::after { opacity: 1; }

  .release-play {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255,45,125,0.4);
    z-index: 2;
  }

  .release-card:hover .release-play {
    opacity: 1;
    transform: translateY(0);
  }

  .release-play svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }

  .release-info {
    padding: 1rem;
  }

  .release-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .release-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .release-type {
    background: rgba(255,45,125,0.15);
    color: var(--pink-glow);
    padding: 0.1rem 0.5rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ===== DIVIDER ===== */
  .divider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), rgba(255,45,125,0.2), var(--glass-border), transparent);
  }

  /* ===== TOOLS SECTION ===== */
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .tool-card {
    background: linear-gradient(135deg, rgba(45,27,78,0.6) 0%, rgba(26,10,46,0.8) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--pink), var(--blue-neon));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,45,125,0.3);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }

  .tool-card:hover::before { opacity: 1; }

  .tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .tool-icon.lyrical { background: linear-gradient(135deg, rgba(255,45,125,0.2), rgba(200,80,192,0.2)); }
  .tool-icon.melodify { background: linear-gradient(135deg, rgba(0,200,255,0.2), rgba(107,63,160,0.2)); }
  .tool-icon.remaster { background: linear-gradient(135deg, rgba(255,165,0,0.2), rgba(255,45,125,0.2)); }

  .tool-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .tool-desc {
    font-size: 0.88rem;
    color: var(--white-soft);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .tool-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
  }

  .tool-card:hover .tool-link { gap: 0.7rem; }

  /* ===== ABOUT ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-image {
    aspect-ratio: 3/4;
    border-radius: 16px;
    background: url('assets/pouty-cover.jpg') center / cover;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  }

  .about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
  }

  .about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 1rem;
    color: var(--white-soft);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }

  .about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
  }

  .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
  }

  /* ===== NEWSLETTER ===== */
  .newsletter {
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
  }

  .newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,45,125,0.06) 0%, transparent 60%);
  }

  .newsletter-inner {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
  }

  .newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .newsletter p {
    color: var(--white-soft);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .email-form {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
    margin: 0 auto;
  }

  .email-form input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
  }

  .email-form input::placeholder { color: rgba(255,255,255,0.3); }
  .email-form input:focus { border-color: var(--pink); }

  /* ===== FOOTER ===== */
  footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-left {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
  }

  .footer-socials {
    display: flex;
    gap: 1.5rem;
  }

  .footer-socials a {
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .footer-socials a:hover { color: var(--pink); }

  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }

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

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

  /* ===== ANIMATIONS ===== */
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 4px var(--pink), 0 0 8px var(--pink); }
    50% { box-shadow: 0 0 8px var(--pink), 0 0 20px var(--pink); }
  }

  @keyframes hero-breathe {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.08); }
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex !important;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: #1a0a2e !important;
      opacity: 1 !important;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      z-index: 10000;
      padding: 0;
      margin: 0;
    }
    .nav-links.open a { font-size: 1.2rem; }
    .mobile-toggle { display: block; z-index: 10001; }

    .hero-content { padding: 0 1.5rem 4rem; }
    .hero-sub { font-size: 0.95rem; }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .about-image { max-height: 400px; }

    .about-stats {
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .disco-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .tools-grid {
      grid-template-columns: 1fr;
    }

    .email-form {
      flex-direction: column;
    }

    .platform-links { gap: 1.2rem; }

    footer {
      flex-direction: column;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .disco-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
    }
    .release-info { padding: 0.7rem; }
    .release-title { font-size: 0.8rem; }
  }

  /* ── Drawer accordion (Tools) ── */
  .drawer-accordion { position: relative; }
  .drawer-accordion-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }
  .drawer-accordion-caret {
    color: rgba(255,255,255,0.35);
    transition: transform 0.25s ease, color 0.2s;
    flex-shrink: 0;
  }
  .drawer-accordion-btn.open .drawer-accordion-caret {
    transform: rotate(180deg);
    color: #FF2D7D;
  }
  .drawer-accordion-btn.open {
    color: #FF2D7D;
    background: rgba(255,45,125,0.08);
  }
  .drawer-accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 6px;
  }
  .drawer-accordion-body.open {
    max-height: 400px;
    opacity: 1;
    padding: 6px 6px 4px;
  }

  /* Tool cards inside drawer */
  .drawer-tool-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.18s;
    position: relative;
    overflow: hidden;
  }
  .drawer-tool-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #FF2D7D;
    opacity: 0;
    transition: opacity 0.18s;
  }
  .drawer-tool-card:hover {
    background: rgba(255,45,125,0.08);
    border-color: rgba(255,45,125,0.2);
  }
  .drawer-tool-card:hover::before { opacity: 1; }
  .dtc-left { flex-shrink: 0; }
  .dtc-icon {
    width: 34px; height: 34px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
  }
  .dtc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .dtc-top {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .dtc-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
  }
  .dtc-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dtc-arrow {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: transform 0.18s, color 0.18s;
  }
  .drawer-tool-card:hover .dtc-arrow {
    transform: translateX(3px);
    color: #FF2D7D;
  }
/* ===== HOME PAGE GRID (tools / courses cards) ===== */
.hp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.hp-card {
  background: linear-gradient(135deg, rgba(45,27,78,0.5), rgba(10,6,20,0.8));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  transition: all 0.25s cubic-bezier(0.2,0.8,0.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, #FF2D7D, #00F0FF);
  opacity: 0;
  transition: opacity 0.25s;
}
.hp-card:hover {
  border-color: rgba(255,45,125,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.hp-card:hover::before { opacity: 1; }

.hp-card-wide { grid-column: span 2; }
.hp-card-locked { cursor: default; }
.hp-card-locked:hover { transform: none; border-color: rgba(255,255,255,0.07); box-shadow: none; }
.hp-card-locked:hover::before { opacity: 0; }

.hp-card-icon { font-size: 32px; margin-bottom: 4px; }

.hp-card-label {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.hp-card-label.free { background: rgba(0,240,255,0.1); color: #00F0FF; }
.hp-card-label.paid { background: rgba(255,45,125,0.1); color: #FF2D7D; }

.hp-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.hp-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .hp-card-wide { grid-column: span 1; }
  .hp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .hp-grid { grid-template-columns: 1fr; }
}
