/* ═══════════════════════════════════════════════════
   WHAT A WEEKEND — Broadcast Brutalism Stylesheet
   "Like a pirate radio station meets Public Access TV"
   ═══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ──────────────────────────────── */
:root {
    /* Brand Colors — Sunset Gradient */
    --sunset-red: #E63946;
    --sunset-orange: #F77F00;
    --sunset-yellow: #FCBF49;
    --alert-red: #EE1E24;

    /* Brand Colors — Ocean & Signal */
    --ocean-blue: #1A73E8;
    --ocean-dark: #0D47A1;
    --signal-blue: #0072BC;
    --cyan: #1BA7E0;

    /* Neutrals */
    --sand: #F5F0E1;
    --static-grey: #8C929E;
    --night: #1A1A2E;
    --night-light: #16213E;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-light: #F5F0E1;

    /* Typography */
    --font-display: "Pixelify Sans", "Bebas Neue", Impact, sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --section-pad: 100px;
    --container-width: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--night);
    color: var(--sand);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ─── UTILITY CLASSES ────────────────────────────── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-yellow), var(--sunset-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shimmer-text {
    background: linear-gradient(90deg, var(--sunset-yellow) 0%, var(--sunset-orange) 25%, var(--sunset-red) 50%, var(--sunset-orange) 75%, var(--sunset-yellow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ─── PRELOADER ──────────────────────────────────── */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--night);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px auto 16px;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-yellow));
    transition: width 0.3s var(--ease-smooth);
}

.preloader-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--static-grey);
    animation: blink 1s step-end infinite;
}

/* ─── TICKER BAR ─────────────────────────────────── */
.ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: var(--alert-red);
    z-index: 1001;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.ticker-content span {
    flex-shrink: 0;
}

/* ─── NAVIGATION ─────────────────────────────────── */
#navbar {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    transition: all 0.4s var(--ease-smooth);
}

#navbar.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo img {
    width: 36px;
    height: auto;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--sand);
    padding: 8px 16px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-arrow {
    font-size: 16px;
    transition: transform 0.3s var(--ease-smooth);
}

.nav-cart {
    padding: 8px 10px !important;
    margin-left: 4px;
    color: var(--sand);
    transition: all 0.3s var(--ease-smooth);
}

.nav-cart .material-icons {
    font-size: 20px;
}

.nav-cart:hover {
    color: var(--sunset-orange);
}

.nav-cart::after {
    display: none;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--sunset-red);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
}

.nav-cart {
    position: relative;
}

.nav-cta {
    background: var(--sunset-orange);
    color: var(--night) !important;
    font-weight: 700;
    border-radius: 0;
    margin-left: 8px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--sunset-yellow);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(22, 33, 62, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s var(--ease-out);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--static-grey);
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: var(--white);
    background: rgba(247, 127, 0, 0.1);
    padding-left: 24px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sand);
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ───────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding-top: 96px; /* ticker (32) + nav (64) */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 120%, rgba(230, 57, 70, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(247, 127, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 90%, rgba(252, 191, 73, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 40%, #1a1a3e 100%);
    animation: heroGradientShift 8s ease-in-out infinite alternate;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

#heroParticles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-logo {
    width: 160px;
    height: auto;
    margin-bottom: 24px;
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(247, 127, 0, 0.3));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 120px);
    line-height: 0.95;
    letter-spacing: 6px;
    margin-bottom: 16px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--static-grey);
    margin-bottom: 24px;
}

.hero-genre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.genre-dot {
    color: var(--static-grey);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll .material-icons {
    font-size: 32px;
    color: var(--static-grey);
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--sunset-orange);
    color: var(--night);
}

.btn-primary:hover {
    background: var(--sunset-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--sand);
}

.btn-outline:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
    transform: translateY(-2px);
}

/* ─── SECTIONS ───────────────────────────────────── */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-dark {
    background: var(--night-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--sunset-orange);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--static-grey);
    max-width: 640px;
    margin: 0 auto;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

