/* ═══════════════════════════════════════════════════════════════════
   Home / Landing Page
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────────────────── */
.home-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0rem 2rem 3rem 2rem;
}

.home-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: var(--steel-300);
    line-height: 1.7;
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.home-icon {
    display: block;
    margin: 0 auto 1rem;
}

.home-tagline {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--steel-400);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Sections — shared
   ───────────────────────────────────────────────────────────────────── */
.home-section {
    padding: 3.5rem 1.5rem;
    position: relative;
    z-index: 10;
}

.home-section--alt {
    background-color: var(--steel-900);
}

.home-section__inner {
    max-width: 64rem;
    margin: 0 auto;
}

.home-section__eyebrow {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brass-400);
    margin-bottom: 0.75rem;
}

.home-section__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--steel-100);
    margin-bottom: 1rem;
}

.home-section__lead {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--steel-300);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-section__divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--brass-500), var(--brass-400));
    margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────────────────────────────────
   Checklist
   ───────────────────────────────────────────────────────────────────── */
.home-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-checklist li {
    position: relative;
    padding-left: 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--steel-300);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.home-checklist li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--brass-400);
    font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────
   Beta banner
   ───────────────────────────────────────────────────────────────────── */
.home-beta {
    position: relative;
    z-index: 10;
    padding: 2.5rem 1.5rem;
    background-color: var(--steel-900);
    border-top: 1px solid var(--steel-700);
    border-bottom: 1px solid var(--steel-700);
}

.home-beta__inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.home-beta__badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brass-400);
    border: 1px solid var(--brass-500);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.75rem;
    margin-bottom: 1.25rem;
}

.home-beta__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--steel-300);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Steps (How it works)
   ───────────────────────────────────────────────────────────────────── */
.home-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    counter-reset: step;
}

.home-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    counter-increment: step;
}

.home-step__number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brass-400);
    border: 1px solid var(--brass-500);
    border-radius: 50%;
    background-color: var(--steel-850);
}

.home-step__body {
    padding-top: 0.35rem;
}

.home-step__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--steel-100);
    margin-bottom: 0.25rem;
}

.home-step__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--steel-400);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Audience (Who it's for)
   ───────────────────────────────────────────────────────────────────── */
.home-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.home-audience__card {
    text-align: center;
    background-color: var(--steel-850);
    border: 1px solid var(--steel-700);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.home-audience__card:hover {
    border-color: var(--steel-600);
    box-shadow: var(--shadow-md);
}

.home-audience__icon {
    font-size: 1.75rem;
    color: var(--brass-400);
    margin-bottom: 1rem;
}

.home-audience__label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--steel-100);
    margin: 0;
}

.home-audience__note {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--steel-300);
    margin: 0 auto;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────
   Benefits grid
   ───────────────────────────────────────────────────────────────────── */
.home-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--steel-900);
    border: 1px solid var(--steel-700);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.home-benefit:hover {
    border-color: var(--steel-600);
    box-shadow: var(--shadow-md);
}

.home-benefit__icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--brass-400);
    margin-top: 0.15rem;
}

.home-benefit__title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--steel-100);
    margin-bottom: 0.375rem;
}

.home-benefit__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--steel-400);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .home-hero {
        min-height: 45vh;
    }

    .home-section {
        padding: 2.5rem 1.5rem;
    }

    .home-benefits {
        grid-template-columns: 1fr;
    }

    .home-audience {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-audience__card {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .home-hero {
        min-height: 40vh;
        padding: 2rem 1rem;
    }

    .home-section {
        padding: 2rem 1rem;
    }

    .home-beta {
        padding: 2rem 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Light Theme
   ═══════════════════════════════════════════════════════════════════ */
[data-theme="light"] .home-section--alt {
    background-color: var(--steel-900);
}

[data-theme="light"] .home-beta {
    background-color: var(--steel-900);
    border-color: var(--steel-700);
}

[data-theme="light"] .home-audience__card {
    background-color: var(--steel-850);
    border-color: var(--steel-700);
}

[data-theme="light"] .home-benefit {
    background-color: var(--steel-900);
    border-color: var(--steel-700);
}

[data-theme="light"] .home-step__number {
    background-color: var(--steel-850);
}
