/* Ollie webpage — /assistant page styles.
 *
 * Self-contained: this page loads base.css + assistant.css only, so anything
 * borrowed conceptually from home.css / standalone.css (hero-note, the
 * downloads grid) is redefined here rather than assumed present.
 *
 * Design language matches the rest of the site: light canvas, Ollie blue
 * accent, soft card shadows, generous rhythm. */

/* ── Hero ────────────────────────────────────────────────────────── */
.hero-assistant {
    padding-bottom: 56px;
}

.hero-assistant .hero-title {
    font-family: var(--font-display);
}

.hero-assistant .hero-tagline {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero-assistant .hero-subtitle {
    max-width: 68ch;
    margin-left: auto;
    margin-right: auto;
}

/* base.css has no .hero-note — define it here. */
.hero-note {
    margin: 18px auto 0;
    max-width: 60ch;
    font-size: 14px;
    color: var(--text-dim);
}

.asst-platforms {
    margin: 10px auto 0;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--text-faint);
}

/* ── Card grid (the difference) ──────────────────────────────────── */
.asst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.asst-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-card);
}

.asst-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: rgba(20, 124, 229, 0.1);
    color: var(--accent);
}

.asst-card-icon .material-symbols-rounded { font-size: 24px; }

.asst-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.asst-card p {
    margin: 0;
    font-size: 15px;
    color: var(--text-dim);
}

/* ── Providers split ─────────────────────────────────────────────── */
.asst-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.asst-split-card {
    position: relative;
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}

.asst-split-card--local {
    background: linear-gradient(160deg, rgba(20, 124, 229, 0.07), rgba(20, 124, 229, 0.02));
    border-color: rgba(20, 124, 229, 0.22);
}

.asst-split-icon {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.asst-split-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 21px;
    letter-spacing: -0.01em;
}

.asst-split-card p {
    margin: 0;
    color: var(--text-dim);
    font-size: 15px;
}

.asst-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.asst-chip {
    padding: 7px 15px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--text-dim);
}

.asst-footnote {
    margin: 20px auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-faint);
}

/* ── Work bullets ────────────────────────────────────────────────── */
.asst-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px 34px;
}

.asst-bullet {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.asst-bullet > .material-symbols-rounded {
    flex: none;
    color: var(--accent);
    font-size: 26px;
    line-height: 1.2;
}

.asst-bullet h4 {
    margin: 0 0 5px;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -0.01em;
}

.asst-bullet p {
    margin: 0;
    font-size: 15px;
    color: var(--text-dim);
}

/* ── Extensibility ───────────────────────────────────────────────── */
.asst-extend-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 44px;
    align-items: center;
}

.asst-extend-copy .section-title,
.asst-extend-copy .section-subtitle { text-align: left; margin-left: 0; }

.asst-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.asst-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    font-size: 15px;
    color: var(--text-dim);
}

.asst-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.asst-extend-card {
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-alt);
    box-shadow: var(--shadow-card);
}

.asst-extend-card h4 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 18px;
}

.asst-extend-card p {
    margin: 0 0 16px;
    font-size: 15px;
    color: var(--text-dim);
}

.asst-extend-card code { font-size: 13.5px; }

/* ── Business checklist ──────────────────────────────────────────── */
.asst-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.asst-checklist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15.5px;
    color: var(--text-dim);
}

.asst-checklist .material-symbols-rounded {
    flex: none;
    color: var(--ok);
    font-size: 22px;
    line-height: 1.35;
}

/* ── Buy + downloads ─────────────────────────────────────────────── */
.asst-buy-card {
    text-align: center;
    padding: clamp(36px, 5vw, 60px) 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 124, 229, 0.22);
    background: linear-gradient(165deg, rgba(20, 124, 229, 0.08), rgba(20, 124, 229, 0.02));
    box-shadow: var(--shadow-glow);
}

.asst-buy-card h2 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 38px);
    letter-spacing: -0.02em;
}

.asst-buy-sub {
    max-width: 60ch;
    margin: 0 auto 22px;
    color: var(--text-dim);
}

.asst-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--accent-deep);
    margin-bottom: 22px;
}

.asst-buy-fine {
    max-width: 62ch;
    margin: 20px auto 0;
    font-size: 13.5px;
    color: var(--text-faint);
}

.asst-downloads {
    margin-top: 46px;
    text-align: center;
}

.asst-downloads h3 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: 21px;
}

.asst-downloads-sub {
    margin: 0 auto 22px;
    font-size: 15px;
    color: var(--text-dim);
}

/* Downloads grid — mirrors standalone.css, redefined because that
 * stylesheet is not loaded on this page. */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
                transform 0.15s var(--ease);
}

.download-link:hover {
    border-color: var(--accent);
    background: rgba(20, 124, 229, 0.05);
    transform: translateY(-1px);
}

/* ── Ecosystem + FAQ ─────────────────────────────────────────────── */
.asst-ecosystem { text-align: center; }
.asst-ecosystem .btn { margin-top: 8px; }

.asst-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 22px 36px;
}

.asst-faq-item h3 {
    margin: 0 0 7px;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -0.01em;
}

.asst-faq-item p {
    margin: 0;
    font-size: 15px;
    color: var(--text-dim);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .asst-extend-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
    .asst-grid,
    .asst-split,
    .asst-bullets,
    .asst-checklist,
    .asst-faq-grid { grid-template-columns: 1fr; }
    .hero-assistant .hero-tagline { max-width: none; }
}

/* ── Product screenshot under the hero ───────────────────────────── */
.asst-shot {
    margin: 44px auto 0;
    max-width: 1080px;
}

.asst-shot picture,
.asst-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.asst-shot img {
    border: 1px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.asst-shot figcaption {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-faint);
}