/* ─── ABOUT: PILLARS ─────────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.pillar-card {
    min-height: 360px;
    background-color: rgba(22, 33, 62, 0.5);
    background-image:
        linear-gradient(180deg, rgba(245, 240, 225, 0.22) 0%, rgba(26, 26, 46, 0.62) 48%, rgba(10, 11, 22, 0.94) 100%),
        var(--pillar-image, linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.95)));
    background-size: cover;
    background-position: var(--pillar-focus, center);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s var(--ease-out);
}

.pillar-card--brand {
    --pillar-image: url('/assets/pillars/brand.jpg');
    --pillar-focus: center 42%;
}

.pillar-card--app {
    --pillar-image: url('/assets/pillars/app.jpg');
    --pillar-focus: center 34%;
}

.pillar-card--film {
    --pillar-image: url('/assets/pillars/film.jpg');
    --pillar-focus: center 48%;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 1;
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(252, 191, 73, 0.18), transparent 38%),
        radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.24), transparent 34%);
    mix-blend-mode: screen;
    opacity: 0.55;
    pointer-events: none;
}

.pillar-card > * {
    position: relative;
    z-index: 2;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 127, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.54);
    border: 1px solid rgba(252, 191, 73, 0.24);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.pillar-icon .material-icons {
    font-size: 24px;
    color: var(--sunset-orange);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 64px;
    color: rgba(255, 255, 255, 0.18);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 240, 225, 0.86);
    margin-bottom: 20px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.pillar-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sunset-yellow);
    padding: 4px 12px;
    border: 1px solid rgba(252, 191, 73, 0.34);
    background: rgba(26, 26, 46, 0.48);
    backdrop-filter: blur(10px);
    display: inline-block;
}

/* ─── ABOUT: QUOTE ───────────────────────────────── */
.about-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    border-left: 3px solid var(--sunset-orange);
    background: rgba(247, 127, 0, 0.03);
}

.about-quote p {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: var(--sand);
    margin-bottom: 16px;
}

.about-quote cite {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    font-style: normal;
}

.quote-with-photo {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.director-photo {
    flex-shrink: 0;
    text-align: center;
}

.director-photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(247, 127, 0, 0.3);
    filter: grayscale(20%);
}

.director-label {
    display: block;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--sunset-orange);
}

@media (max-width: 768px) {
    .quote-with-photo {
        flex-direction: column;
        text-align: center;
    }

    .director-photo img {
        width: 120px;
        height: 120px;
    }
}

/* ─── FILM: SYNOPSIS ─────────────────────────────── */
.film-logline {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.film-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    background: var(--sunset-orange);
    color: var(--night);
    padding: 4px 16px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

.film-logline p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--sand);
}

/* ─── FILM: VIDEO ────────────────────────────────── */
.film-video {
    margin-bottom: 80px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--night);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.video-play {
    font-size: 72px;
    color: var(--sunset-orange);
    transition: all 0.3s var(--ease-out);
    filter: drop-shadow(0 0 20px rgba(247, 127, 0, 0.5));
}

.video-overlay:hover .video-play {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(247, 127, 0, 0.8));
}

.video-overlay p {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--static-grey);
    margin-top: 12px;
}

.video-static {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: staticFlicker 0.15s steps(3) infinite;
}

/* ─── FILM: CHARACTERS ───────────────────────────── */
.film-characters {
    margin-bottom: 80px;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.character-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.character-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 127, 0, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.character-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.2), rgba(26, 26, 46, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-placeholder {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.1);
}

.character-info {
    padding: 20px;
}

.character-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 4px;
}

.character-age {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    display: block;
    margin-bottom: 8px;
}

.character-info p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--static-grey);
}

/* Supporting Characters */
.supporting-title {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--static-grey);
    margin-bottom: 20px;
    text-align: center;
}

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

.supporting-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(26, 26, 46, 0.4);
}

.supporting-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: top center;
    margin-bottom: 12px;
}

.supporting-card strong {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
    display: block;
    margin-bottom: 6px;
}

.supporting-card span {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--static-grey);
}

/* ─── FILM: PRODUCTION ───────────────────────────── */
.production-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
}

.production-stat {
    background: var(--night-light);
    padding: 32px;
    text-align: center;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--static-grey);
    display: block;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
}

/* ─── APP ────────────────────────────────────────── */
.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.app-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    transition: all 0.3s var(--ease-smooth);
    border-left: 2px solid transparent;
}

.app-feature:hover {
    background: rgba(247, 127, 0, 0.05);
    border-left-color: var(--sunset-orange);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 127, 0, 0.1);
    flex-shrink: 0;
}

.feature-icon .material-icons {
    font-size: 22px;
    color: var(--sunset-orange);
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--static-grey);
}

