/* static/css/pages/static_page.css */

/* SCOPED RESET */
#static-wrapper {
    background-color: #050505;
    color: #e5e5e5;
    font-family: 'Inter', sans-serif; /* Force Inter */
    line-height: 1.6;
    padding-bottom: 100px;
}

#static-wrapper * {
    box-sizing: border-box;
}

/* LAYOUT */
#static-wrapper .sp-section {
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#static-wrapper .hero-align {
    padding-top: 180px; /* Account for navbar */
    text-align: center;
}

#static-wrapper .static-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

#static-wrapper .narrow {
    max-width: 700px; /* Editorial Width */
}

#static-wrapper .bg-dim {
    background-color: rgba(255,255,255,0.02);
}

/* TYPOGRAPHY */
#static-wrapper .sp-display {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

#static-wrapper .sp-accent {
    color: #00f0ff; /* Cyan */
}

#static-wrapper .sp-lead {
    font-size: 1.4rem;
    color: #888;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

#static-wrapper .sp-h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

#static-wrapper .text-center { text-align: center; }

/* PROSE (The Reading Experience) */
#static-wrapper .sp-prose p {
    font-size: 1.15rem; /* 18px approx */
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8; /* Airy */
}

#static-wrapper code {
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
    color: #fff;
}

/* CARDS */
#static-wrapper .sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

#static-wrapper .sp-card {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 8px;
    transition: 0.2s;
}

#static-wrapper .sp-card:hover {
    border-color: #555;
    transform: translateY(-5px);
}

#static-wrapper .sp-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}

#static-wrapper .sp-card h3 {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

#static-wrapper .sp-card p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* BUTTON */
#static-wrapper .sp-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 16px 40px;
    border-radius: 4px; /* Sharp modern look */
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
    margin-top: 30px;
}

#static-wrapper .sp-btn:hover {
    background: #00f0ff; /* Hover to Cyan */
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}