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

:root {
    --bg: #090b12;
    --bg-soft: #111521;
    --panel: #151a27;
    --panel-strong: #1b2233;
    --text: #f6f7fb;
    --muted: #aeb6c7;
    --quiet: #758096;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #8e6cff;
    --accent-strong: #b89cff;
    --silver: #d8dde7;
    --gold: #f2c86b;
    --radius: 8px;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
    --transition: 180ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at 18% 0%, rgba(142, 108, 255, 0.18), transparent 34rem),
        linear-gradient(180deg, #090b12 0%, #101521 46%, #090b12 100%);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 11, 18, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 2rem;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--text);
    text-decoration: none;
}

.logo {
    width: 58px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.nav-tagline {
    max-width: 11rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.25;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
    transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--text);
}

.nav-toggle {
    display: none;
}

/* ===== Hero ===== */
.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--line);
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 650px;
}

.hero-content > * {
    opacity: 0;
    animation: heroFadeIn 900ms ease forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
    animation-delay: 180ms;
}

.hero-content > *:nth-child(4) {
    animation-delay: 270ms;
}

.hero-content > *:nth-child(5) {
    animation-delay: 360ms;
}

.eyebrow,
.hero-tagline,
.contact-label {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-headline {
    margin-top: 0.9rem;
    max-width: 720px;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.95;
}

.hero-tagline {
    margin-top: 1.4rem;
}

.hero-subheadline {
    max-width: 560px;
    margin-top: 1rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

.cta-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.82rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.cta-button {
    background: var(--text);
    color: #0a0d14;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
}

.mobile-hero-contact {
    display: none;
}

.cta-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.secondary-button:hover {
    border-color: rgba(184, 156, 255, 0.55);
}

.hero-cards {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    opacity: 0;
    animation: heroCardsFadeIn 1s ease 520ms forwards;
}

.hero-cards::before {
    content: "";
    position: absolute;
    inset: 12% 0 4%;
    z-index: -1;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.hero-cards::after {
    content: "";
    position: absolute;
    inset: 18% 11% 10%;
    z-index: -2;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(184, 156, 255, 0.2), rgba(184, 156, 255, 0));
    filter: blur(18px);
    opacity: 0;
    animation: cardGlowPulse 5.8s ease-in-out 1.5s infinite;
    pointer-events: none;
}

.card-placeholder {
    width: clamp(128px, 17vw, 190px);
    padding: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transition: transform 500ms ease, box-shadow 500ms ease;
    will-change: transform;
}

.card-placeholder.basic {
    transform: translateX(24px) rotate(-9deg);
    animation: cardFloatBasic 6.6s ease-in-out infinite;
}

.card-placeholder.rare {
    z-index: 2;
    transform: translateY(-16px) scale(1.08);
    animation: cardFloatRare 7.4s ease-in-out 240ms infinite;
}

.card-placeholder.legendary {
    transform: translateX(-24px) rotate(9deg);
    animation: cardFloatLegendary 6.9s ease-in-out 480ms infinite;
}

.card-placeholder:hover {
    animation: none;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.46);
}

.card-placeholder.basic:hover {
    transform: translateX(24px) translateY(-10px) rotate(-11deg);
}

.card-placeholder.rare:hover {
    transform: translateY(-26px) rotate(1.5deg) scale(1.08);
}

.card-placeholder.legendary:hover {
    transform: translateX(-24px) translateY(-10px) rotate(11deg);
}

.card-image {
    display: block;
    width: 100%;
    border-radius: 10px;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@keyframes heroCardsFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@keyframes cardGlowPulse {
    0%,
    72%,
    100% {
        opacity: 0;
        transform: scale(0.96);
    }

    42% {
        opacity: 0.72;
        transform: scale(1.04);
    }
}

@keyframes cardFloatBasic {
    0%,
    100% {
        transform: translateX(24px) translateY(0) rotate(-9deg);
    }

    50% {
        transform: translateX(24px) translateY(-9px) rotate(-9deg);
    }
}

@keyframes cardFloatRare {
    0%,
    100% {
        transform: translateY(-16px) scale(1.08);
    }

    50% {
        transform: translateY(-25px) scale(1.08);
    }
}

@keyframes cardFloatLegendary {
    0%,
    100% {
        transform: translateX(-24px) translateY(0) rotate(9deg);
    }

    50% {
        transform: translateX(-24px) translateY(-8px) rotate(9deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content > *,
    .hero-cards,
    .hero-cards::after,
    .card-placeholder {
        animation: none;
    }

    .hero-content > *,
    .hero-cards {
        opacity: 1;
    }
}

/* ===== Homepage Mobile ===== */
@media (max-width: 767px) {
body.home-page {
    .navbar .container {
        position: relative;
        min-height: 68px;
        padding: 0;
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }

    .navbar .logo {
        width: 45px;
    }

    .navbar .nav-tagline {
        max-width: 8.5rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .nav-toggle {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.045);
        color: var(--text);
        cursor: pointer;
    }

    .nav-toggle span {
        width: 19px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform var(--transition), opacity var(--transition);
    }

    .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .navbar .nav-menu {
        position: absolute;
        top: calc(100% - 1px);
        right: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        display: grid;
        gap: 0;
        padding: 0 0.65rem;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 0 0 12px 12px;
        background: rgba(9, 11, 18, 0.98);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: max-height 240ms ease, padding 240ms ease, opacity var(--transition);
    }

    .navbar .nav-menu.is-open {
        max-height: 22rem;
        padding-top: 0.45rem;
        padding-bottom: 0.55rem;
        border-color: var(--line);
        opacity: 1;
        visibility: visible;
    }

    .navbar .nav-menu a {
        display: block;
        padding: 0.72rem 0.55rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.9rem;
        white-space: normal;
    }

    .navbar .nav-menu li:last-child a {
        border-bottom: 0;
    }

    .hero {
        min-height: auto;
        padding: 2.7rem 0 2.9rem;
    }

    .hero .container {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-headline {
        max-width: 100%;
        margin-top: 0.65rem;
        font-size: clamp(2.2rem, 11vw, 3.2rem);
        line-height: 0.98;
        overflow-wrap: normal;
    }

    .hero-tagline {
        margin-top: 1rem;
    }

    .hero-subheadline {
        margin: 0.75rem auto 0;
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-actions {
        align-items: center;
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1.35rem;
    }

    .hero-actions .cta-button,
    .hero-actions .secondary-button {
        width: 90%;
        min-height: 50px;
    }

    .hero-cards {
        width: 100%;
        min-height: 235px;
        padding: 0 0.25rem;
        overflow: visible;
        opacity: 1;
        animation: none;
    }

    .hero-cards::before {
        inset: 8% 2% 2%;
    }

    .hero-cards::after {
        animation: none;
        opacity: 0.7;
    }

    .hero-cards .card-placeholder {
        width: min(29%, 108px);
        flex: 0 1 108px;
        padding: 0.3rem;
        animation: none;
    }

    .hero-cards .card-placeholder.basic {
        transform: translateX(8px) rotate(-7deg);
    }

    .hero-cards .card-placeholder.rare {
        transform: translateY(-8px) scale(1.03);
    }

    .hero-cards .card-placeholder.legendary {
        transform: translateX(-8px) rotate(7deg);
    }

    .section {
        padding: 3.5rem 0;
    }

    .section h2 {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

    .feature-cards,
    .rarities-grid,
    .artist-benefits,
    .hub-features-grid,
    .how-steps,
    .contact-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .qr-flow-container {
        align-items: center;
        flex-direction: column;
        gap: 1.25rem;
    }

    .qr-flow-connector {
        width: 76px;
        transform: rotate(90deg);
    }

    .hub-items {
        width: 100%;
    }

    .feature-card,
    .rarity-card,
    .benefit-item,
    .hub-feature,
    .how-step,
    .contact-copy,
    .contact-form {
        min-width: 0;
    }
}
}

/* ===== Premium Artist Hub ===== */
body.premium-artist-page {
&.artist-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 82% 8%, rgba(142, 108, 255, 0.13), transparent 27rem),
        radial-gradient(circle at 4% 58%, rgba(242, 200, 107, 0.06), transparent 24rem),
        #090b12;
}

.artist-page-shell {
    width: min(1040px, calc(100% - 36px));
    margin: 0 auto;
    padding: 0.75rem 0 1rem;
}

.artist-page-header {
    min-height: 50px;
    padding: 0 0 0.65rem;
}

.artist-page-logo { width: 38px; }

.artist-page-scan-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--quiet);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.artist-page-scan-note span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 12px var(--accent);
}

.artist-page-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    height: 275px;
    min-height: 0;
    padding: 0;
    border-radius: 18px;
    background: #10131d;
}

.artist-page-hero::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    pointer-events: none;
    content: "";
}

.artist-page-portrait {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 18px 0 0 18px;
}

.artist-page-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    filter: saturate(0.88) contrast(1.04);
}

.artist-page-portrait .artist-page-card-portrait {
    object-position: 50% 42%;
    transform: scale(1.18);
}

.artist-page-portrait-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 63%, #10131d 100%);
}

