:root {
    --bg: #070b12;
    --panel: #0d1420;
    --panel-2: #111a28;
    --line: rgba(255,255,255,.10);
    --text: #f5f7fa;
    --muted: #8f9bad;
    --accent: #2dd4bf;
    --accent-dark: #0f766e;
    --orange: #ffad20;
    --pink: #ff4f8b;
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.announcement-bar {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(
        90deg,
        rgba(255,79,139,.10),
        rgba(45,212,191,.10)
    );
}

.announcement-track {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    white-space: nowrap;
    font-family: "Space Mono", monospace;
    font-size: 12px;
    letter-spacing: 1px;
    color: #d9e1eb;
}

.site-header {
    height: 94px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(7,11,18,.92);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 22px var(--accent);
}

.desktop-nav {
    display: flex;
    gap: 34px;
    color: var(--muted);
    font-size: 14px;
}

.desktop-nav a:hover {
    color: white;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: transparent;
    color: white;
    position: relative;
}

.cart-count {
    position: absolute;
    right: -5px;
    top: -7px;
    background: var(--pink);
    color: white;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.signin-btn {
    border: none;
    background: var(--accent);
    color: #04120f;
    padding: 15px 24px;
    border-radius: 15px;
    font-weight: 800;
}

.hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 6vw;
    max-width: 1500px;
    margin: auto;
}

.eyebrow {
    font-family: "Space Mono", monospace;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.orange {
    color: var(--orange);
}

.hero h1 {
    font-size: clamp(54px, 7vw, 100px);
    line-height: .92;
    margin: 0;
    letter-spacing: -5px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    max-width: 590px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 28px 0 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
}

.btn-primary {
    background: var(--accent);
    color: #04120f;
}

.btn-secondary {
    border: 1px solid var(--line);
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.tv-shell {
    width: min(580px, 100%);
    background: #151d29;
    padding: 18px;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 35px 90px rgba(0,0,0,.45);
}

.tv-screen {
    aspect-ratio: 16/10;
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(45,212,191,.16), transparent 45%),
        linear-gradient(135deg, #08111b, #131827);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-label {
    position: absolute;
    top: 22px;
    left: 24px;
    font-family: "Space Mono", monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.play-button {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.07);
    color: white;
    font-size: 26px;
    cursor: pointer;
}

.video-caption {
    position: absolute;
    bottom: 22px;
    left: 24px;
    color: var(--muted);
    font-size: 13px;
}

.trust-strip {
    max-width: 1350px;
    margin: 0 auto;
    padding: 24px 4vw;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: #bcc6d2;
    font-size: 13px;
}

.section {
    max-width: 1350px;
    margin: auto;
    padding: 95px 4vw;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 42px;
}

.section-heading h2,
.bundle-card h2,
.support-section h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -2px;
}

.section-heading > a {
    color: var(--accent);
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.product-image {
    aspect-ratio: 1/1;
    position: relative;
    background: linear-gradient(145deg, #111a28, #09111c);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent);
    color: #06110e;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.18);
    font-family: "Space Mono", monospace;
    font-size: 20px;
}

.product-info {
    padding: 22px;
}

.product-category {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.4px;
}

.product-info h3 {
    font-size: 19px;
    margin: 9px 0 18px;
}

.product-price {
    font-family: "Space Mono", monospace;
    color: var(--accent);
}

.bundle-card {
    min-height: 430px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 50px;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 60px;
    background:
        radial-gradient(circle at right, rgba(255,79,139,.11), transparent 35%),
        radial-gradient(circle at left, rgba(45,212,191,.12), transparent 38%),
        var(--panel);
}

.bundle-copy p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
    margin: 20px 0 30px;
}

.bundle-visual {
    height: 260px;
    border-radius: 25px;
    border: 1px solid var(--line);
    background: #080d14;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Space Mono", monospace;
}

.bundle-visual span {
    color: var(--orange);
    font-size: 13px;
    letter-spacing: 4px;
}

.bundle-visual strong {
    font-size: 46px;
    margin-top: 8px;
}

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

.collection-card {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 20px;
    display: flex;
    align-items: end;
    font-size: 20px;
    font-weight: 700;
    transition: .2s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45,212,191,.45);
}

.support-section {
    margin: 80px 4vw;
    padding: 60px;
    border-radius: 30px;
    background: var(--accent);
    color: #04120f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.support-section .eyebrow {
    color: #085c54;
}

.support-section p {
    max-width: 650px;
    line-height: 1.7;
}

.support-section .btn-primary {
    background: #07100e;
    color: white;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 55px 6vw 28px;
    color: var(--muted);
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.footer-links {
    display: flex;
    gap: 28px;
    margin: 30px 0;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    font-family: "Space Mono", monospace;
}

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

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

    .bundle-card {
        grid-template-columns: 1fr;
        padding: 36px 25px;
    }

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

    .support-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 38px 28px;
    }

    .signin-btn {
        display: none;
    }
}

@media (max-width: 560px) {

    .site-header {
        padding: 0 20px;
    }

    .brand {
        font-size: 20px;
    }

    .hero {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero h1 {
        font-size: 50px;
        letter-spacing: -3px;
    }

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

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

    .announcement-track {
        justify-content: flex-start;
        padding-left: 20px;
    }
}

/* ===== HERO / FEATURED TV FIX ===== */

.hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
    align-items: center;
}

.hero-visual {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-shell {
    width: 100%;
    max-width: 580px;
    padding: 14px;
    border-radius: 28px;
    overflow: hidden;
}

.tv-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #080d14;
}

.featured-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: #05080d;
}

.video-label,
.video-caption {
    z-index: 2;
}

/* prevent uploaded portrait videos from expanding layout */
.tv-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* tighten the transition into the trust strip */
.trust-strip {
    margin-top: 0;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        gap: 40px;
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .tv-shell {
        max-width: 100%;
    }
}

