* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
    font-family: 'Poppins', sans-serif;
}

/* ---------------- LANDING SECTION ---------------- */

.landing-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.landing-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.landing-bottom-vignette {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.25) 30%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0.85) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.landing-content {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 20px;
    width: min(90%, 900px);
}

.landing-content h1 {
    font-size: clamp(38px, 7vw, 88px);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    line-height: 1.02;
    opacity: 0.70;
}

.landing-credit {
    font-size: clamp(11px, 1.05vw, 15px);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.9px;
    opacity: 0.65;
    text-transform: none;
}

.landing-credit span {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.4px;
}

/* ---------------- DEEP DIVE SECTION ---------------- */

.deep-dive-section {
    position: relative;
    width: 100%;
    height: 72vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 200px;
}

.deep-dive-gloss {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 18%, rgba(255,255,255,0) 40%),
        radial-gradient(ellipse at center, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 55%);
    pointer-events: none;
    z-index: 1;
}

.deep-dive-vignette-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
    pointer-events: none;
    z-index: 2;
}

.deep-dive-vignette-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28%;
    background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0));
    pointer-events: none;
    z-index: 2;
}

.deep-dive-content {
    position: relative;
    z-index: 3;
    width: min(86vw, 1200px);
    text-align: center;
    padding: 0 24px;
    transform: none;
    opacity: 0.80;
}

.deep-dive-content p {
    max-width: 980px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(28px, 3.8vw, 64px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.2px;
    text-wrap: balance;
}

/* ---------------- HONEYCOMB PREVIEW SECTION ---------------- */

.honeycomb-preview-section {
    position: relative;
    width: 100%;
    min-height: 2050px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 24px 220px;
}

.honeycomb-preview-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 18%, rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
    z-index: 1;
}

.honeycomb-preview-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.honeycomb-card {
    position: relative;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    background: linear-gradient(180deg, #e6e3e3 0%, #5f5f5f 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.honeycomb-card-large {
    width: min(34vw, 420px);
    aspect-ratio: 1 / 1.08;
}

.honeycomb-card-inner {
    position: relative;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    background: #6a0409;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: none;
    transition: filter 0.35s ease;
}

.honeycomb-image {
    width: 138%;
    height: 138%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: rotate(-90deg) scale(1.08);
    transform-origin: center center;
    filter: saturate(1.02) contrast(1.06);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.honeycomb-top .honeycomb-image {
    width: 125%;
    height: 120%;
    object-fit: cover;
    object-position: center 35%;
    transform: rotate(-90deg) scale(0.94);
}

.honeycomb-bottom-left .honeycomb-image {
    width: 108%;
    height: 104%;
    object-position: center 38%;
    transform: rotate(-90deg) scale(0.90);
}

.honeycomb-bottom-right .honeycomb-image {
    width: 118%;
    height: 118%;
    object-fit: cover;
    object-position: 42% -25%;
    transform: rotate(-90deg) scale(0.95);
}

.honeycomb-third-left .honeycomb-image {
    width: 140%;
    height: 100%;
    object-fit: cover;
    object-position: center 33%;
    transform: rotate(-90deg) scale(0.96);
}

.honeycomb-third-middle .honeycomb-image {
    width: 135%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 2%;
    transform: rotate(-90deg) scale(0.92);
}

.honeycomb-third-right .honeycomb-image {
    width: 140%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 2%;
    transform: rotate(-90deg) scale(0.94);
}

.honeycomb-fourth-left .honeycomb-image {
    width: 135%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: rotate(-90deg) scale(0.94);
}

.honeycomb-fourth-right .honeycomb-image {
    width: 135%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    transform: rotate(-90deg) scale(0.94);
}

/* final bottom locked position */
.honeycomb-final-bottom .honeycomb-image {
    width: 135%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    transform: rotate(-90deg) scale(1.10) translateX(-10px);
    transform-origin: center center;
}

.honeycomb-cluster {
    position: relative;
    width: 920px;
    height: 1780px;
}

.honeycomb-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.honeycomb-bottom-left {
    position: absolute;
    top: 320px;
    left: 50px;
    transform: rotate(90deg);
}

.honeycomb-bottom-right {
    position: absolute;
    top: 320px;
    right: 50px;
    transform: rotate(90deg);
}

.honeycomb-third-left {
    position: absolute;
    top: 640px;
    left: -150px;
    transform: rotate(90deg);
}

.honeycomb-third-middle {
    position: absolute;
    top: 640px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.honeycomb-third-right {
    position: absolute;
    top: 640px;
    right: -150px;
    transform: rotate(90deg);
}

.honeycomb-fourth-left {
    position: absolute;
    top: 960px;
    left: 50px;
    transform: rotate(90deg);
}

.honeycomb-fourth-right {
    position: absolute;
    top: 960px;
    right: 50px;
    transform: rotate(90deg);
}

.honeycomb-final-bottom {
    position: absolute;
    top: 1282px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.honeycomb-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 18%),
        linear-gradient(to top, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0) 30%);
    pointer-events: none;
}

/* ---------------- EXPLORE BUTTONS ---------------- */

.honeycomb-explore-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    text-decoration: none;
}