.artist-page-hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 1.1rem clamp(1.3rem, 4vw, 2.6rem);
}

.artist-page-series,
.artist-page-section-label {
    color: var(--accent-strong);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.artist-page-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.38rem;
    padding: 0;
    border: 0;
    background: none;
    color: var(--silver);
    font-size: 0.69rem;
    letter-spacing: 0.08em;
}

.artist-page-verified svg { width: 16px; fill: var(--accent); }
.artist-page-verified .artist-page-check { fill: none; stroke: white; stroke-width: 1.8; }

.artist-page-hero h1 {
    margin-top: 0.38rem;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 880;
    letter-spacing: -0.065em;
    line-height: 0.82;
}

.artist-page-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.62rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
}

.artist-page-hero-cta:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

.artist-page-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.55rem;
    margin-top: 0.55rem;
}

.artist-page-panel {
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.artist-page-panel h2 {
    margin-top: 0.25rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.artist-page-panel p:not(.artist-page-section-label) {
    margin-top: 0.3rem;
    font-size: 0.82rem;
    line-height: 1.45;
}

.artist-page-update {
    border-color: rgba(184, 156, 255, 0.34);
    background:
        linear-gradient(135deg, rgba(142, 108, 255, 0.18), rgba(142, 108, 255, 0.05)),
        #131622;
}

.artist-page-update-topline { display: flex; align-items: center; justify-content: space-between; }
.artist-page-update-topline > span { padding: 0.18rem 0.5rem; border-radius: 99px; background: var(--accent); font-size: 0.6rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.artist-page-update > a { display: inline-flex; gap: 0.5rem; margin-top: 0.45rem; color: var(--accent-strong); font-size: 0.76rem; font-weight: 800; text-decoration: none; }

.artist-page-links {
    padding: 0.68rem 0.15rem;
    border-bottom: 1px solid var(--line);
}

.artist-page-links h2 { font-size: 1.05rem; letter-spacing: -0.02em; }
.artist-page-link-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; margin-top: 0.5rem; }
.artist-page-link-row a { display: flex; align-items: center; gap: 0.65rem; min-height: 58px; padding: 0.65rem 0.8rem; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); color: var(--text); font-size: 0.82rem; text-decoration: none; transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.artist-page-link-row a:hover { border-color: var(--accent); background: rgba(142, 108, 255, 0.12); transform: translateY(-2px); }
.artist-page-link-icon { display: grid; flex: 0 0 auto; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: rgba(184,156,255,.14); color: var(--accent-strong); font-size: 0.58rem; font-weight: 900; }
.artist-page-link-row a { justify-content: center; }
.artist-page-connect { padding-top: 0.62rem; }

.artist-page-collection {
    margin-top: 0.1rem;
    padding: 0.65rem 0.15rem 0.3rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: none;
}

.artist-page-section-heading { align-items: center; margin-bottom: 0.75rem; }
.artist-page-section-heading h2 { margin-top: 0; font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase; }
.artist-page-collection-heading-copy { min-width: 0; }
.artist-page-collection-intro { margin-top: 0.24rem; color: var(--muted); font-size: 0.74rem; line-height: 1.4; }
.artist-page-edition { color: var(--quiet); font-size: 0.67rem; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.artist-page-edition span { margin: 0 0.35rem; color: var(--gold); }

.artist-page-card-grid { display: flex; align-items: flex-start; justify-content: center; gap: clamp(1rem, 5vw, 3.2rem); padding: 0.85rem; border: 1px solid rgba(184,156,255,.2); border-radius: 12px; background: linear-gradient(145deg, rgba(142,108,255,.1), rgba(255,255,255,.025) 55%, rgba(242,200,107,.035)); box-shadow: 0 14px 34px rgba(0,0,0,.22), 0 0 26px rgba(142,108,255,.06); }
.artist-page-card { display: flex; align-items: center; flex: 0 1 154px; flex-direction: column; padding: 0; border: 0; border-radius: 0; background: none; text-align: center; overflow: visible; transition: transform var(--transition), filter var(--transition); }
.artist-page-card::before { display: none; }
.artist-page-card img { width: auto; height: clamp(120px, 15vw, 160px); margin: 0 auto; border-radius: 6px; box-shadow: 0 12px 26px rgba(0,0,0,.36); transition: transform 260ms ease; }
.artist-page-card:hover, .artist-page-card:active { transform: translateY(-3px); filter: drop-shadow(0 8px 14px rgba(142,108,255,.18)); }
.artist-page-card:hover img { transform: translateY(-2px); }
.artist-page-card h3 { margin-top: 0.4rem; padding: 0.2rem 0.48rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); color: var(--silver); font-size: 0.6rem; letter-spacing: 0.11em; line-height: 1; text-transform: uppercase; }
.artist-page-card-rare h3 { border-color: rgba(184,156,255,.3); color: var(--accent-strong); }
.artist-page-card-legendary h3 { border-color: rgba(242,200,107,.34); background: rgba(242,200,107,.055); color: var(--gold); }
.artist-page-card p { max-width: 100px; margin-top: 0.3rem; color: var(--muted); font-size: 0.58rem; font-weight: 700; line-height: 1.35; }
.artist-page-legendary-note { margin: 0.55rem auto 0; color: var(--muted); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.03em; text-align: center; }
.artist-page-legendary-note strong { color: var(--gold); font-size: inherit; letter-spacing: 0.08em; text-transform: uppercase; }
.artist-page-card-basic, .artist-page-card-rare, .artist-page-card-legendary { border: 0; background: none; }

.artist-page-rarity-callout { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.35rem 1.5rem; margin-top: 0.55rem; }
.artist-page-rarity-callout p { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.04em; }
.artist-page-rarity-callout strong { color: var(--gold); font-size: inherit; letter-spacing: 0.06em; text-transform: uppercase; }
.artist-page-rarity-callout span { margin: 0 0.35rem; color: var(--quiet); }

.artist-page-footer { flex-direction: row; align-items: center; padding: 0.55rem 0.15rem 0; color: var(--quiet); font-size: 0.62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.artist-page-toast {
    position: fixed;
    left: 50%;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1000;
    width: min(430px, calc(100% - 24px));
    padding: 0.8rem 0.95rem 0.8rem 2.25rem;
    border: 1px solid rgba(184, 156, 255, 0.38);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(36, 30, 58, 0.98), rgba(14, 17, 27, 0.98));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48), 0 0 24px rgba(142, 108, 255, 0.12);
    color: var(--silver);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px);
    backdrop-filter: blur(18px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
    will-change: opacity, transform;
}

.artist-page-toast::before {
    position: absolute;
    top: 1.02rem;
    left: 0.95rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(142, 108, 255, 0.8);
    content: "";
}

.artist-page-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}

