/* ============================================================
   FarmBrawl — TOP SECTION VISUAL OVERHAUL v3.0
   Nav · Hero · AI Banner · Pillar Cards
   Premium Game-Studio Aesthetic
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES (Design Tokens) ─── */
:root {
    --overhaul-emerald: #10b981;
    --overhaul-emerald-glow: rgba(16, 185, 129, 0.35);
    --overhaul-cyan: #06b6d4;
    --overhaul-violet: #8b5cf6;
    --overhaul-rose: #f43f5e;
    --overhaul-amber: #f59e0b;
    --overhaul-slate-900: #0f172a;
    --overhaul-glass-bg: rgba(8, 14, 28, 0.55);
    --overhaul-glass-border: rgba(255, 255, 255, 0.08);
    --overhaul-glass-blur: blur(20px);
}

/* ============================================================
   1. NAVIGATION — Premium Floating Glass Bar
   ============================================================ */
.landing-nav {
    /* Safe breathing room from physical top (safe-area + ~pt-4) */
    padding-top: max(1rem, calc(env(safe-area-inset-top, 0px) + 0.75rem)) !important;
    padding-right: 1.25rem !important;
    padding-bottom: 0.75rem !important;
    padding-left: 1.25rem !important;
    border-bottom: 1px solid transparent;
    /* Vertical centering shell — no fixed height that clips labels */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.landing-nav:not(.landing-nav--scrolled) {
    background: linear-gradient(
        180deg,
        rgba(6, 10, 18, 0.88) 0%,
        rgba(6, 10, 18, 0.65) 50%,
        rgba(6, 10, 18, 0) 100%
    ) !important;
    backdrop-filter: blur(6px);
}

.landing-nav--scrolled {
    background: rgba(10, 16, 32, 0.85) !important;
    backdrop-filter: blur(24px) saturate(1.4) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Nav inner — full width row, vertically centered, can wrap */
.landing-nav-inner {
    width: 100%;
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 0 0.5rem !important;
    gap: 0.65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
}

/* Brand logo — subtle glow on hover */
.brand-logo-vault img {
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-logo-vault:hover img {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.2);
}

/* Nav links — wrap instead of clipping off-screen; vertical center
   (desktop only — mobile keeps drawer toggle in responsive.css) */
@media (min-width: 768px) {
    .landing-nav-links {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.2rem 0.15rem !important;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        flex: 1 1 auto;
        min-width: 0;
    }
}

.landing-nav-links a {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s, text-shadow 0.2s;
    position: relative;
    white-space: nowrap;
    line-height: 1.25;
    overflow: visible !important;
}

/* Dark nav (over hero) — white text */
.landing-nav:not(.landing-nav--scrolled) .landing-nav-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: none !important;
}
.landing-nav:not(.landing-nav--scrolled) .landing-nav-links a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    text-shadow: none !important;
}

/* Scrolled nav — muted text */
.landing-nav--scrolled .landing-nav-links a {
    color: rgba(148, 163, 184, 0.85) !important;
    text-shadow: none !important;
}
.landing-nav--scrolled .landing-nav-links a:hover {
    color: #f1f5f9 !important;
    background: rgba(255, 255, 255, 0.06);
}

