:root {
        --bg: #0b0b0f;
        --card: #15161a;
        --text: #f5f5f7;
        --muted: #9b9ba0;
        --accent: #2997ff;
        --line: rgba(245, 245, 247, 0.12);
      }

      body {
        font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background: radial-gradient(circle at 10% 10%, #1b1c22 0%, #0f1116 55%, #0b0b0f 100%);
        color: var(--text);
      }

      .rounded-apple {
        border-radius: 28px;
      }

      .hero {
        padding: 128px 0 108px;
        position: relative;
        overflow: hidden;
      }

      .hero::before,
      .hero::after {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(41, 151, 255, 0.25), transparent 70%);
        filter: blur(4px);
        z-index: 0;
      }

      .hero::before {
        top: -160px;
        right: -120px;
      }

      .hero::after {
        bottom: -240px;
        left: -120px;
        background: radial-gradient(circle, rgba(125, 195, 255, 0.22), transparent 70%);
      }

      .hero-card {
        position: relative;
        z-index: 1;
        background: rgba(21, 22, 26, 0.9);
        border: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        padding: 56px;
        backdrop-filter: blur(10px);
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(245, 245, 247, 0.08);
        color: var(--text);
        padding: 8px 16px;
        border-radius: 999px;
        font-weight: 500;
      }

      .hero-title {
        font-size: clamp(2.6rem, 4.8vw, 4.3rem);
        font-weight: 500;
        line-height: 1.1;
        letter-spacing: -0.02em;
      }

      .hero-sub {
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 30rem;
      }

      .section {
        padding: 104px 0;
      }

      .section-title {
        font-size: clamp(1.7rem, 2.7vw, 2.5rem);
        font-weight: 500;
        letter-spacing: -0.01em;
      }

      h1, h2, h3, h4, h5, h6 {
        font-weight: 500;
      }

.muted {
  color: var(--muted);
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.7;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.intro-list li {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

      .card-soft {
        background: var(--card);
        border: 1px solid var(--line);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
      }

      .wave-card {
        background: var(--card);
        border-radius: 22px;
        padding: 20px 20px 16px;
        border: 1px solid var(--line);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
      }

      .player-row {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        align-items: center;
      }

      .play-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(245, 245, 247, 0.2);
        background: #0f1014;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 600;
      }

      .play-icon.is-playing {
        background: #1d1d1f;
        color: #ffffff;
      }

      .waveform {
        height: 80px;
      }

      .playlist-heading {
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: -0.01em;
        margin-bottom: 8px;
      }

      .playlist {
        display: grid;
        gap: 8px;
        margin-top: 16px;
      }

.playlist-block {
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

      .playlist-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 16px;
        border: 1px solid rgba(245, 245, 247, 0.1);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        text-align: left;
      }

      .playlist-item.is-active {
        border-color: rgba(41, 151, 255, 0.6);
        background: rgba(41, 151, 255, 0.12);
      }

      .playlist-title {
        font-weight: 500;
      }

      .playlist-meta {
        color: var(--muted);
        font-size: 0.9rem;
      }

      .thumb {
        width: 84px;
        height: 84px;
        border-radius: 22px;
        object-fit: cover;
        background: #1f2024;
      }

      .contact-card {
        padding: 28px;
      }

      .footer {
        padding: 40px 0 60px;
        color: var(--muted);
      }

      .btn-rounded {
        border-radius: 999px;
        padding: 10px 26px;
        font-weight: 500;
      }

      .btn-accent {
        background: #f5f5f7;
        border: none;
        color: #0b0b0f;
      }

      .btn-accent:hover {
        background: #ffffff;
      }

      .hero-grid {
        display: grid;
        gap: 20px;
      }

      .meta-tile {
        background: rgba(21, 22, 26, 0.9);
        border-radius: 20px;
        border: 1px solid var(--line);
        padding: 18px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
      }