@media (max-width: 720px) {
    .artist-page-toast {
        bottom: max(0.75rem, env(safe-area-inset-bottom));
        width: calc(100% - 24px);
        padding: 0.75rem 0.85rem 0.75rem 2.1rem;
        font-size: 0.74rem;
    }

    .artist-page-toast::before {
        top: 0.95rem;
        left: 0.85rem;
    }
}

@media (max-width: 720px) {
    .artist-page-shell { width: min(100% - 24px, 1040px); padding-top: 0.45rem; }
    .artist-page-header { flex-direction: row; align-items: center; padding-bottom: .45rem; }
    .artist-page-logo { width: 33px; }
    .artist-page-hero { grid-template-columns: 1fr; height: auto; min-height: 0; padding: 0; }
    .artist-page-portrait { order: 0; min-height: 0; aspect-ratio: 1.42; border-radius: 18px 18px 0 0; }
    .artist-page-portrait img { object-position: 50% 27%; }
    .artist-page-portrait .artist-page-card-portrait { object-position: 50% 32%; transform: scale(1.18); }
    .artist-page-portrait-shade { background: linear-gradient(0deg, #10131d 0%, transparent 42%); }
    .artist-page-hero-copy { margin-top: -2.2rem; padding: 0 1.05rem .9rem; }
    .artist-page-hero h1 { font-size: clamp(2.75rem, 14vw, 3.9rem); }
    .artist-page-hero-cta { margin-top: .6rem; }
    .artist-page-content-grid { grid-template-columns: 1fr; gap: .45rem; margin-top: .45rem; }
    .artist-page-links { padding: .6rem .1rem; }
    .artist-page-link-row { grid-template-columns: repeat(3, minmax(0,1fr)); gap: .35rem; }
    .artist-page-link-row a { min-height: 48px; padding: .45rem; gap: .35rem; font-size: .7rem; }
    .artist-page-link-icon { width: 24px; height: 24px; }
    .artist-page-collection { padding: .68rem .1rem .35rem; }
    .artist-page-section-heading { align-items: center; flex-direction: row; }
    .artist-page-collection-intro { max-width: 230px; font-size: .68rem; }
    .artist-page-card-grid { gap: clamp(.45rem, 3vw, .8rem); padding: .7rem .4rem; }
    .artist-page-card { flex: 0 1 102px; padding: 0; }
    .artist-page-card img { width: auto; height: clamp(106px, 32vw, 134px); }
    .artist-page-card h3 { font-size: .54rem; }
    .artist-page-card p { max-width: 86px; font-size: .54rem; }
    .artist-page-legendary-note { margin-top: .48rem; font-size: .57rem; }
    .artist-page-rarity-callout { gap: .22rem .8rem; }
    .artist-page-footer { flex-direction: row; align-items: center; }
}
}

/* ===== Sections ===== */
.section {
    padding: 5.5rem 0;
    border-bottom: 1px solid var(--line);
}

.alt-bg {
    background: rgba(255, 255, 255, 0.035);
}

.section h2 {
    margin: 0 auto 1.1rem;
    max-width: 780px;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 820;
    line-height: 1;
    text-align: center;
}

.section-lede,
.rarities-intro,
.artist-hubs-intro,
.section-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
    text-align: center;
}

