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

:root {
    --bg-dark:    #2b3540;
    --bg-darker:  #1a242e;
    --red:        #e8394a;
    --red-dark:   #c4293a;
    --cyan:       #4dcfe8;
    --cyan-dark:  #2ab3cc;
    --white:      #f0f0f0;
    --black:      #0d0d0d;
    --card-bg:    #212d38;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    font-family: 'Open Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(26, 36, 46, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 2px solid var(--red);
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--white);
}
.nav-logo span { color: var(--cyan); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(77,207,232,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(232,57,74,0.10) 0%, transparent 60%),
                var(--bg-dark);
}

/* Splatter blobs */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(232,57,74,0.18) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(77,207,232,0.18) 0%, transparent 30%),
        radial-gradient(circle at 75% 15%, rgba(232,57,74,0.12) 0%, transparent 20%),
        radial-gradient(circle at 25% 85%, rgba(77,207,232,0.12) 0%, transparent 20%);
    pointer-events: none;
}

.hero-logo {
    width: min(440px, 90vw);
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(77,207,232,0.25), 0 0 30px rgba(232,57,74,0.20);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-sub {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    transition: transform 0.15s, box-shadow 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn:hover { transform: translateY(-3px); }

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,57,74,0.45);
}
.btn-red:hover { background: var(--red-dark); box-shadow: 0 6px 28px rgba(232,57,74,0.6); }

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    box-shadow: 0 4px 20px rgba(77,207,232,0.2);
}
.btn-outline:hover { background: rgba(77,207,232,0.1); box-shadow: 0 6px 28px rgba(77,207,232,0.4); }

/* ── SECTION SHARED ── */
section { padding: 6rem 2rem; }

.section-label {
    font-family: 'Permanent Marker', cursive;
    font-size: 0.95rem;
    color: var(--cyan);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.accent-red  { color: var(--red); }
.accent-cyan { color: var(--cyan); }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* ── ABOUT ── */
.about {
    background: var(--bg-darker);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(232,57,74,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-photo {
    position: relative;
}
.about-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 8px 8px 0 var(--red), 16px 16px 0 var(--cyan);
    display: block;
}
.photo-badge {
    position: absolute;
    bottom: -18px;
    right: -10px;
    background: var(--red);
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: white;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 0 var(--black);
}

.about-text p {
    color: #a8b8c4;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.about-text .btn {
    margin-top: 1rem;
}

/* ── PILLARS ── */
#what-we-do {
    background: var(--bg-dark);
}

.pillars {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pillars-header { margin-bottom: 3rem; }

.pillars-header .divider {
    margin: 0 auto 1rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    border-top: 4px solid var(--red);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.pillar-card:nth-child(even) { border-top-color: var(--cyan); }
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(232,57,74,0.08) 0%, transparent 70%);
}
.pillar-card:nth-child(even)::before {
    background: radial-gradient(circle, rgba(77,207,232,0.08) 0%, transparent 70%);
}

.pillar-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
}
.pillar-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.pillar-card p {
    color: #7a90a0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── JOIN CTA ── */
.join {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}
.join::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 30%, rgba(232,57,74,0.12) 0%, transparent 35%),
        radial-gradient(circle at 90% 70%, rgba(77,207,232,0.12) 0%, transparent 35%);
    pointer-events: none;
}
.join-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.join-inner p {
    color: #a8b8c4;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.join-inner .divider {
    margin: 0 auto 1.5rem;
}

/* ── STATS BAR ── */
.stats {
    background: linear-gradient(90deg, var(--red-dark), #9b2030 50%, var(--cyan-dark));
    padding: 2.5rem 2rem;
}
.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}
.stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
    display: block;
    color: var(--white);
}
.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* ── FOOTER ── */
footer {
    background: #111b23;
    border-top: 2px solid var(--red);
    padding: 2.5rem 2rem;
    text-align: center;
}
.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--cyan); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 1.5rem;
}
.footer-links a {
    color: #6a8090;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
footer p {
    color: #3d5060;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links { gap: 1.2rem; }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-photo img {
        box-shadow: 5px 5px 0 var(--red), 10px 10px 0 var(--cyan);
    }
}
@media (max-width: 500px) {
    .nav-links { display: none; }
}
