/* =============================================
   SPONGESOR — styles.css
   ============================================= */

/* ---- TYPE SCALE (fluid, rem-based) ----
   xs:   0.75rem  (12px)  — micro labels, chips
   sm:   0.875rem (14px)  — captions, sub-labels
   base: 1rem     (16px)  — body text, list items
   md:   1.125rem (18px)  — card titles, sub-copy
   lg:   1.5rem   (24px)  — sub-headlines
   xl:   clamp(1.75rem, 3vw, 2.25rem)  — section titles
   2xl:  clamp(2.5rem,  6vw, 4.5rem)   — hero h1
   pixel font (Press Start 2P) is halved due to visual weight:
   px-xs: 0.5rem, px-sm: 0.625rem, px-base: 0.75rem
   ============================================= */

:root {
    --white: #fafafa;
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --purple-dark: #4c1d95;
    --yellow: #facc15;
    --yellow-glow: #fde68a;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-purple: rgba(124, 58, 237, 0.18);
    --dark: #0a0710;
    --dark2: #110e1a;
    --text: #e9e4f5;
    --muted: #9b8fb5;

    /* spacing rhythm */
    --section-py: clamp(60px, 10vw, 110px);
    --section-px: clamp(20px, 6vw, 80px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* scroll-behavior intentionally removed — inertia scroll in main.js handles this */
    font-size: 16px;
}

body {
    font-family: "Syne", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ---- NOISE OVERLAY ---- */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ---- GRID BG ---- */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* =============================================
   NAV
   ============================================= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--section-px);
    height: 64px;
    background: rgba(10, 7, 16, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition:
        height 0.25s,
        background 0.25s;
}

.nav-logo {
    width: 150px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.8125rem; /* 13px — compact nav links */
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(88, 101, 242, 0.45);
    background: rgba(88, 101, 242, 0.12);
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.7);
    box-shadow: 0 0 18px rgba(88, 101, 242, 0.35);
    transform: translateY(-1px);
}

/* =============================================
   HERO
   ============================================= */
#home {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(64px + clamp(40px, 8vw, 80px)) var(--section-px)
        clamp(60px, 8vw, 80px);
    overflow: hidden;
}

.hero-orb1 {
    position: absolute;
    top: -120px;
    left: -120px;
    width: clamp(300px, 55vw, 700px);
    height: clamp(300px, 55vw, 700px);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.35) 0%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: orb-drift 10s ease-in-out infinite alternate;
}
.hero-orb2 {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: clamp(200px, 40vw, 500px);
    height: clamp(200px, 40vw, 500px);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.35) 0%,
        transparent 80%
    );
    filter: blur(80px);
    pointer-events: none;
    animation: orb-drift 14s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(40px, 30px);
    }
}

/* pixel tag — Press Start 2P at 0.5rem renders ~10–11px visually, which is correct for a badge */
.pixel-tag {
    font-family: "Press Start 2P", monospace;
    font-size: 0.5rem;
    color: var(--yellow);
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.35);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.75rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
    animation: fadeUp 0.8s ease both;
    line-height: 1.8;
}

.hero-h1 {
    font-size: clamp(2.25rem, 6vw, 4.5rem); /* 36px → 72px */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    animation: fadeUp 0.9s ease 0.1s both;
    background: linear-gradient(
        160deg,
        #ffffff 0%,
        rgba(233, 228, 245, 0.8) 55%,
        rgba(167, 139, 250, 0.6) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-h1 .accent-purple {
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-h1 .accent-yellow {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: var(--yellow);
    color: var(--yellow);
    text-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* 16px → 19px */
    color: var(--muted);
    max-width: 600px;
    margin: 1.25rem auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp 0.9s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.5);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.03em;
}
.btn-primary:hover {
    box-shadow: 0 0 36px rgba(124, 58, 237, 0.75);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.03em;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* =============================================
   SECTION BASE
   ============================================= */
section {
    position: relative;
    z-index: 1;
    padding: var(--section-py) var(--section-px);
}

/* section label — pixel font, small but legible */
.pixel-label {
    font-family: "Press Start 2P", monospace;
    font-size: 0.5rem; /* renders ~9–10px — intentional "stamp" size */
    color: var(--purple-light);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    display: block;
    line-height: 2;
}

/* section headline — scales between 28px and 44px */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    background: linear-gradient(
        160deg,
        #ffffff 0%,
        rgba(233, 228, 245, 0.75) 60%,
        rgba(167, 139, 250, 0.55) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- SECTION TITLE SHINE ---- */
@keyframes title-shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.section-title.shine-once {
    background-image: linear-gradient(
        105deg,
        #ffffff 0%,
        rgba(233, 228, 245, 0.75) 35%,
        rgba(255, 255, 255, 0.95) 48%,
        #e8d9ff 52%,
        rgba(233, 228, 245, 0.75) 65%,
        rgba(167, 139, 250, 0.55) 100%
    );
    background-size: 200% auto;
    animation: title-shine 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ---- GLASS DIVIDER ---- */
.glass-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--purple-light),
        var(--yellow),
        var(--purple-light),
        transparent
    );
    opacity: 0.3;
    margin: 0 var(--section-px);
}

/* ---- LIQUID GLASS CARD ---- */
.liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(124, 58, 237, 0.12) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 40px rgba(0, 0, 0, 0.3);
}

/* =============================================
   SOCIAL PROOF / BRANDS
   ============================================= */
#brands {
    text-align: center;
    background: var(--dark2);
}

