:root {
    --bg: #0d1117;
    --text: #c9d1d9;
    --accent: #f0883e;
    --accent-glow: rgba(240, 136, 62, 0.2);
    --card-bg: rgba(22, 27, 34, 0.7);
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.glow-bg {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(13,17,23,0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.1;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(90deg, #f0883e, #ff7b72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: #8b949e;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(240, 136, 62, 0.1);
    border: 1px solid rgba(240, 136, 62, 0.3);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* Terminal */
.terminal {
    background: #010409;
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: left;
}
.terminal-header {
    background: #161b22;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #30363d;
    display: flex;
    gap: 8px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.25rem;
    color: #58a6ff;
}
.prompt { color: var(--accent); }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.card {
    background: var(--card-bg);
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}
.card h3 {
    color: #ffffff;
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn.primary {
    background: var(--accent);
    color: #0d1117;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn.primary:hover {
    background: #ff7b72;
    box-shadow: 0 0 30px rgba(255, 123, 114, 0.4);
}
