/* Melody Box global stylesheet */
/* Shared homepage + blog system styles for GitHub Pages */

:root {
      --bg: #070613;
      --bg-soft: rgba(18, 20, 46, 0.82);
      --bg-deep: rgba(9, 10, 26, 0.94);
      --text: #fbfcff;
      --text-strong: #ffffff;
      --muted: #d2d9ff;
      --muted-soft: #a8b2db;
      --line: rgba(255, 255, 255, 0.14);
      --pink: #ff4fd8;
      --purple: #8f5cff;
      --blue: #3db8ff;
      --cyan: #7af3ff;
      --gold: #f8c76f;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
      --radius: 24px;
      --container: min(1160px, calc(100vw - 32px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background:
        radial-gradient(circle at 12% 12%, rgba(248, 199, 111, 0.14), transparent 22%),
        radial-gradient(circle at top left, rgba(143, 92, 255, 0.3), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 79, 216, 0.24), transparent 28%),
        radial-gradient(circle at bottom center, rgba(61, 184, 255, 0.2), transparent 30%),
        linear-gradient(180deg, #04030b 0%, #090816 42%, #04040b 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(143, 92, 255, 0.08), rgba(61, 184, 255, 0.04), rgba(255, 79, 216, 0.08)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpath d='M0 60h120M60 0v120'/%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 80% 20%, rgba(122, 243, 255, 0.08), transparent 18%),
        radial-gradient(circle at 20% 80%, rgba(255, 79, 216, 0.08), transparent 18%);
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: -1;
      animation: ambient-shift 16s ease-in-out infinite alternate;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: var(--container); margin: 0 auto; }
    .floating-bg {
      position: fixed;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: -1;
    }
    .float-chip {
      position: absolute;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.82);
      font-size: 1rem;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 62%),
        linear-gradient(135deg, rgba(143, 92, 255, 0.16), rgba(61, 184, 255, 0.12));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 10px 25px rgba(8, 10, 28, 0.18);
      filter: blur(0.1px);
      opacity: 0.45;
      animation: float-drift linear infinite;
      will-change: transform;
    }
    .float-chip::before {
      content: attr(data-symbol);
      text-shadow: 0 0 18px rgba(255, 79, 216, 0.24);
    }
    .float-chip.note { color: rgba(122, 243, 255, 0.9); }
    .float-chip.heart { color: rgba(255, 171, 225, 0.92); }
    .float-chip.gift { color: rgba(248, 199, 111, 0.9); }
    .float-chip.spark { color: rgba(255, 255, 255, 0.92); }
    .float-chip.mic { color: rgba(205, 201, 255, 0.92); }
    .float-chip.s1 { top: 8%; left: 6%; animation-duration: 20s; animation-delay: -2s; }
    .float-chip.s2 { top: 18%; right: 10%; animation-duration: 24s; animation-delay: -6s; }
    .float-chip.s3 { top: 34%; left: 12%; animation-duration: 18s; animation-delay: -10s; }
    .float-chip.s4 { top: 48%; right: 16%; animation-duration: 22s; animation-delay: -4s; }
    .float-chip.s5 { top: 62%; left: 8%; animation-duration: 26s; animation-delay: -8s; }
    .float-chip.s6 { top: 76%; right: 8%; animation-duration: 21s; animation-delay: -5s; }
    .float-chip.s7 { top: 86%; left: 18%; animation-duration: 25s; animation-delay: -11s; }
    .float-chip.s8 { top: 12%; left: 42%; animation-duration: 19s; animation-delay: -7s; }
    .float-chip.s9 { top: 58%; left: 48%; animation-duration: 23s; animation-delay: -3s; }
    .float-chip.s10 { top: 30%; right: 34%; animation-duration: 17s; animation-delay: -9s; }
    .section { position: relative; padding: 92px 0; }
    .section::before {
      content: "";
      position: absolute;
      inset: 16px 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(122, 243, 255, 0.2), transparent);
      opacity: 0.5;
      pointer-events: none;
    }
    .glass {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        var(--bg-soft);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(22px);
    }
    .muted { color: var(--muted-soft); }
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .parallax { transform: translateY(var(--parallax, 0px)); transition: transform 0.1s linear; }

    .section-top {
      text-align: center;
      margin: 0 auto 42px;
      max-width: 840px;
    }
    .section-title {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(1.9rem, 5vw, 3rem);
      line-height: 1.05;
      margin: 0 0 14px;
      color: var(--text-strong);
      text-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
    }
    .section-subtitle {
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.9;
      max-width: 760px;
      margin: 0 auto;
    }
    .section-copy { color: var(--muted); line-height: 1.85; margin: 0 0 28px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #ece4ff;
      font-size: 0.84rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 16px;
      backdrop-filter: blur(18px);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(20px);
      background: rgba(4, 4, 14, 0.55);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      font-family: "Montserrat", sans-serif;
    }
    .brand-badge {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(143, 92, 255, 0.22), rgba(61, 184, 255, 0.18));
      border: 1px solid rgba(255, 255, 255, 0.12);
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 10px 26px rgba(11, 15, 37, 0.22);
      animation: badge-float 5.5s ease-in-out infinite;
    }
    .brand-badge img { width: 32px; height: 32px; object-fit: contain; border-radius: 50%; }
    .nav-links { display: none; gap: 18px; color: var(--muted); font-size: 0.95rem; }
    .nav-links a {
      position: relative;
      padding-bottom: 4px;
      transition: color 0.24s ease;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--pink));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.24s ease;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .button, button.button {
      position: relative;
      overflow: hidden;
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 700;
      font-size: 0.98rem;
      line-height: 1;
      padding: 16px 22px;
      border-radius: 999px;
      transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
      font-family: inherit;
    }
    .button::before, button.button::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.34) 50%, transparent 80%);
      transform: translateX(-140%);
      transition: transform 0.6s ease;
    }
    .button-primary {
      color: white;
      background: linear-gradient(135deg, #7046ff, var(--pink) 46%, var(--blue));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 10px 40px rgba(143, 92, 255, 0.45),
        0 0 28px rgba(255, 79, 216, 0.35);
    }
    .button-secondary {
      color: var(--text);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .button:hover, button.button:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 20px 50px rgba(116, 74, 255, 0.34), 0 0 34px rgba(255, 79, 216, 0.28);
    }
    .button:hover::before, button.button:hover::before { transform: translateX(140%); }

    .hero {
      padding-top: 36px;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
    }
    .hero-shell {
      position: relative;
      padding: 28px;
      border-radius: 34px;
      overflow: hidden;
      isolation: isolate;
      box-shadow: 0 30px 120px rgba(5, 8, 24, 0.65);
    }
    .hero-shell::before {
      content: "";
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 25% 35%, rgba(143, 92, 255, 0.3), transparent 18%),
        radial-gradient(circle at 80% 25%, rgba(255, 79, 216, 0.28), transparent 18%),
        radial-gradient(circle at 70% 70%, rgba(61, 184, 255, 0.24), transparent 18%);
      animation: pulse-clouds 12s linear infinite alternate;
      z-index: -2;
    }
    .hero-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      z-index: -1;
    }
    .hero-grid { display: grid; gap: 28px; align-items: center; }
    .hero-copy h1 {
      font-family: "Montserrat", sans-serif;
      font-size: clamp(2.5rem, 10vw, 5rem);
      line-height: 0.96;
      margin: 0 0 16px;
      letter-spacing: -0.04em;
    }
    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #d9c9ff 36%, #7af3ff 70%, #ff96ec 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-copy p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 1.06rem;
      line-height: 1.9;
      max-width: 640px;
    }
    .hero-badge,
    .blog-badge {
      box-shadow: 0 10px 24px rgba(10, 12, 34, 0.22);
    }
    .hero-lead {
      margin: 0 0 14px;
      font-size: 1.12rem;
      line-height: 1.75;
      color: #f6f8ff;
      font-weight: 600;
      max-width: 640px;
    }
    .hero-story {
      display: grid;
      gap: 12px;
      margin-bottom: 20px;
      max-width: 680px;
    }
    .hero-story p {
      margin: 0;
      padding: 14px 16px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.1);
      color: #d9e1ff;
      line-height: 1.82;
      box-shadow: 0 14px 28px rgba(8, 10, 28, 0.18);
    }
    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }
    .hero-highlights span {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: #eef3ff;
      font-size: 0.92rem;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(10, 12, 34, 0.16);
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
    .trust-pills { display: flex; flex-wrap: wrap; gap: 12px; }
    .trust-pills span {
      font-size: 0.92rem;
      color: #f7f9ff;
      border-radius: 999px;
      padding: 10px 14px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }

    .stats-grid,
    .services-grid,
    .pricing-grid,
    .folder-grid,
    .spotify-grid,
    .web-grid,
    .reviews-grid,
    .trust-grid,
    .footer-grid,
    .website-pricing-grid { display: grid; gap: 18px; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 26px; }
    .services-grid,
    .folder-grid,
    .reviews-grid,
    .trust-grid,
    .website-pricing-grid { grid-template-columns: 1fr; }

    .stat-card, .service-card, .package-card, .folder-card, .spotify-card, .review-card, .trust-card, .website-card, .video-card, .step-card, .contact-card, .footer-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      padding: 22px;
      transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    }
    .stat-card::before, .service-card::before, .package-card::before, .folder-card::before, .review-card::before, .trust-card::before, .website-card::before, .video-card::before, .step-card::before, .contact-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 42%);
      pointer-events: none;
    }
    .stat-card strong {
      display: block;
      font-size: 1.8rem;
      font-family: "Montserrat", sans-serif;
      margin-bottom: 6px;
      color: var(--text-strong);
    }
    .stat-card {
      background:
        radial-gradient(circle at top right, rgba(122, 243, 255, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)),
        var(--bg-deep);
    }

    .hero-visual {
      position: relative;
      min-height: 420px;
      display: grid;
      place-items: center;
      perspective: 1400px;
    }
    .music-stage {
      position: relative;
      width: min(100%, 430px);
      aspect-ratio: 1 / 1.12;
      transform-style: preserve-3d;
      animation: drift-stage 8s ease-in-out infinite;
    }
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(6px);
      opacity: 0.8;
      animation: float-orb 8s ease-in-out infinite;
    }
    .orb.one { width: 120px; height: 120px; background: rgba(143, 92, 255, 0.42); top: 14%; right: 2%; }
    .orb.two { width: 90px; height: 90px; background: rgba(255, 79, 216, 0.34); bottom: 18%; left: 2%; animation-delay: -2s; }
    .orb.three { width: 140px; height: 140px; background: rgba(61, 184, 255, 0.26); bottom: 6%; right: 16%; animation-delay: -4s; }
    .studio-card {
      position: absolute;
      inset: 6% 4%;
      border-radius: 32px;
      padding: 24px 22px;
      display: grid;
      gap: 16px;
      background:
        radial-gradient(circle at top right, rgba(122, 243, 255, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 79, 216, 0.14), transparent 24%),
        linear-gradient(155deg, rgba(15, 18, 44, 0.96), rgba(8, 10, 24, 0.94));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 28px 90px rgba(8, 10, 28, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      overflow: hidden;
      transform: rotateY(-8deg) rotateX(5deg);
    }
    .studio-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(255,255,255,0.08), transparent 44%);
      pointer-events: none;
    }
    .studio-head {
      display: grid;
      gap: 10px;
      justify-items: center;
      text-align: center;
    }
    .studio-brand-ring {
      width: 68px;
      height: 68px;
      padding: 10px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), transparent 45%),
        linear-gradient(145deg, rgba(24, 28, 68, 0.98), rgba(10, 12, 28, 0.96));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow:
        0 0 0 8px rgba(255,255,255,0.03),
        0 0 32px rgba(143, 92, 255, 0.26),
        0 18px 42px rgba(6, 9, 24, 0.42);
      animation: pulse-ring 3.2s ease-in-out infinite;
    }
    .studio-brand-ring img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%;
    }
    .studio-copy {
      display: grid;
      gap: 8px;
      justify-items: center;
    }
    .studio-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      max-width: 100%;
      padding: 10px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(143, 92, 255, 0.18), rgba(61, 184, 255, 0.1));
      border: 1px solid rgba(255,255,255,0.12);
      color: #edf2ff;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      box-shadow: 0 12px 24px rgba(7, 9, 24, 0.2);
    }
    .studio-copy h3 {
      margin: 0;
      font-family: "Montserrat", sans-serif;
      font-size: 1.16rem;
      line-height: 1.3;
      color: var(--text-strong);
      max-width: 280px;
    }
    .studio-service-stage {
      position: relative;
      min-height: 390px;
      border-radius: 26px;
      background:
        radial-gradient(circle at center, rgba(122, 243, 255, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .studio-center-mark {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: grid;
      justify-items: center;
      gap: 10px;
      z-index: 2;
    }
    .studio-center-mark span {
      white-space: nowrap;
      font-family: "Montserrat", sans-serif;
      font-size: 0.86rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      color: #f5f8ff;
      text-transform: uppercase;
    }
    .service-scroll-row {
      position: absolute;
      left: 0;
      right: 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }
    .service-scroll-row-top {
      top: 24px;
    }
    .service-scroll-row-bottom {
      bottom: 24px;
    }
    .service-scroll-track {
      width: max-content;
      display: flex;
      gap: 12px;
      padding-inline: 12px;
      animation: scroll-services 20s linear infinite;
    }
    .service-scroll-track-reverse {
      animation-direction: reverse;
      animation-duration: 22s;
    }
    .service-scroll-card {
      min-width: 122px;
      min-height: 86px;
      padding: 12px 12px;
      border-radius: 22px;
      display: grid;
      justify-items: center;
      align-content: center;
      gap: 8px;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
        rgba(12, 14, 34, 0.78);
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 18px 34px rgba(7, 9, 24, 0.26);
      backdrop-filter: blur(12px);
      flex: 0 0 auto;
    }
    .service-scroll-card strong {
      color: #f7f9ff;
      font-size: 0.78rem;
      line-height: 1.35;
      font-weight: 700;
    }
    .service-scroll-card span {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      background: linear-gradient(135deg, rgba(143, 92, 255, 0.24), rgba(61, 184, 255, 0.18));
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 10px 24px rgba(143, 92, 255, 0.18);
    }
    .studio-info-strip,
    .studio-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .studio-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .studio-detail-card {
      padding: 12px 12px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 14px 26px rgba(8, 10, 28, 0.16);
    }
    .studio-detail-card strong {
      display: block;
      margin-bottom: 6px;
      color: #f7fbff;
      font-size: 0.78rem;
      line-height: 1.4;
    }
    .studio-detail-card span {
      display: block;
      color: #cfdbff;
      font-size: 0.72rem;
      line-height: 1.55;
    }
    .studio-info-strip span,
    .studio-points span {
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.06);
      color: #f4f7ff;
      font-size: 0.76rem;
      font-weight: 600;
      box-shadow: 0 12px 24px rgba(8, 10, 26, 0.14);
    }
    .studio-wave {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 7px;
      align-items: end;
      height: 54px;
      padding: 0 2px;
    }
    .studio-wave span {
      display: block;
      min-height: 14px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(122, 243, 255, 0.95), rgba(255, 79, 216, 0.72));
      box-shadow: 0 0 18px rgba(122, 243, 255, 0.18);
      animation: wave-bounce 1.6s ease-in-out infinite;
      transform-origin: bottom;
    }
    .studio-wave span:nth-child(2) { animation-delay: -0.15s; }
    .studio-wave span:nth-child(3) { animation-delay: -0.3s; }
    .studio-wave span:nth-child(4) { animation-delay: -0.45s; }
    .studio-wave span:nth-child(5) { animation-delay: -0.6s; }
    .studio-wave span:nth-child(6) { animation-delay: -0.75s; }
    .studio-wave span:nth-child(7) { animation-delay: -0.9s; }
    .studio-wave span:nth-child(8) { animation-delay: -1.05s; }
    .music-notes { position: absolute; inset: 0; pointer-events: none; }
    .note {
      position: absolute;
      font-size: 1.4rem;
      color: rgba(255,255,255,0.78);
      text-shadow: 0 0 22px rgba(143, 92, 255, 0.6);
      animation: note-rise linear infinite;
    }
    .note:nth-child(1) { left: 8%; bottom: 10%; animation-duration: 7s; }
    .note:nth-child(2) { right: 12%; bottom: 16%; animation-duration: 8.6s; animation-delay: -3s; }
    .note:nth-child(3) { left: 18%; top: 18%; animation-duration: 9.2s; animation-delay: -1.2s; }
    .note:nth-child(4) { right: 8%; top: 22%; animation-duration: 7.8s; animation-delay: -4s; }
    .note:nth-child(5) { left: 46%; top: 6%; animation-duration: 8.8s; animation-delay: -2.4s; }

    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes float-orb { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -18px, 0); } }
    @keyframes drift-stage { 0%, 100% { transform: translateY(0) rotateZ(0deg); } 50% { transform: translateY(-10px) rotateZ(1deg); } }
    @keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    @keyframes pulse-ring { 0%, 100% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.03), 0 0 30px rgba(143, 92, 255, 0.24); } 50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.02), 0 0 42px rgba(255, 79, 216, 0.26); } }
    @keyframes aura-breathe { 0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.72; } 50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; } }
    @keyframes halo-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes wordmark-shimmer {
      0%, 100% { filter: drop-shadow(0 0 0 rgba(122, 243, 255, 0)); opacity: 0.94; }
      50% { filter: drop-shadow(0 0 10px rgba(122, 243, 255, 0.18)); opacity: 1; }
    }
    @keyframes wordmark-line {
      0%, 100% { transform: scaleX(0.72); opacity: 0.55; }
      50% { transform: scaleX(1); opacity: 1; }
    }
    @keyframes scroll-services {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes wave-bounce {
      0%, 100% { transform: scaleY(0.4); opacity: 0.85; }
      50% { transform: scaleY(1); opacity: 1; }
    }
    @keyframes line-pulse { 0%, 100% { transform: scaleX(1); opacity: 0.8; } 50% { transform: scaleX(1.08); opacity: 1; } }
    @keyframes note-rise { 0% { transform: translateY(0) scale(0.85); opacity: 0; } 10%, 80% { opacity: 0.95; } 100% { transform: translateY(-60px) scale(1.15); opacity: 0; } }
    @keyframes pulse-clouds { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.08) rotate(8deg); } }

    .service-card { min-height: 170px; }
    .service-card:hover,
    .package-card:hover,
    .review-card:hover,
    .trust-card:hover,
    .website-card:hover,
    .video-card:hover,
    .step-card:hover,
    .contact-card:hover {
      transform: translateY(-6px);
      border-color: rgba(122, 243, 255, 0.24);
      box-shadow: 0 30px 90px rgba(3, 7, 24, 0.52);
    }
    .icon-bubble {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(143, 92, 255, 0.22), rgba(61, 184, 255, 0.16));
      border: 1px solid rgba(255,255,255,0.1);
      color: white;
      box-shadow: 0 0 24px rgba(143, 92, 255, 0.16);
      animation: icon-bob 4.2s ease-in-out infinite;
      will-change: transform;
    }
    .icon-bubble svg { width: 24px; height: 24px; fill: currentColor; }
    .service-card h3, .package-card h3, .review-card h3, .website-card h3, .step-card h3, .video-card h3 {
      margin: 0 0 10px;
      font-size: 1.15rem;
      font-family: "Montserrat", sans-serif;
      color: var(--text-strong);
    }
    .service-card p, .review-card p, .website-card p, .video-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.95rem;
    }
    .language-banner, .addons-strip {
      margin-top: 24px;
      border-radius: 22px;
      padding: 18px 20px;
      background: linear-gradient(135deg, rgba(255, 79, 216, 0.12), rgba(61, 184, 255, 0.08));
      border: 1px solid rgba(255,255,255,0.09);
      color: #eef6ff;
      font-weight: 600;
      text-align: center;
    }

    .pricing-grid, .website-pricing-grid { align-items: stretch; }
    .package-card, .website-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
      min-height: 100%;
    }
    .package-card.highlight, .website-card.highlight {
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 20px 70px rgba(143, 92, 255, 0.34), 0 0 45px rgba(255, 79, 216, 0.18);
      transform: translateY(-2px);
    }
    .website-card.gold {
      background: linear-gradient(145deg, rgba(45, 31, 11, 0.95), rgba(24, 17, 9, 0.84)), rgba(255,255,255,0.04);
      border: 1px solid rgba(248, 199, 111, 0.25);
      box-shadow: 0 22px 65px rgba(115, 83, 22, 0.26);
    }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      align-self: flex-start;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: rgba(255,255,255,0.1);
      color: #f7f3ff;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 8px 20px rgba(5, 8, 24, 0.22);
    }
    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 0;
      font-family: "Montserrat", sans-serif;
    }
    .price strong { font-size: clamp(2rem, 7vw, 3rem); line-height: 1; }
    .package-list, .addon-list, .step-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    .package-list li, .addon-list li, .step-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      line-height: 1.7;
    }
    .package-list li::before, .addon-list li::before, .step-list li::before {
      content: "✦";
      color: var(--cyan);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .demo-layout { display: grid; gap: 24px; }
    .folder-card {
      color: var(--text-strong);
      cursor: pointer;
      text-align: left;
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }
    .folder-card:hover, .folder-card.active {
      transform: translateY(-4px);
      border-color: rgba(122, 243, 255, 0.24);
      box-shadow: 0 20px 60px rgba(7, 12, 30, 0.55);
    }
    .folder-card.active {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)),
        rgba(17, 20, 49, 0.92);
    }
    .folder-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 8px;
    }
    .folder-icon {
      width: 62px;
      height: 48px;
      border-radius: 16px 16px 20px 20px;
      position: relative;
      background: linear-gradient(135deg, rgba(255, 79, 216, 0.34), rgba(143, 92, 255, 0.28), rgba(61, 184, 255, 0.22));
      box-shadow: 0 12px 30px rgba(143, 92, 255, 0.18);
      flex-shrink: 0;
      animation: icon-glow 3.6s ease-in-out infinite;
    }
    .folder-icon::before {
      content: "";
      position: absolute;
      top: -8px;
      left: 10px;
      width: 28px;
      height: 14px;
      border-radius: 10px 10px 0 0;
      background: rgba(255, 255, 255, 0.14);
    }
    .folder-title { flex: 1; }
    .folder-title h3 { margin: 0 0 6px; font-size: 1.05rem; font-family: "Montserrat", sans-serif; }
    .folder-title h3 { color: var(--text-strong); }
    .folder-title p { margin: 0; color: var(--muted); font-size: 0.92rem; }
    .folder-arrow {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      font-size: 1.2rem;
      transition: transform 0.28s ease;
    }
    .folder-card.active .folder-arrow { transform: rotate(90deg); }
    .accordion-panel {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
    }
    .accordion-panel.open {
      max-height: 12000px;
      opacity: 1;
      margin-top: 24px;
    }
    .player-shell {
      display: grid;
      gap: 18px;
      padding: 20px;
      border-radius: 24px;
    }
    .player-grid { display: grid; gap: 18px; }
    .player-card {
      padding: 12px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .player-card iframe, .spotify-card iframe {
      border: 0;
      width: 100%;
      border-radius: 14px;
      display: block;
    }
    .spotify-grid { grid-template-columns: 1fr; }

    .website-services { display: grid; gap: 18px; }
    .web-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .web-icon {
      min-height: 150px;
      border-radius: 24px;
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      text-align: center;
      cursor: pointer;
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }
    .web-icon:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(10, 16, 36, 0.42); }
    .web-icon strong { color: var(--text-strong); line-height: 1.5; }
    .web-icon svg { width: 34px; height: 34px; fill: currentColor; color: #fff; }
    .website-price-note { text-align: center; margin-top: 18px; color: var(--muted); }

    .video-grid, .steps-grid, .contact-grid { display: grid; gap: 18px; }
    .steps-grid { counter-reset: steps; }
    .step-card {
      counter-increment: steps;
      padding-left: 22px;
      min-height: 108px;
    }
    .step-card::after {
      content: counter(steps, decimal-leading-zero);
      position: absolute;
      top: 18px;
      right: 18px;
      min-width: 44px;
      height: 44px;
      padding: 0 10px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(143, 92, 255, 0.9), rgba(61, 184, 255, 0.82));
      color: white;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(143, 92, 255, 0.28);
    }

    .stars { display: flex; gap: 4px; margin-bottom: 12px; color: #ffd56d; font-size: 1rem; }
    .reviewer { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      color: white;
      background: linear-gradient(135deg, var(--pink), var(--purple));
    }

    .trust-card { text-align: center; padding: 26px 20px; min-height: 180px; }
    .badge-emblem {
      width: 74px;
      height: 74px;
      margin: 0 auto 18px;
      border-radius: 24px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(255,79,216,0.22), rgba(61,184,255,0.18));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 16px 40px rgba(143, 92, 255, 0.2);
      animation: icon-glow 4.8s ease-in-out infinite;
    }
    .badge-emblem svg { width: 34px; height: 34px; fill: currentColor; }

    .contact-wrap { display: grid; gap: 22px; }
    .contact-card form { display: grid; gap: 14px; }
    .field-grid { display: grid; gap: 14px; }
    label {
      display: grid;
      gap: 8px;
      font-size: 0.92rem;
      color: #f3f1ff;
    }
    input, select, textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-strong);
      border-radius: 16px;
      padding: 15px 16px;
      font: inherit;
      outline: none;
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }
    textarea { min-height: 150px; resize: vertical; }
    input::placeholder, textarea::placeholder { color: rgba(234, 239, 255, 0.62); }
    select option { color: #ffffff; background: #11142b; }
    input:focus, select:focus, textarea:focus {
      border-color: rgba(122, 243, 255, 0.5);
      box-shadow: 0 0 0 4px rgba(61, 184, 255, 0.14);
      transform: translateY(-1px);
    }
    .contact-side ul {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }
    .contact-side li { display: flex; gap: 12px; color: var(--muted); line-height: 1.7; }
    .contact-side li::before { content: "♪"; color: var(--cyan); font-weight: 700; }

    .final-cta {
      text-align: center;
      padding: 34px 24px;
      border-radius: 30px;
      overflow: hidden;
    }
    .final-cta h2 {
      margin: 0 0 14px;
      font-family: "Montserrat", sans-serif;
      font-size: clamp(2rem, 6vw, 3.6rem);
      line-height: 1.02;
      color: var(--text-strong);
    }

    .footer {
      padding: 34px 0 24px;
      border-top: 1px solid rgba(255,255,255,0.06);
      background: rgba(4, 4, 12, 0.5);
    }
    .footer-grid { grid-template-columns: 1fr; align-items: start; gap: 22px; }
    .footer-card h4 { margin: 0 0 12px; font-family: "Montserrat", sans-serif; }
    .footer-links, .social-row { display: flex; flex-wrap: wrap; gap: 12px; }
    .footer-links a, .social-link { color: var(--muted); transition: color 0.22s ease, transform 0.22s ease; }
    .footer-links a:hover, .social-link:hover { color: white; transform: translateY(-2px); }
    .social-link {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .social-link svg { width: 18px; height: 18px; fill: currentColor; }
    .copyright { margin-top: 20px; text-align: center; color: rgba(255,255,255,0.56); font-size: 0.9rem; }

    .hero-copy h1,
    .section-title,
    .final-cta h2 {
      text-wrap: balance;
    }

    @keyframes icon-bob {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-6px) scale(1.04); }
    }

    @keyframes ambient-shift {
      0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
      100% { transform: translate3d(0, -10px, 0) scale(1.06); opacity: 1; }
    }

    @keyframes float-drift {
      0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.92); }
      25% { transform: translate3d(18px, -32px, 0) rotate(8deg) scale(1); }
      50% { transform: translate3d(-10px, -68px, 0) rotate(-6deg) scale(1.06); }
      75% { transform: translate3d(22px, -102px, 0) rotate(4deg) scale(0.98); }
      100% { transform: translate3d(-8px, -140px, 0) rotate(-8deg) scale(0.9); }
    }

    @keyframes icon-glow {
      0%, 100% { box-shadow: 0 12px 30px rgba(143, 92, 255, 0.18); }
      50% { box-shadow: 0 20px 42px rgba(61, 184, 255, 0.24), 0 0 26px rgba(255, 79, 216, 0.18); }
    }

    @media (min-width: 640px) {
      .services-grid, .reviews-grid, .trust-grid, .folder-grid, .website-pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .spotify-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (min-width: 900px) {
      .nav-links { display: flex; }
      .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); }
      .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .folder-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .website-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .contact-wrap { grid-template-columns: 1.15fr 0.85fr; }
      .footer-grid { grid-template-columns: 1.1fr 0.9fr 0.9fr; }
      .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .video-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
      .floating-bg { display: none; }
    }