/* Phone Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    padding: 12px;
    background: #0a0a14;
    border-radius: 36px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    min-height: 500px;
}

.phone-header {
    background: var(--night);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.phone-logo {
    width: 24px;
    height: auto;
}

.phone-content {
    padding: 16px;
}

.phone-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--static-grey);
    font-size: 13px;
}

.phone-search .material-icons {
    font-size: 18px;
}

.phone-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.phone-cat {
    text-align: center;
    padding: 10px 4px;
    background: rgba(26, 26, 46, 0.05);
    border-radius: 8px;
}

.phone-cat .material-icons {
    font-size: 22px;
    color: var(--sunset-orange);
    display: block;
    margin-bottom: 4px;
}

.phone-cat small {
    font-size: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.phone-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.phone-card-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-red));
    flex-shrink: 0;
}

.phone-card-info strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.phone-card-info small {
    font-size: 11px;
    color: var(--static-grey);
}

/* App CTA */
.app-cta {
    text-align: center;
}

.app-cta-text {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--static-grey);
    margin-bottom: 24px;
}

.app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s var(--ease-smooth);
}

.store-badge:hover {
    border-color: var(--sunset-orange);
    background: rgba(247, 127, 0, 0.05);
}

.store-badge .material-icons {
    font-size: 28px;
    color: var(--white);
}

.store-badge small {
    display: block;
    font-size: 10px;
    color: var(--static-grey);
}

.store-badge strong {
    font-size: 14px;
    color: var(--white);
}

/* ─── CULTURE ────────────────────────────────────── */
.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.culture-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.culture-card-large {
    grid-column: 1 / -1;
    min-height: 360px;
}

.culture-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-out);
}

.culture-card:hover .culture-card-bg {
    transform: scale(1.05);
}

.culture-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
}

.culture-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 1;
}

.culture-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--sunset-yellow);
    display: block;
    margin-bottom: 8px;
}

.culture-card h3 {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.culture-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    max-width: 500px;
}

.culture-link {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s var(--ease-out);
}

.culture-card:hover .culture-link {
    gap: 12px;
}

.culture-link .material-icons {
    font-size: 16px;
}

/* ─── IMPACT ─────────────────────────────────────── */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(26, 26, 46, 0.4);
    transition: all 0.3s var(--ease-smooth);
}

.impact-card:hover {
    border-color: rgba(247, 127, 0, 0.2);
}

.impact-icon {
    font-size: 32px;
    color: var(--sunset-orange);
    margin-bottom: 16px;
}

.impact-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.impact-card p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--static-grey);
}

/* ─── MEDIA ──────────────────────────────────────── */
.media-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.media-tab {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 10px 24px;
    color: var(--static-grey);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-smooth);
}

.media-tab:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
}

.media-tab.active {
    color: var(--night);
    background: var(--sunset-orange);
    border-color: var(--sunset-orange);
}

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

.media-card {
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.media-card.hidden {
    display: none;
}

.media-card-featured {
    grid-column: 1 / -1;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.media-card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.media-card-featured .media-card-img {
    aspect-ratio: 21 / 9;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--ease-out);
}

.media-card:hover .media-placeholder {
    transform: scale(1.05);
}

.media-placeholder .material-icons {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.4);
}

.media-card-info {
    padding: 24px;
}

.media-date {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    display: block;
    margin-bottom: 8px;
}

.media-card-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
}

.media-card-info p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--static-grey);
}

/* ─── VIDEO GALLERY ─────────────────────────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    position: relative;
    overflow: hidden;
    background: #0a0a14;
    border: 2px solid #2a2a3e;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.video-card.hidden {
    display: none;
}

.video-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--sunset-orange);
    box-shadow:
        0 0 15px rgba(247, 127, 0, 0.4),
        0 0 30px rgba(247, 127, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Marquee lights on hover — reuses @keyframes marqueeChase */
.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background:
        repeating-linear-gradient(
            90deg,
            var(--sunset-yellow) 0px,
            var(--sunset-yellow) 4px,
            transparent 4px,
            transparent 10px
        );
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover::before {
    opacity: 1;
    animation: marqueeChase 0.8s linear infinite;
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.4s, transform 0.6s var(--ease-out);
}

.video-card:hover .video-card-thumb img {
    filter: saturate(1.1);
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(230, 57, 70, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
}

.video-play-btn .material-icons {
    font-size: 28px;
    color: white;
    margin-left: 2px;
}

.video-card:hover .video-play-btn {
    opacity: 1;
}

.video-cat-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--sunset-orange);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.video-card-title {
    display: block;
    text-align: center;
    padding: 10px 8px;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white);
    background: #0a0a14;
}

