/* ============================================================
   Reflective — page components
   Pricing / How it Works / About / Contact / Library template.
   Extends site.css tokens; product vignettes in components.css.
   ============================================================ */

/* ---------- pricing ---------- */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    margin-top: 28px;
    gap: 2px;
}
.billing-toggle .bt-opt {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    color: var(--text-3);
    border: none;
    cursor: pointer;
    background: transparent;
    font-family: inherit;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.billing-toggle .bt-opt.on {
    background: var(--primary);
    color: #fff;
}
.billing-toggle .bt-save {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    margin-left: 7px;
    transition: color 0.2s ease;
}
.billing-toggle .bt-opt.on .bt-save {
    color: #fff;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.plan-card.featured {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-lg);
}
.plan-flag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 14px;
    white-space: nowrap;
}
.plan-name {
    font-size: 17px;
    font-weight: 600;
}
.plan-for {
    font-size: 13.5px;
    color: var(--text-3);
    margin: 4px 0 0;
    min-height: 42px;
    text-wrap: pretty;
}
.plan-price {
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.plan-price .amount {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.plan-price .per {
    font-size: 14px;
    color: var(--text-3);
}
.plan-annual {
    font-size: 13px;
    color: var(--text-3);
    margin: 6px 0 0;
}
.plan-annual:empty {
    display: none;
}
.plan-annual b {
    color: var(--accent-600);
    font-weight: 600;
}
.plan-card .btn {
    margin-top: 24px;
    width: 100%;
}
.plan-feats {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 11px;
}
.plan-feats li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--text-2);
    text-wrap: pretty;
}
.plan-feats li::before {
    content: '';
    width: 20px;
    height: 1.3em;
    flex-shrink: 0;
    background: var(--accent-600);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        right center / 15px 15px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        right center / 15px 15px no-repeat;
}
.plan-feats li[data-val]::before {
    content: attr(data-val);
    width: 20px;
    height: 1.3em;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    -webkit-mask: none;
    mask: none;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.plan-feats .plan-feats-lead {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-4);
}
.plan-feats .plan-feats-lead::before {
    display: none;
}

/* comparison table */
.compare-scroll {
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.compare-table th,
.compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid var(--hairline);
}
.compare-table th {
    font-weight: 600;
}
.compare-table thead th {
    background: var(--surface-2);
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
    vertical-align: bottom;
}
.compare-table thead .th-price {
    display: block;
    font-weight: 400;
    color: var(--text-3);
    font-size: 12.5px;
    margin-top: 2px;
}
.compare-table td.val,
.compare-table th.val {
    text-align: center;
    width: 17%;
}
.compare-table td.val {
    color: var(--text-2);
}
.compare-table .group-row td {
    background: var(--bg);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 10px 20px;
}
.compare-table .feat {
    color: var(--text-2);
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.tick {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-100);
    color: var(--accent-700);
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.notick {
    color: var(--text-4);
}

/* faq */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}
.faq-item h3 {
    font-size: 15.5px;
    font-weight: 600;
    margin: 0;
}
.faq-item p {
    margin: 8px 0 0;
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.6;
    text-wrap: pretty;
}

/* ---------- how it works ---------- */
.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid var(--hairline);
}
.step-row:first-of-type {
    border-top: none;
}
.step-num {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.step-row h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -0.01em;
}
.step-art {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.step-art.tint {
    background: var(--primary-tint);
}
.step-art.tint-g {
    background: var(--accent-tint);
}
.step-art.tint-w {
    background: #faf6f0;
}
.step-art > img.watercolor {
    mix-blend-mode: multiply;
}

/* share-link mini ui */
.mu-share {
    width: 100%;
    max-width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: 18px 20px;
}
.mu-share .sh-title {
    font-size: 13.5px;
    font-weight: 600;
}
.mu-share .sh-sub {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
}
.mu-share .sh-link {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    color: var(--text-3);
}
.mu-share .sh-link b {
    color: var(--text-2);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mu-share .sh-copy {
    margin-left: auto;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}
.mu-share .sh-row {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}
.mu-share .sh-chip {
    font-size: 11.5px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 12px;
    color: var(--text-2);
}
.mu-share .sh-chip.on {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary);
}

/* response summary mini ui */
.mu-resp {
    width: 100%;
    max-width: 330px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: 18px 20px;
}
.mu-resp .r-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.mu-resp .r-name {
    font-size: 13.5px;
    font-weight: 600;
}
.mu-resp .r-when {
    font-size: 11.5px;
    color: var(--text-4);
}
.mu-resp .r-quote {
    font-family: var(--font-serif);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
    margin-top: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--primary-200);
}
.mu-resp .r-week {
    display: flex;
    gap: 9px;
    margin-top: 16px;
}
.mu-resp .r-week .day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.mu-resp .r-week .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.mu-resp .r-week .lbl {
    font-size: 9px;
    color: var(--text-4);
    font-weight: 600;
}

