:root {
    --bg: #050505;
    --text: #FFFFFF;
    --text-muted: #888888;
    --accent: #C8FF00;
    --accent-hover: #b3e600;
    --card-bg: #111111;
    --border: #222222;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Onest', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo, .logo-small {
    font-family: 'Unbounded', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header */
.header {
    padding: 32px 0;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.logo span {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 20px 40px;
    border-radius: 100px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 255, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
    background: rgba(200, 255, 0, 0.1);
}

.hero-hint {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Value Prop */
.value-prop {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 64px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Bottom CTA */
.bottom-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
}

.bottom-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 24px;
}

.bottom-cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.logo-small {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.logo-small span {
    color: var(--accent);
}

.footer p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 40px 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }
    
    .value-prop, .bottom-cta {
        padding: 80px 0;
    }

    .hero-glow {
        display: none;
    }
}