/* Blog system extensions */

:root {
  --bg: #06050f;
  --panel: rgba(16, 18, 42, 0.84);
  --panel-strong: rgba(11, 12, 30, 0.95);
  --text: #f8fbff;
  --muted: #b7c2e6;
  --line: rgba(255, 255, 255, 0.11);
  --pink: #ff53d0;
  --purple: #7d5cff;
  --blue: #43b6ff;
  --cyan: #88f0ff;
  --gold: #f4c777;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --container: min(1120px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(125, 92, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 83, 208, 0.14), transparent 28%),
    radial-gradient(circle at bottom center, rgba(67, 182, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #05040c 0%, #09091a 42%, #05040d 100%);
  overflow-x: hidden;
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate3d(0, -14px, 0) scale(1.04); opacity: 0.9; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 199, 119, 0.08), transparent 16%),
    radial-gradient(circle at 80% 14%, rgba(136, 240, 255, 0.08), transparent 18%);
  animation: floatGlow 10s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 83, 208, 0.16) 0 10px, transparent 11px),
    radial-gradient(circle at 28% 22%, rgba(136, 240, 255, 0.14) 0 8px, transparent 9px),
    radial-gradient(circle at 70% 18%, rgba(125, 92, 255, 0.16) 0 12px, transparent 13px),
    radial-gradient(circle at 84% 72%, rgba(244, 199, 119, 0.12) 0 9px, transparent 10px),
    radial-gradient(circle at 58% 86%, rgba(67, 182, 255, 0.14) 0 7px, transparent 8px);
  filter: blur(0.2px);
  opacity: 0.85;
  animation: floatGlow 13s ease-in-out infinite reverse;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: var(--container); margin: 0 auto; }
