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

:root {
    --bg: #0a0a0a;
    --blue: #3b82f6;
    --red: #ef4444;
    --green: #4ade80;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --text-tertiary: #666666;
    --border: #1a1a1a;
    --border-light: #222222;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    cursor: none;
    overflow-x: hidden;
    position: relative;
}

/* Custom scrollbar */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--bg);
}

body::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) var(--bg);
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2rem;
    margin: 0 auto;
    width: 76%;
    max-width: 1300px;
    position: relative;
}

.hero-lottie {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    filter: brightness(1.2) contrast(1.1);
}

dotlottie-wc {
    display: block;
    width: 100%;
    height: 100%;
}

#hero > nav,
#hero > .hero-content,
#hero > .hero-footer {
    position: relative;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.hero-label {
    font-size: 11px;
    color: var(--text-tertiary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-headline {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subline {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 450px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 0;
}

.scroll-indicator {
    font-size: 11px;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-meta {
    text-align: right;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.meta-muted {
    color: var(--text-tertiary);
}

/* Ticker Strip */
.ticker-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: var(--bg);
}

.ticker-strip {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 14px 0;
}

.ticker-content {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
    gap: 0;
    color: var(--text-tertiary);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.ticker-content span {
    padding: 0 1rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    margin: 0 auto;
    width: 76%;
    max-width: 1300px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.product-card {
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 16px;
    background: #0f0f0f;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card.card-live {
    background: #0a0f1a;
    border-color: rgba(59, 130, 246, 0.2);
}

.product-card:hover {
    border-color: var(--blue);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.pill-status {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.pill-status.live {
    background: #0d2015;
    color: var(--green);
    border: 0.5px solid rgba(74, 222, 128, 0.3);
}

.pill-status.wip {
    background: #1a1208;
    color: #fbbf24;
    border: 0.5px solid rgba(251, 191, 36, 0.3);
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
    font-weight: 400;
}

.card-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.3s;
}

.card-link:hover {
    transform: translateX(3px);
}

.card-number {
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    font-weight: 500;
}

.card-number-blue {
    color: rgba(59, 130, 246, 0.3);
}

/* Manifesto Section */
.manifesto {
    padding: 6rem 2rem;
    background: var(--bg);
    margin: 0 auto;
    width: 76%;
    max-width: 1300px;
}

.manifesto-content {
    margin-top: 1.5rem;
}

.manifesto-line {
    font-size: clamp(24px, 4.5vw, 38px);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    opacity: 0;
    color: var(--text-primary);
    white-space: nowrap;
}

.manifesto-line .strike {
    position: relative;
    display: inline-block;
    color: var(--red);
    text-decoration: line-through;
}

.manifesto-line .strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.8s ease;
}

.manifesto-line.animate .strike::after {
    width: 100%;
}

.manifesto-line.fix {
    color: var(--blue);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 6rem 2rem;
    margin: 0 auto;
    width: 76%;
    max-width: 1300px;
}

.stat-item {
    padding: 1rem 0;
    border-top: 0.5px solid var(--border-light);
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.stat-unit {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Collab Section */
.collab {
    padding: 4rem 3rem;
    text-align: center;
    border: 0.5px solid rgba(239, 68, 68, 0.2);
    margin: 4rem auto;
    width: 76%;
    max-width: 1300px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(239, 68, 68, 0.2); }
    50% { border-color: rgba(239, 68, 68, 0.4); }
}

.collab-label {
    font-size: 11px;
    color: var(--text-tertiary);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.collab-text {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.collab-btn {
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 14px;
    padding: 12px 32px;
    border-radius: 30px;
    background: transparent;
    cursor: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.collab-btn:hover {
    background: var(--red);
    color: var(--bg);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background: var(--bg);
    margin: 5% auto;
    padding: 3rem;
    border: 0.5px solid var(--border);
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: 300;
    cursor: none;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#contactForm input,
#contactForm textarea {
    background: transparent;
    border: 0.5px solid var(--border);
    color: var(--text-primary);
    padding: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.submit-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 0.5px solid var(--red);
    color: var(--red);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: none;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.submit-btn:hover {
    background: var(--red);
    color: var(--bg);
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
    border-top: 0.5px solid var(--border);
    margin: 0 auto;
    width: 76%;
    max-width: 1300px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-left img {
    height: 45px;
    width: auto;
}

.footer-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 13px;
}

.footer-right a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-right a:hover {
    color: var(--blue);
}

.footer-right span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Accent Colors */
.accent-blue {
    color: var(--blue);
}

.accent-red {
    color: var(--red);
}

.accent-green {
    color: var(--green);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-lottie {
        display: none;
    }

    #hero,
    .products,
    .manifesto,
    .stats,
    .collab,
    footer {
        width: 86%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #hero {
        min-height: 100vh;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    nav {
        gap: 1rem;
    }

    .logo img {
        height: 38px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero-headline {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 1.5rem;
    }

    .hero-subline {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-meta {
        text-align: left;
    }

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

    .ticker-content span {
        padding: 0 0.75rem;
    }

    .products,
    .manifesto {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-label {
        font-size: 10px;
        margin-bottom: 1.5rem;
    }

    .product-card {
        padding: 1.25rem;
        margin-bottom: 12px;
    }

    .card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .card-title {
        font-size: 18px;
    }

    .card-desc {
        font-size: 12px;
        max-width: 100%;
    }

    .card-number {
        align-self: flex-end;
    }

    .manifesto-line {
        font-size: clamp(18px, 5vw, 26px);
        margin-bottom: 0.5rem;
        white-space: nowrap;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 1rem;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-unit {
        font-size: 18px;
    }

    .stat-label {
        font-size: 12px;
    }

    .collab {
        padding: 3rem 1.5rem;
        margin: 3rem auto;
    }

    .collab-text {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 1.5rem;
    }

    .collab-btn {
        font-size: 13px;
        padding: 10px 24px;
    }

    footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem 1rem;
        align-items: center;
    }

    .footer-left img {
        height: 35px;
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;
        font-size: 12px;
    }

    .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10% auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    #contactForm input,
    #contactForm textarea {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    #hero,
    .products,
    .manifesto,
    .stats,
    .collab,
    footer {
        width: 90%;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 11px;
    }

    .hero-headline {
        font-size: clamp(28px, 9vw, 40px);
    }

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

    .manifesto-line {
        font-size: clamp(16px, 4.5vw, 22px);
        white-space: nowrap;
    }

    .stat-number {
        font-size: 36px;
    }

    .collab-text {
        font-size: clamp(18px, 6vw, 24px);
    }
}
