/* Ferrith Onboarding — Phase 2 storefront layout, on top of ob-components.css.
   The .ob-* component classes (ob-components.css) carry the visual design; these .st-*
   classes carry the page/section layout the design bundle expressed inline, plus the
   responsive rules the fixed-width artboards didn't need. Loaded AFTER ob-components.css
   so the .ob-container padding override on the hero wins. */

/* ── Hero ──────────────────────────────────────────────────────────── */
.st-hero { border-bottom: 1px solid var(--ob-border); }
.st-hero-matrix {
    position: absolute;
    inset: 0;
    opacity: .6;
    -webkit-mask-image: radial-gradient(120% 80% at 50% -10%, #000, transparent 70%);
    mask-image: radial-gradient(120% 80% at 50% -10%, #000, transparent 70%);
}
.st-hero-inner { position: relative; text-align: center; padding-top: 84px; padding-bottom: 70px; }
.st-hero-h1 { font-size: 54px; margin: 18px auto 0; max-width: 780px; }
.st-hero-lede { margin: 20px auto 0; max-width: 620px; }
.st-cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.st-trust { margin-top: 22px; font-size: 12.5px; color: var(--ob-ink-3); display: flex; gap: 18px; justify-content: center; }

/* ── Sections ──────────────────────────────────────────────────────── */
.st-section { padding: 54px 0; }
.st-section-muted { background: var(--ob-bg-muted); border-top: 1px solid var(--ob-border); border-bottom: 1px solid var(--ob-border); }
.st-section-head { text-align: center; margin-bottom: 34px; }
.st-section-h2 { font-size: 32px; margin-top: 10px; }

/* The storefront pricing block + tiers now render via the shared TierGrid / DedicatedBanner
   components (the `.ob-tier*` classes in ob-components.css). The old Base-card + module-grid +
   inline Dedicated-card classes were removed in the v0.5 packaged-tier redesign. */

/* ── CTA band ──────────────────────────────────────────────────────── */
.st-cta-band { background: var(--anthracite, #2C3138); color: #fff; }
.st-cta-inner { padding-top: 52px; padding-bottom: 52px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.st-cta-h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin: 0; }
.st-cta-sub { font-size: 14px; color: #b7bcc4; margin: 8px 0 0; }

/* ── Pricing page ──────────────────────────────────────────────────── */
.st-pricing-head { padding-bottom: 20px; }
.st-pricing-head-inner { text-align: center; }
.st-pricing-h1 { font-size: 40px; margin-top: 12px; }
.st-pricing-lede { margin: 16px auto 0; max-width: 560px; }
.st-pricing-block-section { padding-top: 20px; padding-bottom: 46px; }
.st-faq-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; text-align: center; margin: 0 0 26px; }
.st-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 860px; margin: 0 auto; }
.st-faq-card { padding: 18px; }
.st-faq-q { font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.st-faq-a { font-size: 13px; color: var(--ob-ink-2); line-height: 1.55; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ob-values { grid-template-columns: repeat(2, 1fr); }
    .st-faq-grid { grid-template-columns: 1fr; }
    .st-cta-inner { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 560px) {
    .st-hero-inner { padding-top: 60px; padding-bottom: 52px; }
    .st-hero-h1 { font-size: 38px; }
    .st-section-h2 { font-size: 26px; }
    .st-pricing-h1 { font-size: 30px; }
    .ob-values { grid-template-columns: 1fr; }
    .st-trust { flex-wrap: wrap; }
}