.glass {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #edf2ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.button:hover { transform: translateY(-3px); }
.button::after {
  content: "";
  position: absolute;
  inset: -130% auto auto -10%;
  width: 45%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: rotate(18deg);
  transition: transform 0.6s ease;
  z-index: -1;
}
.button:hover::after { transform: translateX(240%) rotate(18deg); }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink) 50%, var(--blue));
  box-shadow: 0 12px 35px rgba(125, 92, 255, 0.34);
}
.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.button-secondary:hover {
  border-color: rgba(136, 240, 255, 0.34);
  box-shadow: 0 14px 35px rgba(67, 182, 255, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 16, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-wrap: nowrap;
  min-width: 0;
}
.brand > span:last-child {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #d8ddff 36%, #8ae8ff 70%, #ff9de9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(143, 92, 255, 0.18);
  animation: wordmark-shimmer 6.8s ease-in-out infinite;
}
.brand > span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 243, 255, 0.7), transparent);
  opacity: 0.9;
  animation: wordmark-line 4.8s ease-in-out infinite;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.24), rgba(67, 182, 255, 0.18));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.nav-links {
  display: none;
  gap: 18px;
  color: var(--muted);
}

.hero {
  padding: 78px 0 42px;
}
.hero-grid {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  animation: riseIn 0.8s ease both;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 0.98;
  margin: 14px 0 14px;
}
.hero p {
  color: var(--muted);
  line-height: 1.85;
  max-width: 760px;
  margin: 0 0 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.toolbar {
  display: grid;
  gap: 16px;
  margin: 0 auto 28px;
}
.search-box input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-box input:focus {
  outline: none;
  border-color: rgba(136, 240, 255, 0.4);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(136, 240, 255, 0.08);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-chip {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.filter-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.24);
}
.filter-chip.active {
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.8), rgba(255, 83, 208, 0.72));
}

