/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0a;
    --bg-2: #111111;
    --surface: #161616;
    --surface-2: #1c1c1c;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 193, 7, 0.2);
    --text: #f5f5f5;
    --text-muted: #8a8a8a;

    --yellow: #ffc107;
    --yellow-soft: #ffd84d;
    --yellow-deep: #d99e00;
    --gold: #f5b91f;

    --success: #22c55e;
    --radius: 14px;
    --radius-lg: 24px;

    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #ffd84d 50%, #f5b91f 100%);
    --gradient-sun: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.25) 0%, transparent 60%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ BACKGROUND EFFECTS ============ */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 193, 7, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 193, 7, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    z-index: -2;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    animation: float 22s ease-in-out infinite;
}

.glow-1 {
    background: var(--yellow);
    opacity: 0.14;
    top: -250px;
    left: -200px;
}

.glow-2 {
    background: var(--yellow-deep);
    opacity: 0.10;
    bottom: -250px;
    right: -200px;
    animation-delay: -11s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, 60px) scale(1.2); }
}

/* Rayons de soleil subtils derrière le hero */
.bg-rays {
    position: absolute;
    inset: 0;
    background:
        conic-gradient(
            from 90deg at 50% 100%,
            transparent 0deg,
            rgba(255, 193, 7, 0.06) 15deg,
            transparent 30deg,
            rgba(255, 193, 7, 0.08) 45deg,
            transparent 60deg,
            rgba(255, 193, 7, 0.05) 75deg,
            transparent 90deg,
            rgba(255, 193, 7, 0.07) 105deg,
            transparent 120deg,
            rgba(255, 193, 7, 0.04) 135deg,
            transparent 150deg,
            rgba(255, 193, 7, 0.06) 165deg,
            transparent 180deg
        );
    mask-image: linear-gradient(to top, black, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.script-accent {
    font-family: 'Caveat', 'Inter', cursive;
    font-weight: 700;
    color: var(--yellow);
    font-size: 0.7em;
    transform: rotate(-4deg);
    display: inline-block;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(10, 10, 10, 0.6);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.navbar.scrolled .nav-logo img { height: 38px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover { color: var(--yellow); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.25s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #111;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid var(--yellow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::after { left: 100%; }

.btn-secondary {
    background: transparent;
    color: var(--yellow);
    border: 1.5px solid var(--yellow);
}

.btn-secondary:hover {
    background: rgba(255, 193, 7, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.15);
}

.btn-ghost {
    background: var(--surface-2);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--surface);
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn-lg { padding: 18px 36px; font-size: 15px; }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    animation: heroFade 1.1s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-logo {
    max-width: 620px;
    width: 92%;
    margin: 0 auto 36px;
    filter: drop-shadow(0 20px 60px rgba(255, 193, 7, 0.35))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

.hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-tagline .gradient-text {
    font-style: normal;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 22px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    position: relative;
}

.hero-meta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--yellow) 0%, transparent 50%, var(--yellow-deep) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.meta-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.meta-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.meta-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

/* ============ SECTIONS ============ */
.section {
    padding: 120px 32px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--yellow);
}

.section-title {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
}

/* ============ FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 193, 7, 0.08);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { width: 100%; }

.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #0a0a0a;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.25);
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ============ STATS ============ */
.stats-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--yellow);
    filter: blur(160px);
    opacity: 0.12;
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.stats-content { position: relative; z-index: 1; }

.stats-content .section-title { font-size: clamp(36px, 5vw, 56px); }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.stat-box:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--yellow);
    text-shadow: 0 0 24px rgba(255, 193, 7, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#stat-status {
    font-size: 0;
    height: 52px;
    line-height: 1;
}

.status-dot {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--success);
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============ FOUNDERS ============ */
.script-love {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.1em;
    color: var(--yellow);
    display: inline-block;
    transform: rotate(-3deg);
    text-shadow: 0 4px 24px rgba(255, 193, 7, 0.4);
    padding: 0 6px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.founder-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 193, 7, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.founder-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(255, 193, 7, 0.15);
}

.founder-card:hover::before { opacity: 1; }

.founder-card > * { position: relative; z-index: 1; }

.founder-photo-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    position: relative;
}

.founder-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--yellow) 0deg,
        var(--yellow-deep) 90deg,
        var(--yellow-soft) 180deg,
        var(--yellow-deep) 270deg,
        var(--yellow) 360deg
    );
    animation: ringSpin 8s linear infinite;
    filter: blur(0.5px);
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 4px solid var(--surface);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.founder-card:hover .founder-photo {
    transform: scale(1.04);
}

.founder-card h3 {
    font-size: 34px;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.founder-role {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--yellow);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.founder-heart {
    position: absolute;
    bottom: 18px;
    right: 22px;
    color: var(--yellow);
    font-size: 22px;
    opacity: 0.3;
    animation: heartbeat 2.4s ease-in-out infinite;
    z-index: 2;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    15% { transform: scale(1.25); opacity: 0.7; }
    30% { transform: scale(1); opacity: 0.4; }
    45% { transform: scale(1.15); opacity: 0.6; }
}

/* ============ CTA ============ */
.cta-box {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.18), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(245, 185, 31, 0.14), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 216, 77, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 540px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bouton Discord spécifique */
.btn-discord {
    background: #5865F2;
    color: #fff;
    border: 1px solid #5865F2;
}

.btn-discord:hover {
    background: #4752c4;
    border-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.35);
}

/* ============ FOOTER ============ */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 32px 24px;
    background: var(--bg-2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img {
    height: 56px;
    width: auto;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.25));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 280px;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SELECTION ============ */
::selection {
    background: var(--yellow);
    color: #0a0a0a;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: var(--surface-2);
    border-radius: 10px;
    border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--yellow-deep); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .stats-container { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-meta { gap: 20px; padding: 18px 24px; }
    .meta-value { font-size: 28px; }
    .hero-logo { max-width: 440px; }
}

@media (max-width: 640px) {
    .founders-grid { grid-template-columns: 1fr; gap: 20px; max-width: 360px; }
    .founder-photo-wrap { width: 140px; height: 140px; }
    .founder-card { padding: 36px 24px 28px; }
    .founder-card h3 { font-size: 30px; }
}

@media (max-width: 560px) {
    .section { padding: 80px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-meta { flex-wrap: wrap; justify-content: center; }
    .meta-divider { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 40px; }
    .footer-container { grid-template-columns: 1fr; }
    .cta-box { padding: 60px 24px; }
    .btn { padding: 12px 22px; font-size: 12px; }
    .hero-logo { max-width: 320px; }
    .nav-logo img { height: 38px; }
}
