/* sites/shoppi.app/page/css/developers.css */
:root {
    --dev-bg: #020617;
    --dev-surface: #0f172a;
    --dev-card: #1e293b;
    --dev-text: #f1f5f9;
    --dev-text-muted: #94a3b8;
    --dev-border: rgba(56, 189, 248, 0.1);
    --dev-accent: #38bdf8;
    /* Sky */
    --dev-accent-hover: #0ea5e9;
    --dev-code-bg: #000000;
    --dev-radius: 12px;
    --dev-glass: rgba(15, 23, 42, 0.9);
}

body.dev-brand {
    background-color: var(--dev-bg);
    color: var(--dev-text);
    font-family: 'JetBrains Mono', 'Inter', monospace;
    margin: 0;
    line-height: 1.6;
}

.dev-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Nav ─── */
.dev-header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dev-glass);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--dev-border);
}

.dev-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.dev-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.dev-btn {
    background: var(--dev-accent);
    color: var(--dev-bg);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.dev-btn:hover {
    background: var(--dev-accent-hover);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* ─── Hero ─── */
.dev-hero {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
}

.dev-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.dev-hero p {
    font-size: 1.25rem;
    color: var(--dev-text-muted);
    max-width: 650px;
    margin-bottom: 40px;
}

/* ─── Code Block ─── */
.dev-code-window {
    background: var(--dev-code-bg);
    border: 1px solid var(--dev-border);
    border-radius: 12px;
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #94a3b8;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.dev-code-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--dev-border);
}

.dev-code-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    background: #475569;
}

/* ─── Grid ─── */
.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.dev-card {
    background: var(--dev-card);
    border: 1px solid var(--dev-border);
    padding: 32px;
    border-radius: var(--dev-radius);
    transition: transform 0.2s;
}

.dev-card:hover {
    transform: translateY(-4px);
    border-color: var(--dev-accent);
}

.dev-card h3 {
    color: var(--dev-accent);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .dev-hero h1 {
        font-size: 2.5rem;
    }
}