/* hero reminder chip (reminders band) */
.hero-reminder-chip {
    position: absolute;
    left: -28px;
    bottom: 32px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 280px;
}
.hero-reminder-chip .chip-dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
}
.hero-reminder-chip .chip-title {
    font-size: 13px;
    font-weight: 600;
}
.hero-reminder-chip .chip-sub {
    font-size: 12px;
    color: var(--text-3);
}

/* ---------- about ---------- */
.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.principle {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 26px;
}
.principle .p-num {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}
.principle h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 0;
}
.principle p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.6;
    text-wrap: pretty;
}

.about-prose {
    max-width: 620px;
}
.about-prose .body-copy {
    font-size: 17px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    text-align: left;
}
.team-card .t-name {
    font-size: 15px;
    font-weight: 600;
    margin-top: 14px;
}
.team-card .t-role {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 2px;
}

/* striped image placeholder (pending real photos) */
.ph {
    position: relative;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    background: repeating-linear-gradient(
        -45deg,
        var(--bg-2) 0 10px,
        var(--surface-2) 10px 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ph span {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    color: var(--text-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
}

/* ---------- contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: start;
}
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 36px 36px 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-form .field {
    margin-top: 18px;
    display: grid;
    gap: 7px;
}
.contact-form .field:first-child {
    margin-top: 0;
}
.contact-form label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}
.contact-form .hint {
    font-size: 12.5px;
    color: var(--text-3);
    font-weight: 400;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: var(--font-sans);
    font-size: 14.5px;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    width: 100%;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-300);
    background: var(--surface);
    box-shadow: var(--ring);
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form .btn {
    margin-top: 26px;
}
.contact-form .form-fine {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-3);
}
.form-success {
    background: var(--accent-tint);
    border: 1px solid var(--accent-200);
    border-radius: var(--r-lg);
    padding: 18px 20px;
    font-size: 14.5px;
    color: var(--accent-700);
}

.contact-cards {
    display: grid;
    gap: 16px;
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 22px 24px;
}
.contact-card h3 {
    font-size: 15px;
    font-weight: 600;
}
.contact-card p {
    margin: 6px 0 0;
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.55;
    text-wrap: pretty;
}
.contact-card a.mail {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.contact-card a.mail:hover {
    text-decoration: underline;
}
.contact-art {
    margin: 0 auto 8px;
    max-width: 250px;
    -webkit-mask-image: radial-gradient(
        circle at 50% 50%,
        black 52%,
        transparent 74%
    );
    mask-image: radial-gradient(circle at 50% 50%, black 52%, transparent 74%);
}

.crisis-note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-400);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    max-width: 720px;
}
.crisis-note h2 {
    font-size: 15px;
    font-weight: 600;
}
.crisis-note p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    text-wrap: pretty;
}

/* ---------- library activity template ---------- */
.crumbs {
    font-size: 13px;
    color: var(--text-3);
    display: flex;
    gap: 8px;
    align-items: center;
}
.crumbs a {
    text-decoration: none;
    color: var(--text-3);
}
.crumbs a:hover {
    color: var(--text);
}
.crumbs .sep {
    color: var(--border-strong);
}
.crumbs .here {
    color: var(--text);
    font-weight: 500;
}

.act-hero {
    padding: 40px 0 56px;
}
.act-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 28px;
}
.act-hero .h-display {
    font-size: 46px;
    max-width: 18ch;
}
.act-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.act-chip {
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 999px;
    padding: 5px 13px;
    color: var(--text-2);
}
.act-chip.mod {
    background: var(--primary-50);
    border-color: var(--primary-100);
    color: var(--primary);
}

.glance-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}
.glance-card h2 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin: 0 0 6px;
}
.glance-list {
    margin: 0;
    display: grid;
}
.glance-list .g-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--hairline);
}
.glance-list .g-row:last-child {
    border-bottom: none;
}
.glance-list dt {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-3);
}
.glance-list dd {
    margin: 0;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.5;
}

.act-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 72px;
    align-items: start;
}
.act-toc {
    position: sticky;
    top: 88px;
    border-left: 1px solid var(--border);
    padding-left: 20px;
    display: grid;
    gap: 10px;
}
.act-toc a {
    font-size: 13.5px;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s ease;
}
.act-toc a.on {
    color: var(--primary);
    font-weight: 600;
}
.act-toc .toc-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-4);
}