/* Oracle widget — Premium ONLINE LIVE widget aligned with nav */
.landing-brand-stack .oracle-widget--monitor {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    border-radius: 999px !important;
    font-size: 0.64rem !important;
    padding: 0.35rem 0.75rem 0.35rem 0.5rem !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 78, 59, 0.9) 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.4) !important;
    box-shadow:
        0 0 0 1px rgba(52, 211, 153, 0.08),
        0 6px 20px rgba(6, 78, 59, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    min-width: 260px !important;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                background-color 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.landing-brand-stack .oracle-widget--monitor:hover {
    transform: scale(1.02) translateY(-0.5px) !important;
    border-color: rgba(52, 211, 153, 0.6) !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(6, 78, 59, 0.95) 100%) !important;
    box-shadow:
        0 10px 25px -3px rgba(4, 120, 87, 0.2),
        0 4px 10px -2px rgba(4, 120, 87, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Live indicator dot - pulsing green LED */
.landing-brand-stack .oracle-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    margin-right: 0.35rem;
    flex-shrink: 0;
    box-shadow:
        0 0 6px #34d399,
        0 0 12px rgba(52, 211, 153, 0.5);
    animation: oracle-live-pulse 2s ease-in-out infinite;
}

@keyframes oracle-live-pulse {
    0%, 100% {
        box-shadow:
            0 0 6px #34d399,
            0 0 12px rgba(52, 211, 153, 0.5);
        opacity: 1;
    }
    50% {
        box-shadow:
            0 0 10px #34d399,
            0 0 20px rgba(52, 211, 153, 0.8);
        opacity: 0.85;
    }
}

/* Typography hierarchy */
.landing-brand-stack .oracle-widget-title {
    font-weight: 800 !important;
    white-space: nowrap !important;
    color: #e2e8f0 !important;
}

.landing-brand-stack .oracle-widget-live {
    font-size: 0.5rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.1em !important;
    padding: 0.08rem 0.35rem !important;
    border-radius: 4px !important;
    background: rgba(52, 211, 153, 0.15) !important;
    color: #6ee7b7 !important;
    border: 1px solid rgba(52, 211, 153, 0.3) !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
}

.landing-brand-stack .oracle-widget-sub {
    font-size: 0.58rem !important;
    opacity: 0.7 !important;
    white-space: nowrap !important;
    color: #94a3b8 !important;
}

/* SVG Shield styling */
.landing-brand-stack .oracle-widget-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-brand-stack .oracle-widget-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(52, 211, 153, 0.4));
}

.landing-brand-stack .oracle-widget-svg path {
    stroke: #34d399;
    fill: rgba(52, 211, 153, 0.08);
    transition: stroke 0.3s ease, fill 0.3s ease;
}

.landing-brand-stack .oracle-widget-svg circle {
    fill: #10b981;
    stroke: #34d399;
    stroke-width: 1.5;
    transition: fill 0.3s ease, stroke 0.3s ease;
    transform-origin: center;
    animation: oracle-core-pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes oracle-core-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Radar animation */
.landing-brand-stack .oracle-widget-radar {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-brand-stack .oracle-widget-radar::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(52, 211, 153, 0.35);
    animation: oracle-radar 2s ease-out infinite;
}

@keyframes oracle-radar {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Live bars animation */
.landing-brand-stack .oracle-widget-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    flex-shrink: 0;
    padding-left: 0.15rem;
}

.landing-brand-stack .oracle-widget-bars span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #6ee7b7, #059669);
    animation: oracle-bar 1.1s ease-in-out infinite;
}

.landing-brand-stack .oracle-widget-bars span:nth-child(1) { height: 35%; animation-delay: 0s; }
.landing-brand-stack .oracle-widget-bars span:nth-child(2) { height: 65%; animation-delay: 0.12s; }
.landing-brand-stack .oracle-widget-bars span:nth-child(3) { height: 45%; animation-delay: 0.24s; }
.landing-brand-stack .oracle-widget-bars span:nth-child(4) { height: 80%; animation-delay: 0.36s; }

