:root {
      /* Logo Yellow Palette (from logo) */
      --rg: #D4AF37;
      /* logo gold/yellow */
      --rg-light: #F9E596;
      /* soft yellow */
      --rg-pale: #FDF7E2;
      --rg-dim: #997A00;
      /* muted gold */

      /* Purple / Magenta accents (retain for contrast) */
      --pur: #7C3AED;
      /* bright violet */
      --pur-mid: #5A2BBE;
      --pur-deep: #2E115F;

      /* Cyan highlight */
      --cyan: #34E1F2;

      /* Deep Backgrounds */
      --black: #050308;
      --black-2: #08060A;
      --black-3: #0f0e12;
      --black-4: #16151a;
      --black-5: #1f1d22;

      --text-primary: #FAF8F7;
      --text-secondary: var(--rg);
      --text-muted: #BDB3BF;

      --border: rgba(212, 175, 55, 0.15);
      --border-bright: rgba(212, 175, 55, 0.36);
      --pur-border: rgba(124, 58, 237, 0.18);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 64px;
      background: rgba(8, 1, 15, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-circle {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--black-4);
      border: 1.5px solid var(--rg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      font-weight: 600;
      color: var(--rg);
      letter-spacing: .04em;
      line-height: 1.3;
      text-align: center;
    }

    .nav-brand {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--rg);
      letter-spacing: .08em;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-link {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      letter-spacing: .04em;
      transition: color .2s;
    }

    .nav-link:hover {
      color: var(--rg-light);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      background: transparent;
      border: 1px solid var(--rg);
      color: var(--rg);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .05em;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, color .2s;
    }

    .btn-outline:hover {
      background: var(--rg);
      color: var(--black);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 2rem 4rem;
      position: relative;
      overflow: hidden;
      background: url('https://images.unsplash.com/photo-1540039155732-d68a92bb0364?q=80&w=2000&auto=format&fit=crop') no-repeat center center / cover;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.95) 100%);
      z-index: 0;
    }

    .hero-glow {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
      mix-blend-mode: screen;
      animation: pulseGlow 6s infinite alternate;
    }

    @keyframes pulseGlow {
      0% {
        opacity: 0.7;
      }

      100% {
        opacity: 1;
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-logo {
      width: 230px;
      height: 230px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--rg);
      box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
      margin-bottom: 1.5rem;
      animation: fadeUp .8s .1s ease both;
      transition: transform .35s ease, box-shadow .35s ease;
      cursor: pointer;
    }

    .hero-logo:hover {
      transform: scale(1.12);
      transform-origin: center;
      box-shadow: 0 18px 50px rgba(212, 175, 55, 0.32), 0 0 40px rgba(124, 58, 237, 0.06);
    }

    .hero-eye {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--rg);
      margin-bottom: 1.5rem;
      text-shadow: 0 0 15px rgba(124, 58, 237, 0.28);
      animation: fadeUp .8s .1s ease both;
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 9vw, 7rem);
      font-weight: 700;
      line-height: 1.05;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      animation: fadeUp .8s .2s ease both;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--rg);
      display: block;
      font-weight: 400;
      text-transform: none;
      font-size: clamp(2rem, 5vw, 4rem);
      margin-top: -10px;
    }

    .hero-sub {
      font-size: 15px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text-primary);
      opacity: 0.8;
      margin-bottom: 3rem;
      animation: fadeUp .8s .3s ease both;
      max-width: 600px;
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      animation: fadeUp .8s .4s ease both;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 36px;
      background: var(--rg);
      color: var(--black);
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid var(--rg);
      cursor: pointer;
      transition: all .3s;
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .btn-hero:hover {
      background: var(--rg-light);
      box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
      transform: translateY(-2px);
    }

    .btn-hero-sec {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 36px;
      background: transparent;
      color: var(--text-primary);
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all .3s;
      backdrop-filter: blur(5px);
    }

    .btn-hero-sec:hover {
      border-color: var(--text-primary);
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-2px);
    }

    hr.div {
      border: none;
      border-top: 1px solid var(--border);
    }

    /* SHARED */
    .eyebrow {
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--pur);
      margin-bottom: .75rem;
    }

    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--text-primary);
    }

    .sec-title em {
      font-style: italic;
      color: var(--rg);
    }

    .sec-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: .75rem;
    }

    .sec-head {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    /* FILTER */
    .ftabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 3rem;
    }

    .ftab {
      padding: 7px 16px;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      letter-spacing: .08em;
      cursor: pointer;
      transition: all .2s;
    }

    .ftab:hover {
      border-color: var(--rg-dim);
      color: var(--text-secondary);
    }

    .ftab.on {
      border-color: var(--rg);
      color: var(--rg);
      background: rgba(124, 58, 237, .07);
    }

    /* ARTIST GRID */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }

    .acard {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      background: var(--black-3);
      border: 1px solid var(--black-4);
      border-radius: 12px;
      transition: border-color .3s, box-shadow .3s, transform .3s;
    }

    .acard.featured {
      grid-column: span 2;
    }

    .acard:hover {
      border-color: var(--rg);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
      transform: translateY(-2px);
    }

    .acard-top {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      flex-shrink: 0;
    }

    .acard.featured .acard-top {
      aspect-ratio: 2/1;
    }

    .acard-ph {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 300;
      color: rgba(124, 58, 237, .11);
      background: linear-gradient(160deg, var(--black-4) 0%, var(--pur-deep) 100%);
    }

    .acard-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .acard:hover .acard-img {
      transform: scale(1.05);
    }

    .acard-top-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--black-3) 0%, transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem 1.5rem 0.5rem;
    }

    .badge {
      display: inline-block;
      padding: 4px 12px;
      background: var(--rg);
      color: var(--black);
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: .5rem;
      width: fit-content;
    }

    .acard-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1.1;
      margin-bottom: .2rem;
    }

    .acard-sub {
      font-size: 11px;
      color: var(--rg);
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .acard-bot {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1rem;
    }

    .tag {
      font-size: 10px;
      font-weight: 500;
      padding: 5px 12px;
      background: rgba(212, 175, 55, 0.08);
      border: 1px solid rgba(212, 175, 55, 0.28);
      color: var(--rg);
      border-radius: 20px;
    }

    .acard-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.6;
    }

    .acard-btns {
      display: flex;
      gap: 10px;
      margin-top: auto;
    }

    .btn-card-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 18px;
      background: transparent;
      border: 1px solid rgba(212, 175, 55, 0.28);
      color: var(--rg);
      border-radius: 24px;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      flex: 1;
    }

    .btn-card-outline:hover {
      background: rgba(212, 175, 55, 0.1);
      border-color: var(--rg-light);
    }

    .btn-card-solid {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 18px;
      background: var(--rg);
      color: var(--black);
      border-radius: 24px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      flex: 1;
    }

    .btn-card-solid:hover {
      background: var(--rg-light);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    /* PANEL */
    .poverlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, .78);
      backdrop-filter: blur(5px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .poverlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(700px, 100vw);
      background: var(--black-2);
      border-left: 1px solid var(--border);
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.25, .46, .45, .94);
      z-index: 201;
    }

    .panel.open {
      transform: translateX(0);
    }

    .pclose {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      background: rgba(8, 1, 15, .93);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .pclose button {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-secondary);
      font-size: 22px;
      line-height: 1;
      padding: 4px;
      transition: color .2s;
    }

    .pclose button:hover {
      color: var(--text-primary);
    }

    .pher {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, var(--black-5) 0%, var(--pur-deep) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      font-weight: 300;
      color: rgba(212, 175, 55, .12);
    }

    .pher-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .pbody {
      padding: 2rem 2rem 3rem;
    }

    .pname {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 400;
      color: var(--text-primary);
      margin-bottom: .3rem;
    }

    .ptag {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-style: italic;
      color: var(--rg-dim);
      margin-bottom: 1.5rem;
    }

    .pusp {
      padding: 1rem 1.25rem;
      border-left: 2px solid var(--rg);
      background: rgba(212, 175, 55, .05);
      margin-bottom: 1.75rem;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .pusp strong {
      color: var(--rg);
      font-weight: 500;
    }

    /* PANEL TABS */
    .ptabs {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }

    .ptab {
      padding: 10px 22px;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted);
      cursor: pointer;
      transition: color .2s, border-color .2s;
    }

    .ptab.on {
      color: var(--rg);
      border-bottom-color: var(--rg);
    }

    .ptab:hover:not(.on) {
      color: var(--text-secondary);
    }

    .ptab-body {
      display: none;
    }

    .ptab-body.on {
      display: block;
    }

    .psec {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--rg-dim);
      margin: 2.5rem 0 1.25rem;
      padding-bottom: .5rem;
      border-bottom: 1px solid var(--border);
    }

    .bgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .blabel {
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: .4rem;
    }

    .bval {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .bval ul {
      list-style: none;
      padding: 0;
    }

    .bval ul li::before {
      content: "— ";
      color: var(--rg-dim);
    }

    .feebox {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      border: 1px solid var(--border-bright);
      background: rgba(212, 175, 55, .04);
      margin-bottom: 1.5rem;
    }

    .feelabel {
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .feeamt {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 500;
      color: var(--rg-light);
    }

    .pffor {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1.5rem;
    }

    .pftag {
      padding: 5px 12px;
      border: 1px solid var(--border-bright);
      color: var(--rg-dim);
      font-size: 12px;
      letter-spacing: .06em;
    }

    .vgrid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .vcard {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .vimg-wrap {
      position: relative;
      aspect-ratio: 9/16;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--black-4);
    }

    .vvid {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: var(--black);
    }

    .vig-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 4px;
      color: var(--text-secondary);
      font-size: 11px;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: all 0.2s;
    }

    .vig-btn:hover {
      background: var(--rg);
      color: var(--black);
      border-color: var(--rg);
    }

    .pactions {
      display: flex;
      gap: 12px;
      margin-top: 2rem;
    }

    .btn-primary {
      flex: 1;
      padding: 13px;
      background: var(--rg);
      color: var(--black);
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: background .2s;
    }

    .btn-primary:hover {
      background: var(--rg-light);
    }

    .btn-sec {
      padding: 13px 20px;
      background: transparent;
      border: 1px solid var(--border-bright);
      color: var(--text-secondary);
      font-size: 12px;
      letter-spacing: .08em;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: border-color .2s, color .2s;
    }

    .btn-sec:hover {
      border-color: var(--rg);
      color: var(--rg);
    }

    /* STAGE LAYOUT */
    .stage-wrap {
      background: var(--black-3);
      border: 1px solid var(--pur-border);
      border-radius: 3px;
      padding: 1.5rem;
      margin-top: .25rem;
    }

    .stage-title {
      font-size: 10px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .stage-box {
      position: relative;
      background: var(--black-5);
      border: 1px solid rgba(123, 90, 192, .3);
      border-radius: 2px;
      padding: 10px 8px 16px;
    }

    .stage-box::before {
      content: 'STAGE';
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 9px;
      letter-spacing: .2em;
      padding: 2px 12px;
      background: var(--pur-mid);
      color: var(--rg-pale);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    .srow {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .smember {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      min-width: 54px;
    }

    .sicon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--black-4);
      border: 1px solid var(--border-bright);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
    }

    .sicon.hi {
      border-color: var(--rg);
      background: rgba(212, 175, 55, .13);
      box-shadow: 0 0 12px rgba(212, 175, 55, .15);
    }

    .sname {
      font-size: 9px;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-align: center;
      max-width: 56px;
      line-height: 1.3;
    }

    .scrowd {
      width: 100%;
      text-align: center;
      padding: 8px;
      font-size: 10px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px dashed rgba(212, 175, 55, .14);
      border-top: none;
      background: rgba(212, 175, 55, .02);
    }

    .snote {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 12px;
      font-style: italic;
      line-height: 1.65;
    }

    /* FOUNDERS */
    .founders {
      padding: 6rem 2rem;
      background: var(--black-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .founders-in {
      max-width: 1000px;
      margin: 0 auto;
    }

    .fgrid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 4rem;
      margin-top: 3.5rem;
      align-items: flex-start;
    }

    .fcolumn {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .fimg {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      width: 100%;
      max-width: 380px;
    }

    .fimg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
      mix-blend-mode: overlay;
    }

    .fimg:hover {
      transform: translateY(-8px) scale(1.02) rotate(1.5deg);
      border-color: var(--rg);
      box-shadow: -15px 15px 30px rgba(212, 175, 55, 0.15),
        0 0 15px rgba(212, 175, 55, 0.2);
    }

    .fimg:hover::after {
      opacity: 1;
    }

    .fimg-ph {
      width: 100%;
      height: 100%;
      background: linear-gradient(160deg, var(--black-4) 0%, var(--pur-deep) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(212, 175, 55, .11);
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s ease;
    }

    .fimg:hover .fimg-ph {
      transform: scale(1.1) rotate(-1.5deg);
      color: rgba(212, 175, 55, 0.4);
    }

    .fimg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .fimg:hover .fimg-img {
      transform: scale(1.08);
    }

    .fname {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--rg);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.1;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .founder-actions {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
    }

    .btn-inst {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      background: transparent;
      border: 1px solid var(--rg);
      color: var(--rg);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      border-radius: 20px;
      text-decoration: none;
      transition: background .2s, color .2s, transform .12s;
    }

    .btn-inst:hover {
      background: var(--rg-light);
      color: var(--black);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }

    .frole {
      font-size: 11px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--rg-dim);
      margin: 4px 0 12px;
    }

    .fbio {
      font-size: 15px;
      color: var(--text-primary);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    .fstory {
      margin-top: 2.5rem;
      padding: 3rem;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(212, 175, 55, 0.03);
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 400;
      font-style: italic;
      color: var(--text-primary);
      line-height: 1.8;
      text-align: center;
      position: relative;
    }


    /* CTA */
    .cta {
      padding: 7rem 2rem;
      text-align: center;
      background: var(--black);
    }

    .cta-in {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-h {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 1.25rem;
    }

    .cta-h em {
      font-style: italic;
      color: var(--rg);
    }

    .cta-p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 2.5rem;
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 36px;
      background: var(--rg);
      color: var(--black);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }

    .btn-cta:hover {
      background: var(--rg-light);
      transform: translateY(-2px);
    }

    /* FOOTER */
    footer {
      padding: 3rem 2rem;
      border-top: 1px solid var(--border);
      text-align: center;
      background: var(--black-2);
    }

    .flogo {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: .12em;
      color: var(--rg);
      margin-bottom: .5rem;
    }

    .ftag {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .fsocial {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .fsocial a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: .05em;
      transition: color .2s;
    }

    .fsocial a:hover {
      color: var(--rg);
    }

    .fcopy {
      font-size: 11px;
      color: var(--text-muted);
    }

    .fcrafted {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
      letter-spacing: 0.04em;
    }

    .fcrafted a {
      color: var(--rg);
      text-decoration: none;
      transition: color 0.2s;
    }

    .fcrafted a:hover {
      color: var(--text);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media(max-width:640px) {
      .bgrid {
        grid-template-columns: 1fr;
      }

      .fgrid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .fstory {
        padding: 2rem 1.5rem;
        font-size: 1rem;
      }

      .acard.featured {
        grid-column: span 1;
        aspect-ratio: 4/3;
      }

      .pactions {
        flex-direction: column;
      }

      nav {
        display: none !important;
      }

      .nav-link {
        display: none;
      }

      .ptabs {
        overflow-x: auto;
      }
    }


    /* --- ROSTER MIGRATED CSS --- */
    #roster,
    .modal-overlay {
      --bg: var(--black);
      --bg-elev: var(--black-2);
      --bg-card: var(--black-3);
      --text: var(--text-primary);
      --text-muted: var(--text-muted);
      --text-dim: #666666;
      --cyan: var(--rg);
      --cyan-dim: var(--rg-dim);
      --yellow: #C8102E;
      --gold: var(--rg);
      --navy: var(--black);
      --border-hover: var(--border-bright);
      --border-yellow: rgba(200, 16, 46, 0.25);
      --border: var(--black-4);
      --border-color: var(--black-4);
    }

    .section {
      padding: 32px 24px 80px;
      max-width: 1340px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 36px;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 16px;
      display: inline-block;
      position: relative;
    }

    .section-label::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 32px;
      height: 1px;
      background: var(--yellow);
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-top: 24px;
      margin-bottom: 16px;
    }

    .section-title .italic {
      font-style: italic;
      color: var(--cyan);
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto;
    }

    /* FILTERS */
    .filters {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }

    .filter-btn {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 10px 20px;
      border-radius: 100px;
      font-size: 12.5px;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s ease;
      letter-spacing: 0.5px;
      font-weight: 500;
    }

    .filter-btn:hover {
      border-color: var(--border-hover);
      color: var(--text);
    }

    .filter-btn.active {
      background: var(--cyan);
      color: var(--navy);
      border-color: var(--cyan);
      font-weight: 600;
    }

    /* ARTIST GRID */
    .artist-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .artist-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      position: relative;
    }

    .artist-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: 0 24px 70px rgba(41, 200, 222, 0.18);
    }

    .artist-card.flagship {
      grid-column: span 2;
    }

    .artist-card.flagship .card-thumbnail {
      height: 460px;
    }

    .card-thumbnail {
      position: relative;
      width: 100%;
      height: 360px;
      background:
        radial-gradient(ellipse at center, rgba(41, 200, 222, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, #0A1428 0%, #1a2642 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .face-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .artist-card:hover .face-img {
      transform: scale(1.06);
    }

    .artist-card[data-artist="smb_hungama"] .face-img {
      object-position: center 35%;
    }

    .artist-card[data-artist="sm_fire_energy"] .face-img {
      object-position: center 38%;
    }

    .artist-card[data-artist="diva_live"] .face-img {
      object-position: center 18%;
    }

    .artist-card[data-artist="smb_strings_beats"] .face-img {
      object-position: center 20%;
    }

    .thumb-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(6, 8, 15, 0) 0%, rgba(6, 8, 15, 0) 55%, rgba(6, 8, 15, 0.88) 100%);
      pointer-events: none;
    }

    .card-name-overlay {
      position: absolute;
      bottom: 22px;
      left: 26px;
      right: 26px;
      z-index: 2;
      pointer-events: none;
    }

    .band-display-name {
      font-family: 'Cinzel', serif;
      font-size: 30px;
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 4px;
      font-style: normal;
      text-transform: uppercase;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    }

    .artist-card.flagship .band-display-name {
      font-size: 44px;
    }

    .band-display-tagline {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--yellow);
      font-weight: 500;
      margin-top: 2px;
    }

    .card-badge {
      position: static;
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      border-radius: 100px;
      font-size: 10px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 10px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(8px);
    }

    .card-badge.gold {
      background: var(--yellow);
      color: var(--navy);
    }

    .card-badge.cyan {
      background: var(--cyan);
      color: var(--navy);
    }

    .card-body {
      padding: 26px 28px 28px;
    }

    .meta-tags,
    .ideal-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .card-body .meta-tags {
      margin-top: 0;
      margin-bottom: 14px;
    }

    .tag {
      font-size: 11px;
      padding: 5px 11px;
      background: rgba(41, 200, 222, 0.07);
      color: var(--cyan);
      border-radius: 100px;
      letter-spacing: 0.4px;
      border: 1px solid rgba(41, 200, 222, 0.18);
      font-weight: 500;
    }

    .tag.ideal {
      background: rgba(245, 213, 71, 0.06);
      color: var(--yellow);
      border-color: var(--border-yellow);
    }

    .card-short {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 16px 0 22px;
    }

    .card-short em {
      font-style: italic;
      color: var(--text);
    }

    .card-short .inline-star {
      color: var(--yellow);
      font-size: 0.95em;
      margin-right: 4px;
      text-shadow: 0 0 10px rgba(245, 213, 71, 0.22);
    }


    .card-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn {
      padding: 11px 18px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: inherit;
      letter-spacing: 0.3px;
      border: none;
    }

    .btn-expand {
      flex: 1;
      background: transparent;
      border: 1px solid var(--border-hover);
      color: var(--cyan);
    }

    .btn-expand:hover {
      background: var(--cyan);
      color: var(--navy);
      transform: scale(1.02);
    }

    .btn-wa {
      background: var(--cyan);
      color: var(--navy);
      flex: 1;
    }

    .btn-wa:hover {
      background: var(--yellow);
      transform: scale(1.02);
    }

    .btn-wa svg {
      width: 14px;
      height: 14px;
    }

    /* MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .78);
      backdrop-filter: blur(5px);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(900px, 100vw);
      background: var(--bg-card);
      border-left: 1px solid var(--border);
      border-radius: 0;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.25, .46, .45, .94);
      z-index: 201;
      margin: 0;
    }

    .modal-overlay.active .modal-content {
      transform: translateX(0);
    }

    .modal-close {
      position: fixed;
      top: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(6, 8, 15, 0.7);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 202;
      transition: all 0.2s;
      line-height: 1;
    }

    .modal-close:hover {
      background: var(--cyan);
      color: var(--navy);
      border-color: var(--cyan);
    }


    .modal-hero {
      position: relative;
      min-height: 290px;
      border-bottom: 1px solid var(--border-color);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 26px;
      background: #07101f;
      isolation: isolate;
    }

    .modal-cover-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 34%;
      transform: scale(1.02);
      filter: saturate(1.03) contrast(1.03) brightness(0.92);
    }

    .modal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 82% 18%, rgba(41, 200, 222, 0.18) 0%, rgba(41, 200, 222, 0.07) 18%, transparent 38%),
        radial-gradient(circle at 85% 20%, rgba(245, 213, 71, 0.10) 0%, transparent 32%),
        linear-gradient(180deg, rgba(5, 11, 24, 0.12) 0%, rgba(5, 11, 24, 0.42) 52%, rgba(5, 11, 24, 0.88) 100%);
      z-index: 1;
    }

    .modal-hero::after {
      content: '';
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      pointer-events: none;
      z-index: 2;
    }

    .modal-logo-highlight {
      position: absolute;
      top: 22px;
      right: 22px;
      width: 88px;
      height: 88px;
      border-radius: 18px;
      background: rgba(7, 16, 31, 0.36);
      border: 1px solid rgba(255, 255, 255, 0.10);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), 0 0 28px rgba(41, 200, 222, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      backdrop-filter: blur(14px);
      z-index: 3;
    }

    .modal-logo-highlight img,
    .modal-logo-highlight svg {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 0 14px rgba(245, 213, 71, 0.10));
    }

    .modal-hero-copy {
      position: relative;
      z-index: 3;
      max-width: 100%;
    }

    .modal-name {
      font-family: 'Cinzel', serif;
      font-size: clamp(32px, 5vw, 48px);
      line-height: 1.02;
      margin: 0 0 8px;
      text-transform: uppercase;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
    }

    .modal-sub {
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--yellow);
      margin: 0;
      text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
    }

    .modal-usp-box {
      display: block;
      padding: 16px 18px;
      border: 1px solid rgba(41, 200, 222, 0.20);
      background: linear-gradient(180deg, rgba(41, 200, 222, 0.08) 0%, rgba(7, 16, 31, 0.65) 100%);
      border-radius: 16px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .modal-usp-box strong {
      color: var(--cyan);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: inline-block;
      margin-bottom: 8px;
    }

    .modal-usp-box p {
      margin: 0;
      color: var(--text);
      line-height: 1.75;
      font-size: 15px;
    }

    .modal-logo-highlight {
      display: none !important;
    }

    .modal-logo-strip {
      padding: 18px 26px 0;
    }

    .modal-artist-logo {
      width: 100%;
      min-height: 94px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: linear-gradient(180deg, rgba(10, 20, 40, 0.88) 0%, rgba(8, 14, 28, 0.94) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 22px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
      overflow: hidden;
    }

    .modal-artist-logo img,
    .modal-artist-logo svg {
      max-width: 78%;
      max-height: 54px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
    }

    .modal-artist-logo.logo-square img,
    .modal-artist-logo.logo-square svg {
      max-height: 66px;
      max-width: 66px;
    }

    @media (max-width: 768px) {
      .modal-logo-strip {
        padding: 16px 22px 0;
      }

      .modal-artist-logo {
        min-height: 84px;
        border-radius: 18px;
        padding: 16px 18px;
      }

      .modal-artist-logo img,
      .modal-artist-logo svg {
        max-width: 82%;
        max-height: 48px;
      }

      .modal-artist-logo.logo-square img,
      .modal-artist-logo.logo-square svg {
        max-height: 58px;
        max-width: 58px;
      }
    }

    @media (max-width: 768px) {
      .modal-hero {
        min-height: 250px;
        padding: 20px;
      }

      .modal-logo-highlight {
        width: 72px;
        height: 72px;
        right: 18px;
        top: 18px;
        border-radius: 16px;
        padding: 10px;
      }

      .modal-hero-copy {
        max-width: calc(100% - 88px);
      }

      .modal-name {
        font-size: 32px;
      }

      .modal-sub {
        font-size: 11px;
        letter-spacing: 2px;
      }
    }

    .modal-section {
      padding: 28px 40px;
      border-bottom: 1px solid var(--border);
    }

    .modal-section:last-child {
      border-bottom: none;
    }

    .modal-h4 {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 18px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
    }

    .modal-quick-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .modal-quick-stats>div {
      background: var(--bg-elev);
      padding: 18px;
      text-align: center;
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .modal-quick-stats strong {
      display: block;
      font-family: 'Fraunces', serif;
      font-size: 36px;
      font-weight: 500;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
      font-style: italic;
    }

    .modal-prose p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 14px;
    }

    .modal-prose p:last-child {
      margin-bottom: 0;
    }

    .ensemble-pill {
      background: rgba(41, 200, 222, 0.05);
      border: 1px solid var(--border);
      border-left: 3px solid var(--cyan);
      border-radius: 0 10px 10px 0;
      padding: 18px 22px;
      font-size: 13.5px;
      color: var(--text);
      line-height: 1.7;
    }

    .modal-origin {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      line-height: 1.6;
      font-style: italic;
      color: var(--text);
      padding: 8px 0;
    }

    .reels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }

    .reel-block {
      background: var(--bg-elev);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .reel-label {
      padding: 10px 14px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(41, 200, 222, 0.06);
      border-bottom: 1px solid var(--border);
    }

    .reel-embed {
      position: relative;
      padding-bottom: 130%;
      height: 0;
      overflow: hidden;
    }

    .reel-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .btn-insta-reel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.03);
      border-top: 1px solid var(--border);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.2s ease;
    }

    .btn-insta-reel:hover {
      background: rgba(41, 200, 222, 0.1);
      color: var(--cyan);
    }


    .placeholder-block {
      background: var(--bg-elev);
      border: 1px dashed var(--border);
      border-radius: 12px;
      padding: 28px;
      text-align: center;
      color: var(--text-muted);
      font-size: 14px;
    }

    .placeholder-block p {
      margin-bottom: 12px;
    }

    .ideal-tags-modal {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .modal-cta {
      padding: 36px 40px;
      background: var(--bg-elev);
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }

    .btn-large-modal {
      background: var(--cyan);
      color: var(--navy);
      padding: 16px 36px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
      letter-spacing: 0.3px;
    }

    .btn-large-modal svg {
      width: 16px;
      height: 16px;
    }

    .btn-large-modal:hover {
      background: var(--yellow);
      transform: scale(1.04);
    }

    .btn-ghost-sm {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      border: 1px solid var(--border);
      padding: 10px 20px;
      border-radius: 100px;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-ghost-sm:hover {
      color: var(--cyan);
      border-color: var(--border-hover);
    }

    /* FOUNDERS */
    .founders {
      background: var(--bg-elev);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 130px 24px;
      margin-top: 60px;
    }

    .founders-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .founders-intro {
      text-align: center;
      margin-bottom: 80px;
    }

    .origin-quote {
      font-family: 'Fraunces', serif;
      font-size: clamp(22px, 2.6vw, 30px);
      line-height: 1.55;
      color: var(--text);
      font-style: italic;
      text-align: center;
      max-width: 820px;
      margin: 32px auto 0;
      font-weight: 400;
    }

    .origin-quote .accent {
      color: var(--yellow);
      font-style: normal;
      font-weight: 500;
    }

    .founders-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 720px;
      margin: 0 auto;
    }

    .founder-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .founder-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-hover);
      box-shadow: 0 20px 50px rgba(41, 200, 222, 0.15);
    }

    .founder-img-wrap {
      aspect-ratio: 4/5;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #0A1428, #1a2642);
    }

    .founder-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .founder-card:hover .founder-img-wrap img {
      transform: scale(1.06);
    }

    .founder-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(10, 15, 28, 0.7) 100%);
    }

    .founder-card-body {
      padding: 22px 24px 26px;
      text-align: center;
    }

    .founder-card-name {
      font-family: 'Fraunces', serif;
      font-size: 24px;
      font-weight: 500;
      font-style: italic;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .founder-card-role {
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .founder-card-short {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .founder-card-cta {
      margin-top: 14px;
      color: var(--yellow);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    /* FOUNDER MODAL */
    .founder-modal-content {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
    }

    .founder-modal-img {
      aspect-ratio: 3/4;
      overflow: hidden;
    }

    .founder-modal-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .founder-modal-img-richa {
      aspect-ratio: 3/4;
    }

    .founder-modal-img-richa img {
      object-position: center 18%;
    }

    .founder-modal-body {
      padding: 50px 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .founder-modal-name {
      font-family: 'Fraunces', serif;
      font-size: 44px;
      font-weight: 400;
      font-style: italic;
      line-height: 1.05;
      margin-bottom: 8px;
    }

    .founder-modal-role {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 28px;
      font-weight: 500;
    }

    .founder-modal-bio {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    /* FINAL CTA */
    .final-cta {
      padding: 140px 24px;
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
    }

    .final-cta h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(40px, 6.5vw, 80px);
      line-height: 1.05;
      margin-bottom: 24px;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .final-cta h2 .highlight {
      color: var(--cyan);
      font-style: italic;
    }

    .final-cta p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 44px;
      line-height: 1.65;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-large {
      padding: 18px 40px;
      font-size: 15px;
      background: var(--cyan);
      color: var(--navy);
      border-radius: 100px;
      font-weight: 600;
      display: inline-flex;
      gap: 10px;
      align-items: center;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.3s;
    }

    .btn-large svg {
      width: 20px;
      height: 20px;
    }

    .btn-large:hover {
      background: var(--yellow);
      transform: scale(1.05);
    }

    /* FOOTER */
    footer {
      padding: 80px 24px 40px;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .footer-wordmark {
      width: 112px;
      margin: 0 auto 28px;
      opacity: 0.82;
    }

    .footer-wordmark img {
      width: 100%;
      height: auto;
    }

    .footer-social {
      display: flex;
      gap: 14px;
      justify-content: center;
      margin-bottom: 32px;
    }

    .social-link {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: transparent;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.25s;
    }

    .social-link:hover {
      background: var(--cyan);
      color: var(--navy);
      border-color: var(--cyan);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    .footer-tag {
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .footer-tag span {
      color: var(--yellow);
      margin: 0 6px;
    }

    .footer-copy {
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 0.5px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .artist-card.flagship {
        grid-column: span 1;
      }

      .artist-card.flagship .card-thumbnail {
        height: 360px;
      }

      .artist-card.flagship .band-display-name {
        font-size: 38px;
      }

      .section {
        padding: 70px 20px;
      }

      .founders {
        padding: 80px 20px;
      }

      .founders-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

      .founder-modal-content {
        grid-template-columns: 1fr;
      }

      .founder-modal-img {
        aspect-ratio: 4/3;
      }

      .founder-modal-img-richa {
        aspect-ratio: 3/4 !important;
      }

      .founder-modal-img-richa img {
        object-position: center 15% !important;
      }

      .founder-modal-body {
        padding: 32px 24px;
      }

      .modal-section {
        padding: 22px 24px;
      }

      .modal-hero {
        padding: 24px;
        height: 240px;
      }

      .modal-name {
        font-size: 36px;
      }

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

      .modal-cta {
        padding: 28px 24px;
      }

      .final-cta {
        padding: 80px 24px;
      }

      .modal-quick-stats strong {
        font-size: 28px;
      }
    }


    /* TBL booking essentials grid */
    .tbl-grid {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: var(--bg-elev);
    }

    .tbl-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      border-bottom: 1px solid var(--border);
    }

    .tbl-row:last-child {
      border-bottom: none;
    }

    .tbl-label {
      padding: 14px 18px;
      background: rgba(41, 200, 222, 0.04);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 600;
      border-right: 1px solid var(--border);
    }

    .tbl-value {
      padding: 14px 20px;
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .stage-diagram {
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      padding: 0;
      max-width: 480px;
      margin: 0 auto;
    }

    .stage-diagram img {
      width: 100%;
      height: auto;
      display: block;
    }

    .stage-caption {
      font-size: 11px;
      color: var(--text-dim);
      margin-top: 12px;
      text-align: center;
      letter-spacing: 1px;
      font-style: italic;
    }

    @media (max-width: 768px) {
      .tbl-row {
        grid-template-columns: 1fr;
      }

      .tbl-label {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 10px 16px;
      }

      .tbl-value {
        padding: 12px 16px;
        font-size: 13px;
      }
    }


    /* V5: Hide occasion tags on face card — they live inside artist detail only */
    .card-body .ideal-tags {
      display: none;
    }

    /* === V4 mobile improvements === */
    @media (max-width: 768px) {
      .hero {
        padding: 32px 20px 20px !important;
        min-height: auto !important;
      }

      .hero-circle-logo {
        width: 78px !important;
        height: 78px !important;
        margin-bottom: 20px !important;
      }

      .hero-wordmark {
        width: min(92vw, 360px) !important;
        margin-bottom: 24px !important;
      }

      .hero-wordmark img {
        width: 90px !important;
      }

      .hero-wordmark::before {
        top: -8px;
        left: 50%;
        width: 112px;
        height: 112px;
        filter: blur(16px);
        transform: translateX(-50%) scale(1.14);
      }

      .hero-line-yellow {
        margin-bottom: 18px !important;
      }

      .hero h1 {
        margin-bottom: 18px !important;
        font-size: clamp(28px, 8vw, 40px) !important;
      }

      .hero-company-wordmark {
        width: 230px !important;
        margin-top: -12px !important;
        margin-bottom: 26px !important;
      }

      .hero-tagline {
        margin-bottom: 24px !important;
        font-size: 11px !important;
        letter-spacing: 4px !important;
      }

      .section {
        padding: 8px 16px 60px !important;
      }

      .section-header {
        margin-bottom: 24px !important;
      }

      .section-title {
        font-size: clamp(28px, 7vw, 38px) !important;
      }

      .filters {
        margin-bottom: 24px !important;
        gap: 6px !important;
      }

      .filter-btn {
        padding: 8px 14px !important;
        font-size: 12px !important;
      }

      .artist-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
      }

      .card-thumbnail {
        height: 280px !important;
      }

      .card-body {
        padding: 22px 22px 24px !important;
      }

      .band-display-name {
        font-size: 24px !important;
        letter-spacing: 0.05em !important;
      }

      .card-actions {
        flex-direction: column;
      }

      .card-actions .btn {
        width: 100%;
      }
    }



    /* V6.1 modal interaction + premium visual fix */
    .modal-hero {
      position: relative !important;
      min-height: 340px !important;
      height: auto !important;
      overflow: hidden !important;
      display: flex !important;
      align-items: flex-end !important;
      padding: 28px !important;
      background: #07101f !important;
      isolation: isolate !important;
      border-bottom: 1px solid var(--border-color) !important;
    }

    .modal-cover-backdrop {
      position: absolute;
      inset: -8%;
      width: 116%;
      height: 116%;
      object-fit: cover;
      object-position: var(--cover-pos, center center);
      filter: blur(24px) saturate(1.16) brightness(0.34);
      transform: scale(1.12);
      opacity: 0.9;
      z-index: 0;
    }

    .modal-cover-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--cover-pos, center center);
      transform: scale(1.03);
      filter: saturate(1.06) contrast(1.05) brightness(0.94);
      z-index: 1;
    }

    .modal-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 88% 16%, rgba(41, 200, 222, 0.20) 0%, rgba(41, 200, 222, 0.08) 17%, transparent 40%), radial-gradient(circle at 82% 18%, rgba(245, 213, 71, 0.18) 0%, rgba(245, 213, 71, 0.06) 16%, transparent 34%), linear-gradient(180deg, rgba(5, 11, 24, 0.10) 0%, rgba(5, 11, 24, 0.32) 42%, rgba(5, 11, 24, 0.88) 100%) !important;
      z-index: 2;
    }

    .modal-hero::after {
      content: '';
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      pointer-events: none;
      z-index: 2;
    }

    .modal-logo-highlight {
      position: absolute;
      top: 22px;
      right: 22px;
      width: 96px;
      height: 96px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(10, 20, 40, 0.78) 0%, rgba(10, 20, 40, 0.58) 100%);
      border: 1px solid rgba(255, 255, 255, 0.11);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
      z-index: 4;
      backdrop-filter: blur(16px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
    }

    .modal-logo-highlight::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 28px;
      background: radial-gradient(circle, rgba(41, 200, 222, 0.20) 0%, rgba(245, 213, 71, 0.12) 24%, transparent 62%);
      filter: blur(14px);
      z-index: -1;
    }

    .modal-logo-highlight img,
    .modal-logo-highlight svg {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .modal-hero-copy {
      position: relative;
      z-index: 4;
      max-width: 100%;
    }

    .modal-usp-box {
      padding: 18px 20px;
      border-radius: 18px;
      border: 1px solid rgba(41, 200, 222, 0.18);
      background: linear-gradient(180deg, rgba(41, 200, 222, 0.09) 0%, rgba(7, 16, 31, 0.88) 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 30px rgba(0, 0, 0, 0.18);
    }

    .modal-usp-box strong {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
      font-family: 'Cinzel', serif;
      font-size: 22px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--yellow);
      text-shadow: 0 0 20px rgba(245, 213, 71, 0.12);
    }

    .modal-usp-box strong::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(245, 213, 71, 0.4), rgba(41, 200, 222, 0.1));
    }

    .modal-usp-box p {
      margin: 0;
      color: var(--text);
      line-height: 1.8;
      font-size: 15px;
    }

    .tbl-value ul {
      margin: 0;
      padding-left: 18px;
    }

    .tbl-value li {
      margin: 5px 0;
    }

    .tbl-link {
      color: var(--yellow);
      text-decoration: none;
      border-bottom: 1px solid rgba(245, 213, 71, 0.35);
      padding-bottom: 1px;
    }

    .tbl-link:hover {
      color: var(--cyan);
      border-color: rgba(41, 200, 222, 0.35);
    }

    .ideal-tags-modal {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .ideal-tags-modal .tag.ideal {
      padding: 8px 14px;
      background: rgba(245, 213, 71, 0.08);
    }

    @media (max-width: 768px) {
      .modal-hero {
        min-height: 300px !important;
        padding: 22px !important;
        height: auto !important;
      }

      .modal-logo-highlight {
        width: 82px;
        height: 82px;
        top: 18px;
        right: 18px;
        border-radius: 18px;
        padding: 12px;
      }

      .modal-hero-copy {
        max-width: 100%;
      }

      .modal-name {
        font-size: 34px !important;
      }

      .modal-sub {
        font-size: 11px;
        letter-spacing: 2.4px;
      }
    }



    /* === Final polish pass === */
    .section-label {
      font-size: 13px;
      letter-spacing: 4.6px;
    }

    .founders {
      padding: 96px 24px 104px;
      margin-top: 42px;
    }

    .founders-intro {
      margin-bottom: 52px;
    }

    .origin-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 2.8vw, 34px);
      line-height: 1.42;
      font-style: normal;
      letter-spacing: 0.01em;
    }

    .origin-quote.storyline {
      max-width: 760px;
      font-weight: 500;
    }

    .origin-quote.founder-origin {
      margin-top: 54px !important;
      max-width: 900px;
      font-size: clamp(21px, 2.25vw, 28px);
      line-height: 1.5;
      color: rgba(244, 244, 246, 0.88);
    }

    .founder-card-name,
    .founder-modal-name {
      font-family: 'Cormorant Garamond', serif;
      font-style: normal;
      letter-spacing: 0.01em;
    }

    .founder-card-name {
      font-size: 28px;
      font-weight: 600;
    }

    .founder-modal-name {
      font-size: 48px;
      font-weight: 600;
    }

    .founder-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 50% 28%, rgba(245, 213, 71, 0.12), transparent 36%),
        linear-gradient(135deg, rgba(10, 20, 40, 0.95), rgba(5, 11, 24, 0.95));
    }

    .founder-initials {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      border: 1px solid rgba(245, 213, 71, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      color: var(--yellow);
      background: rgba(255, 255, 255, 0.03);
      box-shadow: 0 0 32px rgba(245, 213, 71, 0.10);
    }

    .founder-modal-content.no-image {
      display: block;
    }

    .founder-modal-content.no-image .founder-modal-body {
      padding: 54px 52px;
    }

    /* Desktop-only: show full artist profile cover images without disturbing mobile. */
    @media (min-width: 769px) {
      .modal-hero {
        min-height: 420px !important;
      }

      .modal-cover-img {
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
      }
    }

    /* Mobile one-line hero tagline */
    @media (max-width: 768px) {
      .hero-tagline {
        white-space: nowrap !important;
        font-size: 9.6px !important;
        letter-spacing: 2.4px !important;
        width: 100% !important;
        text-align: center !important;
      }

      .hero-tagline .dot {
        margin: 0 4px !important;
      }

      .section-label {
        font-size: 12px;
        letter-spacing: 4px;
      }

      .founders {
        padding: 64px 20px 72px;
        margin-top: 36px;
      }

      .founders-intro {
        margin-bottom: 36px;
      }

      .origin-quote {
        font-size: 23px;
        line-height: 1.42;
      }

      .origin-quote.founder-origin {
        margin-top: 44px !important;
        font-size: 21px;
      }

      .founder-card-name {
        font-size: 27px;
      }

      .founder-modal-name {
        font-size: 40px;
      }
    }

    /* Final logo QA */
    .modal-artist-logo.logo-smb-hungama img,
    .modal-artist-logo.logo-smb-hungama svg {
      max-width: 54%;
      max-height: 40px;
    }

    .modal-artist-logo.logo-sm-fire-energy img,
    .modal-artist-logo.logo-sm-fire-energy svg {
      max-width: 92%;
      max-height: 60px;
    }

    .modal-artist-logo.logo-plain-compact,
    .modal-artist-logo.logo-plain-square {
      background: transparent;
      border: none;
      box-shadow: none;
      min-height: auto;
      padding: 0;
    }

    .modal-artist-logo.logo-plain-compact img,
    .modal-artist-logo.logo-plain-compact svg {
      max-width: 100%;
      max-height: 88px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
    }

    .modal-artist-logo.logo-plain-square img,
    .modal-artist-logo.logo-plain-square svg {
      max-width: 100%;
      max-height: 102px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
    }

    @media (max-width: 768px) {

      .modal-artist-logo.logo-smb-hungama img,
      .modal-artist-logo.logo-smb-hungama svg {
        max-width: 56%;
        max-height: 36px;
      }

      .modal-artist-logo.logo-sm-fire-energy img,
      .modal-artist-logo.logo-sm-fire-energy svg {
        max-width: 96%;
        max-height: 56px;
      }

      .modal-artist-logo.logo-plain-compact img,
      .modal-artist-logo.logo-plain-compact svg {
        max-height: 76px;
      }

      .modal-artist-logo.logo-plain-square img,
      .modal-artist-logo.logo-plain-square svg {
        max-height: 90px;
      }
    }



    /* === Founder font correction: visibly different typography === */
    .origin-quote.storyline {
      font-family: 'Bodoni Moda', serif !important;
      font-size: clamp(28px, 3.2vw, 42px) !important;
      line-height: 1.22 !important;
      font-weight: 500 !important;
      letter-spacing: -0.015em !important;
      color: rgba(244, 244, 246, 0.96) !important;
    }

    .origin-quote.storyline .accent {
      font-family: 'Bodoni Moda', serif !important;
      font-style: italic !important;
      font-weight: 500 !important;
    }

    .founder-card-name,
    .founder-modal-name {
      font-family: 'Cinzel', serif !important;
      text-transform: uppercase !important;
      letter-spacing: 0.12em !important;
      font-weight: 500 !important;
    }

    .founder-card-name {
      font-size: 23px !important;
      line-height: 1.2 !important;
    }

    .founder-modal-name {
      font-size: clamp(34px, 4vw, 50px) !important;
      line-height: 1.05 !important;
    }

    .origin-quote.founder-origin {
      font-family: 'Fraunces', serif !important;
      font-size: clamp(21px, 2.2vw, 30px) !important;
      line-height: 1.48 !important;
      font-weight: 400 !important;
      letter-spacing: -0.01em !important;
      color: rgba(244, 244, 246, 0.90) !important;
    }

    .origin-quote.founder-origin .accent {
      font-family: 'Fraunces', serif !important;
      font-style: italic !important;
      font-weight: 500 !important;
    }

    @media (max-width: 768px) {
      .origin-quote.storyline {
        font-size: 25px !important;
        line-height: 1.24 !important;
      }

      .origin-quote.founder-origin {
        font-size: 20px !important;
        line-height: 1.44 !important;
      }

      .founder-card-name {
        font-size: 22px !important;
      }

      .founder-modal-name {
        font-size: 34px !important;
      }
    }


    /* SCROLL REVEAL ANIMATIONS */
    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Delay staggered elements */
    .artist-grid .scroll-reveal:nth-child(1) {
      transition-delay: 0.05s;
    }

    .artist-grid .scroll-reveal:nth-child(2) {
      transition-delay: 0.15s;
    }

    .artist-grid .scroll-reveal:nth-child(3) {
      transition-delay: 0.25s;
    }

    .artist-grid .scroll-reveal:nth-child(4) {
      transition-delay: 0.35s;
    }

    .artist-grid .scroll-reveal:nth-child(5) {
      transition-delay: 0.45s;
    }

    .artist-grid .scroll-reveal:nth-child(6) {
      transition-delay: 0.55s;
    }

    /* Better Mobile Layout for v3 Hero */
    @media (max-width: 768px) {
      .hero-h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
        margin-bottom: 1rem;
      }

      .hero-sub {
        font-size: 14px;
        margin-bottom: 2rem;
        padding: 0 10px;
      }

      .hero-logo {
        width: 150px;
        height: 150px;
      }

      .fcard-text {
        text-align: center;
      }

      .founder-actions {
        justify-content: center;
      }

      .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
      }

      .btn-hero,
      .btn-hero-sec {
        width: 100%;
        text-align: center;
      }

      /* Fix Roster Cards on Mobile */
      .artist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .artist-card.flagship {
        grid-column: span 1;
      }

      .card-thumbnail,
      .artist-card.flagship .card-thumbnail {
        height: 300px;
      }
    }