/* ========== FONTS ========== */
@font-face {
    font-family: 'Compacta';
    src: url('../compacta.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ========== VARIABLES ========== */
:root {
    --bg: #0a0a0a;
    --bg-2: #141414;
    --bg-3: #1c1c1c;
    --fg: #f5f5f0;
    --fg-muted: #9a9a92;
    --accent: #ff3a2e;
    --accent-2: #ffd23f;
    --border: #2a2a2a;
    --max-w: 1400px;
    --f-display: 'Compacta', 'Impact', sans-serif;
    --f-body: 'Bricolage Grotesque', system-ui, sans-serif;
    --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; position: relative; z-index: 2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

/* ========== BACKGROUND TEXTURE ========== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

/* ========== TOP UTILITY BAR ========== */
.utility-bar {
    background: #000;
    color: var(--fg);
    border-bottom: 1px solid var(--border);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 100;
}
.utility-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.utility-items { display: flex; gap: 28px; flex-wrap: wrap; }
.utility-items span::before { content: '✓ '; color: var(--accent-2); font-weight: bold; }
.utility-right { display: flex; gap: 14px; align-items: center; color: var(--fg-muted); }
.utility-right .live::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: 1px;
    animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@media (max-width: 800px) {
    .utility-items { gap: 16px; font-size: 10px; }
    .utility-right { display: none; }
}

/* ========== HEADER ========== */
header {
    background: rgba(0,0,0,0.92);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img {
    height: 64px;
    width: auto;
    filter: invert(1);
    transition: transform 0.3s ease;
}
.logo-link:hover img { transform: rotate(-2deg) scale(1.03); }

nav ul { display: flex; list-style: none; gap: 28px; }
nav a {
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--fg);
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    padding: 4px 0;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.25s ease;
}
nav a:hover, nav a.active { color: var(--accent); }
nav a:hover::after, nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--f-display);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover {
    background: var(--accent-2);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 #000, 4px 4px 0 1px var(--accent);
}
.btn-ghost { background: transparent; color: var(--fg); border: 2px solid var(--fg); }
.btn-ghost:hover { background: var(--fg); color: #000; }
.btn-ghost-light { background: transparent; color: var(--fg); border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: var(--fg); color: #000; border-color: var(--fg); }

/* ========== MOBILE NAV ========== */
.menu-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--fg);
    transition: 0.3s;
}
@media (max-width: 1000px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #000;
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
    }
    nav.open { display: block; }
    nav ul { flex-direction: column; gap: 16px; }
    .menu-toggle { display: flex; }
    .header-cta .btn { display: none; }
}
@media (max-width: 600px) {
    .logo-link img { height: 48px; }
    .header-inner { padding: 14px 18px; }
}

/* ========== HERO (with video bg) ========== */
.hero {
    position: relative;
    min-height: calc(100vh - 130px);
    padding: 80px 24px 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.95) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 100%);
    z-index: 1;
}
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-eyebrow {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.hero-title {
    font-family: var(--f-display);
    font-size: clamp(80px, 14vw, 220px);
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title .row-2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--fg);
    margin-left: 0.4em;
}
.hero-tag {
    max-width: 700px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 40px;
}
.hero-tag strong { color: var(--accent-2); font-weight: 700; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    z-index: 3;
}
@media (max-width: 800px) { .scroll-hint { display: none; } }