/* ─── VIDEO MODAL ───────────────────────────────── */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 4px;
}

.video-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10001;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── CONTACT / NEWSLETTER ───────────────────────── */
.section-contact {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
        var(--night-light);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin: 40px 0;
}

.form-group {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.form-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: var(--static-grey);
}

.form-input:focus {
    border-color: var(--sunset-orange);
}

.form-btn {
    padding: 14px 24px;
    flex-shrink: 0;
}

.form-note {
    font-size: 11px;
    color: var(--static-grey);
    margin-top: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    border-color: var(--sunset-orange);
    background: rgba(247, 127, 0, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--sand);
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
    background: #0a0a14;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--static-grey);
    font-style: italic;
}

.footer-links-group h5 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: var(--static-grey);
    padding: 4px 0;
    transition: all 0.2s;
}

.footer-links-group a:hover {
    color: var(--sunset-orange);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--static-grey);
}

.footer-dmv {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

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

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes heroGradientShift {
    0% {
        background:
            radial-gradient(ellipse at 50% 120%, rgba(230, 57, 70, 0.3) 0%, transparent 60%),
            radial-gradient(ellipse at 30% 80%, rgba(247, 127, 0, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 90%, rgba(252, 191, 73, 0.15) 0%, transparent 40%),
            linear-gradient(180deg, var(--night) 0%, var(--night-light) 40%, #1a1a3e 100%);
    }
    100% {
        background:
            radial-gradient(ellipse at 60% 110%, rgba(230, 57, 70, 0.4) 0%, transparent 55%),
            radial-gradient(ellipse at 40% 70%, rgba(247, 127, 0, 0.25) 0%, transparent 45%),
            radial-gradient(ellipse at 60% 95%, rgba(252, 191, 73, 0.2) 0%, transparent 35%),
            linear-gradient(180deg, var(--night) 0%, #1a1a3e 35%, var(--night-light) 100%);
    }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@keyframes staticFlicker {
    0% { opacity: 0.03; }
    50% { opacity: 0.06; }
    100% { opacity: 0.04; }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

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

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

    .app-showcase {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(22, 33, 62, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 96px 32px 32px;
        gap: 0;
        transition: right 0.4s var(--ease-out);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 16px 0;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        border: none;
        padding: 0 0 0 16px;
        backdrop-filter: none;
    }

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

    .form-input {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-btn {
        justify-content: center;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-genre {
        gap: 8px;
    }

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

    .phone-frame {
        width: 240px;
    }

    .about-quote {
        padding: 24px;
    }
}

/* ─── PAGE HEADER (Sub-pages) ────────────────────── */
.page-header {
    position: relative;
    padding: 180px 0 80px; /* 96px fixed elements + 84px breathing room */
    text-align: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(230, 57, 70, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 60%, rgba(247, 127, 0, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
    z-index: 0;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* Video backgrounds for page headers */
.page-header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-header-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

/* Video backgrounds for sections */
.section-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.section-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.section-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 47, 101, 0.75);
    z-index: 1;
}

/* Disable video on mobile for performance */
@media (max-width: 768px) {
    .page-header-video,
    .section-video-bg video {
        display: none;
    }
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 100px);
    letter-spacing: 6px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--static-grey);
    max-width: 640px;
    margin: 0 auto;
}

/* ─── BRAND STORY (About page) ──────────────────── */
.brand-story {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.brand-story p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--sand);
}

/* ─── CIRCULAR TEXT ──────────────────────────────── */
.circular-text-section {
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.circular-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-out);
}

.circular-text-inner {
    width: 100%;
    height: 100%;
    position: relative;
    animation: circularSpin linear infinite;
}

.circular-text-char {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    transform-origin: 0 0;
}

@keyframes circularSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ─── DECAY CARD CONTAINER (placeholder style) ──── */
.decay-card-container {
    position: relative;
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.decay-card-container:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 127, 0, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ─── COMPARABLE FILMS ──────────────────────────── */
.comp-films {
    margin-top: 64px;
}

.comp-films-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.comp-film-card {
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(26, 26, 46, 0.4);
    transition: all 0.3s var(--ease-smooth);
}

.comp-film-card:hover {
    border-color: rgba(247, 127, 0, 0.2);
    transform: translateY(-2px);
}

.comp-film-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 4px;
}

.comp-film-card span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
}

/* ─── RESPONSIVE (Sub-pages) ────────────────────── */
@media (max-width: 1024px) {
    .comp-films-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 48px;
    }

    .page-title {
        font-size: clamp(36px, 8vw, 64px);
    }

    .page-subtitle {
        font-size: 14px;
        padding: 0 12px;
    }

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

    .apply-form {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .comp-films-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   SUBPAGE-SPECIFIC STYLES
   ═══════════════════════════════════════════════════ */

/* ─── Page-specific header gradients ────────────── */
.page-app .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(247, 127, 0, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 60%, rgba(252, 191, 73, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

.page-culture .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(230, 57, 70, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 60%, rgba(26, 115, 232, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

.page-media .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(252, 191, 73, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 60%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

.page-contact .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(230, 57, 70, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 40% 70%, rgba(247, 127, 0, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

/* ─── DMV SLANG CARDS ───────────────────────────── */
.slang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.slang-card {
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 24px;
    transition: all 0.3s var(--ease-smooth);
}

.slang-card:hover {
    border-color: rgba(247, 127, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.slang-term {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    margin-bottom: 8px;
}

.slang-def {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--static-grey);
    text-align: justify;
}

/* ─── CULTURE PAGE DETAIL SECTIONS ──────────────── */
.culture-detail {
    margin-bottom: 80px;
    text-align: center;
}

.culture-detail h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 16px;
}

.culture-detail p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--static-grey);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.culture-detail .culture-tag {
    margin-bottom: 16px;
}

.culture-detail .culture-section-icon {
    justify-content: center;
}

/* ─── CONTACT INFO ──────────────────────────────── */
.contact-info {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info a {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--sunset-orange);
    transition: color 0.3s var(--ease-smooth);
}

.contact-info a:hover {
    color: var(--sunset-yellow);
}

/* ─── NAV ACTIVE STATE ──────────────────────────── */
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    width: 80%;
}

/* ─── CURSOR GLOW ───────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

/* ─── ASCII TEXT EFFECT ─────────────────────────── */
.ascii-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ascii-output {
    position: absolute;
    inset: 0;
    font-family: 'IBM Plex Mono', 'Space Mono', monospace;
    font-size: 8px;
    line-height: 1;
    letter-spacing: 0;
    white-space: pre;
    color: var(--sand);
    mix-blend-mode: difference;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ascii-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sunset-red), var(--sunset-orange), var(--sunset-yellow));
    z-index: 1;
    opacity: 0.8;
}

#heroAscii {
    min-height: 160px;
    margin-bottom: 8px;
}

/* ─── COLOR BENDS CANVAS ──────────────────────────── */
.color-bends-canvas {
    position: absolute;
    inset: 0;
    image-rendering: auto;
}

#heroColorBends {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ─── CURVED LOOP ──────────────────────────────────── */
.curved-loop {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    user-select: none;
    -webkit-user-select: none;
}

.curved-loop-svg {
    width: 100%;
    height: auto;
    display: block;
}

.curved-text-style {
    font-family: var(--font-display);
    font-size: 28px;
    fill: var(--white);
    opacity: 0.1;
}

#curvedLoopDivider {
    overflow: hidden;
    padding: 0;
    max-height: 80px;
    position: relative;
    z-index: 1;
}

#curvedLoopDivider .curved-loop-svg {
    height: 80px;
}

/* ─── DECAY CARD ───────────────────────────────────── */
.decay-card {
    position: relative;
    will-change: transform;
}

.decay-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.decay-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 2;
}

/* ─── APPLICATION FORM ─────────────────────────── */
.apply-form {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 40px;
    background: rgba(22, 33, 62, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    flex-basis: 100%;
}

.form-field label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--static-grey);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-field label .required {
    color: var(--sunset-red);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
    -webkit-appearance: none;
    appearance: none;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(140, 146, 158, 0.5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--sunset-orange);
    background: rgba(247, 127, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.08);
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238C929E' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-field select option {
    background: var(--night);
    color: var(--sand);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.apply-form .form-btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 16px 32px;
    font-size: 13px;
}

/* Newsletter form matching style */
.form-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 4px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s var(--ease-smooth) !important;
}

.form-input:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.form-input:focus {
    border-color: var(--sunset-orange) !important;
    background: rgba(247, 127, 0, 0.04) !important;
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.08);
}

/* ─── SCREENSHOT CAROUSEL ────────────────────────── */
.screenshot-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex-shrink: 0;
    width: 240px;
    height: auto;
    border-radius: 20px;
    scroll-snap-align: start;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s var(--ease-out);
}

.carousel-slide:hover {
    transform: scale(1.03);
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--sunset-orange);
    color: var(--night);
    border-color: var(--sunset-orange);
}

