/* Helve Hosting Homepage - Dark theme matching panel */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121318;
    color: #e0e0e0;
    min-height: 100vh;
}

/* ── Navbar ── */
.navbar {
    backdrop-filter: blur(12px);
    background: rgba(18, 19, 24, 0.9) !important;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 19, 24, 0.45) 0%,
        rgba(18, 19, 24, 0.6) 50%,
        rgba(18, 19, 24, 1) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 16px 80px;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #b0b0b0;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ── Hero Stats ── */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: #8a8a9a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
}

/* ── Features ── */
.features-section {
    padding: 80px 0;
    background: #121318;
}

.feature-card {
    background: #1a1b22;
    border: 1px solid #2a2b33;
    border-radius: 12px;
    padding: 36px 28px;
    height: 100%;
    transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
    border-color: #4a4b55;
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.12);
    color: #6ea8fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    color: #8a8a9a;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ── Section Headers ── */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    color: #8a8a9a;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ── Showcase Grid ── */
.showcase-section {
    padding: 80px 0;
    background: #0e0f13;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.showcase-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.showcase-item.showcase-wide {
    grid-column: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e0e0e0;
}

@media (max-width: 767px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item.showcase-wide {
        grid-column: span 2;
    }
}

@media (max-width: 479px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item.showcase-wide {
        grid-column: span 1;
    }
}

/* ── CTA ── */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 19, 24, 0.8);
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-subtitle {
    color: #8a8a9a;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ── Ad Container (matches panel) ── */
.ad-container {
    border-radius: 6px;
    padding: 8px 0;
    text-align: center;
    background: transparent;
    min-height: 90px;
    overflow: hidden;
}

.ad-container ins {
    background: transparent;
}

/* ── Footer ── */
.site-footer {
    padding: 28px 0;
    border-top: 1px solid #2a2b33;
    background: #121318;
}

.footer-brand {
    font-weight: 700;
    font-size: 0.95rem;
    margin-right: 12px;
}

.footer-copy {
    color: #5a5a6a;
    font-size: 0.82rem;
}

.footer-link {
    color: #8a8a9a;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #e0e0e0;
}
