:root {
    --bg: #050505;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --card-bg: #111111;
    --border: #27272a;
    --nav-height: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--text);
    color: var(--bg);
}

.btn.primary:hover {
    background-color: #e5e5e5;
    transform: translateY(-1px);
}

.btn .icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.primary-download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.version {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.secondary-downloads {
    display: flex;
    gap: 1rem;
}

.btn.small {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.btn.small:hover {
    border-color: var(--text);
    color: var(--text);
}

/* Terminal Visual */
.terminal-window {
    background-color: #0d0d0d;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-header {
    background-color: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #eab308; }
.dot.green { background-color: #22c55e; }

.terminal-header .title {
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

.terminal-body {
    padding: 24px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.line { margin-bottom: 4px; }
.prompt { color: var(--accent); margin-right: 8px; }
.text-red { color: #ef4444; }
.text-yellow { color: #eab308; }
.text-green { color: #22c55e; }

/* Features Section */
section {
    padding: 10rem 0; /* Increased from 6rem */
}

.section-header {
    text-align: center;
    margin-bottom: 6rem; /* Increased from 4rem */
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem; /* Increased from 2rem */
}

.card {
    background-color: var(--card-bg);
    padding: 3.5rem; /* Increased from 2.5rem */
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

/* Pricing Section */
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem; /* Increased from 4rem */
    align-items: center;
    background-color: var(--card-bg);
    padding: 6rem; /* Increased from 4rem */
    border-radius: 24px;
    border: 1px solid var(--border);
    margin-top: 4rem;
}

.pricing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-content .small {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.pricing-card {
    background-color: var(--bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--accent);
    position: relative;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0 2rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.pricing-card li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 12px;
    font-weight: bold;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .download-section {
        align-items: center;
    }

    .primary-download {
        align-items: center;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }

    .pricing-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
}