.carousel-btn .material-icons {
    font-size: 24px;
}

/* ─── YOUTUBE GRID ───────────────────────────────── */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.youtube-card {
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    text-decoration: none;
    color: inherit;
}

.youtube-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 127, 0, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.youtube-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.youtube-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.youtube-card:hover .youtube-thumb img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(230, 57, 70, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.play-button .material-icons {
    font-size: 28px;
    color: white;
}

.youtube-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-title {
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--sand);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── POSTER GALLERY (Comparable Films) ───────────── */
.poster-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
}

.poster-frame {
    position: relative;
    overflow: hidden;
    background: #0a0a14;
    border: 2px solid #2a2a3e;
    transition: all 0.4s var(--ease-out);
}

.poster-frame:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--sunset-orange);
    box-shadow:
        0 0 15px rgba(247, 127, 0, 0.4),
        0 0 30px rgba(247, 127, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

.poster-frame img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.4s;
}

.poster-frame:hover img {
    filter: saturate(1.1);
}

.poster-title {
    display: block;
    text-align: center;
    padding: 6px 4px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--white);
    background: #0a0a14;
}

/* Marquee lights effect */
.marquee-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 2;
    background:
        repeating-linear-gradient(
            90deg,
            var(--sunset-yellow) 0px,
            var(--sunset-yellow) 4px,
            transparent 4px,
            transparent 10px
        );
    opacity: 0;
    transition: opacity 0.3s;
}

