/* ==========================================================================
   Aqary State — Public About Page  v4e.1
   Depends on: home.css (design tokens, .as-btn, .as-section, .as-container)
   ========================================================================== */

/* ── Page hero (shared with contact page) ─────────────────────────────── */
.as-page-hero {
    background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dk) 100%);
    color: #fff;
    padding: calc(var(--nav-h) + 56px) 0 56px;
    text-align: center;
}
.as-page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: var(--lh-tight);
    margin: 0 0 .75rem;
    color: #fff;
}
.as-page-hero__sub {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255,255,255,.82);
    max-width: 640px;
    margin: 0 auto;
}

/* ── Who we are ───────────────────────────────────────────────────────── */
.as-about__who {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.as-about__text {
    font-size: 1.0625rem;
    color: var(--c-text-2);
    line-height: var(--lh);
    margin: 1.25rem auto 0;
    max-width: 720px;
}

/* ── Features grid ────────────────────────────────────────────────────── */
.as-about__features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.as-about__feature {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: box-shadow .2s, transform .2s;
}
.as-about__feature:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}
.as-about__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--r-pill);
    background: var(--c-primary-lt);
    margin-bottom: 1rem;
}
.as-about__feature-icon i {
    font-size: 1.5rem;
    color: var(--c-primary);
}
.as-about__feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0 0 .5rem;
}
.as-about__feature-body {
    font-size: .9rem;
    color: var(--c-muted);
    line-height: var(--lh);
    margin: 0;
}

/* ── CTA banner ───────────────────────────────────────────────────────── */
.as-about__cta-wrap {
    text-align: center;
}
.as-about__cta-title {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 .75rem;
}
.as-about__cta-sub {
    color: var(--c-muted);
    margin: 0 0 2rem;
}
.as-about__cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Dark mode ────────────────────────────────────────────────────────── */
html[data-theme="dark"] .as-about__feature {
    background: var(--c-bg-card);
    border-color: var(--c-border);
}

/* ── Static content pages (FAQ / Terms / Privacy) — Phase 6-A.1 ───────── */
.as-static-content {
    max-width: 820px;
    margin: 0 auto;
    padding-top: .5rem;
}
.as-static-content h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 2.25rem 0 .6rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--c-primary-lt);
}
.as-static-content p,
.as-static-content li {
    font-size: 1rem;
    color: var(--c-text-2);
    line-height: 1.75;
    margin: .5rem 0;
}
.as-static-content ul {
    padding-inline-start: 1.5rem;
    margin: .5rem 0 1rem;
}
.as-static-content a {
    color: var(--c-primary);
    text-decoration: underline;
}
.as-static-meta {
    font-size: .85rem;
    color: var(--c-muted);
    margin: 0 0 1.5rem;
}
.as-static-note {
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    background: var(--c-bg-alt, #f3f4f6);
    border-inline-start: 4px solid var(--c-primary);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-size: .875rem;
    color: var(--c-muted);
}
.as-static-cta {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    text-align: center;
}
.as-static-cta p {
    margin: 0 0 1.25rem;
    font-weight: 500;
    color: var(--c-text);
}
/* FAQ list */
.as-faq-list {
    margin: 0;
    padding: 0;
}
.as-faq-item {
    margin-bottom: .5rem;
    padding: 1.25rem 1.5rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
}
.as-faq-item__q {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0 0 .75rem;
}
.as-faq-item__num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    text-align: center;
    background: var(--c-primary-lt);
    color: var(--c-primary);
    border-radius: var(--r-pill);
    font-size: .8rem;
    font-weight: 700;
}
.as-faq-item__a {
    font-size: .9875rem;
    color: var(--c-text-2);
    line-height: 1.75;
    margin: 0;
    padding-inline-start: 2.5rem;
}
html[data-theme="dark"] .as-faq-item,
html[data-theme="dark"] .as-static-cta {
    background: var(--c-bg-card);
    border-color: var(--c-border);
}
html[data-theme="dark"] .as-static-note {
    background: var(--c-bg-alt, #1e1e2e);
}
