/* ─── Body ───────────────────────────────────────────────── */

body {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    min-height: 100vh;
    margin: 0;
}

/* ─── Page Wrapper ───────────────────────────────────────── */

.page-wrapper {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    position: relative;
}

/* ─── Hero ───────────────────────────────────────────────── */

.wib-hero {
    position: relative;
    background: linear-gradient(to bottom right, #0f172a, #1e293b, #052e16);
    padding: 80px 24px;
    overflow: hidden;
}

.wib-hero-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(64px);
}

.wib-hero-glow-left {
    top: 0;
    left: -80px;
    width: 384px;
    height: 384px;
    background: rgba(34, 197, 94, 0.1);
}

.wib-hero-glow-right {
    bottom: 0;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 246, 0.1);
}

.wib-hero-content {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 32px;
}

.wib-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0 0 24px;
}

@media (min-width: 768px) { .wib-hero-title { font-size: 60px; } }

.wib-accent { color: #4ade80; }

.wib-hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.75;
    margin: 0;
}

/* ─── Main Content ───────────────────────────────────────── */

.wib-main { padding: 80px 0; }

.wib-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* ─── Section Labels ─────────────────────────────────────── */

.section-label {
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

/* ─── Section Title ──────────────────────────────────────── */

.wib-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
}

.wib-section-title-mb { margin-bottom: 32px; }

/* ─── Two-Col Layout ─────────────────────────────────────── */

.wib-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .wib-two-col { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Section Description ────────────────────────────────── */

.wib-section-desc {
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 16px;
}

.wib-strong { color: #334155; }

/* ─── Info Card ──────────────────────────────────────────── */

.info-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-green  { background: #dcfce7; color: #16a34a; }
.info-icon-blue   { background: #dbeafe; color: #2563eb; }
.info-icon-orange { background: #ffedd5; color: #ea580c; }

.info-item-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 14px;
    margin: 0 0 4px;
}

.info-item-desc {
    color: #64748b;
    font-size: 12px;
    line-height: 1.75;
    margin: 0;
}

/* ─── Feature Cards Grid ─────────────────────────────────── */

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) { .feature-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-sm-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.feature-sm-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.feature-sm-icon-green  { background: #dcfce7; color: #16a34a; }
.feature-sm-icon-orange { background: #ffedd5; color: #ea580c; }
.feature-sm-icon-blue   { background: #dbeafe; color: #2563eb; }
.feature-sm-icon-purple { background: #f3e8ff; color: #7e22ce; }

.feature-sm-title {
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.feature-sm-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* ─── Why It Matters ─────────────────────────────────────── */

.why-matters {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(to right, #0f172a, #052e16);
    padding: 40px;
}

@media (min-width: 768px) { .why-matters { padding: 56px; } }

.why-matters-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('/static/why-matters-bg.png');
    background-size: cover;
    background-position: center;
}

.why-matters-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.why-matters-label {
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.why-matters-title {
    font-size: 30px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
}

.why-matters-desc {
    color: #cbd5e1;
    line-height: 1.75;
    margin: 0 0 24px;
}

.stat-row {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 32px;
}

.stat-item {}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4ade80;
    margin: 0;
}

.stat-label {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 4px 0 0;
}

/* ─── CTA Section ────────────────────────────────────────── */

.cta-section { text-align: center; }

.cta-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
}

.cta-desc {
    color: #64748b;
    margin: 0 auto 32px;
    max-width: 28rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 200ms;
    box-shadow: 0 10px 15px -3px rgba(15,23,42,0.2);
}

.cta-btn:hover { background: #15803d; }

.cta-btn-icon { color: #4ade80; }