:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #3b82f6;
    /* Blue tech */
    --border-light: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(20, 20, 20, 0.6);
    --font-stack: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    overflow-x: hidden;
}

/* Grid Background */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    /* Wider container for premium feel */
    margin: 0 auto;
    padding: 0 40px;
}

/* Updated Header for Huge Logo */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 200px;
    /* AGGRESSIVE HEIGHT */
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    /* No Zeros padding */
    flex-grow: 1;
}

.main-logo {
    height: 180px;
    /* Almost full height of 200px header */
    width: auto;
    max-width: none;
    /* UNLIMITED WIDTH */
    object-fit: contain;
    object-position: left;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
    transform: scale(1.2);
    /* Force it even bigger visually if whitespace exists */
    transform-origin: left center;
}

.nav-desktop {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--accent);
}

.btn-cta {
    border: 1px solid #fff;
    padding: 12px 24px;
    border-radius: 4px;
    /* Sharper corners for tech feel */
    background: transparent;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #fff;
    color: #000;
}

/* Hero Premium */
/* Hero Premium */
.hero-premium {
    padding-top: 280px;
    /* Increased to account for 200px header */
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('background.png') no-repeat center center/cover;
    position: relative;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.7);
    /* Overlay to ensure text readability */
    z-index: 0;
}

.container,
.ticker-wrap {
    position: relative;
    z-index: 1;
    /* Bring text above overlay */
}

.eyebrow {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-text h1 {
    font-size: 6rem;
    /* Huge Typography */
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.highlight {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.hero-sub {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.5;
}

/* Ticker Marquee */
.ticker-wrap {
    width: 100%;
    margin-top: 100px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    padding: 20px 0;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker__item {
    font-size: 5rem;
    /* Bigger */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    /* CLEARLY VISIBLE NOW */
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    /* Glowing text */
    padding: 0 60px;
    text-transform: uppercase;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Bento Grid */
.bento-grid-section {
    padding: 120px 0;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
    display: inline-block;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: minmax(300px, auto);
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
    cursor: default;
}

.bento-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.8);
}

.large {
    grid-column: span 2;
}

.wide {
    grid-column: span 3;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Watermark in bento */
.watermark-container {
    position: relative;
    overflow: hidden;
}

.watermark-container::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: url('logo.png') no-repeat center center/contain;
    opacity: 0.1;
    pointer-events: none;
}

/* Contact Premium */
.contact-premium {
    padding: 120px 0;
    border-top: 1px solid var(--border-light);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text h2 {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.contact-data {
    margin-top: 40px;
    font-size: 1.2rem;
    line-height: 2;
}

.cta-main {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.highlight-price {
    color: #4ade80;
    /* Green for "good price" */
    font-weight: 800;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}

.minimal-form input,
.minimal-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

/* Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .large,
    .wide {
        grid-column: auto;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header {
        height: 90px;
    }
}