.honeycomb-explore-btn span {
    transform: rotate(-90deg);
    min-width: 190px;
    height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #8b0000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.honeycomb-card:hover .honeycomb-explore-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.honeycomb-explore-btn span:hover {
    transform: rotate(-90deg) scale(1.05);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
    background: #f6f6f6;
}

.honeycomb-explore-btn:link,
.honeycomb-explore-btn:visited,
.honeycomb-explore-btn:focus,
.honeycomb-explore-btn:active,
.honeycomb-explore-btn:focus-visible {
    text-decoration: none;
    outline: none;
}

/* ---------------- HONEYCOMB HOVER EFFECTS ---------------- */

.honeycomb-card:hover .honeycomb-image {
    filter: blur(4px);
}

.honeycomb-top:hover .honeycomb-image {
    transform: rotate(-90deg) scale(1.00);
}

.honeycomb-bottom-left:hover .honeycomb-image {
    transform: rotate(-90deg) scale(0.96);
}

.honeycomb-bottom-right:hover .honeycomb-image {
    transform: rotate(-90deg) scale(1.01);
}

.honeycomb-third-left:hover .honeycomb-image {
    transform: rotate(-90deg) scale(1.02);
}

.honeycomb-third-middle:hover .honeycomb-image {
    transform: rotate(-90deg) scale(0.98);
}

.honeycomb-third-right:hover .honeycomb-image {
    transform: rotate(-90deg) scale(1.00);
}

.honeycomb-fourth-left:hover .honeycomb-image {
    transform: rotate(-90deg) scale(1.00);
}

.honeycomb-fourth-right:hover .honeycomb-image {
    transform: rotate(-90deg) scale(1.00);
}

.honeycomb-final-bottom:hover .honeycomb-image {
    filter: blur(4px);
    transform: rotate(-90deg) scale(1.16) translateX(-10px);
}

.honeycomb-card:hover {
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.68),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* ---------------- LICENSES SECTION ---------------- */

.licenses-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 130px 24px 140px;
    overflow: hidden;
}

.licenses-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.licenses-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 72px;
}

.licenses-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b000f;
    margin-bottom: 16px;
}

.licenses-header h2 {
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 1.06;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.licenses-subtext {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
    color: #555;
    max-width: 760px;
    margin: 0 auto;
}

.licenses-grid {
    display: grid;
    gap: 28px;
}

.licenses-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
}

.license-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    padding: 34px 28px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.license-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.10);
    border-color: rgba(139, 0, 15, 0.18);
}

.license-card.featured {
    border-color: rgba(139, 0, 15, 0.18);
    box-shadow: 0 24px 65px rgba(139, 0, 15, 0.10);
}

.license-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f7eaed;
    color: #8b000f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.license-card h3 {
    font-size: 28px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
    font-weight: 700;
}

.license-card p {
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.license-card ul {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
}

.license-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #222;
    font-size: 15px;
    line-height: 1.55;
}

.license-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8b000f;
}

.license-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 52px;
    padding: 0 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.license-btn:hover {
    transform: translateY(-2px);
    background: #8b000f;
}

@media (max-width: 1024px) {
    .licenses-grid-two {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .licenses-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .licenses-section {
        padding: 90px 20px 100px;
    }

    .license-card {
        border-radius: 22px;
        padding: 28px 22px 24px;
    }

    .license-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .licenses-section {
        padding: 78px 16px 84px;
    }

    .licenses-header h2 {
        font-size: 32px;
    }

    .licenses-subtext {
        font-size: 14px;
    }

    .license-card {
        padding: 24px 18px 22px;
    }

    .license-card h3 {
        font-size: 22px;
    }

    .license-card p,
    .license-card ul li {
        font-size: 14px;
    }

    .license-btn {
        width: 100%;
    }
}

/* ---------------- AURI MUSIC BUY-OUT CONTRACT SECTION ---------------- */

.buyout-contract-section {
    position: relative;
    width: 100%;
    background: #8b0000;
    padding: 130px 24px 150px;
    overflow: hidden;
}

.buyout-contract-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.buyout-contract-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.buyout-contract-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 245, 236, 0.82);
    margin-bottom: 16px;
}