.legal-prose {
    max-width: 720px;
}
.legal-prose a {
    color: var(--primary-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-prose a:hover {
    color: var(--primary-700);
}

.act-prose h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 27px;
    letter-spacing: -0.01em;
    margin: 56px 0 0;
}
.act-prose h2:first-child {
    margin-top: 0;
}
.act-prose p {
    color: var(--text-2);
    margin: 14px 0 0;
    text-wrap: pretty;
}
.act-prose ul {
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.act-prose ul li {
    position: relative;
    padding-left: 19px;
    color: var(--text-2);
    text-wrap: pretty;
}
.act-prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-300);
}
.act-prose ul li b {
    color: var(--text);
    font-weight: 600;
}

/* "what clients see" — CSS phone screens */
.shot-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.shot-cap {
    font-size: 12.5px;
    color: var(--text-3);
    margin-top: 10px;
}
.app-screen {
    aspect-ratio: 9 / 16;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.app-screen .as-step {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-4);
}
.app-screen .as-progress {
    display: flex;
    gap: 4px;
    margin-top: 10px;
}
.app-screen .as-progress i {
    height: 3px;
    flex: 1;
    border-radius: 99px;
    background: var(--border);
}
.app-screen .as-progress i.done {
    background: var(--primary-300);
}
.app-screen .as-prompt {
    font-family: var(--font-serif);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.35;
    margin-top: 22px;
    text-wrap: balance;
}
.app-screen .as-sub {
    font-size: 11.5px;
    color: var(--text-3);
    margin-top: 8px;
    line-height: 1.5;
}
.app-screen .as-input {
    margin-top: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.5;
    min-height: 76px;
}
.app-screen .as-input.ghost {
    color: var(--text-4);
}
.app-screen .as-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}
.app-screen .as-chip {
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 999px;
    padding: 5px 11px;
    color: var(--text-2);
}
.app-screen .as-chip.on {
    background: var(--primary-50);
    border-color: var(--primary-200);
    color: var(--primary);
}
.app-screen .as-slider {
    margin-top: 20px;
}
.app-screen .as-slider .track {
    height: 6px;
    border-radius: 99px;
    background: var(--primary-100);
    position: relative;
}
.app-screen .as-slider .track::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 62%;
    border-radius: 99px;
    background: var(--primary-300);
}
.app-screen .as-slider .thumb {
    position: absolute;
    left: calc(62% - 9px);
    top: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}
.app-screen .as-slider .track {
    position: relative;
}
.app-screen .as-slider .ends {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-4);
    margin-top: 9px;
}
.app-screen .as-next {
    margin-top: auto;
    align-self: flex-end;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border-radius: 999px;
    padding: 8px 18px;
}

.mod-fit {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.mod-fit-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 18px;
    align-items: baseline;
}
.mod-fit-row .m-abbr {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
}
.mod-fit-row p {
    margin: 0;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.55;
}

.src-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    counter-reset: src;
}
.src-list li {
    background: var(--surface);
    padding: 14px 18px;
    border-bottom: 1px solid var(--hairline);
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.55;
    display: flex;
    gap: 14px;
}
.src-list li:last-child {
    border-bottom: none;
}
.src-list li::before {
    counter-increment: src;
    content: counter(src);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-4);
    flex-shrink: 0;
    padding-top: 2px;
}
.src-list i {
    font-style: italic;
}

.act-faq {
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 18px;
}
.act-faq .qa {
    background: var(--surface);
    padding: 18px 22px;
    border-bottom: 1px solid var(--hairline);
}
.act-faq .qa:last-child {
    border-bottom: none;
}
.act-faq h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}
.act-faq p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 22px 22px;
    text-decoration: none;
    display: block;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}
.related-card .rc-mod {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}
.related-card h3 {
    font-size: 15.5px;
    font-weight: 600;
    margin: 8px 0 0;
}
.related-card p {
    margin: 6px 0 0;
    font-size: 13.5px;
    color: var(--text-3);
    line-height: 1.55;
}

.act-cta {
    background: var(--primary-tint);
    border: 1px solid var(--primary-100);
    border-radius: var(--r-2xl);
    padding: 44px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.act-cta h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: -0.01em;
    max-width: 22ch;
    margin: 0;
}
.act-cta p {
    margin: 8px 0 0;
    font-size: 14.5px;
    color: var(--text-2);
}
.act-cta .cta-row {
    margin-top: 0;
    flex-shrink: 0;
}

