/* Nozzle Brand Identity
   Deep Graphite (Bg): #0F172A
   Slate Core (Secondary): #394857
   Electric Flow (Primary): #0B85FF
   Ignition Orange (Accent): #FF7B00
   Plasma Yellow (Highlight): #FFB03A
   Deep Metal (Neutral): #2D3A46
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --slate-core: #394857;
    --electric-flow: #0B85FF;
    --ignition-orange: #FF7B00;
    --plasma-yellow: #FFB03A;
    --deep-metal: #2D3A46;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --border-subtle: #334155;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--electric-flow);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--ignition-orange);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
}

code, pre {
    font-family: var(--font-code);
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--electric-flow);
    color: white;
    box-shadow: 0 4px 14px rgba(11, 133, 255, 0.3);
}

.btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 133, 255, 0.4);
    color: white;
}

.btn-accent {
    background: transparent;
    border: 2px solid var(--ignition-orange);
    color: var(--ignition-orange);
}

.btn-accent:hover {
    background: var(--ignition-orange);
    color: white;
    transform: translateY(-2px);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
}

/* Header */
header {
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

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

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(11, 133, 255, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
}

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

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 123, 0, 0.1);
    color: var(--ignition-orange);
    border: 1px solid rgba(255, 123, 0, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-code);
}

.hero h1 span {
    color: var(--electric-flow);
    background: linear-gradient(90deg, var(--electric-flow), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.icon {
    width: 48px;
    height: 48px;
    background: rgba(57, 72, 87, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--electric-flow);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
}

/* Code Preview */
.code-section {
    padding: 100px 0;
}

.terminal-window {
    background: #0d1117;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #30363d;
    overflow: hidden;
    font-family: var(--font-code);
}

.terminal-header {
    background: #161b22;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #30363d;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-body {
    padding: 1.5rem;
    color: #c9d1d9;
    font-size: 0.9rem;
    line-height: 1.5;
}

.prompt { color: var(--ignition-orange); margin-right: 0.5rem; }
.cmd { color: var(--electric-flow); }
.success { color: #27c93f; }

/* CTA */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(57, 72, 87, 0.3) 0%, rgba(15, 23, 42, 0) 70%);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
    text-align: center;
}
