/* --- Global Reset & Variables --- */
:root {
    --bg-dark: #070c0a;
    --card-bg: rgba(13, 22, 18, 0.7);
    --border-glass: rgba(4, 120, 87, 0.2);
    --primary-green: #047857;
    --primary-green-glow: rgba(4, 120, 87, 0.4);
    --brand-gold: #D97706;
    --brand-gold-glow: rgba(217, 119, 6, 0.3);
    --text-pure: #ffffff;
    --text-muted: #94a3b8;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Ambient Glowing Orbs --- */
.glow-1, .glow-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}
.glow-1 {
    top: -10%;
    left: -10%;
    background: var(--primary-green);
}
.glow-2 {
    bottom: 20%;
    right: -10%;
    background: var(--brand-gold);
}

/* --- Header Layout --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    width: 100%;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-btn:hover {
    color: var(--brand-gold);
    border-color: var(--brand-gold-glow);
    background: rgba(217, 119, 6, 0.05);
    transform: translateX(-4px);
}

.brand-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-logo .dot {
    color: var(--brand-gold);
}

/* --- Hero Section --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 4rem auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(4, 120, 87, 0.1);
    border: 1px solid var(--border-glass);
    color: #34d399;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-pure) 30%, var(--brand-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Premium Community Cards Layout --- */
.grid-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.community-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    overflow: hidden;
}

.community-card:hover {
    transform: translateY(-8px);
}

.broadcast-card:hover { border-color: var(--primary-green); }
.chat-card:hover { border-color: var(--brand-gold); }

/* Decorative Card Light Effect */
.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(60px);
    opacity: 0.15;
    transition: opacity 0.4s ease;
}
.broadcast-card .card-glow { background: var(--primary-green); }
.chat-card .card-glow { background: var(--brand-gold); }

.card-header {
    margin-bottom: 1.5rem;
}

.pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.pill-broadcast { background: rgba(4, 120, 87, 0.15); color: #34d399; }
.pill-chat { background: rgba(217, 119, 6, 0.15); color: #fbbf24; }

.community-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    margin-bottom: 3rem;
}

.card-features li {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Interactive Call To Action Buttons */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.2rem;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-broadcast {
    background: var(--primary-green);
    color: var(--text-pure);
    box-shadow: 0 4px 20px var(--primary-green-glow);
}
.btn-broadcast:hover {
    background: #059669;
    box-shadow: 0 6px 28px rgba(4, 120, 87, 0.6);
}

.btn-chat {
    background: transparent;
    color: var(--text-pure);
    border: 2px solid var(--brand-gold);
}
.btn-chat:hover {
    background: var(--brand-gold);
    box-shadow: 0 6px 28px var(--brand-gold-glow);
}

/* --- Animated Counter Metrics Section --- */
.metrics-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.metric-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-pure);
}

.metric-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* --- Footer Area --- */
.main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #040706;
}

.main-footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: invert(1); /* Keeps icons sleek white if they are dark assets */
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: var(--brand-gold);
    background: rgba(217, 119, 6, 0.1);
}

/* --- Flawless Responsiveness Settings --- */
@media (max-width: 968px) {
    .hero-section h1 { font-size: 2.8rem; }
    .grid-section { grid-template-columns: 1fr; gap: 2rem; }
    .community-card { padding: 2.5rem; }
}

@media (max-width: 640px) {
    .main-header { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-section h1 { font-size: 2.2rem; }
    .metrics-section { flex-direction: column; gap: 2rem; }
    .main-footer { flex-direction: column-reverse; gap: 1.5rem; text-align: center; }
}