:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --accent-neon: #FF007F; /* Neon Pink */
    --accent-hover: #ff3399;
    --border-color: #222222;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, .logo, .tag {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.mt-2 { margin-top: 20px; }

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 2rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-neon);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-neon);
    color: var(--bg-darker);
    border: 2px solid var(--accent-neon);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-neon);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
}

.btn-neon {
    display: inline-block;
    color: var(--accent-neon);
    border: 1px solid var(--accent-neon);
    padding: 10px 24px;
    margin-top: 15px;
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 1px;
}
.btn-neon:hover {
    background: var(--accent-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-neon);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* We'll use a dark gradient pattern since we don't have a specific hero background image yet */
    background: radial-gradient(circle at center, #222 0%, #050505 100%);
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin: 0;
}

.neon-text {
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(255,0,127,0.5), 0 0 20px rgba(255,0,127,0.3);
}

.hero-subtext {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin: 30px 0 40px 0;
    max-width: 800px;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Glitch Effect (Simple version) */
.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 44px, 0); }
    20% { clip: rect(66px, 9999px, 10px, 0); }
    40% { clip: rect(33px, 9999px, 88px, 0); }
    60% { clip: rect(90px, 9999px, 20px, 0); }
    80% { clip: rect(20px, 9999px, 70px, 0); }
    100% { clip: rect(50px, 9999px, 30px, 0); }
}

/* Split Sections */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.dark-section {
    background-color: var(--bg-darker);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    filter: grayscale(20%) contrast(1.2);
}

.tag {
    display: inline-block;
    color: var(--accent-neon);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-neon);
    font-family: var(--font-heading);
}

/* Packaging specific */
.packaging-image {
    position: relative;
}

.sticker-callout {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-neon);
    color: var(--bg-darker);
    font-family: var(--font-heading);
    padding: 10px 20px;
    transform: rotate(-5deg);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255,0,127,0.3);
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-contact h3 {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--accent-neon);
}

/* ===================== */
/* HAMBURGER BUTTON      */
/* ===================== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== */
/* RESPONSIVE — 900px    */
/* ===================== */
@media (max-width: 900px) {
    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    /* Mobile Nav Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.open .nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.open .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.open .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.open .nav-links li:nth-child(4) { transition-delay: 0.4s; }

    .nav-links a {
        font-size: 1.8rem;
        padding: 15px 0;
        display: block;
    }

    .nav-links .btn-neon {
        font-size: 1.4rem;
        padding: 14px 40px;
        margin-top: 20px;
    }

    /* Layout stacking */
    .split-container, .split-container.reverse {
        flex-direction: column;
    }

    .hero-brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .glitch-img-container {
        width: 260px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.3rem;
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .section {
        padding: 70px 0;
    }

    .split-container {
        gap: 40px;
    }

    /* Footer stacking */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    /* Sticker fix */
    .sticker-callout {
        right: 10px;
        bottom: -10px;
    }

    .packaging-image {
        overflow: visible;
    }
}

/* ===================== */
/* RESPONSIVE — 768px    */
/* ===================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.15rem;
    }

    .glitch-img-container {
        width: 200px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1.05rem;
    }

    .section {
        padding: 60px 0;
    }

    .b2b-form {
        padding: 24px;
    }

    .b2b-form input {
        padding: 14px;
        font-size: 1rem;
    }

    footer {
        padding: 60px 0 24px;
    }

    .footer-brand h2 {
        font-size: 1.6rem;
    }
}

/* ===================== */
/* RESPONSIVE — 480px    */
/* ===================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        height: 64px;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .hero {
        padding-top: 64px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-subtext {
        font-size: 1rem;
        margin: 20px 0 30px 0;
    }

    .glitch-img-container {
        width: 160px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .tag {
        font-size: 0.85rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-neon {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .split-container {
        gap: 30px;
    }

    .b2b-form {
        padding: 20px;
    }

    .b2b-form input {
        padding: 16px;
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .b2b-form .btn {
        padding: 16px;
        font-size: 1rem;
    }

    .sticker-callout {
        font-size: 1rem;
        padding: 8px 16px;
        right: 5px;
        bottom: -8px;
    }

    .footer-content {
        padding-bottom: 30px;
    }

    .footer-brand h2 {
        font-size: 1.4rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* Glitch-Effect anpassen für kleine Screens */
    .glitch::before, .glitch::after {
        display: none;
    }
}

/* Hero Brand Header (Side by Side) */
.hero-brand-header {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
}

/* Logo Glitch matching the text glitch */
.glitch-img-container {
    position: relative;
    width: 380px;
    flex-shrink: 0;
}
.glitch-img-container img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.4));
}
.glitch-layer {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.layer-1 {
    left: 4px;
    filter: drop-shadow(-4px 0 0 red);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
.layer-2 {
    left: -4px;
    filter: drop-shadow(-4px 0 0 blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.b2b-form {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-top: 30px;
}

.b2b-form h3 {
    margin-bottom: 20px;
    color: var(--accent-neon);
}

.b2b-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
}

.b2b-form input:focus {
    outline: none;
    border-color: var(--accent-neon);
}

.b2b-form .btn {
    width: 100%;
}