/* ========== PAGE HERO (smaller, for sub-pages) ========== */
.page-hero {
    padding: 80px 24px 60px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    position: relative;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.page-hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(60px, 12vw, 160px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
.page-hero p {
    max-width: 720px;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.5;
    color: var(--fg-muted);
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 24px;
    position: relative;
}
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-head {
    margin-bottom: 56px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.section-eyebrow {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.section-title {
    font-family: var(--f-display);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ========== MARQUEE STRIP ========== */
.diagonal-strip {
    background: var(--accent);
    color: #000;
    padding: 14px 24px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.diagonal-strip-inner {
    display: flex;
    gap: 56px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.diagonal-strip-inner span {
    font-family: var(--f-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.diagonal-strip-inner span::after {
    content: '◆';
    margin-left: 56px;
    font-size: 16px;
    vertical-align: 4px;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========== VIDEO CARDS (YT) ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.video-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: block;
}
.video-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--accent);
    box-shadow: 8px 8px 0 var(--accent);
}
.video-thumb {
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
}
.video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-thumb-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--accent);
    font-family: var(--f-display);
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    padding: 16px;
}
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.85);
    color: var(--fg);
    padding: 4px 8px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    z-index: 2;
}
.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
.video-card:hover .play-icon { opacity: 1; }
.play-icon::before {
    content: '';
    width: 0; height: 0;
    border-left: 18px solid #000;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}
.video-body { padding: 20px; }
.video-title {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--fg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-meta {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-grid-loading {
    text-align: center;
    color: var(--fg-muted);
    font-family: var(--f-mono);
    padding: 60px 24px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.yt-cta { margin-top: 56px; text-align: center; }

/* ========== TRUST BAR ========== */
.trust-section {
    background: var(--bg);
    padding: 80px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}
.trust-item { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.trust-icon {
    width: 56px; height: 56px;
    background: var(--fg);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-title {
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1;
}
.trust-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ========== PRICING / SERVICE ========== */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; gap: 32px; } }
.service-intro p { font-size: 19px; line-height: 1.55; margin-bottom: 20px; }
.service-intro p strong { color: var(--accent-2); font-weight: 600; }
.service-bullets { list-style: none; margin: 32px 0; }
.service-bullets li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}
.service-bullets li:last-child { border-bottom: none; }
.service-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--accent);
    font-family: var(--f-display);
    font-size: 22px;
}

.pricing { display: flex; flex-direction: column; gap: 16px; }
.tier {
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.tier:hover { border-color: var(--accent); transform: translateX(8px); }
.tier.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--bg-3) 0%, #1f1410 100%);
}
.tier.featured::before {
    content: 'POPULÄR';
    position: absolute;
    top: -10px;
    right: 24px;
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.15em;
}
.tier-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}
.tier-name { font-family: var(--f-display); font-size: 32px; text-transform: uppercase; }
.tier-price { font-family: var(--f-mono); font-size: 18px; color: var(--accent-2); white-space: nowrap; }
.tier-desc { color: var(--fg-muted); font-size: 14px; line-height: 1.5; }

/* ========== PROCESS STEPS ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.process-step {
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 32px 28px;
    position: relative;
}
.step-num {
    font-family: var(--f-display);
    font-size: 80px;
    color: var(--accent);
    line-height: 0.9;
    margin-bottom: 16px;
}
.process-step h3 {
    font-family: var(--f-display);
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.process-step p { color: var(--fg-muted); font-size: 14px; line-height: 1.5; }

/* ========== FAQ ========== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 32px);
    text-transform: uppercase;
    color: var(--fg);
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .toggle {
    font-size: 32px;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--fg-muted);
    font-size: 16px;
    line-height: 1.6;
}
.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 0 24px 0;
}

/* ========== SHOP (LOCKED) ========== */
.shop-wrapper { position: relative; overflow: hidden; }
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    filter: blur(6px) brightness(0.5);
    pointer-events: none;
    user-select: none;
}
.shop-item { background: var(--bg-3); border: 1px solid var(--border); }
.shop-img {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-img::after {
    content: 'IMG';
    font-family: var(--f-mono);
    color: var(--fg-muted);
    font-size: 14px;
}
.shop-body { padding: 16px; }
.shop-cat {
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}
.shop-name { font-weight: 600; margin-bottom: 8px; }
.shop-price { color: var(--accent-2); font-family: var(--f-mono); }
.shop-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(180deg, rgba(20,20,20,0.4) 0%, rgba(20,20,20,0.95) 100%);
}
.shop-lock {
    width: 80px; height: 80px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
}
.shop-overlay h2 {
    font-family: var(--f-display);
    font-size: clamp(48px, 8vw, 96px);
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 0.9;
}
.shop-overlay p {
    color: var(--fg-muted);
    max-width: 480px;
    margin-bottom: 24px;
    font-size: 16px;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info p { color: var(--fg-muted); font-size: 17px; line-height: 1.6; margin-bottom: 20px; }
.contact-info strong { color: var(--fg); }
.contact-channels {
    list-style: none;
    margin-top: 32px;
}
.contact-channels li { padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-channels li:last-child { border-bottom: none; }
.contact-channels a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--fg);
    transition: color 0.2s;
}
.contact-channels a:hover { color: var(--accent); }
.contact-channels svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.contact-channels .label {
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
    flex: 1;
}
.contact-channels .handle {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--fg-muted);
    letter-spacing: 0.1em;
}

.contact-form {
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 36px;
}
.contact-form h3 {
    font-family: var(--f-display);
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    color: var(--fg);
    font-family: var(--f-body);
    font-size: 16px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-form button[type=submit] {
    width: 100%;
    background: var(--accent);
    color: #000;
    padding: 16px;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.contact-form button[type=submit]:hover { background: var(--accent-2); }
.form-status {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-2);
    border-left: 3px solid var(--accent-2);
    font-size: 14px;
    display: none;
}
.form-status.show { display: block; }

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 24px;
}
.stats-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-num {
    font-family: var(--f-display);
    font-size: clamp(48px, 8vw, 96px);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--fg-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ========== FOOTER ========== */
footer {
    background: #000;
    padding: 80px 24px 32px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand img { height: 80px; filter: invert(1); margin-bottom: 20px; }
.footer-brand p { color: var(--fg-muted); font-size: 14px; line-height: 1.5; max-width: 280px; }
.footer-col h4 {
    font-family: var(--f-display);
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    color: var(--fg-muted);
    transition: color 0.2s;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a svg { width: 18px; height: 18px; fill: currentColor; }

.newsletter input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--fg);
    font-family: var(--f-body);
    font-size: 14px;
    margin-bottom: 12px;
}
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter button {
    width: 100%;
    background: var(--fg);
    color: #000;
    padding: 14px;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter button:hover { background: var(--accent-2); }
.newsletter p { color: var(--fg-muted); font-size: 13px; margin-top: 10px; }

.footer-bottom {
    max-width: var(--max-w);
    margin: 64px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--fg-muted);
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-bottom a { color: var(--fg-muted); }
.footer-bottom a:hover { color: var(--fg); }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.shown { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .hero-video { display: none; }
}
