
:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-subtle: #f2f5f4;
    --navy: #1a1a1a;
    --red: #d42b2b;
    --red-light: #e03535;
    --red-dark: #b82424;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
    --green: #194A37;
    --green-light: #38a178;
    --grey: #d6ebcc;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
*:focus {
    outline: none;
}


/* ----------------------------------------------------------------*/
/* ── ICONS ── */
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/materialsymbolsoutlined[fill,grad,opsz,wght].woff2') format('woff2');
}


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: var(--green);
}

.material-symbols-outlined.white {
    color: var(--white);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--grey);
    border: 1px solid var(--green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------------*/
/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 4px 12px rgba(212,43,43,0.2);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212,43,43,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-dark);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background: var(--bg-subtle);
}

.btn-primary svg, .btn-secondary svg {
    width: 16px;
    height: 16px;
}

/* ----------------------------------------------------------------*/
/* ── SHARED LAYOUT ── */
.section {
    padding: 6rem 5%;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.section-subtle {
    background: var(--bg-subtle);
}
.section-centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.9rem;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}


.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-sub {
    max-width: 600px;
    margin: 0 auto;
}
/* ----------------------------------------------------------------*/
/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
    background: var(--white);
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(212,43,43,0.06) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,43,43,0.04) 0%, transparent 55%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero-content {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-symbol {
    margin-bottom: 1.75rem;
    animation: fadeUp 0.5s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,43,43,0.07);
    border: 1px solid rgba(212,43,43,0.2);
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s 0.05s ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,43,43,0.07);
    border: 1px solid rgba(212,43,43,0.18);
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeUp 0.5s ease both;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
    letter-spacing: -0.03em;
}

    .hero h1 em {
        font-style: normal;
        color: var(--red);
    }

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.6s 0.3s ease both;
}

/* Audience pills */
.hero-audiences {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    width: 100%;
    animation: fadeUp 0.6s 0.4s ease both;
}

.audience-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.audience-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.6;
}


.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
    justify-content: center;
    width: 100%;
}

.stat-item {
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ----------------------------------------------------------------*/
/* ── CTA ── */
.cta-section {
    padding: 7rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,43,43,0.12) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .section-label {
    color: rgba(212,43,43,0.8);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: var(--red);
    box-shadow: 0 4px 20px rgba(212,43,43,0.35);
}

    .cta-section .btn-primary:hover {
        background: var(--red-light);
    }

.cta-section .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

    .cta-section .btn-secondary:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.35);
    }

.cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

    .cta-note span {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        margin: 0 0.75rem;
    }

        .cta-note span::before {
            content: '✓';
            color: var(--red-light);
            font-weight: 700;
        }
/* ----------------------------------------------------------------*/
/* ── FOOTER ── */
footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 2.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

    footer p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.3);
    }

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

    .footer-links a {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.3);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: rgba(255,255,255,0.7);
        }

/* ----------------------------------------------------------------*/
/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

