/* =========================================================
   LANDING PAGE — hero, features, reviews, bottom CTA.
   Loaded after public.css, which supplies tokens/nav/footer/buttons.
   ========================================================= */

.hero {
    padding: 96px 24px 88px;
    text-align: center;
}

.hero__logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    border-radius: var(--radius);
}

.hero h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text);
}

.hero h1 .accent { color: var(--accent); }

.hero__lede {
    max-width: 620px;
    margin: 22px auto 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero__actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   SECTION SHELLS
   ========================================================= */

.section {
    padding: 72px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section--muted {
    background: var(--bg-elevated);
    max-width: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section--muted > .section { padding-left: 24px; padding-right: 24px; }

.section__head {
    max-width: 620px;
    margin: 0 auto 40px;
    text-align: center;
}

.section__head h2 {
    font-size: 30px;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}

.section__head p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    background: var(--surface-hover);
}

.feature-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16.5px;
    margin: 0 0 8px;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.feature-more {
    margin-top: 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14.5px;
}

.feature-more a { color: var(--accent); text-decoration: none; }
.feature-more a:hover { text-decoration: underline; }

/* =========================================================
   REVIEWS
   ========================================================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}

.review-card__rating {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-card__title {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 8px;
}

.review-card__message {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.review-card__attribution {
    color: var(--text-faint);
    font-size: 12.5px;
}

.reviews-empty,
.reviews-loading {
    text-align: center;
    color: var(--text-muted);
    font-size: 14.5px;
    padding: 32px 16px;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */

.cta-band {
    text-align: center;
    padding: 80px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta-band h2 {
    font-size: 30px;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

.cta-band p {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0 0 28px;
}

@media (max-width: 560px) {
    .hero { padding: 64px 20px 56px; }
    .section { padding: 56px 20px; }
    .cta-band { padding: 56px 20px; }
}