.grid {
  display: grid;
  gap: 18px;
}
.post-card {
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: riseIn 0.7s ease both;
}
.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.1), transparent 35%, rgba(67, 182, 255, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}
.post-card:hover::before { opacity: 1; }
.post-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.08);
}
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  transition: transform 0.45s ease, filter 0.3s ease;
}
.post-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.post-card h2,
.post-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.22rem;
  line-height: 1.25;
}
.post-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}
.post-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.post-card .read-more::after {
  content: "→";
  transition: transform 0.25s ease;
}
.post-card .read-more:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.26), rgba(255, 83, 208, 0.22));
  border-color: rgba(136, 240, 255, 0.26);
  box-shadow: 0 12px 28px rgba(125, 92, 255, 0.18);
}
.post-card .read-more:hover::after { transform: translateX(3px); }

.blog-hero,
.article-hero {
  padding: 70px 0 34px;
}
.article-shell {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 32px;
  animation: riseIn 0.85s ease both;
}
.article-shell img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.breadcrumbs {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.94rem;
}
.breadcrumbs a:hover { color: white; }

.article-layout {
  display: grid;
  gap: 20px;
  padding-bottom: 60px;
}
.blog-content,
.article-body {
  padding: 28px;
  border-radius: 28px;
  animation: riseIn 0.9s ease both;
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.article-body h1,
.article-body h2,
.article-body h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  color: white;
}
.blog-content h1,
.article-body h1 { font-size: clamp(2rem, 6vw, 3.4rem); margin: 0 0 16px; }
.blog-content h2,
.article-body h2 { font-size: 1.6rem; margin: 28px 0 12px; }
.blog-content h3,
.article-body h3 { font-size: 1.14rem; margin: 18px 0 10px; }
.blog-content p,
.blog-content li,
.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}
.blog-content ul,
.article-body ul { padding-left: 20px; }
.blog-content strong,
.article-body strong { color: white; }