.brand-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.brand-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}
.brand-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
}
.brand-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.brand-card span {
    font-size: 0.75rem; /* 12px — tight label under logo */
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* =============================================
   TALENT ROSTER
   ============================================= */
#roster {
    text-align: center;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.creator-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem 0.75rem;
    backdrop-filter: blur(14px);
    transition: all 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.creator-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
    transform: translateY(-4px);
}
.creator-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}
.creator-name {
    font-size: 0.9375rem; /* 15px — clear name */
    font-weight: 700;
    color: var(--white);
}
.creator-subs {
    font-family: "Space Mono", monospace;
    font-size: 0.6875rem; /* 11px — data label, intentionally small */
    color: var(--yellow);
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
}

.roster-more {
    font-size: 0.9375rem;
    color: var(--muted);
    margin-top: 1.75rem;
    font-style: italic;
}
.roster-cta {
    margin-top: 1.75rem;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
#how {
    background: var(--dark2);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}
.how-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(14px);
}
/* pixel font card label — visually ~13px with line-height */
.how-card-title {
    font-family: "Press Start 2P", monospace;
    font-size: 0.625rem;
    color: var(--yellow);
    margin-bottom: 1.75rem;
    letter-spacing: 0.08em;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
    line-height: 2;
}

.how-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.how-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem; /* base body — 16px */
    color: var(--text);
    line-height: 1.6;
}
.how-list li::before {
    content: "▸";
    color: var(--purple-light);
    font-size: 0.875rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.how-logos {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.how-logo-chip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
}
.how-logo-chip img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.how-logo-chip span {
    font-size: 0.75rem; /* 12px */
    font-weight: 700;
    color: var(--muted);
}

/* =============================================
   HIGH-CONVERTING INTEGRATIONS
   ============================================= */
#integrations {
    text-align: center;
    overflow: hidden;
}

.int-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
}
/* Column wrapper that holds the video + channel label beneath */
.int-video-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.int-channel-label {
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0;
    transition: color 0.2s ease;
}

.int-channel-label:hover {
    color: var(--purple-light);
}

/* Outer shell — holds the conic glow pseudo, not clipped */
.int-video-wrap {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.25);
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* Conic sweep — rotates clockwise on hover */
.int-video-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: conic-gradient(
        from calc(var(--glow-angle, 0deg) - 90deg),
        transparent 0deg,
        transparent calc(360deg - var(--glow-arc, 0deg)),
        var(--purple-light) calc(360deg - var(--glow-arc, 0deg)),
        #f0f0f0 360deg
    );
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--glow-opacity, 0);
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 3;
}

/* Static border underneath */
.int-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    pointer-events: none;
    z-index: 2;
}

/* Inner clip container — clips the video inside the border */
.int-video-inner {
    position: absolute;
    inset: 1.5px;
    border-radius: 14.5px;
    overflow: hidden;
    background: #000;
}
.int-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.int-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 0.75rem;
}
.int-feat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
}
.int-feat-title {
    font-family: "Space Mono", monospace;
    font-size: 0.75rem; /* 12px — mono data label */
    color: var(--yellow);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.int-feat-desc {
    font-size: 0.9375rem; /* 15px — readable card body */
    color: var(--muted);
    line-height: 1.55;
}

/* ---- Integration real videos ---- */
.int-video-inner .int-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sound hint badge — bottom-left, fades out on hover */
.int-video-sound-hint {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(10, 7, 16, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-family: "Space Mono", monospace;
    font-size: 0.625rem;
    color: var(--muted);
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 4;
}
.int-video-wrap:hover .int-video-sound-hint {
    opacity: 0;
}

@keyframes float-left {
    from {
        transform: translateY(0) rotate(-1deg);
    }
    to {
        transform: translateY(-14px) rotate(1deg);
    }
}
@keyframes float-right {
    from {
        transform: translateY(-6px) rotate(1deg);
    }
    to {
        transform: translateY(8px) rotate(-1deg);
    }
}

/* =============================================
   SPONSORED VIDEOS TICKER
   ============================================= */
#videos {
    background: var(--dark2);
    overflow: hidden;
}

.videos-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 0.875rem; /* 14px */
    margin-bottom: 2.5rem;
    font-family: "Space Mono", monospace;
}

