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

:root {
    --bg: #000000;
    --cream: #111111;
    --cream-dark: #0a0a0a;
    --text: #ffffff;
    --text-dim: #888;
    --accent: #a855f7;
    --white: #ffffff;
    --card-bg: #161616;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: 50px;
    border-radius: 8px;
}

.logo span {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

/* Navigation Pill */
.nav-pill {
    display: flex;
    gap: 0.25rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 0.35rem;
    border-radius: 50px;
}

.nav-pill a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    transition: all 0.2s;
}

.nav-pill a:hover {
    color: var(--text);
    background: #252525;
}

.header-btn {
    background: var(--white);
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.7rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.header-btn:hover {
    opacity: 0.9;
}

/* Main Container */
.main-container {
    margin: 5rem 1.5rem 2rem;
    background: var(--cream);
    border: 1px solid #1f1f1f;
    border-radius: 32px;
    overflow: hidden;
}

/* Hero */
.hero {
    min-height: calc(100vh - 10rem);
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.hero-desc {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 400px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0;
    border-bottom: 1px solid var(--text-dim);
    padding-bottom: 0.25rem;
    transition: all 0.2s;
}

.cta-btn:hover {
    gap: 1rem;
    border-color: var(--text);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--text);
    color: var(--bg);
    border-radius: 50%;
    font-size: 0.85rem;
}

/* Sections */
.section {
    padding: 5rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* Tools Section */
.tools-section {
    background: var(--card-bg);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 1.75rem;
    transition: transform 0.2s, border-color 0.2s;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: #3a3a3a;
}

.tool-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.tool-status.coming-soon {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.tool-status.available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.tool-card h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tool-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: #000;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}

.tool-btn:hover {
    opacity: 0.9;
}

.tool-btn.disabled {
    background: #333;
    color: #666;
    pointer-events: none;
}

.tool-btn svg {
    width: 14px;
    height: 14px;
}

/* About Section */
.about-section {
    background: var(--cream);
}

.about-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text);
}

.about-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #000;
    border-radius: 50%;
    transition: all 0.2s;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
    color: var(--white);
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    color: #555;
    font-size: 0.85rem;
}

.footer-divider {
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header-btn {
        display: none;
    }

    .nav-pill {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .main-container {
        margin: 7rem 1rem 1rem;
        border-radius: 24px;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .nav-pill a {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
}