.article-cta {
  margin-top: 30px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.18), rgba(255, 83, 208, 0.14));
  border: 1px solid rgba(255,255,255,0.1);
}
.article-cta p { margin: 0 0 14px; }

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

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

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
  .article-sidebar {
    position: sticky;
    top: 94px;
    padding: 22px;
    border-radius: 24px;
    animation: riseIn 1s ease both;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  body::before,
  .hero-grid,
  .post-card,
  .article-shell,
  .article-body,
  .article-sidebar { animation: none !important; }
}

/* Mobile-first refinements */
.brand-mark,
.visual-top .mini-logo {
  border-radius: 50%;
}

.brand-mark {
  width: 50px;
  height: 50px;
  padding: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 26px rgba(11, 15, 37, 0.28);
}

.brand-mark img,
.visual-top .mini-logo img {
  border-radius: 50%;
}

.hero-quick-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 26px;
}

.quick-nav-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(8, 10, 28, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quick-nav-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 243, 255, 0.28);
  box-shadow: 0 16px 34px rgba(56, 82, 255, 0.18);
}

.quick-nav-chip-primary {
  background: linear-gradient(135deg, rgba(143, 92, 255, 0.96), rgba(255, 79, 216, 0.92), rgba(61, 184, 255, 0.92));
  color: #fff;
}