.buyout-contract-header h2 {
    font-size: clamp(34px, 4.8vw, 66px);
    line-height: 1.04;
    font-weight: 800;
    color: #fff5ec;
    margin-bottom: 18px;
}

.buyout-contract-header h2 span {
    display: block;
}

.buyout-contract-subtext {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
    color: rgba(255, 245, 236, 0.84);
}

.buyout-contract-paper {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    background: rgba(255, 248, 241, 0.06);
    border: 1px solid rgba(255, 245, 236, 0.16);
    border-radius: 30px;
    padding: 42px 38px 44px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.contract-topline {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 245, 236, 0),
        rgba(255, 245, 236, 0.38),
        rgba(255, 245, 236, 0)
    );
    margin-bottom: 22px;
}

.contract-section-block {
    padding: 24px 0 22px;
    border-bottom: 1px solid rgba(255, 245, 236, 0.10);
}

.contract-section-block:last-of-type {
    border-bottom: none;
}

.contract-section-block h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff5ec;
    margin-bottom: 14px;
}

.contract-section-block p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 245, 236, 0.86);
}

.contract-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contract-feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 245, 236, 0.9);
}

.contract-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff5ec;
    opacity: 0.95;
}

.contract-highlight-block {
    margin-top: 8px;
    padding: 28px 0 12px;
}

.contract-highlight-block p {
    font-size: 17px;
    font-weight: 500;
    color: #fff5ec;
}

/* preview CTA button */
.contract-preview-cta {
    text-align: center;
    margin-top: 42px;
    padding-top: 10px;
}

.contract-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 56px;
    padding: 0 36px;
    border-radius: 14px;
    background: #fff5ec;
    color: #8b0000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.contract-view-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .buyout-contract-section {
        padding: 95px 20px 110px;
    }

    .buyout-contract-paper {
        padding: 30px 22px 32px;
        border-radius: 24px;
    }

    .contract-section-block h3 {
        font-size: 21px;
    }

    .contract-section-block p,
    .contract-feature-list li {
        font-size: 15px;
        line-height: 1.8;
    }

    .contract-preview-cta {
        margin-top: 34px;
    }

    .contract-view-btn {
        min-width: 190px;
        height: 54px;
        padding: 0 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .buyout-contract-section {
        padding: 80px 16px 90px;
    }

    .buyout-contract-header h2 {
        font-size: 32px;
    }

    .buyout-contract-subtext {
        font-size: 14px;
    }

    .buyout-contract-paper {
        padding: 24px 18px 26px;
        border-radius: 20px;
    }

    .contract-section-block {
        padding: 20px 0 18px;
    }

    .contract-section-block h3 {
        font-size: 19px;
    }

    .contract-section-block p,
    .contract-feature-list li {
        font-size: 14px;
    }

    .contract-preview-cta {
        margin-top: 28px;
    }

    .contract-view-btn {
        width: 100%;
        min-width: 0;
        height: 52px;
        padding: 0 20px;
        font-size: 14px;
    }
}

/* ---------------- STORE SECTION ---------------- */

.store-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

model-viewer {
    width: 100%;
    height: 100%;
    background: #000;
}

.loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 20px;
    z-index: 20;
    letter-spacing: 1px;
}

.camera-readout {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 30;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 700px;
}

/* 3D hotspot dot inside model-viewer */
.hotspot-dot-wrapper {
    pointer-events: auto;
}

.hotspot-dot-wrapper.hidden {
    display: none;
}

