/* ═══════════════════════════════════════════════════════════
   HEXAGON MONITOR — Home Page
   Requires: common.css
   ═══════════════════════════════════════════════════════════ */

/* ─── Main ────────────────────────────────────────────── */

main {
    padding-bottom: 80px;
}

/* ─── Stats ───────────────────────────────────────────── */

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.stat-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

/* ─── Features ────────────────────────────────────────── */

.features {
    margin-bottom: 48px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--gray);
}

/* ─── CTA ─────────────────────────────────────────────── */

.cta-section {
    padding: 48px 0 56px;
    border-top: 1px solid var(--border);
}

.cta-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.75;
}

/* ─── Contact Links ───────────────────────────────────── */

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid var(--border);
    background: transparent;
    text-decoration: none;
    color: var(--fg);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.contact-link:active {
    transform: scale(0.98);
}

.contact-link:hover {
    border-color: var(--fg);
    background: var(--fg);
    color: var(--bg);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-label {
    flex: 1;
}

.contact-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.contact-link:hover .contact-arrow {
    transform: translateX(4px);
}

.hero {
    margin-bottom: 56px;
}

/* ─── Responsive (home-specific) ──────────────────────── */

@media (min-width: 480px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 56px;
        padding-bottom: 56px;
    }

    .features {
        margin-bottom: 56px;
    }

    .feature-list {
        gap: 28px;
    }

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

    .cta-section {
        padding: 56px 0 72px;
    }

    .contact-methods {
        gap: 16px;
    }

    .hero {
        margin-bottom: 64px;
    }
}