@keyframes oracle-bar {
    0%, 100% { transform: scaleY(0.45); opacity: 0.65; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .landing-brand-stack .oracle-widget--monitor {
        min-width: 220px !important;
        padding: 0.3rem 0.6rem 0.3rem 0.45rem !important;
        gap: 0.4rem !important;
    }
    .landing-brand-stack .oracle-widget-svg { width: 14px; height: 14px; }
    .landing-brand-stack .oracle-widget-title { font-size: 0.6rem !important; }
    .landing-brand-stack .oracle-widget-sub { font-size: 0.54rem !important; }
}

@media (max-width: 520px) {
    .landing-brand-stack .oracle-widget--monitor {
        display: none !important;
    }
}

/* Mobile toggle — cleaner */
.landing-nav-toggle {
    width: 2.2rem !important;
    height: 2.2rem !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(8px);
}

/* ============================================================
   2. HERO — Cinematic Full-bleed Experience
   ============================================================ */
.landing-hero {
    position: relative;
    min-height: 100dvh !important;
    /* Clear fixed multi-row nav (~7–8rem with wrap + top padding) */
    padding: 8.5rem 1.5rem 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}

/* Background layers — richer depth */
.landing-hero-bg {
    filter: brightness(0.6) saturate(1.1) contrast(1.05) !important;
}

.landing-hero-overlay {
    background:
        radial-gradient(ellipse 120% 80% at 50% 40%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        linear-gradient(
            180deg,
            rgba(6, 10, 18, 0.55) 0%,
            rgba(6, 10, 18, 0.35) 40%,
            rgba(6, 10, 18, 0.6) 70%,
            rgba(6, 10, 18, 0.9) 100%
        ) !important;
}

/* Hero content container — tightly centered */
.landing-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px !important;
    margin-inline: auto;
    padding: 0 1rem;
}

/* ─── Kicker badge ─── */
.landing-hero-kicker {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1.1rem !important;
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    border-radius: 999px !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    color: #6ee7b7 !important;
    margin-bottom: 1.5rem !important;
    backdrop-filter: blur(8px);
}

.landing-hero-kicker i {
    font-size: 0.85em;
    color: var(--overhaul-emerald);
}

/* ─── Title — Massive, Bold, Cinematic ─── */
.landing-hero-title {
    font-size: clamp(4rem, 12vw, 7.5rem) !important;
    font-weight: 900 !important;
    line-height: 0.95 !important;
    margin: 0 0 1.25rem !important;
    letter-spacing: -0.03em !important;
}

/* "Farm" — crisp white with subtle stroke */
.landing-title-farm {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    -webkit-text-stroke: 0 !important;
    paint-order: initial !important;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 255, 255, 0.05);
    filter: none !important;
}

/* "Brawl" — each letter a vivid color with neon glow */
.landing-title-brawl .lp-ch {
    -webkit-text-stroke: 0 !important;
    paint-order: initial !important;
    filter: none !important;
    text-shadow: none !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.3s ease;
}

