:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --text-muted: #888888;
    --accent-gold: #d4af37;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Manrope', sans-serif;
    --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    pointer-events: none;
    z-index: 999;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    mix-blend-mode: difference;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.nav-link:hover {
    opacity: 1;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: revealUp 1.2s var(--easing) forwards;
}

.reveal-text:nth-child(1) {
    animation-delay: 0.2s;
}

.reveal-text:nth-child(2) {
    animation-delay: 0.4s;
}

.reveal-text:nth-child(3) {
    animation-delay: 0.6s;
}

.italic {
    font-style: italic;
    color: var(--accent-gold);
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: auto;
    margin-bottom: 4rem;
}

.hero-desc {
    max-width: 400px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-link {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arrow {
    transition: transform 0.3s var(--easing);
}

.cta-link:hover .arrow {
    transform: translateX(10px);
}

.reveal-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

/* Statement */
.statement {
    padding: 15vh 0;
    text-align: center;
}

.big-statement {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight {
    color: var(--accent-gold);
    font-style: italic;
}

/* Features */
.features {
    padding: 10vh 0;
}

.feature-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 0.5fr 1.5fr 2fr;
    align-items: baseline;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.feature-number {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--accent-gold);
    opacity: 0.8;
}

.feature-title {
    font-size: 2.5rem;
}

.feature-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* CTA Section */
.cta-section {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 3rem;
}

.app-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Animations */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 15vw;
    }

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

    .feature-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-number {
        margin-bottom: 0.5rem;
    }
}