.trust-pills {
  margin-bottom: 18px;
}

.stat-card .muted {
  display: block;
  line-height: 1.55;
  color: #dbe3ff;
}

.priority-card .muted {
  font-size: 0.9rem;
  line-height: 1.5;
}

.blog-landing .hero-grid {
  position: relative;
  overflow: hidden;
}

.blog-landing .hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(125, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 83, 208, 0.14), transparent 26%);
  pointer-events: none;
}
.blog-landing .hero-grid::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.blog-landing h1 {
  max-width: 860px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.blog-hero-visual {
  position: relative;
  min-height: 220px;
  margin: 6px 0 6px;
  display: grid;
  place-items: center;
}
.blog-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.9;
  animation: float-orb 9s ease-in-out infinite;
}
.blog-orb-one {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 8%;
  background: rgba(125, 92, 255, 0.28);
}
.blog-orb-two {
  width: 92px;
  height: 92px;
  right: 10%;
  top: 18%;
  background: rgba(255, 83, 208, 0.24);
  animation-delay: -2s;
}
.blog-orb-three {
  width: 140px;
  height: 140px;
  bottom: 8%;
  right: 22%;
  background: rgba(67, 182, 255, 0.18);
  animation-delay: -4s;
}
.blog-spotlight {
  position: relative;
  width: min(100%, 620px);
  min-height: 220px;
  padding: 26px 22px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(122, 243, 255, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 79, 216, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(14, 18, 42, 0.96), rgba(8, 10, 24, 0.92));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 26px 60px rgba(9, 12, 32, 0.34);
  animation: riseIn 0.9s ease both;
}
.blog-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}
.blog-spotlight-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f7fbff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-spotlight-lines {
  display: flex;
  gap: 8px;
  margin: 18px 0 20px;
}
.blog-spotlight-lines span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125, 92, 255, 0.95), rgba(67, 182, 255, 0.9));
  box-shadow: 0 0 16px rgba(67, 182, 255, 0.22);
  animation: line-pulse 2.4s ease-in-out infinite;
}
.blog-spotlight-lines span:nth-child(1) { width: 32%; }
.blog-spotlight-lines span:nth-child(2) { width: 18%; animation-delay: -0.6s; }
.blog-spotlight-lines span:nth-child(3) { width: 46%; animation-delay: -1.1s; }
.blog-spotlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 360px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 30px rgba(7, 9, 24, 0.2);
}
.blog-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(143, 92, 255, 0.96), rgba(255, 79, 216, 0.92), rgba(61, 184, 255, 0.9));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 26px rgba(143, 92, 255, 0.26);
}
.blog-card-copy {
  display: grid;
  gap: 4px;
}
.blog-card-copy strong {
  color: #fff;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}
.blog-card-copy span {
  color: #d7defd;
  font-size: 0.92rem;
  line-height: 1.6;
}
.blog-floating-tag {
  position: absolute;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #eef3ff;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 22px rgba(8, 10, 24, 0.2);
  animation: badge-float 5.2s ease-in-out infinite;
}
.blog-floating-tag.tag-one {
  top: 18px;
  right: 18px;
}
.blog-floating-tag.tag-two {
  right: 22px;
  bottom: 72px;
  animation-delay: -1.2s;
}
.blog-floating-tag.tag-three {
  left: 18px;
  bottom: 18px;
  animation-delay: -2.1s;
}
.blog-story p {
  background: linear-gradient(180deg, rgba(143, 92, 255, 0.12), rgba(255,255,255,0.03));
}
.blog-highlights span {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(125, 92, 255, 0.08));
}