.section-subtitle {
    margin: 0.5rem auto 0.5rem;
    color: var(--accent-strong);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
}

/* ===== Cards And Grids ===== */
.feature-cards,
.rarities-grid,
.artist-benefits,
.hub-features-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2.6rem;
}

.feature-cards,
.rarities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artist-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.rarity-card,
.benefit-item,
.hub-feature {
    min-height: 100%;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.feature-card:hover,
.rarity-card:hover,
.benefit-item:hover,
.hub-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 156, 255, 0.48);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
}

.feature-icon,
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border: 1px solid rgba(184, 156, 255, 0.36);
    border-radius: 50%;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 850;
}

.feature-card h3,
.how-step h3,
.rarity-card h3,
.benefit-item h3,
.hub-feature h3 {
    margin-bottom: 0.55rem;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.25;
}

.feature-card p,
.how-step p,
.rarity-card p,
.benefit-item p,
.hub-feature p {
    color: var(--muted);
}

/* ===== How It Works ===== */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.6rem;
}

.how-step {
    padding: 1.35rem;
    border-top: 3px solid rgba(184, 156, 255, 0.45);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

/* ===== Pack Showcase ===== */
.pack-showcase-section {
    background:
        radial-gradient(circle at 50% 42%, rgba(142, 108, 255, 0.13), transparent 34rem),
        rgba(255, 255, 255, 0.018);
}

.pack-showcase-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
    text-align: center;
}

.pack-showcase {
    margin-top: 2.6rem;
}

.pack-product-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 220px));
    align-items: start;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2.25rem);
    width: min(100%, 780px);
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    overflow: visible;
    border: 1px solid rgba(184, 156, 255, 0.24);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.pack-mockup,
.pack-card {
    text-align: center;
}

.pack-mockup-art {
    position: relative;
    width: min(100%, 180px);
    aspect-ratio: 0.62;
    margin: 0 auto;
    overflow: hidden;
}

.pack-mockup img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    max-width: none;
    transform: translate(-25%, -50%);
    filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 24px rgba(142, 108, 255, 0.12));
}

.pack-mockup figcaption,
.pack-card figcaption {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pack-card-lineup {
    display: contents;
}

.pack-card {
    position: relative;
    width: min(100%, 220px);
    justify-self: center;
}

.pack-card img {
    display: block;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42), 0 0 22px rgba(184, 156, 255, 0.08);
}

.pack-card-basic {
    transform: none;
}

.pack-card-rare {
    transform: none;
}

.pack-card-legendary {
    transform: none;
}

.pack-card p {
    max-width: 13rem;
    margin: 0.42rem auto 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.pack-card-basic figcaption {
    color: var(--silver);
}

.pack-card-rare figcaption {
    color: var(--accent-strong);
}

.pack-card-legendary figcaption {
    color: var(--gold);
}

.pack-highlights {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.pack-highlight {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    padding: 1rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.pack-highlight svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--accent-strong);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 7px rgba(184, 156, 255, 0.38));
}

.pack-highlight span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pack-highlight-motto span {
    color: var(--text);
}

.pack-highlight-motto b {
    margin: 0 0.15rem;
    color: var(--accent-strong);
}

@media (max-width: 767px) {
    .pack-showcase-intro {
        max-width: 21rem;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .pack-showcase {
        margin-top: 1.6rem;
    }

    .pack-product-stage {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.2rem;
        padding: 0.45rem 0.65rem 0.7rem;
        overflow: hidden;
        border-radius: 18px;
    }

    .pack-mockup {
        display: none;
    }

    .pack-mockup-art {
        width: min(34vw, 130px);
    }

    .pack-mockup figcaption,
    .pack-card figcaption {
        margin-top: 0.48rem;
        font-size: 0.62rem;
    }

    .pack-card-lineup {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 0.4rem;
        width: 100%;
        margin-left: 0;
        overflow: visible;
    }

    .pack-card {
        width: 100%;
    }

    .pack-card img {
        border-radius: 8px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.42), 0 0 16px rgba(184, 156, 255, 0.08);
    }

    .pack-card p {
        margin-top: 0.3rem;
        font-size: 0.62rem;
        line-height: 1.35;
    }

    .pack-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        margin-top: 0.7rem;
    }

    .pack-highlight {
        min-height: 82px;
        padding: 0.75rem 0.5rem;
    }

    .pack-highlight svg {
        width: 26px;
        height: 26px;
    }

    .pack-highlight span {
        font-size: 0.68rem;
    }

    .pack-highlight-motto {
        min-height: 64px;
        grid-column: 1 / -1;
    }
}

/* ===== QR Artist Hubs ===== */
.qr-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.8rem auto 0;
}

.qr-flow-step {
    width: min(100%, 300px);
    text-align: center;
}

.qr-card-visual,
.artist-hub-visual {
    display: grid;
    justify-items: center;
    gap: 1rem;
}

.card-with-qr {
    width: 150px;
    aspect-ratio: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid rgba(184, 156, 255, 0.42);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(184, 156, 255, 0.16), rgba(255, 255, 255, 0.04)),
        var(--panel);
    box-shadow: var(--shadow);
}

.card-design {
    color: var(--quiet);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

#artist-hubs .card-design {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: var(--silver);
}

#artist-hubs .card-design span {
    color: var(--accent-strong);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
}

#artist-hubs .card-access-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 156, 255, 0.58), transparent);
    box-shadow: 0 0 8px rgba(142, 108, 255, 0.2);
}

.qr-code-icon {
    position: relative;
    z-index: 0;
    isolation: isolate;
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 5px;
    background: var(--text);
    color: #0a0d14;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.qr-code-graphic {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

#artist-hubs .qr-tap-label {
    color: var(--accent-strong);
    font-size: 0.55rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.qr-code-icon:hover,
.qr-code-icon:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184, 156, 255, 0.55);
}

