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

:root {
    --bg-base: #050b14;
    --bg-card: #0d1727;
    --bg-card-hover: #142036;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --accent-primary: #3b82f6;
    --accent-primary-hover: #2563eb;
    --accent-gold: #fbbf24;
    --accent-glow: rgba(59, 130, 246, 0.25);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);
    
    --font-family: 'Outfit', sans-serif;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}
.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.logo span {
    color: var(--accent-primary);
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: var(--text-main);
}
.btn-nav {
    background: var(--border-subtle);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-highlight);
    color: var(--text-main) !important;
}
.btn-nav:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.hero-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.hero h1 {
    font-size: 4.5rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}
.btn-primary {
    background: var(--accent-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px var(--accent-glow);
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--accent-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-highlight);
    display: inline-block;
    margin-left: 1rem;
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
}

/* Features / Maps Grid */
.section-padding {
    padding: 8rem 5%;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.map-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.map-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.map-card:hover::before {
    transform: scaleX(1);
}
.map-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.map-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.map-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Styles Grid (The 6 Actantes) */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.style-item {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: background 0.3s;
}
.style-item:hover {
    background: var(--bg-card-hover);
}
.style-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-right: 1.5rem;
    line-height: 1;
}
.style-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--accent-gold);
}
.style-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 5% 2rem;
    text-align: center;
    background: var(--bg-card);
}
footer .logo {
    margin-bottom: 1rem;
    display: inline-block;
}
footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; }
    .nav-links { display: none; }
    .btn-secondary { margin-left: 0; margin-top: 1rem; }
}