.poster-frame:hover .marquee-lights {
    opacity: 1;
    animation: marqueeChase 0.8s linear infinite;
}

@keyframes marqueeChase {
    0% { background-position: 0 0; }
    100% { background-position: 10px 0; }
}

@media (max-width: 1024px) {
    .poster-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .poster-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── PHOTO GALLERY ──────────────────────────────── */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.4s var(--ease-out);
}

.gallery-img:hover {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
    z-index: 1;
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── BUSINESS CTA SECTION ───────────────────────── */
.business-cta-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(26, 115, 232, 0.15) 0%, transparent 60%),
        var(--night-light);
}

.business-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.business-cta-icon {
    font-size: 56px;
    color: var(--sunset-orange);
    margin-bottom: 24px;
    display: block;
}

/* ─── APP MOCKUP GALLERY ──────────────────────── */
.mockup-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
}

.mockup-img {
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s var(--ease-out);
}

.mockup-primary {
    width: 260px;
    z-index: 2;
}

.mockup-secondary {
    width: 220px;
    opacity: 0.85;
    transform: translateY(20px);
}

.mockup-gallery:hover .mockup-primary {
    transform: translateY(-8px);
}

.mockup-gallery:hover .mockup-secondary {
    transform: translateY(12px);
    opacity: 1;
}

.app-screenshots {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.app-screenshot {
    width: 160px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s var(--ease-out);
}

.app-screenshot:hover {
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .mockup-gallery {
        flex-direction: column;
        align-items: center;
    }

    .mockup-primary,
    .mockup-secondary {
        width: 200px;
    }

    .mockup-secondary {
        transform: none;
    }

    .app-screenshot {
        width: 120px;
    }
}

/* ─── PRODUCT MODAL ──────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-content {
    background: var(--night-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--sunset-red);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-details {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
}

.modal-price {
    font-family: var(--font-mono);
    font-size: 20px;
    color: var(--sunset-orange);
    letter-spacing: 1px;
}

.modal-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--sand);
}

.modal-materials {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--static-grey);
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--static-grey);
    display: block;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--sand);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
}

.size-btn.active {
    background: var(--sunset-orange);
    color: var(--night);
    border-color: var(--sunset-orange);
}

.modal-add-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-img {
        aspect-ratio: 16 / 9;
    }

    .modal-details {
        padding: 24px 20px;
    }
}

/* ─── CART PAGE ───────────────────────────────────── */
.cart-items {
    max-width: 800px;
    margin: 0 auto 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-info { flex: 1; }

.cart-item-name {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}

.cart-item-size {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--static-grey);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--sand);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.qty-btn:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
}

.qty-value {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--white);
    min-width: 20px;
    text-align: center;
}

.cart-item-price,
.cart-item-total {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--sand);
    min-width: 70px;
    text-align: right;
}