.videos-track-wrap {
    overflow: hidden;
    position: relative;
}
.videos-track-wrap::before,
.videos-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 10vw, 140px);
    z-index: 2;
    pointer-events: none;
}
.videos-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--dark2) 0%, transparent 100%);
}
.videos-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--dark2) 0%, transparent 100%);
}
.videos-track {
    display: flex;
    gap: 1.25rem;
    animation: slide-left 39s linear infinite;
    width: max-content;
}
.videos-track:hover {
    animation-play-state: paused;
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.vid-thumb {
    flex-shrink: 0;
    width: clamp(180px, 22vw, 260px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
}
.vid-thumb:hover {
    transform: scale(1.04);
    border-color: var(--purple-light);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}
.vid-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.vid-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.vid-thumb:hover .vid-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}
.vid-play-btn {
    width: 42px;
    height: 42px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.7);
}
.vid-thumb:hover .vid-play-btn {
    opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem) var(--section-px);
    border-top: 1px solid var(--glass-border);
}
.footer-logo {
    display: block;
    width: 100px;
    align-self: center;
}
footer p {
    font-size: 0.875rem; /* 14px */
    color: var(--muted);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
    /* nav */
    .nav-links {
        display: none;
    }
    nav {
        padding: 0 clamp(16px, 5vw, 40px);
    }

    .nav-cta {
        padding: 0.5rem 0.65rem;
    }

    /* hero */
    .hero-h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-sub {
        font-size: 1rem;
    }

    /* sections */
    section {
        padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 40px);
    }

    /* brands */
    .brand-logos {
        gap: 1rem;
    }
    .brand-card {
        padding: 1rem 1.25rem;
        min-width: 88px;
    }

    /* roster — 2 cols on tablet */
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* how it works — stack */
    .how-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .how-card {
        padding: 1.75rem 1.5rem;
    }

    /* integrations — features centre, hide side videos */
    .int-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .int-features {
        padding: 0;
    }

    /* video ticker thumbnails slightly smaller */
    .vid-thumb {
        width: clamp(160px, 38vw, 220px);
    }
}

/* =============================================
   RESPONSIVE — MOBILE  (≤ 540px)
   ============================================= */
@media (max-width: 540px) {
    /* nav */
    .nav-logo {
        font-size: 0.5rem;
    }
    .nav-cta {
        font-size: 0.75rem;
        padding: 0.45rem 1rem;
    }

    /* hero */
    .hero-h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        letter-spacing: -0.02em;
    }
    .hero-sub {
        font-size: 0.9375rem;
    }
    .pixel-tag {
        font-size: 0.4375rem;
        padding: 0.5rem 0.85rem;
    }
    .btn-primary,
    .btn-glass {
        font-size: 0.9375rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-align: center;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }

    /* section titles */
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    /* brands — 2 per row */
    .brand-logos {
        gap: 0.75rem;
    }
    .brand-card {
        min-width: calc(50% - 1rem);
        flex: 1 1 calc(50% - 1rem);
    }

    /* roster — 2 cols, tighter */
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    .creator-card {
        padding: 1.25rem 0.6rem;
    }
    .creator-card img {
        width: 52px;
        height: 52px;
    }
    .creator-name {
        font-size: 0.875rem;
    }

    /* how it works */
    .how-card {
        padding: 1.5rem 1.25rem;
    }
    .how-list li {
        font-size: 0.9375rem;
    }

    /* int features full width */
    .int-feat-desc {
        font-size: 0.875rem;
    }

    /* video ticker — 2 visible, compact */
    .vid-thumb {
        width: clamp(140px, 44vw, 190px);
    }

    /* footer */
    footer p {
        font-size: 0.8125rem;
    }
}

/* =============================================
   FOOTER — multi-column layout
   ============================================= */
footer {
    position: relative;
    z-index: 1;
    background: var(--dark2);
    border-top: 1px solid var(--glass-border);
    padding: clamp(3rem, 6vw, 5rem) var(--section-px) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand a {
    text-decoration: none;
    color: var(--purple-dark);
}

.footer-logo {
    font-family: "Press Start 2P", monospace;
    font-size: 0.625rem;
    color: var(--yellow);
    text-shadow: 0 0 16px rgba(250, 204, 21, 0.55);
    display: block;
    line-height: 2;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.7;
}

.footer-discord-btn {
    padding: 10px;
    border-radius: 1rem;
    background-color: var(--purple-light);
}

.footer-links-col p.footer-col-title {
    font-family: "Press Start 2P", monospace;
    font-size: 0.45rem;
    color: var(--purple-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 2.2;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links-col ul li a {
    text-decoration: none;
    font-size: 0.9375rem;
    color: var(--muted);
    transition: color 0.2s;
}
.footer-links-col ul li a:hover {
    color: var(--white);
}

.footer-brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.footer-chip {
    text-decoration: none;
    font-family: "Space Mono", monospace;
    font-size: 0.6875rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    transition: all 0.2s;
}
.footer-chip img {
    width: 3rem;
    border-radius: 1rem;
    height: auto;
}
.footer-chip:hover {
    color: var(--white);
    border-color: var(--purple-light);
    background: rgba(124, 58, 237, 0.12);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: var(--muted);
}

.footer-bottom-tagline {
    font-family: "Space Mono", monospace;
    font-size: 0.6875rem;
    color: rgba(155, 143, 181, 0.5);
}

.footer-tagline-name {
    text-decoration: none;
    color: #f0f0f0;
    text-shadow: 0px 0px 20px #f0f0f0;
}

/* ---- footer responsive ---- */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