.qr-code-icon:focus-visible {
    outline: 2px solid var(--accent-strong);
    outline-offset: 4px;
}

.qr-code-icon:active {
    transform: scale(0.98);
}

#artist-hubs .qr-code-icon::after {
    position: absolute;
    inset: -10px;
    z-index: -1;
    border-radius: 8px;
    background: radial-gradient(circle, rgba(184, 156, 255, 0.42), rgba(142, 108, 255, 0));
    opacity: 0;
    pointer-events: none;
    content: "";
    animation: qrInvitePulse 4.8s ease-in-out infinite;
}

#artist-hubs .card-with-qr {
    border-color: rgba(184, 156, 255, 0.68);
    background:
        radial-gradient(circle at 50% 63%, rgba(142, 108, 255, 0.16), transparent 42%),
        linear-gradient(145deg, rgba(184, 156, 255, 0.21), rgba(255, 255, 255, 0.04)),
        var(--panel);
    box-shadow:
        0 24px 66px rgba(0, 0, 0, 0.44),
        0 0 38px rgba(142, 108, 255, 0.2);
}

#artist-hubs .hub-center {
    border-color: rgba(184, 156, 255, 0.55);
    background:
        radial-gradient(circle at 38% 30%, rgba(184, 156, 255, 0.14), transparent 56%),
        rgba(255, 255, 255, 0.055);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.25),
        0 0 34px rgba(142, 108, 255, 0.18);
}

#artist-hubs .hub-item {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

@keyframes qrInvitePulse {
    0%, 76%, 100% { opacity: 0; transform: scale(0.94); }
    86% { opacity: 0.58; transform: scale(1); }
    94% { opacity: 0; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    #artist-hubs .qr-code-icon::after {
        animation: none;
    }
}

.step-label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.qr-flow-connector {
    width: 130px;
    height: 56px;
}

.qr-flow-connector svg {
    width: 100%;
    height: 100%;
}

.connector-line {
    fill: none;
    stroke: rgba(184, 156, 255, 0.72);
    stroke-width: 2;
}

.connector-arrow {
    fill: rgba(184, 156, 255, 0.86);
}

#artist-hubs .connector-line {
    stroke: rgba(184, 156, 255, 0.82);
    filter: drop-shadow(0 0 5px rgba(142, 108, 255, 0.42));
}

#artist-hubs .connector-arrow {
    filter: drop-shadow(0 0 5px rgba(142, 108, 255, 0.45));
}

.hub-center {
    display: grid;
    place-items: center;
    width: 144px;
    height: 144px;
    border: 1px solid rgba(184, 156, 255, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    font-weight: 850;
}

#artist-hubs .hub-center {
    width: min(100%, 230px);
    height: auto;
    display: grid;
    place-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 16px;
    text-align: left;
}

.hub-preview-profile {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hub-preview-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    border: 1px solid rgba(184, 156, 255, 0.38);
    border-radius: 50%;
    background: var(--panel-strong);
    box-shadow: 0 0 18px rgba(142, 108, 255, 0.18);
}

.hub-preview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 27%;
    transform: scale(1.35);
}

.hub-preview-identity {
    min-width: 0;
    display: grid;
    gap: 0.08rem;
}

.hub-preview-identity > span,
.hub-preview-update span {
    color: var(--accent-strong);
    font-size: 0.55rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hub-preview-identity strong {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.1;
}

.hub-preview-identity strong b {
    display: inline-grid;
    place-items: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text);
    font-size: 0.55rem;
}

.hub-preview-identity small {
    color: var(--quiet);
    font-size: 0.64rem;
    font-weight: 700;
}

.hub-preview-update {
    display: grid;
    gap: 0.18rem;
    padding: 0.58rem 0.65rem;
    border: 1px solid rgba(184, 156, 255, 0.18);
    border-radius: 9px;
    background: rgba(142, 108, 255, 0.08);
}

.hub-preview-update strong {
    color: var(--silver);
    font-size: 0.72rem;
    line-height: 1.3;
}

.hub-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.hub-item,
.artist-tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--muted);
    font-size: 0.83rem;
    font-weight: 750;
}

.hub-item {
    padding: 0.55rem 0.75rem;
}

.hub-feature {
    text-align: left;
}


/* ===== Artist Page QR Hub ===== */
.artist-page {
    min-height: 100vh;
}

.artist-page-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0.8rem 0 1.5rem;
}

.artist-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0 0.85rem;
}