.hotspot-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.95);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotspot-dot-wrapper:hover .hotspot-dot {
    transform: scale(1.15);
    box-shadow: 0 0 18px rgba(255, 255, 255, 1);
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 9000;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-arrow:hover {
    transform: translateY(-50%) scale(1.08);
}

.nav-arrow:focus,
.nav-arrow:active,
.nav-arrow:focus-visible {
    outline: none;
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.arrow-icon {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.arrow-icon circle {
    stroke: rgba(255, 255, 255, 0.65);
}

.arrow-icon path {
    stroke: rgba(255, 255, 255, 0.95);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-arrow:hover .arrow-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

.nav-arrow:hover .arrow-icon circle {
    stroke: rgba(255, 255, 255, 1);
}

.nav-arrow:hover .arrow-icon path {
    stroke: rgba(255, 255, 255, 1);
}

/* ---------------- SECTION-SPECIFIC ARROW POSITIONS ---------------- */

/* Ganesha */
.arrow-pos-ganesha-left {
    left: 410px;
    top: 42%;
}
.arrow-pos-ganesha-right {
    right: 440px;
    top: 42%;
}

/* Trapstars */
.arrow-pos-trapstars-left {
    left: 470px;
    top: 42%;
}
.arrow-pos-trapstars-right {
    right: 466px;
    top: 42%;
}

/* RNB */
.arrow-pos-rnb-left {
    left: 465px;
    top: 42%;
}
.arrow-pos-rnb-right {
    right: 470px;
    top: 42%;
}

/* Pop */
.arrow-pos-pop-left {
    left: 482px;
    top: 40%;
}
.arrow-pos-pop-right {
    right: 465px;
    top: 40%;
}

/* Drill */
.arrow-pos-drill-left {
    left: 460px;
    top: 40%;
}
.arrow-pos-drill-right {
    right: 450px;
    top: 40%;
}

/* Divas */
.arrow-pos-divas-left {
    left: 475px;
    top: 37.8%;
}
.arrow-pos-divas-right {
    right: 454px;
    top: 37.8%;
}

/* EDM */
.arrow-pos-edm-left {
    left: 454px;
    top: 40%;
}
.arrow-pos-edm-right {
    right: 440px;
    top: 40%;
}

/* Afrobeats */
.arrow-pos-afrobeats-left {
    left: 452px;
    top: 40%;
}
.arrow-pos-afrobeats-right {
    right: 440px;
    top: 40%;
}

/* Fully opaque overlay UI outside model-viewer */
.hotspot-ui {
    position: absolute;
    top: 49.35%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(2px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.hotspot-ui.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) translateX(2px) scale(1.02);
}

.hotspot-ui.hidden {
    display: none;
}

.hotspot-video-box {
    width: 315px;
    height: 122px;
    overflow: hidden;
    background: #000;
}

.hotspot-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotspot-btn {
    width: 200px;
    height: 58px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotspot-btn:link,
.hotspot-btn:visited {
    text-decoration: none;
    color: #fff;
    outline: none;
}

.hotspot-btn:focus,
.hotspot-btn:active,
.hotspot-btn:focus-visible {
    text-decoration: none;
    color: #fff;
    outline: none;
}

.hotspot-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .licenses-grid {
        grid-template-columns: 1fr;
    }

    .licenses-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .camera-readout {
        left: 14px;
        bottom: 14px;
        font-size: 13px;
        max-width: 260px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .arrow-icon {
        width: 24px;
        height: 24px;
    }

    .nav-arrow-left {
        left: 14px !important;
        top: 42% !important;
    }

    .nav-arrow-right {
        right: 14px !important;
        top: 42% !important;
    }

    .hotspot-video-box {
        width: 250px;
        height: 98px;
    }

    .hotspot-btn {
        width: 180px;
        height: 52px;
        font-size: 15px;
    }

    .landing-content h1 {
        font-size: 52px;
        margin-bottom: 5px;
    }

    .landing-credit {
        font-size: 12px;
        letter-spacing: 0.7px;
    }

    .landing-content {
        margin-top: -9vh;
    }

    .landing-bottom-vignette {
        height: 38%;
    }

    .deep-dive-content {
    margin-top: -150px;
    }

    .deep-dive-content p {
        font-size: clamp(22px, 5vw, 42px);
        max-width: 92vw;
    }

    .honeycomb-preview-section {
    padding-top: 20px;
    padding-bottom: 0px;
    margin-bottom: -1420px;
    overflow: visible;
    }

    .honeycomb-cluster {
        transform: translateY(-390px) scale(0.55);
        transform-origin: top center;
    }

    .honeycomb-bottom-left,
    .honeycomb-bottom-right {
        margin-top: -120px;
    }

    .honeycomb-bottom-left {
        margin-left: -140px;
    }

    .honeycomb-bottom-right {
        margin-right: -140px;
    }

    .honeycomb-third-middle {
        margin-top: -240px;
    }

    .honeycomb-third-left,
    .honeycomb-third-right {
        margin-top: -40px;
    }

    .honeycomb-third-left {
        margin-left: 60px;
    }

    .honeycomb-third-right {
        margin-right: 60px;
    }

    .honeycomb-final-bottom {
    margin-top: -480px;
    }

    .honeycomb-fourth-left,
    .honeycomb-fourth-right {
        margin-top: 45px;
    }

    .honeycomb-fourth-left {
        margin-left: -140px;
    }

    .honeycomb-fourth-right {
        margin-right: -140px;
    }

    .honeycomb-image {
        object-position: center 40%;
        transform: scale(1.14);
    }

    .licenses-section {
        padding-top: 40px;
    }

    .license-card {
        border-radius: 22px;
        padding: 28px 22px 24px;
    }

    .license-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hotspot-dot {
        width: 16px;
        height: 16px;
    }

    .camera-readout {
        left: 10px;
        bottom: 10px;
        font-size: 12px;
        max-width: 220px;
        padding: 10px 12px;
    }

    .nav-arrow {
        width: 34px;
        height: 34px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    .nav-arrow-left {
        left: 10px !important;
        top: 42% !important;
    }

    .nav-arrow-right {
        right: 10px !important;
        top: 42% !important;
    }

    .hotspot-ui {
        transform: translate(-50%, -50%);
    }

    .hotspot-ui.show {
        transform: translate(-50%, -50%) scale(1.02);
    }

    .hotspot-video-box {
        width: 210px;
        height: 82px;
    }

    .hotspot-btn {
        width: 160px;
        height: 46px;
        margin-top: 14px;
        font-size: 13px;
    }

    .landing-content {
        top: 53%;
        width: min(92%, 900px);
    }

    .landing-content h1 {
        font-size: 42px;
        margin-bottom: 4px;
    }

    .landing-credit {
        font-size: 10.5px;
        letter-spacing: 0.55px;
    }

    .landing-bottom-vignette {
        height: 34%;
    }

    .deep-dive-content p {
        font-size: clamp(20px, 6vw, 30px);
        line-height: 1.24;
    }

    .honeycomb-preview-section {
        min-height: 72vh;
        padding: 70px 16px;
    }

    .honeycomb-card-large {
        width: min(72vw, 270px);
    }

    .honeycomb-image {
        object-position: center 39%;
        transform: scale(1.12);
    }

    .licenses-section {
        padding: 78px 16px 84px;
    }

    .licenses-header h2 {
        font-size: 32px;
    }

    .licenses-subtext {
        font-size: 14px;
    }

    .license-card {
        padding: 24px 18px 22px;
    }

    .license-card h3 {
        font-size: 22px;
    }

    .license-card p,
    .license-card ul li {
        font-size: 14px;
    }

    .license-btn {
        width: 100%;
    }
}

/* RNB specific positioning override */
#rnbUI {
    top: 49.2%;
    left: 49.65%;
    transform: translate(-50%, -50%) translateX(2px);
}

/* POP specific positioning override */
#popUI {
    top: 47.1%;
    left: 50.42%;
    transform: translate(-50%, -50%) translateX(2px);
}

#drillUI {
    top: 47.4%;
    left: 50.2%;
    transform: translate(-50%, -50%) translateX(2px);
}

#drillUI .hotspot-video-box {
    width: 345px;
    height: 135px;
}

/* DIVAS specific positioning override */
#divasUI {
    top: 45.55%;
    left: 50.65%;
    transform: translate(-50%, -50%) translateX(2px);
}

#divasUI .hotspot-video-box {
    width: 330px;
    height: 130px;
}

/* EDM specific positioning override */
#edmUI {
    top: 48.15%;
    left: 50.4%;
    transform: translate(-50%, -50%) translateX(2px);
}

#edmUI .hotspot-video-box {
    width: 360px;
    height: 140px;
}

#edmUI .hotspot-btn {
    margin-top: 16px;
}

/* AFROBEATS specific positioning override */
#afrobeatsUI {
    top: 48%;
    left: 50.3%;
    transform: translate(-50%, -50%) translateX(2px);
}

#afrobeatsUI .hotspot-video-box {
    width: 360px;
    height: 140px;
}

#afrobeatsUI .hotspot-btn {
    margin-top: 16px;
}

/* FOOTER */
.auri-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 24px;
}

.auri-footer-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.auri-footer-left h3 {
    color: #fff;
    font-size: 20px;
}

.auri-footer-left p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.auri-footer-links {
    display: flex;
    gap: 20px;
}

.auri-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.auri-footer-links a:hover {
    color: #fff;
}

.auri-footer-right p {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* POLICY POPUP */
.policy-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.policy-box {
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    background: #0a0a0a;
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    position: relative;
}

.policy-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.policy-content h2 {
    margin-bottom: 16px;
}

.policy-content p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}