* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 0, 180, .28), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .08), transparent 22%),
        linear-gradient(180deg, #171017 0%, #070707 55%, #000 100%);
    color: #fff;
}

.product-page {
    overflow: hidden;
}

.product-hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 64px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 54px;
    position: relative;
}

.product-hero:before {
    content: "";
    position: absolute;
    inset: 30px -80px auto;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 0, 180, .22), transparent 62%);
    filter: blur(18px);
    z-index: -1;
}

.product-media {
    position: relative;
    border-radius: 34px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.03)),
        #111;
    box-shadow:
        0 40px 90px rgba(0,0,0,.55),
        0 0 70px rgba(255,0,180,.22);
}

.product-media:after {
    content: "TOP VIDEO";
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 0, 180, .92);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.product-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: #ffd7f5;
    font-size: 13px;
    font-weight: 700;
}

.product-copy h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .92;
    letter-spacing: -0.06em;
}

.product-copy h1 span {
    color: #ff4fd1;
    text-shadow: 0 0 28px rgba(255,0,180,.65);
}

.product-intro,
.seo-copy {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.74);
    font-size: 19px;
    line-height: 1.65;
}

.seo-copy {
    margin-top: 14px;
    font-size: 15px;
    color: rgba(255,255,255,.55);
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin: 22px 0 18px;
    flex-wrap: wrap;
}

.hero-badges span {
    font-size: 13px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.09);
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff00b8, #ff5ad8);
    color: white;
    text-decoration: none;
    font-weight: 900;
    box-shadow:
        0 16px 34px rgba(255,0,180,.35),
        inset 0 1px 0 rgba(255,255,255,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 42px rgba(255,0,180,.45),
        inset 0 1px 0 rgba(255,255,255,.35);
}

.secondary-note {
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.proof-strip {
    max-width: 1180px;
    margin: -20px auto 0;
    padding: 0 24px 54px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.proof-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
}

.proof-card strong {
    display: block;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.proof-card span {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.content-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 24px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin-top: 8px;
    color: rgba(255,255,255,.58);
}

.top-video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 70px rgba(0,0,0,.4);
    text-decoration: none;
}

.top-video-card img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.top-video-overlay {
    position: absolute;
    inset: auto 24px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    color: white;
}

.top-video-overlay span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff00b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
}

.glass-card {
    border-radius: 30px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.detail-row span:first-child {
    color: rgba(255,255,255,.52);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,0,180,.13);
    border: 1px solid rgba(255,0,180,.28);
    color: #ffd8f4;
    font-size: 13px;
    font-weight: 700;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.video-tile {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    text-decoration: none;
    color: white;
    box-shadow: 0 20px 44px rgba(0,0,0,.35);
}

.video-tile:after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    background: rgba(0,0,0,.62);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-tile img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.video-tile:hover img {
    transform: scale(1.04);
}

.video-meta {
    position: absolute;
    inset: auto 10px 10px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.video-meta strong {
    display: block;
    font-size: 14px;
}

.video-meta span {
    color: rgba(255,255,255,.6);
    font-size: 12px;
}

.brand-footer {
    max-width: 1180px;
    margin: 50px auto 0;
    padding: 0 24px 110px;
}

.brand-panel {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    min-height: 420px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.15)),
        url("/assets/images/home/characters-desktop.png") center / cover no-repeat;
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: flex-end;
}

.brand-panel-copy {
    max-width: 520px;
    padding: 38px;
}

.brand-panel-copy h2 {
    margin: 0 0 10px;
    font-size: 38px;
    letter-spacing: -0.05em;
}

.brand-panel-copy p {
    color: rgba(255,255,255,.7);
    line-height: 1.6;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 18px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff00b8, #ff5ad8);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    box-shadow:
        0 12px 30px rgba(255,0,180,.4),
        inset 0 1px 0 rgba(255,255,255,.35);
    white-space: nowrap;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .25s ease;
}

/* Default (top of page) */
.site-nav.is-top {
    backdrop-filter: blur(18px);
}

/* Scrolled state */
.site-nav.is-scrolled {
    backdrop-filter: none;
}

.site-nav.is-scrolled:before {
    background:
        linear-gradient(180deg, rgba(10,0,10,.95), rgba(0,0,0,.92));
    border: 1px solid rgba(255,0,180,.18);
    box-shadow:
        0 10px 30px rgba(0,0,0,.4),
        0 0 10px rgba(255,0,180,.1);
}

.site-nav {
    padding: 12px 24px;
}

.site-nav:before {
    content: "";
    position: absolute;
    inset: 8px 24px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(20,0,20,.9), rgba(0,0,0,.7));
    border: 1px solid rgba(255,0,180,.25);
    box-shadow:
        0 0 20px rgba(255,0,180,.15),
        inset 0 0 20px rgba(255,0,180,.08);
    z-index: -1;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 41px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 12px;
    aspect-ratio: 1073 / 616;
}

.nav-logo {
    height: clamp(32px, 4vw, 48px);
    aspect-ratio: 1073 / 616;
}

.nav-logo img {
    width: 96px;
    height: auto;
    max-height: 41px;
    object-fit: contain;
    display: block;
    filter:
        brightness(1.08)
        contrast(1.08)
        drop-shadow(0 0 6px rgba(255,0,180,.9))
        drop-shadow(0 0 16px rgba(255,0,180,.7))
        drop-shadow(0 0 28px rgba(255,0,180,.45));
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 12px;
}

.nav-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff00b8, #ff5ad8);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(255,0,180,.25);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    margin-right: 6px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 2px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-cloud a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: all .2s ease;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tag-cloud a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.20);
    color: #fff;
}

.tag-cloud a.is-active {
    background: linear-gradient(
        135deg,
        #ff4fd8 0%,
        #8b5cf6 100%
    );
    border-color: transparent;
    color: #fff;
    box-shadow:
        0 0 20px rgba(255,79,216,0.35),
        0 0 40px rgba(139,92,246,0.20);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 40px;
}

@keyframes neonPulse {
    0%, 100% {
        filter:
            drop-shadow(0 0 6px rgba(255,0,180,.6))
            drop-shadow(0 0 18px rgba(255,0,180,.4));
    }
    50% {
        filter:
            drop-shadow(0 0 10px rgba(255,0,180,.9))
            drop-shadow(0 0 26px rgba(255,0,180,.6));
    }
}

.nav-logo img {
    animation: neonPulse 3.5s ease-in-out infinite;
}

@media (max-width: 760px) {
    .nav-links {
        display: none;
    }

    .nav-links.is-open {
        display: flex;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 24px;
        background: rgba(10,10,10,.94);
        border: 1px solid rgba(255,255,255,.1);
        backdrop-filter: blur(18px);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
        margin-right: 12px;
    }
}

@media (max-width: 850px) {
    .product-hero,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        min-height: auto;
        padding-top: 32px;
        gap: 32px;
    }

    .proof-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-panel {
        min-height: 360px;
        background-position: center;
    }
}

@media (max-width: 520px) {
    .proof-strip,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .product-copy h1 {
        font-size: 46px;
    }

    .sticky-cta {
        width: calc(100% - 32px);
    }

    .sticky-cta a {
        width: 100%;
    }
}