.cart-item-total {
    color: var(--sunset-orange);
    font-weight: 600;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--static-grey);
    cursor: pointer;
    transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--sunset-red); }

.cart-summary {
    max-width: 400px;
    margin: 0 0 0 auto;
    padding: 32px;
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--static-grey);
}

.cart-summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.cart-summary-row.total span:last-child {
    color: var(--sunset-orange);
    font-family: var(--font-mono);
}

.cart-checkout-btn {
    width: 100%;
    margin-top: 24px;
    justify-content: center;
    padding: 16px;
    font-size: 14px;
}

.cart-empty {
    text-align: center;
    padding: 80px 24px;
}

.cart-empty .material-icons {
    font-size: 64px;
    color: var(--static-grey);
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 16px;
    color: var(--static-grey);
    margin-bottom: 24px;
}

.page-cart .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(247, 127, 0, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

@media (max-width: 768px) {
    .cart-item { flex-wrap: wrap; gap: 12px; }
    .cart-item-info { flex-basis: 100%; }
    .cart-summary { margin: 0 auto; }
}

/* ─── UPLOAD AREA ────────────────────────────────── */
.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
}

.upload-area:hover {
    border-color: var(--sunset-orange);
    background: rgba(247, 127, 0, 0.04);
}

.upload-icon {
    font-size: 36px;
    color: var(--static-grey);
    margin-bottom: 8px;
}

.upload-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--sand);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 11px;
    color: var(--static-grey);
}

.upload-preview {
    max-width: 200px;
    max-height: 260px;
    object-fit: cover;
    margin-top: 12px;
    border: 2px solid rgba(247, 127, 0, 0.3);
}

.page-talent .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(230, 57, 70, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(252, 191, 73, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

/* ─── SHOP / PRODUCTS ─────────────────────────── */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.product-card {
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 127, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.2);
}

.product-info {
    padding: 20px;
    flex: 1;
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 6px;
}

.product-price {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--sunset-orange);
    display: block;
    margin-bottom: 8px;
}

.product-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 3px 10px;
    background: rgba(247, 127, 0, 0.15);
    color: var(--sunset-orange);
    border: 1px solid rgba(247, 127, 0, 0.3);
    display: inline-block;
}

.product-btn {
    margin: 0 20px 20px;
    text-align: center;
    justify-content: center;
    font-size: 11px;
    padding: 10px 20px;
}

/* Cart Float */
.cart-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--sunset-orange);
    color: var(--night);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 999;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.4);
    transition: all 0.3s var(--ease-out);
}

.cart-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(247, 127, 0, 0.6);
}

.cart-float .material-icons {
    font-size: 20px;
}

.cart-count {
    background: var(--night);
    color: var(--sunset-orange);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Success message */
.checkout-success {
    text-align: center;
    padding: 64px 24px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    margin-bottom: 48px;
}

.checkout-success .material-icons {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 16px;
}

.checkout-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 8px;
}

.checkout-success p {
    font-size: 14px;
    color: var(--static-grey);
}

.page-shop .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(247, 127, 0, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 60%, rgba(230, 57, 70, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .cart-float {
        bottom: 16px;
        right: 16px;
    }
}

.page-apply .page-header-bg {
    background:
        radial-gradient(ellipse at 50% 80%, rgba(26, 115, 232, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 60%, rgba(247, 127, 0, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--night) 0%, var(--night-light) 100%);
}

/* ─── SUBPAGE RESPONSIVE ────────────────────────── */
@media (max-width: 768px) {
    .slang-grid {
        grid-template-columns: 1fr;
    }

    .ascii-wrapper {
        height: 120px;
    }

    .curved-text-style {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .media-tab {
        padding: 8px 14px;
        font-size: 10px;
    }

    .about-quote {
        padding: 24px 16px;
        border-left-width: 2px;
    }

    .about-quote p {
        font-size: 15px;
    }

    .film-logline p {
        font-size: 16px;
    }

    .culture-card h3 {
        font-size: 28px;
    }

    .culture-card p {
        font-size: 13px;
    }
}

/* ─── SMALL PHONES ───────────────────────────────── */
@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 32px;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .section-subtitle {
        font-size: 14px;
    }

    .pillar-card {
        padding: 28px 20px;
    }

    .ticker-bar {
        height: 28px;
    }

    .ticker-content {
        font-size: 9px;
    }

    #navbar {
        top: 28px;
        height: 56px;
    }

    .nav-brand {
        font-size: 16px;
    }

    .nav-logo img {
        width: 28px;
    }

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-genre {
        font-size: 10px;
        gap: 6px;
    }

    #hero {
        padding-top: 84px;
        min-height: 600px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 11px;
    }

    .apply-form {
        padding: 24px 16px;
    }
}

