/* ═══════════════════════════════════════════════════════════════════════════
   The WoW Review — Global Design System (Phase 1)
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
    /* Colors */
    --wow-bg: #FFFFFF;
    --wow-text: #050505;
    --wow-text-muted: #666666;
    --wow-accent: #7C3AED; /* Electric Violet */
    --wow-border: #111111;
    --wow-glass: rgba(255, 255, 255, 0.7);
    
    /* Shape */
    --wow-radius-pill: 32px;
    --wow-radius-soft: 16px;
    
    /* Shadows */
    --wow-shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --wow-shadow-md: 0 12px 24px rgba(0,0,0,0.08);
}

/* ── Typography ────────────────────────────────────────────────────────────── */
body {
    font-family: 'Inter', sans-serif;
    color: var(--wow-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.5em;
}

/* ── Global "Pill" Elements ────────────────────────────────────────────────── */
.wow-pill-container {
    background: var(--wow-bg);
    border: 1.5px solid var(--wow-border);
    border-radius: var(--wow-radius-pill);
    padding: 30px;
}

.wow-glass {
    background: var(--wow-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.wow-button {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--wow-border);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--wow-border);
}

.wow-button:hover {
    background: transparent;
    color: var(--wow-border);
    transform: translateY(-2px);
}

.wow-button--outline {
    background: transparent;
    color: var(--wow-border);
}

.wow-button--outline:hover {
    background: var(--wow-border);
    color: #fff;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.wow-section-padding {
    padding: 80px 0;
}

.content-max-width {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