/* ---------- blog ---------- */
.blog-index-hero {
    padding-bottom: 40px;
}
.blog-index-section {
    padding-bottom: 88px;
}
.blog-card-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.blog-card {
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.blog-card-media {
    aspect-ratio: 16 / 9;
    background: var(--bg-2);
    overflow: hidden;
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 22px 22px 26px;
}
.blog-card-date {
    display: block;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 8px;
}
.blog-card-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin: 0 0 10px;
    color: var(--text);
}
.blog-card-excerpt {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-article {
    padding-bottom: 72px;
}
.blog-article-wrap {
    max-width: 720px;
}
.blog-article-header {
    padding: 56px 0 28px;
}
.blog-article-header .eyebrow a {
    color: inherit;
    text-decoration: none;
}
.blog-article-header .eyebrow a:hover {
    color: var(--primary);
}
.blog-meta {
    margin: 12px 0 0;
    font-size: 14.5px;
    color: var(--text-3);
}
.blog-hero-image {
    margin-top: 28px;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-2);
}
.blog-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}
.blog-prose {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-2);
}
.blog-prose > *:first-child {
    margin-top: 0;
}
.blog-prose p,
.blog-prose ul,
.blog-prose ol,
.blog-prose blockquote,
.blog-prose figure {
    margin: 0 0 1.15em;
}
.blog-prose h2,
.blog-prose h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 1.6em 0 0.55em;
}
.blog-prose h2 {
    font-size: 26px;
}
.blog-prose h3 {
    font-size: 21px;
}
.blog-prose a {
    color: var(--primary-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r-lg);
}
.blog-prose figure {
    margin: 1.5em 0;
}
.blog-prose figcaption {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--text-3);
    text-align: center;
}
.blog-prose blockquote {
    margin: 1.4em 0;
    padding: 4px 0 4px 18px;
    border-left: 3px solid var(--primary-200);
    color: var(--text);
    font-family: var(--font-serif);
    font-size: 1.05em;
}
.blog-prose ul,
.blog-prose ol {
    padding-left: 1.25em;
}
.blog-prose li {
    margin: 0.35em 0;
}
.blog-prose hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 2em 0;
}
.blog-back {
    margin: 40px 0 0;
    font-size: 15px;
}
.blog-back a {
    color: var(--primary-700);
    text-decoration: none;
}
.blog-back a:hover {
    text-decoration: underline;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
    .blog-card-grid {
        grid-template-columns: 1fr;
    }
    .page-hero .hero-2col {
        display: block !important;
    }
    .plan-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .step-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .step-row .step-art {
        order: -1;
    }
    .principle-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .act-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .act-body {
        grid-template-columns: 1fr;
    }
    .act-toc {
        display: none;
    }
    .shot-row {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .act-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
    }
    .compare-table {
        min-width: 760px;
    }
}

/* ---------- how it works: workflow timeline ---------- */
.workflow {
    position: relative;
}
.wf-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.wf-art {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--r-2xl);
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 0;
}
.wf-art.tint {
    background: var(--primary-tint);
}
.wf-art.tint-w {
    background: #faf6f0;
}
.wf-art.tint-g {
    background: var(--accent-tint);
}
.wf-art img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    z-index: 1;
}
.wf-wash {
    position: absolute;
    inset: 12% 8%;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.75;
}
.wf-art.tint .wf-wash {
    background: var(--primary-100);
}
.wf-art.tint-w .wf-wash {
    background: #f3e5cf;
}
.wf-art.tint-g .wf-wash {
    background: var(--accent-100);
}
.wf-node {
    height: 56px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
}
.wf-node span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 15px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 6px var(--bg);
}
.wf-step h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 6px 0 0;
    color: var(--text);
}
.wf-step p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-2);
    max-width: 32ch;
    text-wrap: pretty;
}
.wf-rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0;
    padding-bottom: calc((100% - 64px) / 4);
    pointer-events: none;
}
.wf-path {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 56px;
    top: 100%;
    z-index: 1;
    overflow: visible;
}
.wf-route {
    fill: none;
    stroke: var(--primary-200);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 0.012 0.012;
}
.wf-ink {
    stroke: var(--primary-400);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0.9;
}
.wf-traveler {
    fill: var(--primary);
    opacity: 0;
}
.wf-ehr {
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-3);
}
.wf-ehr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-300);
}
@media (max-width: 960px) {
    .wf-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wf-rail {
        display: none;
    }
    .wf-art {
        max-width: 420px;
    }
}
