    /* =========================================================
       FONTS
       ========================================================= */

    @font-face {
      font-family: "Science Gothic";
      src: url("/fonts/ScienceGothic-Regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Swera";
      src: url("/fonts/swera-demo.regular.otf") format("opentype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Chakra Petch";
      src: url("/fonts/ChakraPetch-Regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --bg: #020a14;
      --panel: rgba(0, 17, 30, .72);
      --panel-strong: rgba(0, 20, 36, .88);
      --cyan: #18f4ff;
      --cyan-soft: #8cf7ff;
      --blue: #0b85ff;
      --pink: #ff48df;
      --purple: #9d69ff;
      --orange: #ff8a00;
      --green: #1ed760;
      --red: #ff1437;
      --white: #ffffff;
      --text: rgba(255,255,255,.92);
      --muted: rgba(220,250,255,.78);
      --line: rgba(24,244,255,.55);
      --line-soft: rgba(24,244,255,.22);
      --shadow: 0 24px 90px rgba(0,0,0,.68);
      --radius: 18px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: "Chakra Petch", system-ui, sans-serif;
      background: var(--bg);
      overflow-x: hidden;
      letter-spacing: .01em;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(to bottom, rgba(1,8,16,.20), rgba(1,8,16,.96) 72%, #020a14),
        url("/images/hero_image_lres.webp") center top / cover no-repeat;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 12%, rgba(24,244,255,.18), transparent 28%),
        radial-gradient(circle at 78% 42%, rgba(255,72,223,.10), transparent 24%),
        repeating-linear-gradient(to bottom, transparent 0 5px, rgba(255,255,255,.045) 6px);
      mix-blend-mode: screen;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      height: 76px;
      background: linear-gradient(to bottom, rgba(1,10,19,.88), rgba(1,10,19,.55));
      border-bottom: 1px solid rgba(24,244,255,.12);
      backdrop-filter: blur(16px);
    }

    .nav-wrap {
      width: min(var(--max), calc(100% - 44px));
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-family: "Science Gothic", sans-serif;
      color: var(--cyan-soft);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      letter-spacing: .08em;
      text-transform: uppercase;
      text-shadow: 0 0 12px rgba(24,244,255,.62);
      white-space: nowrap;
    }

    .nav {
      display: flex;
      gap: clamp(18px, 3vw, 42px);
      align-items: center;
      font-size: .94rem;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: rgba(235,252,255,.92);
    }

    .nav a {
      position: relative;
      padding: 10px 0;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 2px;
      background: var(--cyan);
      transform: scaleX(0);
      transform-origin: center;
      box-shadow: 0 0 12px rgba(24,244,255,.9);
      transition: transform .18s ease;
    }

    .nav a:hover::after,
    .nav a.active::after {
      transform: scaleX(1);
    }

    .hero {
      min-height: 950px;
      padding: 140px 0 44px;
      position: relative;
      display: grid;
      align-items: start;
    }

    .hero-image {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background-image: url("/images/hero_image_lres.webp");
        background-size: 200%;
        background-position: 26% 62%;
        z-index: 0;
    }
    .hero-image-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        background: rgba(0,0,0, 0.45)
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to bottom, transparent 30% 70%, rgba(2,10,20, .95) 100%),
        radial-gradient(circle at 50% 52%, transparent 30% 28%, rgba(2,10,20, .55) 48%, rgba(2,10,20, .85) 100%);
    }

    .hero-inner {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 450px 1fr;
      gap: clamp(42px, 6vw, 76px);
      align-items: center;
      z-index: 1;
    }

    .cover-frame {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 0;
      background: rgba(4,25,42,.32);
      box-shadow:
        0 0 0 1px rgba(255,255,255,.06) inset,
        0 0 40px rgba(24,244,255,.25),
        var(--shadow);
      overflow: hidden;
      transform: translateY(12px);
      z-index: 1;
    }

    .cover-frame img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      z-index: 1;
    }

    .hero-copy {
      text-align: center;
      padding-top: 18px;
      z-index: 1;
    }

    .artist-kicker {
      font-family: "Science Gothic", sans-serif;
      text-transform: uppercase;
      letter-spacing: .20em;
      color: var(--cyan-soft);
      font-size: clamp(1.2rem, 3vw, 1.5rem);
      margin-bottom: 10px;
      text-shadow:
        0 0 12px rgba(24,244,255,.70),
        0 0 32px rgba(24,244,255,.32);
      z-index: 1;
    }

    h1 {
      margin: 0;
      font-family: "Science Gothic", sans-serif;
      text-transform: uppercase;
      font-size: clamp(4rem, 8.5vw, 4.25rem);
      line-height: 1;
      letter-spacing: -.05em;
      color: #fff;
      font-weight: 400;
      text-shadow:
        0 0 12px rgba(255,255,255,.55),
        0 0 26px rgba(24,244,255,.60),
        0 8px 22px rgba(0,0,0,.72);
      z-index: 1;
    }

    .title-of {
      display: block;
      position: relative;
      width: fit-content;
      margin: 0 auto;
      color: var(--cyan-soft);
      font-size: .42em;
      line-height: 1.1;
      letter-spacing: .08em;
      z-index: 1;
    }

    .title-of::before,
    .title-of::after {
      content: "";
      position: absolute;
      top: 52%;
      width: 92px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      box-shadow: 0 0 12px rgba(24,244,255,.80);
    }

    .title-of::before {
      right: calc(100% + 14px);
    }

    .title-of::after {
      left: calc(100% + 14px);
    }

    .subtitle {
      margin: 18px auto 0;
      max-width: 600px;
      color: rgba(241,252,255,.94);
      font-size: clamp(1.25rem, 1.55vw, 1.25rem);
      line-height: 1.65;
      text-shadow: 0 3px 18px rgba(0,0,0,.75);
    }

    .subtitle strong {
      color: #fff;
      font-weight: 800;
    }

    .platform-section {
      width: min(var(--max), calc(100% - 44px));
      margin: 42px auto 0;
      text-align: center;
      z-index: 1;
    }

    .choose {
      margin: 0 0 24px;
      font-family: "Chakra Petch", sans-serif;
      text-transform: uppercase;
      letter-spacing: .42em;
      color: #fff;
      font-size: clamp(1rem, 2vw, 1.35rem);
      text-shadow: 0 0 14px rgba(24,244,255,.45);
    }

    .platforms {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .platform {
      min-height: 136px;
      display: grid;
      place-items: center;
      padding: 20px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(0,25,45,.76), rgba(1,9,22,.80));
      box-shadow:
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 0 22px rgba(24,244,255,.12);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .platform span {
        display: flex;
        flex-direction: column
    }
    .platform:hover {
      transform: translateY(-4px);
      border-color: rgba(140,247,255,.95);
      box-shadow: 0 0 34px rgba(24,244,255,.25);
    }

    .platform-icon {
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 15px;
      font-size: 42px;
    }

    .platform-icon.spotify {
        color: #1bd65b;
    }
    .platform-icon.youtube {
        color: #fe0301;
    }
    .platform-icon.soundcloud {
        color: #fd7005;
    }
    .platform-icon.apple {
        color: #f43985;
    }
    .platform-icon.amazon {
        color: #6c60ec;
    }

    .platform-name {
      font-weight: 900;
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1;
    }

    .platform-cta {
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .78rem;
      font-weight: 900;
    }

    .spotify .platform-cta { color: var(--green); }
    .youtube .platform-cta { color: var(--red); }
    .soundcloud .platform-cta { color: var(--orange); }
    .apple .platform-cta { color: var(--pink); }
    .amazon .platform-cta { color: var(--purple); }

    .spotify svg { color: var(--green); }
    .youtube svg { color: var(--red); }
    .soundcloud svg { color: var(--orange); }
    .apple svg { color: var(--pink); }
    .amazon svg { color: var(--purple); }

    .content {
      width: min(var(--max), calc(100% - 44px));
      margin: 42px auto 0;
    }

    .story-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      padding: 36px;
      border: 1px solid var(--line-soft);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(0,20,36,.84), rgba(0,8,18,.68));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    h2 {
      margin: 0 0 24px;
      font-family: "Science Gothic", sans-serif;
      color: var(--cyan);
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      text-transform: uppercase;
      letter-spacing: .22em;
      text-shadow: 0 0 14px rgba(24,244,255,.65);
    }

    .story-copy {
      color: rgba(255,255,255,.92);
      font-size: 1.25rem;
      line-height: 1.72;
      max-width: 430px;
    }

    .story-copy strong {
      color: #fff;
      font-weight: 900;
    }

    .track-panel {
      min-height: 250px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background:
        linear-gradient(90deg, rgba(0,13,26,.86), rgba(0,22,42,.62)),
        url("/images/waveform.webp") center / cover no-repeat;
      box-shadow:
        0 0 0 1px rgba(255,255,255,.05) inset,
        0 0 34px rgba(24,244,255,.12);
      padding: 28px 34px;
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 24px;
      align-items: center;
    }

    .play {
      width: 42px;
      height: 42px;
      border: 1px solid var(--cyan);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--cyan);
      box-shadow: 0 0 18px rgba(24,244,255,.3);
    }

    .track-list {
      list-style: decimal-leading-zero;
      margin: 0;
      padding-left: 28px;
      display: grid;
      gap: 12px;
      font-size: .92rem;
      color: rgba(230,251,255,.92);
      text-transform: uppercase;
    }

    .quote-band {
      margin-top: 28px;
      min-height: 118px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background:
        linear-gradient(90deg, rgba(0,12,24,.92), rgba(0,22,42,.72)),
        url("/images/hero_image_lres.webp") right 68% / 520px auto no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      box-shadow: 0 0 30px rgba(24,244,255,.12);
      position: relative;
      overflow: hidden;
    }

    .quote-band::before,
    .quote-band::after {
      position: absolute;
      font-family: "Swera", serif;
      color: rgba(140,247,255,.45);
      font-size: 4rem;
      line-height: 1;
    }

    .quote-band::before {
      content: "“";
      left: 16%;
      top: 16px;
    }

    .quote-band::after {
      content: "”";
      right: 24%;
      bottom: -10px;
    }

    .quote-text {
      margin: 0;
      font-family: "Science Gothic", serif;
      font-size: clamp(1.5rem, 3.2vw, 2rem);
      line-height: 1.25;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #fff;
      text-shadow: 0 0 18px rgba(24,244,255,.28);
      z-index: 1;
    }

    .connect {
      margin-top: 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      padding: 34px;
      border: 1px solid var(--line-soft);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(0,20,36,.80), rgba(0,8,18,.70));
      box-shadow: var(--shadow);
      align-items: center;
    }

    .connect h2 {
      text-align: center;
      margin-bottom: 10px;
    }

    .connect p {
      margin: 0 0 18px;
      text-align: center;
      color: var(--muted);
    }

    .signup {
      display: flex;
      gap: 12px;
      max-width: 430px;
      margin: 0 auto;
    }

    .signup input {
      flex: 1;
      min-width: 0;
      height: 48px;
      min-height: 48px;
      border: 1px solid var(--line-soft);
      border-radius: 8px;
      background: rgba(0,10,20,.72);
      color: #fff;
      padding: 0 16px;
      outline: none;
    }

    .signup button {
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(24,244,255,.18), rgba(24,244,255,.06));
      color: #fff;
      padding: 0 26px;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 0 18px rgba(24,244,255,.18);
    }

    .socials {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(24px, 5vw, 52px);
      color: var(--cyan);
    }

    .socials a {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      transition: transform .18s ease, filter .18s ease;
    }

    .socials a:hover {
      transform: translateY(-3px);
      filter: drop-shadow(0 0 10px rgba(24,244,255,.8));
    }

    .footer {
      width: min(var(--max), calc(100% - 44px));
      margin: 28px auto 24px;
      text-align: center;
      color: rgba(225,250,255,.64);
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .mobile-only {
      display: none;
    }
.success-message {
    margin: 20px auto;
    padding: 16px 24px;

    max-width: 600px;

    background: rgba(0, 255, 170, 0.08);
    border: 1px solid rgba(0, 255, 170, 0.5);
    border-radius: 12px;

    color: #7dffcf;

    font-family: "Chakra Petch", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;

    box-shadow:
        0 0 10px rgba(0,255,170,.25),
        0 0 30px rgba(0,255,170,.15),
        inset 0 0 20px rgba(0,255,170,.05);

    backdrop-filter: blur(10px);

    animation: successGlow 3s ease-in-out infinite;
}

.success-message::before {
    content: "✓ ";
    font-weight: 700;
    color: #00ff99;
}

@keyframes successGlow {
    0%, 100% {
        box-shadow:
            0 0 10px rgba(0,255,170,.20),
            0 0 25px rgba(0,255,170,.10);
    }

    50% {
        box-shadow:
            0 0 20px rgba(0,255,170,.40),
            0 0 50px rgba(0,255,170,.20);
    }
}
    @media (max-width: 980px) {
      body::before {
        background-position: center top;
        background-attachment: scroll;
      }

      .site-header {
        height: auto;
        position: sticky;
      }

      .nav-wrap {
        padding: 16px 0;
        flex-direction: column;
        gap: 10px;
      }

      .nav {
        gap: 20px;
        font-size: .78rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero {
        min-height: auto;
        padding-top: 48px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .cover-frame {
        width: min(450px, 100%);
        margin: 0 auto;
      }

      .hero-copy {
        order: -1;
      }

      .platforms {
        grid-template-columns: repeat(2, 1fr);
      }

      .story-grid,
      .connect {
        grid-template-columns: 1fr;
      }

      .story-copy {
        max-width: none;
      }
      .hero-image {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0px;
          left: 0px;
          background-image: url("/images/hero_image_lres.webp");
          background-size: cover;
          background-position: 45% 62%;
          z-index: 0;
      }
    }

    @media (max-width: 620px) {
      .nav-wrap,
      .hero-inner,
      .platform-section,
      .content,
      .footer {
        width: min(100% - 24px, var(--max));
      }

      h1 {
        font-size: clamp(2rem, 16vw, 3rem);
      }
      .hero-image {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0px;
          left: 0px;
          background-image: url("/images/hero_image_lres.webp");
          background-size: cover;
          background-position: 45% 62%;
          z-index: 0;
      }
      .artist-kicker {
        font-size: 1.1rem;
      }

      .title-of::before,
      .title-of::after {
        width: 46px;
      }

      .platforms {
        grid-template-columns: 1fr;
      }

      .story-grid,
      .connect {
        padding: 22px;
      }

      .track-panel {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .play {
        margin: 0 auto;
      }

      .quote-text {
        letter-spacing: .12em;
      }

      .quote-band::before,
      .quote-band::after {
        display: none;
      }

      .signup {
        flex-direction: column;
      }

      .socials {
        gap: 22px;
        flex-wrap: wrap;
      }
    }