.toonhub-hero {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: #F4845F;
      transition: background-color 650ms cubic-bezier(0.4, 0, 0.2, 1);
      font-family: 'Inter', sans-serif;
    }

    .toonhub-stage {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    /* 1. Grain overlay */
    .grain {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 50;
      opacity: 0.4;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      background-repeat: repeat;
    }

    /* 2. Giant ghost text */
    .ghost-text {
      position: absolute;
      inset-inline: 0;
      top: 18%;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      user-select: none;
      font-family: 'Anton', sans-serif;
      font-size: clamp(90px, 28vw, 380px);
      font-weight: 900;
      color: #fff;
      opacity: 1;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    /* 3. Top-left brand */
    .brand {
      position: absolute;
      top: 1.5rem;
      left: 1rem;
      z-index: 60;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }
    @media (min-width: 640px) {
      .brand { left: 2rem; }
    }

    /* 4. Carousel */
    .carousel {
      position: absolute;
      inset: 0;
      z-index: 3;
    }

    .figurine {
      position: absolute;
      aspect-ratio: 0.6 / 1;
      transition:
        transform 650ms cubic-bezier(0.4, 0, 0.2, 1),
        filter 650ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 650ms cubic-bezier(0.4, 0, 0.2, 1),
        left 650ms cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform, filter, opacity;
    }

    .figurine img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom center;
      pointer-events: none;
      -webkit-user-drag: none;
      user-select: none;
      opacity: 0;
      transition: opacity 400ms ease;
    }
    .figurine img.loaded {
      opacity: 1;
    }

    /* Role styles — desktop defaults */
    .role-center {
      left: 50%;
      transform: translateX(-50%) scale(1.68);
      filter: blur(0);
      opacity: 1;
      z-index: 20;
      height: 92%;
      bottom: 0;
    }
    .role-left {
      left: 30%;
      transform: translateX(-50%) scale(1);
      filter: blur(2px);
      opacity: 0.85;
      z-index: 10;
      height: 28%;
      bottom: 12%;
    }
    .role-right {
      left: 70%;
      transform: translateX(-50%) scale(1);
      filter: blur(2px);
      opacity: 0.85;
      z-index: 10;
      height: 28%;
      bottom: 12%;
    }
    .role-back {
      left: 50%;
      transform: translateX(-50%) scale(1);
      filter: blur(4px);
      opacity: 1;
      z-index: 5;
      height: 22%;
      bottom: 12%;
    }

    /* Mobile overrides */
    @media (max-width: 639px) {
      .role-center {
        transform: translateX(-50%) scale(1.25);
        height: 60%;
        bottom: 22%;
      }
      .role-left {
        left: 20%;
        height: 16%;
        bottom: 32%;
      }
      .role-right {
        left: 80%;
        height: 16%;
        bottom: 32%;
      }
      .role-back {
        height: 13%;
        bottom: 32%;
      }
    }

    /* 5. Bottom-left cluster */
    .nav-cluster {
      position: absolute;
      bottom: 1.5rem;
      left: 1rem;
      z-index: 60;
      max-width: 320px;
      color: #fff;
    }
    @media (min-width: 640px) {
      .nav-cluster {
        bottom: 5rem;
        left: 6rem;
      }
    }

    .nav-title {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      opacity: 0.95;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
    @media (min-width: 640px) {
      .nav-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
      }
    }

    .nav-desc {
      display: none;
      font-size: 0.75rem;
      opacity: 0.85;
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
    @media (min-width: 640px) {
      .nav-desc {
        display: block;
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
      }
    }

    .nav-buttons {
      display: flex;
      gap: 0.75rem;
    }

    .nav-btn {
      width: 3rem;
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      border: 2px solid #fff;
      background: transparent;
      color: #fff;
      cursor: pointer;
      transition: transform 150ms, background-color 150ms;
    }
    .nav-btn:hover {
      transform: scale(1.08);
      background-color: rgba(255, 255, 255, 0.12);
    }
    .nav-btn:active {
      transform: scale(0.95);
    }
    .nav-btn svg {
      width: 26px;
      height: 26px;
      stroke-width: 2.25;
    }
    @media (min-width: 640px) {
      .nav-btn {
        width: 4rem;
        height: 4rem;
      }
    }

    /* 6. Bottom-right link */
    .discover {
      position: absolute;
      bottom: 1.5rem;
      right: 1rem;
      z-index: 60;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Anton', sans-serif;
      font-size: clamp(20px, 4vw, 56px);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.95);
      letter-spacing: -0.02em;
      line-height: 1;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 200ms;
    }
    .discover:hover {
      color: rgba(255, 255, 255, 1);
    }
    .discover svg {
      width: 1.25rem;
      height: 1.25rem;
      stroke-width: 2.25;
      transition: transform 200ms;
    }
    .discover:hover svg {
      transform: translateX(0.25rem);
    }
    @media (min-width: 640px) {
      .discover {
        bottom: 5rem;
        right: 2.5rem;
      }
      .discover svg {
        width: 2rem;
        height: 2rem;
      }
    }