.lp-b { color: #fb7185; text-shadow: 0 0 20px rgba(251, 113, 133, 0.4); }
.lp-r { color: #fb923c; text-shadow: 0 0 20px rgba(251, 146, 60, 0.4); }
.lp-a { color: #fbbf24; text-shadow: 0 0 20px rgba(251, 191, 36, 0.4); }
.lp-w { color: #a3e635; text-shadow: 0 0 20px rgba(163, 230, 53, 0.4); }
.lp-l { color: #22d3ee; text-shadow: 0 0 20px rgba(34, 211, 238, 0.4); }

.landing-title-brawl:hover .lp-ch:nth-child(1) { animation: letterBounce 0.5s 0s cubic-bezier(0.34, 1.56, 0.64, 1); }
.landing-title-brawl:hover .lp-ch:nth-child(2) { animation: letterBounce 0.5s 0.05s cubic-bezier(0.34, 1.56, 0.64, 1); }
.landing-title-brawl:hover .lp-ch:nth-child(3) { animation: letterBounce 0.5s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1); }
.landing-title-brawl:hover .lp-ch:nth-child(4) { animation: letterBounce 0.5s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1); }
.landing-title-brawl:hover .lp-ch:nth-child(5) { animation: letterBounce 0.5s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ─── Tagline — Elevated, Glass chip ─── */
.landing-hero-tagline {
    display: inline-flex !important;
    padding: 0.6rem 1.6rem !important;
    font-size: clamp(1rem, 2.5vw, 1.3rem) !important;
    font-weight: 800 !important;
    color: #f0fdf4 !important;
    background: rgba(16, 185, 129, 0.12) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    border-radius: 999px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.01em;
}

/* ─── Lead text — Clean, readable ─── */
.landing-hero-lead {
    font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 540px !important;
    margin: 0 auto 2rem !important;
    font-weight: 500 !important;
    text-shadow: none !important;
}

.landing-hero-lead strong {
    color: #fff;
    font-weight: 800;
}

/* ─── CTA Buttons — Refined sizing ─── */
.landing-hero-actions {
    gap: 0.85rem !important;
    margin-bottom: 0 !important;
}

.landing-btn-play--hero {
    padding: 1rem 2.25rem !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow:
        0 0 0 1px rgba(16, 185, 129, 0.3),
        0 8px 32px rgba(16, 185, 129, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3) !important;
    animation: overhaul-cta-pulse 3s ease-in-out infinite !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@keyframes overhaul-cta-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(16, 185, 129, 0.3),
            0 8px 32px rgba(16, 185, 129, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(16, 185, 129, 0.15),
            0 12px 48px rgba(16, 185, 129, 0.45),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

.landing-btn-play--hero:hover {
    transform: translateY(-2px) scale(1.03) !important;
}

.landing-btn-ghost-hero {
    padding: 0.9rem 1.75rem !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.landing-btn-ghost-hero:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ─── Ecosystem Stats — Premium Card Grid ─── */
.hero-ecosystem-status {
    margin-top: 2.5rem !important;
}

.ecosystem-status {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2px !important;
    padding: 0 !important;
    background: rgba(8, 14, 28, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.ecosystem-status .stat {
    padding: 1rem 0.5rem !important;
    text-align: center !important;
    min-width: 0 !important;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease;
}

.ecosystem-status .stat:hover {
    background: rgba(16, 185, 129, 0.05);
}

/* Divider between stats */
.ecosystem-status .stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.ecosystem-status .stat-value {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #f0fdf4 !important;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.2rem;
}

.ecosystem-status .stat-label {
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: rgba(148, 163, 184, 0.7) !important;
}

.landing-ecosystem-update {
    font-size: 0.65rem !important;
    margin-top: 0.5rem !important;
    color: rgba(100, 116, 139, 0.6) !important;
}

/* ─── Scroll Hint — Minimal, Elegant ─── */
.landing-scroll-hint {
    bottom: 1.5rem !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35) !important;
    animation: scrollHintPulse 2.5s ease-in-out infinite !important;
}

@keyframes scrollHintPulse {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   3. AI MONITORING BANNER — Integrated, Premium
   ============================================================ */
.landing-ai-section {
    padding: 0.75rem 1.5rem 1rem !important;
    position: relative;
    z-index: 1;
}

.landing-ai-banner {
    max-width: 780px !important;
    margin: 0 auto !important;
    padding: 0.85rem 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    background: rgba(99, 102, 241, 0.06) !important;
    border: 1px solid rgba(99, 102, 241, 0.15) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.landing-ai-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3), transparent);
}

.landing-ai-banner-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.2)) !important;
    font-size: 1.1rem !important;
    color: #a5b4fc !important;
    flex-shrink: 0;
}

.landing-ai-banner-kicker {
    font-size: 0.58rem !important;
    letter-spacing: 0.16em !important;
    color: #a5b4fc !important;
    margin-bottom: 0.2rem !important;
}

.landing-ai-banner-text {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: rgba(203, 213, 225, 0.85) !important;
}

/* ============================================================
   4. "POR QUÉ FARMBRAWL" — Premium Feature Grid
   ============================================================ */
.landing-why-section {
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
}

.landing-why-header {
    margin-bottom: 2rem !important;
}

.landing-why-kicker {
    font-size: 0.65rem !important;
    letter-spacing: 0.18em !important;
    color: rgba(110, 231, 183, 0.8) !important;
}

.landing-why-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    font-weight: 900 !important;
    color: #f8fafc !important;
    margin: 0.4rem 0 0.6rem !important;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-why-lead {
    color: rgba(148, 163, 184, 0.8) !important;
    font-size: 0.95rem !important;
    max-width: 480px !important;
}

/* Grid — 3 columns on desktop */
.landing-why-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.85rem !important;
}

@media (max-width: 900px) {
    .landing-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
    .landing-why-grid { grid-template-columns: 1fr !important; }
}

/* ─── Pillar Card — Premium Glass with Unique Identity ─── */
.landing-why-grid .landing-pillar-card {
    padding: 1.35rem !important;
    border-radius: 16px !important;
    background: rgba(12, 18, 35, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.1, 0.6, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

/* Top accent strip — unique per card */
.landing-why-grid .landing-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    opacity: 0.9;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.landing-why-grid .landing-pillar-card:hover::before {
    height: 4px;
    opacity: 1;
}

/* Card accent colors */
.landing-why-grid .landing-pillar-card:nth-child(1)::before { background: linear-gradient(90deg, #10b981, #059669); }
.landing-why-grid .landing-pillar-card:nth-child(2)::before { background: linear-gradient(90deg, #f59e0b, #d97706); }
.landing-why-grid .landing-pillar-card:nth-child(3)::before { background: linear-gradient(90deg, #06b6d4, #0284c7); }
.landing-why-grid .landing-pillar-card:nth-child(4)::before { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }
.landing-why-grid .landing-pillar-card:nth-child(5)::before { background: linear-gradient(90deg, #f43f5e, #dc2626); }
.landing-why-grid .landing-pillar-card:nth-child(6)::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.landing-why-grid .landing-pillar-card:nth-child(7)::before { background: linear-gradient(90deg, #38bdf8, #0ea5e9); }
.landing-why-grid .landing-pillar-card:nth-child(8)::before { background: linear-gradient(90deg, #fb923c, #ea580c); }
.landing-why-grid .landing-pillar-card:nth-child(9)::before { background: linear-gradient(90deg, #c084fc, #9333ea); }

/* Hover — card-specific glow */
.landing-why-grid .landing-pillar-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.landing-why-grid .landing-pillar-card:nth-child(1):hover { box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.15); }
.landing-why-grid .landing-pillar-card:nth-child(2):hover { box-shadow: 0 16px 40px rgba(245, 158, 11, 0.1), 0 0 0 1px rgba(245, 158, 11, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(3):hover { box-shadow: 0 16px 40px rgba(6, 182, 212, 0.1), 0 0 0 1px rgba(6, 182, 212, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(4):hover { box-shadow: 0 16px 40px rgba(139, 92, 246, 0.1), 0 0 0 1px rgba(139, 92, 246, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(5):hover { box-shadow: 0 16px 40px rgba(244, 63, 94, 0.1), 0 0 0 1px rgba(244, 63, 94, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(6):hover { box-shadow: 0 16px 40px rgba(251, 191, 36, 0.1), 0 0 0 1px rgba(251, 191, 36, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(7):hover { box-shadow: 0 16px 40px rgba(56, 189, 248, 0.1), 0 0 0 1px rgba(56, 189, 248, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(8):hover { box-shadow: 0 16px 40px rgba(251, 146, 60, 0.1), 0 0 0 1px rgba(251, 146, 60, 0.12); }
.landing-why-grid .landing-pillar-card:nth-child(9):hover { box-shadow: 0 16px 40px rgba(192, 132, 252, 0.1), 0 0 0 1px rgba(192, 132, 252, 0.12); }

/* ─── Icon — Unique gradient per card ─── */
.landing-why-grid .landing-pillar-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem !important;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.landing-why-grid .landing-pillar-card:hover .landing-pillar-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Individual icon gradients */
.landing-why-grid .landing-pillar-card:nth-child(1) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.3));
    color: #34d399;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(2) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.3));
    color: #fbbf24;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(3) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(2, 132, 199, 0.3));
    color: #22d3ee;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(4) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(109, 40, 217, 0.3));
    color: #a78bfa;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(5) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(220, 38, 38, 0.3));
    color: #fb7185;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(6) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.3));
    color: #fbbf24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(7) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.3));
    color: #38bdf8;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(8) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(234, 88, 12, 0.3));
    color: #fb923c;
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.15);
}
.landing-why-grid .landing-pillar-card:nth-child(9) .landing-pillar-icon {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(147, 51, 234, 0.3));
    color: #c084fc;
    box-shadow: 0 4px 12px rgba(192, 132, 252, 0.15);
}

/* ─── Card Typography ─── */
.landing-why-grid .landing-pillar-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #f1f5f9 !important;
    line-height: 1.25 !important;
    margin: 0 0 0.4rem !important;
}

.landing-why-grid .landing-pillar-text {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    color: rgba(148, 163, 184, 0.85) !important;
    margin: 0 !important;
    flex: 1;
}

.landing-why-grid .landing-pillar-link {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    margin-top: 0.75rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s ease;
}
.landing-why-grid .landing-pillar-link:hover {
    gap: 0.5rem;
}

/* Shimmer on hover */
.landing-why-grid .landing-pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}
.landing-why-grid .landing-pillar-card:hover::after {
    left: 100%;
}

/* ============================================================
   5. MOBILE RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
    .landing-hero-title {
        font-size: clamp(3rem, 14vw, 5rem) !important;
    }

    .landing-hero {
        padding: 7rem 1rem 3rem !important;
    }

    .ecosystem-status {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .landing-nav-links {
        gap: 0 !important;
    }

    .landing-nav-links a {
        font-size: 0.68rem !important;
        padding: 0.6rem 0.65rem !important;
    }

    .landing-ai-banner {
        flex-direction: column !important;
        text-align: center !important;
        padding: 0.75rem !important;
    }

    .landing-why-grid {
        gap: 0.65rem !important;
    }

    .landing-why-grid .landing-pillar-card {
        padding: 1.1rem !important;
    }

    .landing-hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .landing-btn-play--hero,
    .landing-btn-ghost-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .landing-hero-title {
        font-size: clamp(2.5rem, 16vw, 4rem) !important;
    }

    .ecosystem-status .stat-value {
        font-size: 0.95rem !important;
    }

    .ecosystem-status .stat-label {
        font-size: 0.55rem !important;
    }
}

/* ============================================================
   6. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .landing-btn-play--hero {
        animation: none !important;
    }
    .landing-scroll-hint {
        animation: none !important;
    }
    .landing-why-grid .landing-pillar-card:hover .landing-pillar-icon {
        transform: none !important;
    }
    .landing-title-brawl:hover .lp-ch {
        animation: none !important;
    }
    .hero-brand-glow,
    .hero-brand-glow::after {
        animation: none !important;
        background-size: 100% 100% !important;
        transition: none !important;
        transform: none !important;
    }
    .landing-hero-title:hover .hero-brand-glow {
        filter: drop-shadow(0 0 24px rgba(251, 191, 36, 0.22))
                drop-shadow(0 0 60px rgba(167, 139, 250, 0.12)) !important;
        transform: none !important;
    }
}

/* ============================================================
   7. HERO TRUST BADGES — Pill-style trust indicators
   ============================================================ */
.hero__trust {
    margin: 1.75rem 0 0;
    gap: 0.75rem;
}

.hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
}

/* Green dot indicator */
.hero__trust li::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    flex: 0 0 auto;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.12);
}

/* ============================================================
   8. HERO BRAND GLOW — Premium animated wordmark
   ============================================================ */
.hero-brand-glow {
    display: inline-block;
    position: relative;
    font-weight: 900;
    background: linear-gradient(
        135deg,
        #fbbf24 0%,      /* gold */
        #f59e0b 15%,
        #10b981 30%,     /* emerald */
        #34d399 45%,
        #a78bfa 60%,     /* lavender-violet (antes #a855f7) */
        #c084fc 75%,
        #fbbf24 90%      /* back to gold */
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow exterior — 2 capas (gold + soft violet) */
    filter: drop-shadow(0 0 24px rgba(251, 191, 36, 0.22))
            drop-shadow(0 0 60px rgba(167, 139, 250, 0.12));
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;

    /* Animation del gradiente */
    animation: heroGradientFlow 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

/* Glow más intenso en hover */
.landing-hero-title:hover .hero-brand-glow {
    filter: drop-shadow(0 0 36px rgba(251, 191, 36, 0.35))
            drop-shadow(0 0 80px rgba(167, 139, 250, 0.18));
    transform: scale(1.02);
    transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reflejo sutil con pseudo-elemento */
.hero-brand-glow::after {
    content: 'FarmBrawl';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fbbf24, #10b981, #a78bfa, #fbbf24);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(6px) brightness(1.2);
    opacity: 0.25;
    z-index: -1;
    animation: heroGradientFlow 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    pointer-events: none;
}

@keyframes heroGradientFlow {
    0%   { background-position: 0% 25%; }
    25%  { background-position: 50% 75%; }
    50%  { background-position: 100% 25%; }
    75%  { background-position: 50% 75%; }
    100% { background-position: 0% 25%; }
}