@media (max-width: 899px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
    padding: 14px 0;
  }

  .site-nav > .button {
    width: 100%;
    min-height: 50px;
    order: 3;
  }

  .home-hero {
    padding-top: 12px;
  }

  .hero-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy p,
  .hero p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-story {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-story p {
    padding: 13px 14px;
    border-radius: 18px;
    line-height: 1.72;
  }

  .hero-highlights {
    margin-bottom: 18px;
  }

  .hero-highlights span {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0 18px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .stat-card {
    padding: 20px 18px;
    min-height: 116px;
  }

  .stat-card strong {
    font-size: 1.12rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .stat-card .muted {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .priority-card .muted {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .music-stage {
    width: min(100%, 352px);
    aspect-ratio: 1 / 1.34;
    animation-duration: 11s;
  }

  .studio-card {
    inset: 2% 0;
    padding: 18px 16px;
    border-radius: 26px;
    transform: none;
  }

  .studio-head {
    gap: 10px;
  }

  .studio-copy {
    gap: 8px;
  }

  .studio-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.11em;
    padding: 8px 10px;
  }

  .studio-copy h3 {
    font-size: 1rem;
    line-height: 1.24;
  }

  .studio-service-stage {
    min-height: 376px;
    border-radius: 22px;
  }

  .studio-detail-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .studio-detail-card {
    padding: 11px 11px;
    border-radius: 16px;
  }

  .studio-detail-card strong {
    font-size: 0.74rem;
  }

  .studio-detail-card span {
    font-size: 0.69rem;
  }

  .studio-center-mark span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .studio-brand-ring {
    width: 58px;
    height: 58px;
    padding: 8px;
  }

  .service-scroll-row-top {
    top: 18px;
  }

  .service-scroll-row-bottom {
    bottom: 18px;
  }

  .service-scroll-track {
    gap: 10px;
    animation-duration: 18s;
  }

  .service-scroll-card {
    min-width: 108px;
    min-height: 78px;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .service-scroll-card strong {
    font-size: 0.7rem;
  }

  .service-scroll-card span {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .studio-info-strip,
  .studio-points {
    gap: 8px;
  }

  .studio-info-strip span,
  .studio-points span {
    font-size: 0.68rem;
    padding: 8px 10px;
  }

  .studio-wave {
    height: 44px;
    gap: 6px;
  }

  .studio-wave span {
    min-height: 10px;
  }

  .sound-bars span {
    width: 8px;
  }

  .music-notes .note {
    font-size: 1.1rem;
  }

  .blog-landing {
    padding: 28px 0 18px;
    min-height: auto;
  }

  .blog-landing .hero-grid {
    padding: 20px;
    border-radius: 28px;
  }

  .blog-landing h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    margin-top: 8px;
  }

  .blog-hero-visual {
    min-height: 190px;
  }

  .blog-spotlight {
    min-height: 190px;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .blog-spotlight-card {
    max-width: 100%;
    padding: 16px;
    gap: 12px;
  }

  .blog-card-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .blog-floating-tag {
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  .blog-landing .hero-grid::after {
    inset: 12px;
    border-radius: 22px;
  }

  .toolbar {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .floating-bg {
    display: none;
  }

  body::before,
  body::after {
    opacity: 0.55;
  }

  .parallax {
    transform: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  .brand {
    gap: 10px;
  }

  .brand > span:last-child {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .topbar .button,
  .site-header .button {
    width: auto;
    min-width: 0;
    flex-shrink: 0;
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .brand > span:last-child::after {
    bottom: -4px;
  }

  .hero-badge,
  .blog-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .blog-landing h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    text-align: center;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-story p {
    font-size: 0.95rem;
  }

  .hero-quick-nav {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .blog-hero-visual {
    min-height: 170px;
    margin: 2px 0 2px;
  }

  .blog-spotlight {
    min-height: 170px;
    padding: 18px 14px;
    border-radius: 22px;
  }

  .blog-spotlight-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.74rem;
  }

  .blog-spotlight-lines {
    margin: 14px 0 16px;
  }

  .blog-spotlight-card {
    padding: 14px;
    border-radius: 20px;
  }

  .blog-card-copy strong {
    font-size: 0.95rem;
  }

  .blog-card-copy span {
    font-size: 0.84rem;
  }

  .blog-floating-tag {
    font-size: 0.68rem;
    padding: 7px 9px;
  }

  .blog-floating-tag.tag-one {
    top: 10px;
    right: 10px;
  }

  .blog-floating-tag.tag-two {
    right: 8px;
    bottom: 54px;
  }

  .blog-floating-tag.tag-three {
    left: 10px;
    bottom: 10px;
  }

  .quick-nav-chip {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 0.88rem;
    border-radius: 16px;
  }

  .stats-grid .stat-card {
    min-height: 122px;
    padding: 22px 18px;
  }

  .stats-grid .stat-card strong {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .stats-grid .stat-card .muted {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .stats-grid .priority-card .muted {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .trust-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section {
    padding: 76px 0;
  }

  .folder-grid,
  .services-grid,
  .pricing-grid,
  .reviews-grid,
  .trust-grid,
  .website-pricing-grid,
  .spotify-grid,
  .web-grid,
  .steps-grid,
  .footer-grid {
    gap: 14px;
  }

  .search-box input {
    min-height: 48px;
  }

  .filter-row {
    gap: 8px;
  }

  .filter-chip {
    min-height: 42px;
  }
}