.artist-page-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.artist-page-logo {
    width: 50px;
    display: block;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.artist-page-verified,
.artist-page-kicker,
.artist-page-section-label {
    color: var(--accent-strong);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.artist-page-verified {
    padding: 0.38rem 0.64rem;
    border: 1px solid rgba(184, 156, 255, 0.38);
    border-radius: 999px;
    background: rgba(184, 156, 255, 0.09);
    text-align: center;
}

.artist-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.46fr);
    align-items: center;
    gap: 2rem;
    min-height: 330px;
    padding: 1.6rem 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 78% 18%, rgba(242, 200, 107, 0.15), transparent 21rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.artist-page-copy h1 {
    margin-top: 0.45rem;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.92;
}

.artist-page-subtitle {
    max-width: 590px;
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
    line-height: 1.45;
}

.artist-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.artist-page-primary-link,
.artist-page-secondary-link,
.artist-page-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.58rem 0.82rem;
    border-radius: var(--radius);
    font-size: 0.84rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.artist-page-primary-link {
    background: var(--text);
    color: #0a0d14;
}

.artist-page-secondary-link,
.artist-page-socials a {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
}

.artist-page-primary-link:hover,
.artist-page-secondary-link:hover,
.artist-page-socials a:hover {
    transform: translateY(-2px);
}

.artist-page-secondary-link:hover,
.artist-page-socials a:hover {
    border-color: rgba(184, 156, 255, 0.55);
}

.artist-page-portrait {
    display: grid;
    place-items: center;
}

.artist-page-portrait-frame {
    width: min(100%, 245px);
    aspect-ratio: 0.78;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 200, 107, 0.36);
    border-radius: 14px;
    background:
        linear-gradient(160deg, rgba(184, 156, 255, 0.22), rgba(242, 200, 107, 0.11)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
}

.artist-page-portrait-frame span {
    display: grid;
    place-items: center;
    width: calc(100% - 1.4rem);
    height: calc(100% - 1.4rem);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.artist-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.artist-page-panel {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.artist-page-panel h2,
.artist-page-section-heading h2 {
    margin-top: 0.35rem;
    color: var(--text);
    font-size: clamp(1.18rem, 2vw, 1.7rem);
    line-height: 1.12;
}

.artist-page-panel p:not(.artist-page-section-label) {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.artist-page-collection {
    margin-top: 0.75rem;
}

.artist-page-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.artist-page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.artist-page-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.artist-page-card img {
    display: block;
    width: 76px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.artist-page-card h3 {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.1;
}

.artist-page-card p {
    margin-top: 0.12rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.3;
}

.artist-page-card-basic {
    border-color: rgba(216, 221, 231, 0.24);
}

.artist-page-card-rare {
    border-color: rgba(184, 156, 255, 0.38);
}

.artist-page-card-legendary {
    border-color: rgba(242, 200, 107, 0.44);
}

.artist-page-rarity-callout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.artist-page-rarity-callout div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(242, 200, 107, 0.42);
    border-radius: var(--radius);
    background: rgba(242, 200, 107, 0.08);
}

.artist-page-rarity-callout span,
.artist-page-rarity-callout strong {
    display: block;
}

.artist-page-rarity-callout span {
    color: var(--muted);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.artist-page-rarity-callout strong {
    margin-top: 0;
    color: var(--gold);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1;
}

.artist-page-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0 0;
}

.artist-page-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* ===== Pack And Highlight ===== */
.highlight-banner {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 1.25rem;
    border: 1px solid rgba(242, 200, 107, 0.42);
    border-radius: var(--radius);
    background: rgba(242, 200, 107, 0.08);
    color: var(--text);
    text-align: center;
}

.highlight-banner p {
    font-weight: 800;
}

/* ===== Forms ===== */
.suggestion-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(100%, 560px);
    margin: 2.4rem auto 0;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--quiet);
    font-size: 0.68rem;
    font-weight: 900;
    pointer-events: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.98rem 1rem 0.98rem 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    font: inherit;
    transition: border-color var(--transition), background var(--transition);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--quiet);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(184, 156, 255, 0.72);
    background: rgba(255, 255, 255, 0.075);
}

.suggestion-success,
.contact-success,
.contact-note {
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.suggestion-note {
    color: var(--accent-strong);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    align-items: start;
    gap: 4rem;
}

.contact-copy {
    text-align: left;
}

.contact-copy h2 {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.contact-subtitle,
.contact-email {
    max-width: 520px;
    margin-top: 1rem;
    color: var(--muted);
}

.contact-email a {
    color: var(--accent-strong);
    font-weight: 750;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.fan-requested-section {
    margin-top: 3rem;
    text-align: center;
}

.fan-requests-subheading {
    margin-bottom: 1.1rem;
    color: var(--muted);
    font-size: 1rem;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.artist-tag {
    padding: 0.52rem 0.78rem;
}

/* ===== Footer ===== */
.footer {
    padding: 1.4rem 0;
    background: #080a10;
    color: var(--quiet);
    text-align: center;
}

.footer .container {
    display: grid;
    gap: 0.3rem;
    font-size: 0.84rem;
}

.footer p:first-child {
    color: var(--muted);
    font-weight: 800;
}

.footer a {
    color: var(--accent-strong);
    font-weight: 750;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .navbar .container {
        align-items: flex-start;
        flex-direction: column;
        padding: 0.9rem 0;
        gap: 0.9rem;
    }

    .nav-menu {
        width: 100%;
        gap: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.15rem;
    }

    .nav-menu a {
        white-space: nowrap;
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
    }

    .hero .container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-cards {
        min-height: 320px;
    }

    .feature-cards,
    .rarities-grid,
    .artist-benefits,
    .hub-features-grid,
    .how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-copy,
    .contact-copy h2 {
        text-align: center;
    }

    .contact-subtitle,
    .contact-email {
        margin-right: auto;
        margin-left: auto;
    }

    .artist-page-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 1.35rem;
        gap: 1.25rem;
    }

    .artist-page-portrait {
        order: -1;
    }

    .artist-page-portrait-frame {
        max-width: 230px;
    }

    .artist-page-grid {
        grid-template-columns: 1fr;
    }

    .artist-page-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .artist-page-card {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .artist-page-card img {
        width: 58px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 3.2rem 0;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
    }

    .hero-cards {
        min-height: 280px;
    }

    .card-placeholder {
        width: 31%;
        padding: 0.35rem;
    }

    .feature-cards,
    .rarities-grid,
    .artist-benefits,
    .hub-features-grid,
    .how-steps {
        grid-template-columns: 1fr;
    }

    .qr-flow-container {
        flex-direction: column;
        gap: 1.4rem;
    }

    .qr-flow-connector {
        width: 82px;
        transform: rotate(90deg);
    }

    .hub-items {
        width: 100%;
    }

    .artist-page-shell {
        width: min(100% - 28px, 1120px);
        padding-top: 0.5rem;
    }

    .artist-page-header,
    .artist-page-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .artist-page-logo {
        width: 44px;
    }

    .artist-page-verified {
        width: 100%;
    }

    .artist-page-hero {
        padding: 1rem;
        gap: 1rem;
    }

    .artist-page-copy h1 {
        font-size: clamp(2.45rem, 16vw, 3.6rem);
    }

    .artist-page-subtitle {
        margin-top: 0.55rem;
    }

    .artist-page-actions {
        margin-top: 0.9rem;
    }

    .artist-page-actions,
    .artist-page-socials {
        width: 100%;
    }

    .artist-page-primary-link,
    .artist-page-secondary-link,
    .artist-page-socials a {
        flex: 1 1 100%;
    }

    .artist-page-panel {
        padding: 0.9rem;
    }

    .artist-page-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .artist-page-card-grid {
        grid-template-columns: 1fr;
    }

    .artist-page-card {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .artist-page-card img {
        width: 64px;
    }

    .artist-page-rarity-callout {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .artist-page-rarity-callout div {
        padding: 0.65rem 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

/* Mobile homepage cascade safeguards */
@media (max-width: 767px) {
    body.home-page .navbar .container {
        position: relative;
        min-height: 68px;
        padding: 0;
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }

    body.home-page .nav-toggle {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex: 0 0 auto;
        gap: 5px;
        margin-left: auto;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.045);
        color: var(--text);
    }

    body.home-page .navbar .nav-menu {
        position: absolute;
        top: calc(100% - 1px);
        right: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        display: grid;
        gap: 0;
        padding: 0 0.65rem;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    body.home-page .navbar .nav-menu.is-open {
        max-height: 22rem;
        padding-top: 0.45rem;
        padding-bottom: 0.55rem;
        opacity: 1;
        visibility: visible;
    }

    body.home-page .navbar .nav-menu a {
        white-space: normal;
    }

    body.home-page .hero {
        min-height: auto;
        padding: 2.7rem 0 2.9rem;
    }

    body.home-page .hero .container {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }

    body.home-page .hero-headline {
        max-width: 100%;
        font-size: clamp(2.2rem, 11vw, 3.2rem);
        line-height: 0.98;
    }

    body.home-page .hero-actions {
        align-items: center;
        flex-direction: column;
    }

    body.home-page .hero-actions .cta-button,
    body.home-page .hero-actions .secondary-button {
        width: 90%;
        min-height: 50px;
    }

    body.home-page .hero-cards {
        width: 100%;
        min-height: 235px;
        overflow: visible;
        opacity: 1;
        animation: none;
    }

    body.home-page .hero-cards .card-placeholder {
        width: min(29%, 108px);
        flex: 0 1 108px;
        padding: 0.3rem;
        animation: none;
    }

    body.home-page .feature-cards,
    body.home-page .rarities-grid,
    body.home-page .artist-benefits,
    body.home-page .hub-features-grid,
    body.home-page .how-steps,
    body.home-page .contact-container {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Mobile viewport containment */
@media (max-width: 767px) {
    html,
    body,
    body.home-page {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    body.home-page *,
    body.home-page *::before,
    body.home-page *::after {
        box-sizing: border-box;
    }

    body.home-page main,
    body.home-page section,
    body.home-page nav,
    body.home-page .container,
    body.home-page .hero-content,
    body.home-page .hero-cards,
    body.home-page .feature-cards,
    body.home-page .rarities-grid,
    body.home-page .artist-benefits,
    body.home-page .hub-features-grid,
    body.home-page .how-steps,
    body.home-page .qr-flow-container,
    body.home-page .contact-container,
    body.home-page .fan-requested-section {
        min-width: 0;
        max-width: 100%;
    }

    body.home-page .container,
    body.home-page .navbar .container {
        width: 100%;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-right: 20px;
        padding-left: 20px;
    }

    body.home-page img,
    body.home-page input,
    body.home-page textarea,
    body.home-page button {
        max-width: 100%;
    }

    body.home-page .navbar .container {
        min-height: 68px;
    }

    body.home-page .nav-brand {
        min-width: 0;
        max-width: calc(100% - 60px);
    }

    body.home-page .nav-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 10px;
        box-shadow: none;
    }

    body.home-page .nav-toggle span {
        width: 19px;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: currentColor;
        transition: transform var(--transition), opacity var(--transition);
    }

    body.home-page .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    body.home-page .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    body.home-page .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.home-page .navbar .nav-menu {
        top: 100%;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
        display: none;
        padding: 0.45rem 0.65rem 0.55rem;
        border: 1px solid var(--line);
        border-radius: 0 0 12px 12px;
        background: rgba(9, 11, 18, 0.98);
        opacity: 1;
        visibility: visible;
    }

    body.home-page .navbar .nav-menu.is-open {
        display: grid;
    }

    body.home-page .navbar .nav-menu a {
        display: block;
        padding: 0.72rem 0.55rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        white-space: normal;
    }

    body.home-page .navbar .nav-menu li:last-child a {
        border-bottom: 0;
    }

    body.home-page .hero-content {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    body.home-page .hero-headline {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1;
        overflow-wrap: break-word;
        word-break: normal;
    }

    body.home-page .hero-subheadline {
        max-width: 34rem;
        margin-right: auto;
        margin-left: auto;
    }

    body.home-page .hero-actions {
        width: 100%;
        max-width: 340px;
        margin-right: auto;
        margin-left: auto;
    }

    body.home-page .hero-actions .cta-button,
    body.home-page .hero-actions .secondary-button {
        width: 100%;
        max-width: 340px;
    }

    body.home-page .hero-cards {
        width: min(100%, 340px);
        max-width: 340px;
        min-height: 220px;
        margin-right: auto;
        margin-left: auto;
        padding: 0 10px;
        overflow: hidden;
    }

    body.home-page .hero-cards .card-placeholder {
        width: 28%;
        max-width: 92px;
        flex: 0 1 92px;
    }

    body.home-page .hero-cards .card-placeholder.basic {
        transform: translateX(-3px) rotate(-6deg) scale(1.55);
    }

    body.home-page .hero-cards .card-placeholder.rare {
        transform: translateY(-6px) scale(1.581);
    }

    body.home-page .hero-cards .card-placeholder.legendary {
        transform: translateX(3px) rotate(6deg) scale(1.55);
    }

    body.home-page .feature-cards,
    body.home-page .rarities-grid,
    body.home-page .artist-benefits,
    body.home-page .hub-features-grid,
    body.home-page .how-steps,
    body.home-page .contact-container {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    body.home-page .feature-card,
    body.home-page .rarity-card,
    body.home-page .benefit-item,
    body.home-page .hub-feature,
    body.home-page .how-step,
    body.home-page .contact-copy,
    body.home-page .contact-form,
    body.home-page .hub-center,
    body.home-page .hub-items {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    body.home-page .contact-email,
    body.home-page .section-lede,
    body.home-page .section-description,
    body.home-page .rarities-intro,
    body.home-page .artist-hubs-intro {
        overflow-wrap: anywhere;
    }
}

/* Homepage mobile visual polish */
@media (max-width: 767px) {
    body.home-page .navbar .container {
        min-height: 60px;
        padding-right: 18px;
        padding-left: 18px;
        gap: 0.65rem;
    }

    body.home-page .navbar .nav-brand {
        gap: 0.65rem;
    }

    body.home-page .navbar .logo {
        width: 40px;
    }

    body.home-page .navbar .nav-tagline {
        max-width: 7.8rem;
        font-size: 0.57rem;
        letter-spacing: 0.11em;
        line-height: 1.25;
    }

    body.home-page .nav-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        gap: 4px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.035);
    }

    body.home-page .nav-toggle span {
        width: 17px;
    }

    body.home-page .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    body.home-page .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }

    body.home-page .navbar .nav-menu {
        right: 18px;
        left: 18px;
    }

    body.home-page .hero {
        padding: 2.15rem 0 2.25rem;
    }

    body.home-page .hero .container {
        gap: 1rem;
        padding-right: 24px;
        padding-left: 24px;
    }

    body.home-page .hero .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    body.home-page .hero-headline {
        max-width: 21rem;
        margin: 0.6rem auto 0;
        font-size: clamp(1.9rem, 9.2vw, 2.5rem);
        line-height: 1.02;
        letter-spacing: -0.025em;
    }

    body.home-page .hero-tagline {
        margin-top: 0.9rem;
        font-size: 0.7rem;
    }

    body.home-page .hero-subheadline {
        max-width: 19rem;
        margin-top: 0.7rem;
        font-size: 0.94rem;
        line-height: 1.5;
    }

    body.home-page .hero-actions {
        max-width: 320px;
        gap: 0.55rem;
        margin-top: 1.15rem;
    }

    body.home-page .hero-actions .cta-button,
    body.home-page .hero-actions .secondary-button {
        width: 100%;
        max-width: 320px;
        min-height: 48px;
        border-radius: 11px;
    }

    body.home-page .hero-cards {
        width: min(100%, 310px);
        max-width: 310px;
        min-height: 205px;
        padding: 0 8px;
        overflow: visible;
    }

    body.home-page .hero-cards::before {
        display: none;
    }

    body.home-page .hero-cards::after {
        inset: 16% 12% 8%;
        opacity: 0.45;
    }

    body.home-page .hero-cards .card-placeholder {
        width: 28%;
        max-width: 84px;
        flex-basis: 84px;
        padding: 0.25rem;
        border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32), 0 0 18px rgba(184, 156, 255, 0.08);
    }

    body.home-page .hero-cards .card-image {
        border-radius: 7px;
    }

    body.home-page .section {
        padding: 2.8rem 0;
    }

    body.home-page .section > .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    body.home-page .section h2 {
        max-width: 100%;
        margin-bottom: 0.8rem;
        font-size: clamp(1.65rem, 7.5vw, 2.15rem);
        line-height: 1.05;
        letter-spacing: -0.025em;
        overflow-wrap: break-word;
    }

    body.home-page #what-is h2 {
        font-size: clamp(1.7rem, 7.8vw, 2.2rem);
        white-space: normal;
    }

    body.home-page .section-lede,
    body.home-page .rarities-intro,
    body.home-page .artist-hubs-intro,
    body.home-page .section-description {
        max-width: 21rem;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.96rem;
        line-height: 1.55;
        text-align: center;
    }

    body.home-page .feature-cards,
    body.home-page .rarities-grid,
    body.home-page .artist-benefits,
    body.home-page .hub-features-grid,
    body.home-page .how-steps {
        gap: 0.8rem;
        margin-top: 1.6rem;
    }
}

/* Homepage mobile navbar */
@media (max-width: 767px) {
    body.home-page .navbar {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    body.home-page .navbar .container {
        width: 100%;
        max-width: 100%;
        min-height: 56px;
        padding: 0 16px;
        align-items: center;
        flex-direction: row;
        gap: 0.55rem;
    }

    body.home-page .navbar .nav-brand {
        min-width: 0;
        max-width: calc(100% - 48px);
        gap: 0.55rem;
    }

    body.home-page .navbar .logo {
        width: 36px;
        flex: 0 0 36px;
    }

    body.home-page .navbar .nav-tagline {
        max-width: 7.4rem;
        font-size: 0.54rem;
        letter-spacing: 0.1em;
        line-height: 1.2;
    }

    body.home-page .navbar .nav-toggle {
        width: 36px;
        height: 36px;
        display: inline-flex;
        flex: 0 0 36px;
        gap: 4px;
        margin-left: auto;
        padding: 0;
        border-radius: 8px;
        box-shadow: none;
    }

    body.home-page .navbar .nav-toggle span {
        width: 15px;
        height: 2px;
    }

    body.home-page .navbar .nav-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    body.home-page .navbar .nav-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }

    body.home-page .navbar .nav-menu {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        z-index: 250;
        width: auto;
        max-width: none;
        max-height: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0.4rem 0.55rem 0.5rem;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 0 0 10px 10px;
        background: rgba(9, 11, 18, 0.98);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
    }

    body.home-page .navbar .nav-menu.is-open {
        display: grid;
        max-height: 24rem;
        opacity: 1;
        visibility: visible;
    }

    body.home-page .navbar .nav-menu a {
        display: block;
        padding: 0.68rem 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.86rem;
        white-space: normal;
    }

    body.home-page .navbar .nav-menu li:last-child a {
        border-bottom: 0;
    }
}

/* Compact QR Artist Hubs flow on mobile */
@media (max-width: 767px) {
    body.home-page #artist-hubs .qr-flow-container {
        align-items: center;
        gap: 0.55rem;
        margin-top: 1.5rem;
    }

    body.home-page #artist-hubs .qr-flow-step {
        margin: 0;
    }

    body.home-page #artist-hubs .qr-card-visual {
        gap: 0.5rem;
    }

    body.home-page #artist-hubs .artist-hub-visual {
        gap: 0.6rem;
    }

    body.home-page #artist-hubs .step-label {
        margin: 0;
    }

    body.home-page #artist-hubs .qr-flow-connector {
        margin: -0.1rem auto;
    }

    body.home-page #artist-hubs .hub-items {
        margin-top: 0;
    }
}

/* Mobile-only hero contact action */
@media (max-width: 767px) {
    body.home-page .hero-actions .mobile-hero-contact {
        display: inline-flex;
    }

    body.home-page .hero-actions .cta-button,
    body.home-page .hero-actions .secondary-button {
        min-height: 46px;
    }
}
