@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --fauxy-bg: #0a0e17;
    --fauxy-surface: #111827;
    --fauxy-surface-hover: #1a2332;
    --fauxy-border: #1e293b;
    --fauxy-text: #e2e8f0;
    --fauxy-text-muted: #94a3b8;
    --fauxy-accent: #22d3ee;
    --fauxy-accent-glow: rgba(34, 211, 238, 0.15);
    --fauxy-green: #4ade80;
    --fauxy-amber: #fbbf24;
    --fauxy-red: #f87171;
    --fauxy-purple: #a78bfa;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body.fauxy-landing {
    background: var(--fauxy-bg) !important;
    color: var(--fauxy-text) !important;
    font-family: var(--font-display);
    overflow-x: hidden;
}

/* Navbar */
.fauxy-nav {
    padding: 1.25rem 0;
    position: relative;
    z-index: 100;
}
.fauxy-logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--fauxy-accent) !important;
    text-decoration: none !important;
    letter-spacing: -0.5px;
}
.fauxy-logo .tld { color: var(--fauxy-text-muted) !important; }
.fauxy-nav-link {
    color: var(--fauxy-text-muted) !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.fauxy-nav-link:hover { color: var(--fauxy-text) !important; }

/* CTA Buttons */
.btn-fauxy {
    background: var(--fauxy-accent) !important;
    color: var(--fauxy-bg) !important;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border: none !important;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 0 20px var(--fauxy-accent-glow);
    display: inline-block;
}
.btn-fauxy:hover {
    background: #06b6d4 !important;
    color: var(--fauxy-bg) !important;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}
.btn-fauxy-outline {
    background: transparent !important;
    color: var(--fauxy-text) !important;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.85rem 2.5rem;
    border: 1px solid var(--fauxy-border) !important;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-block;
}
.btn-fauxy-outline:hover {
    border-color: var(--fauxy-text-muted) !important;
    color: var(--fauxy-text) !important;
    background: var(--fauxy-surface) !important;
}

/* Hero */
.fauxy-hero {
    padding: 6rem 0 4rem;
    position: relative;
}
.fauxy-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--fauxy-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}
.fauxy-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--fauxy-text);
    position: relative;
}
.fauxy-hero h1 .gradient {
    background: linear-gradient(135deg, var(--fauxy-accent), var(--fauxy-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fauxy-hero .lead {
    color: var(--fauxy-text-muted) !important;
    font-size: 1.25rem;
    max-width: 540px;
    line-height: 1.7;
}

/* Terminal */
.fauxy-terminal {
    background: var(--fauxy-surface);
    border: 1px solid var(--fauxy-border);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
.fauxy-terminal-bar {
    background: #0f172a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--fauxy-border);
}
.fauxy-terminal-bar .label {
    color: var(--fauxy-text-muted);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}
.fauxy-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.fauxy-terminal-body {
    padding: 1.5rem;
    line-height: 1.9;
    color: var(--fauxy-text);
}
.fauxy-terminal-body .prompt { color: var(--fauxy-green); }
.fauxy-terminal-body .cmd { color: var(--fauxy-text); }
.fauxy-terminal-body .url { color: var(--fauxy-accent); }
.fauxy-terminal-body .comment { color: var(--fauxy-text-muted); }
.fauxy-terminal-body .status { color: var(--fauxy-green); font-weight: 600; }
.fauxy-terminal-body .json-key { color: var(--fauxy-purple); }
.fauxy-terminal-body .json-val { color: var(--fauxy-green); }
.fauxy-terminal-body .json-str { color: var(--fauxy-amber); }
.fauxy-terminal-body .json-brace { color: var(--fauxy-text-muted); }

/* Section styling */
.fauxy-section { padding: 5rem 0; }
.fauxy-section-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fauxy-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.fauxy-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--fauxy-text);
    margin-bottom: 1rem;
}

/* Feature cards */
.fauxy-feature-card {
    background: var(--fauxy-surface);
    border: 1px solid var(--fauxy-border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.25s;
}
.fauxy-feature-card:hover {
    border-color: var(--fauxy-accent);
    background: var(--fauxy-surface-hover);
    transform: translateY(-2px);
}
.fauxy-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.fauxy-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fauxy-text);
    margin-bottom: 0.75rem;
}
.fauxy-feature-card p {
    color: var(--fauxy-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps */
.fauxy-step-number {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--fauxy-accent);
    background: var(--fauxy-accent-glow);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.fauxy-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fauxy-text);
    margin-bottom: 0.5rem;
}
.fauxy-step p {
    color: var(--fauxy-text-muted);
    line-height: 1.6;
}

/* CTA box */
.fauxy-cta-box {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(167, 139, 250, 0.08));
    border: 1px solid var(--fauxy-border);
    border-radius: 16px;
    padding: 4rem 2rem;
}
.fauxy-cta-box p {
    color: var(--fauxy-text-muted);
}

/* Pricing accent border */
.fauxy-feature-card.border-accent {
    border-color: var(--fauxy-accent) !important;
    box-shadow: 0 0 20px var(--fauxy-accent-glow);
}

/* Footer */
.fauxy-footer {
    border-top: 1px solid var(--fauxy-border);
    padding: 2rem 0;
    color: var(--fauxy-text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}
.fade-in-up-1 { animation-delay: 0.1s; }
.fade-in-up-2 { animation-delay: 0.2s; }
.fade-in-up-3 { animation-delay: 0.3s; }
.fade-in-up-4 { animation-delay: 0.4s; }
