/* CSS Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Outfit', sans-serif;
    background: #0f1015;
    color: #edf2f4;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* Variables */
:root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --accent: #55efc4;
    --bg: #0f1015;
    --card: rgba(255,255,255,0.05);
}

/* Background */
.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
}
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.15) 0px,
        rgba(0,0,0,0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1000;
}

/* Typography */
.nerd-font {
    font-family: 'Fira Code', monospace;
}
.code-comment {
    font-family: 'Fira Code', monospace;
    opacity: 0.6;
    font-size: 0.85em;
    color: #b2bec3;
}
.prompt {
    color: var(--accent);
    margin-right: 8px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    font-family: 'Fira Code', monospace;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
}
.logo img { height: 28px; }
nav {
    display: flex;
    gap: 25px;
}
nav a {
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    color: #dfe6e9;
}
nav a:hover { opacity: 1; color: var(--accent); }

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
}
.pill {
    background: rgba(85, 239, 196, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 4px; /* Square edges for term feel */
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    border: 1px solid rgba(85, 239, 196, 0.3);
    display: inline-block;
    margin-bottom: 25px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    font-weight: 600;
}
/* No gradient text for terminal feel, strict white/accent */

p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #b2bec3;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    font-size: 0.9rem;
}
.btn.primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
}
.btn.primary:hover {
    background: #5a4bcf;
    transform: translateY(-2px);
}
.btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #dfe6e9;
}
.btn.secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tech-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #636e72;
    opacity: 0.8;
}

/* Features */
.features {
    padding: 80px 0;
}
.features h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.card {
    background: var(--card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.icon {
    font-size: 2rem;
    margin-bottom: 15px;
}
.card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
}
/* Use code-comment class for p */

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.85rem;
    color: #636e72;
}
footer a { margin-left: 20px; color: #b2bec3; }
footer a:hover { color: var(--accent); }

/* Visual Dummy */
.app-window {
    width: 600px;
    height: 350px;
    background: #2d3436;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #444;
}
.window-header {
    background: #1e272e;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}
.controls span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ff7675;
    margin-right: 6px;
    display: inline-block;
}
.controls span:nth-child(2) { background: #ffeaa7; }
.controls span:nth-child(3) { background: #55efc4; }
.address-bar {
    margin-left: 15px;
    color: #636e72;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
}
.window-content {
    padding: 20px;
    height: 100%;
    color: #fab1a0;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
}
.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background: var(--accent);
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero { padding: 60px 0; }
    .app-window { width: 100%; height: 250px; }
}