/* ─── EXTRA SMALL ────────────────────────────────── */
@media (max-width: 360px) {
    .nav-brand {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .container {
        padding: 0 16px;
    }
}

/* ═══════════════════════════════════════════════════
   FLOATING EVENT CALENDAR WIDGET
   ═══════════════════════════════════════════════════ */

/* ─── FAB BUTTON ────────────────────────────────── */
.waw-events-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sunset-orange);
    color: var(--night);
    border: none;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(247, 127, 0, 0.5), 0 0 40px rgba(247, 127, 0, 0.2);
    transition: all 0.3s var(--ease-out);
    animation: fabPulse 2s ease-in-out infinite;
}

.waw-events-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(247, 127, 0, 0.6), 0 0 60px rgba(247, 127, 0, 0.3);
}

.waw-events-fab-active {
    background: var(--night-light);
    color: var(--sand);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: none;
}

.waw-events-fab .material-icons {
    font-size: 26px;
}

.waw-events-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--alert-red);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    letter-spacing: 0;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(247, 127, 0, 0.5), 0 0 40px rgba(247, 127, 0, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(247, 127, 0, 0.7), 0 0 60px rgba(247, 127, 0, 0.35); }
}

/* ─── POPUP PANEL ───────────────────────────────── */
.waw-events-popup {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 420px;
    max-height: 70vh;
    background: var(--night-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.1);
}

.waw-events-popup.waw-events-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ─── HEADER ────────────────────────────────────── */
.waw-events-header {
    padding: 20px 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.waw-events-header-top {
    margin-bottom: 12px;
}

.waw-events-signal {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sunset-orange);
    text-transform: uppercase;
}

.waw-events-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--sand);
    letter-spacing: 2px;
    margin-top: 4px;
}

.waw-events-filters {
    display: flex;
    gap: 6px;
}

.waw-events-filter {
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--static-grey);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s var(--ease-smooth);
}

.waw-events-filter:hover {
    color: var(--sand);
    border-color: rgba(255, 255, 255, 0.15);
}

.waw-events-filter.active {
    color: var(--night);
    background: var(--sunset-orange);
    border-color: var(--sunset-orange);
}

/* ─── EVENT LIST ────────────────────────────────── */
.waw-events-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.waw-events-list::-webkit-scrollbar {
    width: 4px;
}

.waw-events-list::-webkit-scrollbar-track {
    background: transparent;
}

.waw-events-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* ─── EVENT CARD ────────────────────────────────── */
.waw-event-card {
    display: block;
    padding: 14px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-decoration: none;
    color: var(--sand);
    transition: all 0.2s var(--ease-smooth);
}

.waw-event-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--sunset-orange);
    transform: translateY(-1px);
}

.waw-event-card-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.waw-event-icon {
    color: var(--sunset-orange);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.waw-event-meta {
    flex: 1;
    min-width: 0;
}

.waw-event-name {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.waw-event-biz {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--static-grey);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.waw-event-status {
    flex-shrink: 0;
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid;
    white-space: nowrap;
}

.waw-event-desc {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(245, 240, 225, 0.6);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.waw-event-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.waw-event-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--static-grey);
    letter-spacing: 0.3px;
}

.waw-event-details .material-icons {
    font-size: 13px;
    color: var(--sunset-orange);
    flex-shrink: 0;
}

/* ─── CTA FOOTER ────────────────────────────────── */
.waw-events-cta {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    background: rgba(247, 127, 0, 0.05);
}

.waw-events-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-red));
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.waw-events-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(247, 127, 0, 0.4);
}

.waw-events-cta-btn .material-icons {
    font-size: 22px;
    flex-shrink: 0;
}

/* ─── MOBILE RESPONSIVE ─────────────────────────── */
body.nav-open .waw-events-fab,
body.nav-open .waw-events-popup {
    display: none !important;
}

@media (max-width: 480px) {
    .waw-events-popup {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 96px;
        max-height: 60vh;
    }

    .waw-events-fab {
        bottom: 24px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .waw-events-title {
        font-size: 24px;
    }

    .waw-events-filters {
        flex-wrap: wrap;
    }
}
