:root {
    --bg: #050506;
    --surface: #0c0c0e;
    --surface-hover: #121215;
    --border: #1a1a1d;
    --text-primary: #ffffff;
    --text-secondary: #82828e;
    --accent: #e4e723;
    --accent-glow: rgba(228, 231, 35, 0.2);
    --radius: 8px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

.nav-links a:hover {
    color: white;
}

/* Hero */
.hero {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1000px) {
    .hero {
        grid-template-columns: 1.2fr 1fr;
    }
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

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

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

.mockup-container {
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
}

.mockup-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 2px);
    pointer-events: none;
    z-index: 5;
}

/* Steps */
.steps {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.step-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-item h3 span {
    color: var(--accent);
    font-size: 14px;
    opacity: 0.6;
    font-weight: 800;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Features (Bento) */
.features {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
}

.bento-item:hover {
    border-color: #333;
    background: var(--surface-hover);
}

.bento-1 {
    grid-column: span 12;
}

.bento-2 {
    grid-column: span 12;
}

.bento-3 {
    grid-column: span 12;
}

@media (min-width: 800px) {
    .bento-1 {
        grid-column: span 8;
    }

    .bento-2 {
        grid-column: span 4;
    }

    .bento-3 {
        grid-column: span 12;
    }
}

.bento-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.bento-3 {
    background: linear-gradient(135deg, #0c0c0e 0%, #1a1a1d 100%);
    position: relative;
    overflow: hidden;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background: var(--accent);
    color: black;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ffb83d;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: #333;
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}