  :root {
    --bg: #0c0a10;
    --bg-deep: #100d17;
    --bg-panel: #1a1425;
    --gold: #c9a15a;
    --gold-bright: #e0bd7d;
    --lilac: #9b7fc4;
    --lilac-dim: #6b5490;
    --cream: #f2ead9;
    --muted: #a89bb8;
    --line: rgba(201,161,90,0.2);
    --content-max: 1120px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── LUXURY DIVIDER ─── */
  .luxury-divider {
    width: 100%; height: 1px; border: none;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(155,127,196,0.4) 20%,
      rgba(201,161,90,0.9) 50%,
      rgba(155,127,196,0.4) 80%,
      transparent 100%
    );
    box-shadow: 0 0 16px rgba(201,161,90,0.25);
  }

  /* ══════════════════════════════════════════ HERO */
  .hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    padding: 2rem;

    background:
      url('../assets/yuumee-new-herobg.jpg') center 20% / cover no-repeat;
  }
  /* Dark overlay — heavier on the left where text lives, fades right */
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(to right,
        rgba(12,10,16,0.92) 0%,
        rgba(12,10,16,0.75) 40%,
        rgba(12,10,16,0.35) 70%,
        rgba(12,10,16,0.15) 100%),
      linear-gradient(to top, rgba(12,10,16,0.7) 0%, transparent 30%);
  }

  /* Inner — single centered column */
  .hero-inner {
    position: relative; z-index: 2;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Logo pinned to top center */
  /* Center column — text */
  .hero-left {
    display: flex; 
    align-self: first baseline;
    flex-direction: column;
    padding: 10rem 2rem 4rem 10rem;
  }
  .hero-eyebrow {
    font-size: 15px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px; opacity: 0.85;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 5.5vw, 80px);
    font-weight: 300; line-height: 0.95; letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .hero-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(25px, 2.2vw, 36px);
    color: var(--lilac); margin-bottom: 28px; opacity: 0.9;
  }
  .hero-desc {
    font-size: 16px; color: var(--muted); max-width: 420px;
    line-height: 1.85; margin-bottom: 44px;
  }
  .hero-desc em { color: var(--cream); font-style: normal; }

  .hero-cta-row { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin-bottom: 48px; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 999px;
    background: var(--lilac-dim); border: 1px solid var(--lilac);
    color: var(--cream); text-decoration: none;
    font-size: 12px; font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--lilac); }
  .btn-ghost {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--cream); }

  .stream-icons { display: flex; gap: 18px; align-items: center; justify-content: center; }
  .stream-icon {
    width: 22px; height: 22px; opacity: 0.45;
    filter: invert(1); transition: opacity 0.3s;
    text-decoration: none;
  }
  .stream-icon:hover { opacity: 0.9; }

 
  /* ══════════════════════════════════════════ RELEASE */
  .music-section {
    display: grid;
    grid-template-columns: 40fr 60fr;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 64px; gap: 60px; align-items: start;
  }
  .release {
    display: flex; flex-direction: column; gap: 24px;
  }
  .release-visual {
    position: relative; display: flex; align-items: center;
  }
  .album-cover {
    width: 240px; height: 240px; object-fit: cover;
    border-radius: 4px; position: relative; z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,161,90,0.2);
  }

  .release-info .eyebrow {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--lilac); margin-bottom: 16px;
  }
  .release-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px); font-weight: 400;
    line-height: 1; margin-bottom: 6px;
  }
  .release-info .mini { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 20px; }
  .release-info p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 28px; }

  .listen-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: 999px;
    border: 1px solid rgba(201,161,90,0.5); background: transparent;
    color: var(--gold-bright); text-decoration: none;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.3s; margin-bottom: 24px;
  }
  .listen-btn:hover { background: rgba(201,161,90,0.12); border-color: var(--gold); }

  .avail-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 14px; opacity: 0.7; }
  .stream-row { display: flex; gap: 16px; align-items: center; }
  .stream-badge {
    width: 24px; height: 24px; opacity: 0.5;
    color: var(--gold-bright);
    filter: none;
    transition: opacity 0.3s, color 0.3s, transform 0.3s;
  }
  .stream-badge:hover {
    opacity: 0.95;
    color: var(--gold-bright);
    transform: translateY(-1px);
  }

  /* Players */
  .players-wrap { padding: 0; }
  .player-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px; opacity: 0.6; }
  .players { display: flex; flex-direction: column; gap: 10px; }
  .player-card {
    border-radius: 10px; overflow: hidden;
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(201,161,90,0.14);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .player-card:hover { border-color: rgba(201,161,90,0.35); }
  .stream-card {
    min-height: 74px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px 12px 12px;
    color: var(--cream);
    text-decoration: none;
    background:
      linear-gradient(90deg, rgba(155,127,196,0.06), rgba(12,10,16,0.42)),
      rgba(255,255,255,0.012);
  }
  .stream-card:hover {
    transform: translateY(-1px);
    background:
      linear-gradient(90deg, rgba(155,127,196,0.1), rgba(12,10,16,0.5)),
      rgba(201,161,90,0.025);
  }
  .stream-card-art {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid rgba(201,161,90,0.22);
    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
  }
  .stream-card-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }
  .stream-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.05;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .stream-card-meta {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.72;
  }
  .stream-card-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold-bright);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .stream-card-action svg {
    width: 13px;
    height: 13px;
    color: rgba(224,189,125,0.85);
  }

  /* ══════════════════════════════════════════ STORY */
  .story {
    position: relative; overflow: hidden;
    padding: 100px 64px;
    background:
      linear-gradient(to bottom, var(--bg) 0%, rgba(12,10,16,0.2) 20%, rgba(12,10,16,0.2) 80%, var(--bg) 100%),
      url('../yuumee-section-devider.jpg') center center / cover no-repeat;
  }
  .story-inner { max-width: 560px; }
  .story .eyebrow {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; opacity: 0.7;
  }
  .story h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px); font-weight: 400;
    line-height: 1.2; margin-bottom: 24px;
  }
  .story p { color: var(--muted); font-size: 15px; line-height: 1.9; }
  .story p em { color: var(--cream); font-style: normal; }
  .story-tagline {
    margin-top: 32px;
    font-family: 'Dancing Script', cursive;
    font-size: 22px; color: var(--gold); opacity: 0.65;
  }

  /* ══════════════════════════════════════════ TRACKS SECTION */
  .tracks-section {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: clamp(72px, 7vw, 112px) 64px;
    background:
      radial-gradient(circle at 86% 12%, rgba(126,67,154,0.26), transparent 30%),
      linear-gradient(90deg, rgba(3,3,7,0.93) 0%, rgba(8,6,12,0.84) 46%, rgba(4,3,8,0.63) 100%),
      linear-gradient(to bottom, rgba(12,10,16,0.98) 0%, rgba(12,10,16,0.18) 18%, rgba(12,10,16,0.2) 78%, rgba(12,10,16,0.98) 100%),
      url('../assets/mediaplayer-section-bgm.jpg') center center / cover no-repeat;
  }
  .tracks-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 7% 57%, rgba(201,161,90,0.16), transparent 10%),
      radial-gradient(circle at 80% 22%, rgba(157,90,198,0.14), transparent 18%),
      linear-gradient(to bottom, rgba(0,0,0,0.22), transparent 24%, rgba(0,0,0,0.48));
  }
  .tracks-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content-max));
    margin: 0 auto;
  }
  .tracks-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 48px;
    align-items: start;
    margin-bottom: 54px;
  }
  .tracks-kicker {
    font-size: 12px;
    letter-spacing: 0.56em;
    text-transform: uppercase;
    color: #c98ff2;
    margin-bottom: 12px;
  }
  .tracks-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 0.95;
    margin-bottom: 26px;
  }
  .tracks-copy h2 span {
    display: block;
    font-size: clamp(56px, 6.6vw, 92px);
    color: #e9c987;
    letter-spacing: -0.03em;
  }
  .tracks-copy h2 em {
    display: block;
    font-size: clamp(42px, 5.2vw, 72px);
    color: #a977bd;
    font-style: italic;
    letter-spacing: -0.035em;
  }
  .tracks-rule {
    position: relative;
    width: min(520px, 100%);
    height: 1px;
    margin: 0 0 28px 0;
    background: linear-gradient(90deg, rgba(239,197,119,0.95), rgba(239,197,119,0.2), transparent);
  }
  .tracks-rule::before {
    content: "✦";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    color: #f2d49a;
    font-size: 18px;
    text-shadow: 0 0 18px rgba(242,212,154,0.7);
  }
  .tracks-copy p {
    color: rgba(242,234,217,0.76);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
  .tracks-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    text-align: center;
  }
  .tracks-mark img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 14px rgba(201,161,90,0.42));
    opacity: 0.92;
  }
  .tracks-mark span {
    color: rgba(242,234,217,0.74);
    font-size: 11px;
    line-height: 2.15;
    letter-spacing: 0.42em;
    text-transform: uppercase;
  }
  .track-table-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--gold-bright);
    font-size: 12px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
  }
  .track-table-heading::before {
    content: "";
    grid-column: 1 / 2;
    grid-row: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0, rgba(255,255,255,0.15) 22%, rgba(255,255,255,0.08) 100%);
    margin-left: 250px;
  }
  .track-table-heading > div {
    position: relative;
    z-index: 1;
  }
  .track-table-heading > div:first-child {
    color: #c98ff2;
  }
  .track-table-heading span {
    margin-right: 12px;
  }
  .track-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 460px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(224,189,125,0.55) rgba(255,255,255,0.06);
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  .track-list::-webkit-scrollbar {
    width: 6px;
  }
  .track-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.045);
    border-radius: 999px;
  }
  .track-list::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(224,189,125,0.75), rgba(177,103,205,0.5));
    border-radius: 999px;
  }
  .track-item.locked-track {
    display: grid;
    grid-template-columns: 88px 44px minmax(190px, 1fr) minmax(220px, 370px) 180px;
    align-items: center;
    gap: 22px;
    min-height: 82px;
    padding: 8px 30px 8px 8px;
    border-radius: 7px;
    border: 1px solid rgba(177,103,205,0.22);
    background:
      linear-gradient(90deg, rgba(75,39,94,0.18), rgba(11,8,16,0.52) 42%, rgba(7,6,12,0.72)),
      rgba(255,255,255,0.018);
    box-shadow: 0 22px 60px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.035);
    cursor: default;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
  }
  .track-item.preview-track {
    cursor: pointer;
    border-color: rgba(224,189,125,0.3);
  }
  .track-item.locked-track:hover {
    transform: translateY(-1px);
    border-color: rgba(224,189,125,0.35);
    background:
      linear-gradient(90deg, rgba(97,52,122,0.24), rgba(15,10,20,0.58) 42%, rgba(8,6,13,0.78)),
      rgba(255,255,255,0.025);
  }
  .track-item.preview-track.active {
    border-color: rgba(224,189,125,0.62);
    background:
      linear-gradient(90deg, rgba(116,62,145,0.34), rgba(18,12,25,0.7) 42%, rgba(10,7,15,0.82)),
      rgba(224,189,125,0.035);
    box-shadow: 0 22px 70px rgba(0,0,0,0.28), 0 0 34px rgba(177,103,205,0.14), inset 0 0 0 1px rgba(224,189,125,0.12);
  }
  @keyframes trackPulse {
    0%, 100% { box-shadow: inset 0 0 30px rgba(0,0,0,0.22), 0 0 0 rgba(224,189,125,0); }
    50% { box-shadow: inset 0 0 30px rgba(0,0,0,0.18), 0 0 26px rgba(224,189,125,0.22); }
  }
  .track-item.preview-track.playing .track-thumb {
    animation: trackPulse 1.7s ease-in-out infinite;
  }
  .track-thumb {
    width: 88px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(177,103,205,0.24);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.22);
  }
  .thumb-1 { background-image: linear-gradient(rgba(77,18,93,0.1), rgba(0,0,0,0.18)), url('../assets/unreleased-album-cover.jpg'); background-position: 18% 28%; }
  .thumb-2 { background-image: linear-gradient(rgba(77,18,93,0.1), rgba(0,0,0,0.2)), url('../assets/mediaplayer-section-bgm.jpg'); background-position: 87% 42%; }
  .thumb-3 { background-image: linear-gradient(rgba(77,18,93,0.22), rgba(0,0,0,0.18)), url('../assets/unreleased-album-cover.jpg'); background-position: 66% 34%; }
  .thumb-4 { background-image: linear-gradient(rgba(77,18,93,0.08), rgba(0,0,0,0.26)), url('../assets/mediaplayer-section-bgm.jpg'); background-position: 76% 82%; }
  .thumb-5 { background-image: linear-gradient(rgba(77,18,93,0.16), rgba(0,0,0,0.18)), url('../assets/mediaplayer-section-bgm.jpg'); background-position: 92% 18%; }
  .thumb-6 { background-image: linear-gradient(rgba(77,18,93,0.18), rgba(0,0,0,0.2)), url('../assets/unreleased-album-cover.jpg'); background-position: 12% 56%; }
  .thumb-7 { background-image: linear-gradient(rgba(77,18,93,0.14), rgba(0,0,0,0.24)), url('../assets/mediaplayer-section-bgm.jpg'); background-position: 7% 42%; }
  .thumb-8 { background-image: linear-gradient(rgba(77,18,93,0.2), rgba(0,0,0,0.18)), url('../assets/unreleased-album-cover.jpg'); background-position: 78% 72%; }
  .track-num {
    font-size: 13px;
    color: var(--gold-bright);
    font-family: 'Inter', sans-serif;
    text-align: center;
    letter-spacing: 0.08em;
  }
  .track-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
  }
  .track-name {
    font-size: 15px;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0.48em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .track-tag {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    color: #b47dd0;
    opacity: 0.92;
  }
  .track-wave {
    height: 40px;
    opacity: 0.58;
    background:
      linear-gradient(90deg, transparent, rgba(178,102,207,0.62), transparent),
      repeating-linear-gradient(90deg,
        transparent 0 8px,
        rgba(183,117,207,0.34) 8px 10px,
        transparent 10px 14px);
    -webkit-mask-image:
      radial-gradient(ellipse at center, #000 0 72%, transparent 73%),
      repeating-linear-gradient(90deg,
        transparent 0 5px,
        #000 5px 7px,
        transparent 7px 13px);
    mask-image:
      radial-gradient(ellipse at center, #000 0 72%, transparent 73%),
      repeating-linear-gradient(90deg,
        transparent 0 5px,
        #000 5px 7px,
        transparent 7px 13px);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    filter: drop-shadow(0 0 8px rgba(174,98,205,0.2));
  }
  @keyframes previewWave {
    0% { opacity: 0.42; filter: drop-shadow(0 0 8px rgba(174,98,205,0.16)); transform: scaleY(0.86); }
    50% { opacity: 0.9; filter: drop-shadow(0 0 16px rgba(224,189,125,0.25)); transform: scaleY(1.08); }
    100% { opacity: 0.52; filter: drop-shadow(0 0 8px rgba(174,98,205,0.16)); transform: scaleY(0.9); }
  }
  .track-item.preview-track.playing .track-wave {
    animation: previewWave 0.9s ease-in-out infinite alternate;
    background:
      linear-gradient(90deg, transparent, rgba(224,189,125,0.72), rgba(178,102,207,0.7), transparent),
      repeating-linear-gradient(90deg,
        transparent 0 8px,
        rgba(224,189,125,0.44) 8px 10px,
        transparent 10px 14px);
  }
  .track-lock {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: var(--gold-bright);
    font-size: 12px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .track-lock svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }
  .preview-track .track-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(224,189,125,0.58);
    background: rgba(224,189,125,0.08);
    color: var(--gold-bright);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  }
  .preview-track .track-play-btn:hover {
    transform: scale(1.04);
    background: rgba(224,189,125,0.16);
    box-shadow: 0 0 22px rgba(224,189,125,0.18);
  }
  .preview-track.playing .track-play-btn {
    background: rgba(177,103,205,0.22);
    border-color: rgba(224,189,125,0.85);
    box-shadow: 0 0 26px rgba(177,103,205,0.22);
  }
  .preview-track .track-play-btn svg {
    width: 18px;
    height: 18px;
  }
  .tracks-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    text-align: center;
  }
  .inner-circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 330px;
    padding: 16px 34px;
    color: var(--gold-bright);
    border: 1px solid rgba(224,189,125,0.82);
    background: rgba(7,5,10,0.54);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.38em;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 24px rgba(201,161,90,0.08);
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  }
  .inner-circle-btn:hover {
    transform: translateY(-1px);
    background: rgba(201,161,90,0.1);
    box-shadow: 0 0 34px rgba(201,161,90,0.16);
  }
  .tracks-cta p {
    margin-top: 16px;
    color: #a977bd;
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  /* ══════════════════════════════════════════ INNER CIRCLE PAGE */
  .inner-access-header {
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 0 64px;
    border-bottom: 1px solid rgba(201,161,90,0.16);
    background: rgba(8,7,12,0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .inner-access-inner {
    width: min(100%, var(--content-max));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .inner-access-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
  }
  .inner-access-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(201,161,90,0.3));
  }
  .inner-access-copy { display: block; }
  .inner-access-brand strong {
    display: block;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.08em;
  }
  .inner-access-subtitle {
    display: block;
    margin-top: 1px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .inner-access-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-bright);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .inner-access-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 14px rgba(224,189,125,0.75);
  }
  .inner-access-back {
    color: rgba(242,234,217,0.62);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .inner-access-back:hover { color: var(--cream); }
  .inner-circle-page .tracks-section {
    min-height: auto;
    padding-top: clamp(72px, 7vw, 104px);
  }
  .inner-circle-page .tracks-copy p { max-width: 720px; }
  .inner-circle-page .track-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .inner-circle-page .track-tag { color: var(--gold-bright); }
  .inner-circle-page .tracks-cta p {
    max-width: 620px;
    color: rgba(242,234,217,0.56);
    line-height: 1.8;
  }
  .track-dur,
  .track-item:not(.preview-track) .track-play-btn {
    display: none;
  }

  /* ══════════════════════════════════════════ BOTTOM PLAYER */
  .bottom-player {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    height: 90px;
    background: rgba(12,10,18,0.98);
    border-top: none;
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  }
  .bottom-player.visible { transform: translateY(0); }

  /* ── Glow bar ── */
  @keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
  }
  .bp-glow-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg,
      transparent 0%,
      var(--lilac) 25%,
      var(--gold) 50%,
      var(--lilac) 75%,
      transparent 100%);
    opacity: 0.4;
    transition: opacity 0.4s;
  }
  .bottom-player.playing .bp-glow-bar {
    opacity: 0.75;
    box-shadow: 0 0 14px rgba(201,161,90,0.28), 0 0 4px rgba(155,127,196,0.22);
  }

  /* ── Inner layout ── */
  .bp-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 28px;
    height: 100%;
  }

  /* ── Left ── */
  .bp-left { display: flex; align-items: center; gap: 14px; min-width: 0; }

  .bp-art-wrap {
    position: relative; flex-shrink: 0;
    width: 52px; height: 52px;
  }
  @keyframes ringPulse {
    0%   { transform: scale(1);    opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 0; }
  }
  .bp-art-ring {
    position: absolute; inset: -4px; border-radius: 8px;
    border: 1px solid var(--gold);
    opacity: 0;
    animation: ringPulse 2s ease-out infinite;
    animation-play-state: paused;
  }
  .bottom-player.playing .bp-art-ring { animation-play-state: running; }
  .bp-art-img {
    width: 52px; height: 52px; object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: block;
  }

  .bp-info { min-width: 0; }
  .bp-now-playing {
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); opacity: 0.7; margin-bottom: 4px;
  }
  .bp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 400; color: var(--cream);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.1;
  }
  .bp-artist {
    font-size: 10px; letter-spacing: 0.15em;
    color: var(--muted); opacity: 0.55; margin-top: 4px;
  }

  /* ── Center ── */
  .bp-center {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    min-width: 300px; max-width: 480px; width: 100%;
  }

  /* Waveform */
  @keyframes waveBar {
    0%   { transform: scaleY(0.12); }
    100% { transform: scaleY(1); }
  }
  .bp-waveform {
    display: none; align-items: center; justify-content: center;
    gap: 3px; height: 28px; width: 100%;
  }
  .bp-waveform span {
    display: block; width: 3px; border-radius: 99px;
    background: linear-gradient(to top, var(--gold), var(--lilac));
    transform-origin: center; transform: scaleY(0.12); opacity: 0.25;
    transition: opacity 0.3s;
    animation-play-state: paused;
  }
  .bp-waveform span:nth-child(1)  { height: 20px; animation: waveBar 0.7s 0.00s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(2)  { height: 28px; animation: waveBar 0.5s 0.10s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(3)  { height: 22px; animation: waveBar 0.8s 0.20s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(4)  { height: 32px; animation: waveBar 0.6s 0.05s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(5)  { height: 18px; animation: waveBar 0.9s 0.30s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(6)  { height: 26px; animation: waveBar 0.5s 0.15s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(7)  { height: 32px; animation: waveBar 0.7s 0.25s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(8)  { height: 24px; animation: waveBar 0.6s 0.05s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(9)  { height: 30px; animation: waveBar 0.8s 0.35s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(10) { height: 20px; animation: waveBar 0.5s 0.10s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(11) { height: 28px; animation: waveBar 0.7s 0.20s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(12) { height: 32px; animation: waveBar 0.9s 0.00s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(13) { height: 22px; animation: waveBar 0.6s 0.30s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(14) { height: 26px; animation: waveBar 0.5s 0.15s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(15) { height: 18px; animation: waveBar 0.8s 0.25s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(16) { height: 30px; animation: waveBar 0.7s 0.05s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(17) { height: 24px; animation: waveBar 0.6s 0.35s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(18) { height: 32px; animation: waveBar 0.5s 0.10s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(19) { height: 20px; animation: waveBar 0.9s 0.20s ease-in-out infinite alternate; }
  .bp-waveform span:nth-child(20) { height: 26px; animation: waveBar 0.7s 0.00s ease-in-out infinite alternate; }
  .bp-waveform.playing span { animation-play-state: running; opacity: 1; }

  /* Controls */
  .bp-controls { display: flex; align-items: center; gap: 20px; }
  .bp-btn {
    background: none; border: none; cursor: pointer;
    color: var(--muted); opacity: 0.6; padding: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.2s, color 0.2s; border-radius: 50%;
  }
  .bp-btn:hover { opacity: 1; color: var(--cream); }
  .bp-play {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--lilac-dim), rgba(107,84,144,0.6)) !important;
    border: 1px solid rgba(155,127,196,0.6) !important;
    border-radius: 50%; opacity: 1 !important; color: var(--cream) !important;
    transition: all 0.25s !important;
    box-shadow: 0 0 20px rgba(155,127,196,0.2);
  }
  .bp-play:hover {
    background: var(--lilac) !important;
    box-shadow: 0 0 28px rgba(155,127,196,0.4) !important;
  }

  /* Progress */
  .bp-progress-wrap { display: flex; align-items: center; gap: 10px; width: 100%; }
  .bp-time {
    font-size: 10px; color: var(--muted); opacity: 0.45;
    font-variant-numeric: tabular-nums; flex-shrink: 0;
    font-family: 'Inter', sans-serif;
  }
  .bp-bar {
    flex: 1; height: 3px; background: rgba(255,255,255,0.08);
    border-radius: 99px; position: relative; cursor: pointer;
  }
  .bp-bar:hover { height: 4px; }
  .bp-bar:hover .bp-thumb { opacity: 1; }
  .bp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lilac-dim), var(--gold));
    border-radius: 99px; width: 0%; pointer-events: none;
    transition: height 0.15s;
  }
  .bp-thumb {
    position: absolute; top: 50%; transform: translate(-50%, -50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--cream); left: 0%; opacity: 0;
    transition: opacity 0.2s; pointer-events: all; cursor: grab;
    box-shadow: 0 0 6px rgba(201,161,90,0.4);
  }

  /* ── Right ── */
  .bp-right {
    display: flex; flex-direction: column;
    align-items: flex-end; justify-content: center;
    gap: 12px;
  }
  .bp-close {
    background: none; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--muted); opacity: 0.5;
    transition: all 0.2s;
  }
  .bp-close:hover { opacity: 1; color: var(--cream); border-color: rgba(255,255,255,0.3); }
  .bp-vol-wrap { display: flex; align-items: center; gap: 8px; }
  .bp-vol {
    -webkit-appearance: none; appearance: none;
    width: 72px; height: 3px; border-radius: 99px;
    background: rgba(255,255,255,0.1); outline: none; cursor: pointer;
  }
  .bp-vol::-webkit-slider-thumb {
    -webkit-appearance: none; width: 10px; height: 10px;
    border-radius: 50%; background: var(--cream); cursor: pointer;
  }

  /* spacer so footer doesn't sit behind the player */
  body.player-active { padding-bottom: 100px; }

  /* ══════════════════════════════════════════ EMAIL CAPTURE */
  .capture {
    background: var(--bg-panel);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    position: relative; overflow: hidden;
  }

  .capture-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    width: min(100%, var(--content-max));
    margin: 0 auto;
  }
  .capture::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      linear-gradient(135deg, rgba(155,127,196,0.05) 0%, transparent 60%),
      url('../yuumee-hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.25;
  }

  .capture-left {
    padding: 80px 56px; position: relative; z-index: 2;
  }
  .capture-icon {
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid rgba(201,161,90,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 22px; margin-bottom: 24px;
  }
  .capture-left .eyebrow {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .capture-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.8vw, 34px); font-weight: 400;
    line-height: 1.2; margin-bottom: 12px;
  }
  .capture-left p { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 320px; }

  .capture-right {
    padding: 80px 64px 80px 32px; position: relative; z-index: 2;
  }
  .fan-form { display: flex; flex-direction: column; gap: 12px; }
  .fan-form input[type="email"] {
    background: rgba(0,0,0,0.4); border: 1px solid var(--line);
    border-radius: 999px; padding: 15px 24px;
    color: var(--cream); font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 300; outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
  }
  .fan-form input::placeholder { color: var(--muted); opacity: 0.7; }
  .fan-form input:focus {
    border-color: rgba(201,161,90,0.5);
    box-shadow: 0 0 0 3px rgba(201,161,90,0.07);
  }
  .fan-form button {
    padding: 15px 28px; border-radius: 999px;
    background: var(--lilac-dim); border: 1px solid var(--lilac);
    color: var(--cream); font-family: 'Inter', sans-serif;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .fan-form button:hover { background: var(--lilac); }
  .fan-form button:disabled { opacity: 0.5; cursor: not-allowed; }
  .fine-print { font-size: 11px; color: var(--muted); opacity: 0.5; line-height: 1.7; margin-top: 4px; }
  #fan-error { display: none; font-size: 13px; color: #e07d7d; }

  /* ══════════════════════════════════════════ FOOTER */
  footer {
    padding: 0 64px;
    border-top: 1px solid rgba(201,161,90,0.12);
  }
  .footer-inner {
    width: min(100%, var(--content-max));
    margin: 0 auto;
    padding: 52px 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-left { display: flex; align-items: center; gap: 14px; }
  .footer-logo {
    width: 48px; height: 48px; object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 8px rgba(201,161,90,0.3));
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; letter-spacing: 0.08em;
  }
  .footer-brand span { display: block; font-size: 10px; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--muted); font-family: 'Inter', sans-serif;
    margin-top: 3px; opacity: 0.5; }
  .footer-right {
    font-size: 12px; color: var(--muted); opacity: 0.45;
    font-style: italic; font-family: 'Cormorant Garamond', serif;
    font-size: 15px; max-width: 300px; text-align: right;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero::before {
      background: linear-gradient(to bottom, rgba(12,10,16,0.85) 0%, rgba(12,10,16,0.75) 100%);
    }
    .hero-left { padding: 120px 32px 60px; }
    .music-section { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
    .players-wrap { padding: 0; }
    .inner-access-header { padding: 0 24px; }
    .inner-access-status { display: none; }
    .tracks-section { padding: 72px 24px; }
    .tracks-inner { max-width: 100%; }
    .tracks-hero { grid-template-columns: 1fr; gap: 28px; margin-bottom: 42px; }
    .tracks-mark { align-items: flex-start; text-align: left; padding-top: 0; }
    .tracks-mark img { width: 72px; height: 72px; margin-bottom: 14px; }
    .tracks-mark span { font-size: 10px; letter-spacing: 0.3em; line-height: 1.9; }
    .track-table-heading { letter-spacing: 0.26em; font-size: 10px; }
    .track-table-heading::before { margin-left: 190px; }
    .track-list { max-height: 400px; }
    .track-item.locked-track {
      grid-template-columns: 72px 34px minmax(0, 1fr) auto;
      gap: 14px;
      min-height: 76px;
      padding: 8px 14px 8px 8px;
    }
    .track-thumb { width: 72px; height: 60px; }
    .track-name { letter-spacing: 0.28em; font-size: 13px; }
    .track-wave { display: none; }
    .track-lock span { display: none; }
    .bottom-player { height: auto; }
    .bp-inner { grid-template-columns: 1fr; padding: 12px 16px; gap: 6px; }
    .bp-left { gap: 10px; }
    .bp-right { flex-direction: row; justify-content: space-between; align-items: center; }
    .bp-center { min-width: 0; width: 100%; gap: 4px; }
    .bp-art-img { width: 40px; height: 40px; }
    .bp-art-wrap { width: 40px; height: 40px; }
    .bp-title { font-size: 15px; }
    .capture-inner { grid-template-columns: 1fr; }
    .capture-left { padding: 64px 32px 32px; }
    .capture-right { padding: 0 32px 64px; }
    footer { padding: 0 32px; }
    .footer-inner { padding: 40px 0; flex-direction: column; align-items: flex-start; }
    .footer-right { text-align: left; }
  }

  @media (max-width: 520px) {
    .inner-access-header { padding: 0 16px; }
    .inner-access-inner { height: 68px; gap: 12px; }
    .inner-access-brand img { width: 36px; height: 36px; }
    .inner-access-subtitle { display: none; }
    .inner-access-back { font-size: 8px; letter-spacing: 0.12em; }
    .hero h1 { font-size: 44px; }
    .tracks-section { padding: 64px 16px; }
    .tracks-kicker { letter-spacing: 0.34em; font-size: 10px; }
    .tracks-copy h2 span { font-size: 50px; }
    .tracks-copy h2 em { font-size: 38px; }
    .tracks-copy p { font-size: 13px; }
    .stream-card { grid-template-columns: 44px minmax(0, 1fr); padding: 10px 12px; gap: 12px; }
    .stream-card-art { width: 44px; height: 44px; }
    .stream-card-title { font-size: 18px; }
    .stream-card-action { display: none; }
    .track-table-heading { grid-template-columns: 1fr; gap: 6px; }
    .track-table-heading::before { display: none; }
    .track-table-heading > div:last-child { display: none; }
    .track-list { max-height: 360px; padding-right: 6px; }
    .track-item.locked-track {
      grid-template-columns: 58px 26px minmax(0, 1fr) 24px;
      gap: 10px;
      min-height: 66px;
    }
    .track-thumb { width: 58px; height: 50px; }
    .track-num { font-size: 11px; }
    .track-name { font-size: 11px; letter-spacing: 0.2em; }
    .track-tag { font-size: 11px; }
    .track-lock { justify-content: center; }
    .inner-circle-page .track-item.locked-track {
      grid-template-columns: 58px 26px minmax(0, 1fr) 42px;
    }
    .inner-circle-btn { min-width: 0; width: 100%; padding: 14px 18px; letter-spacing: 0.24em; font-size: 11px; }
    .tracks-cta p { font-size: 13px; }
  }
