/* Ki — System (Ki is a System)
   Source: Ki Home.html lines 294–341.
   Two-column · 1fr 1.05fr · 80px gap. Left = 4/5 image frame.
   Right = catchline + italic-accent serif h2 + lede + checklist +
   caveat + price strip + grey CTA + foot. */

/* Source `<section class="block">` defaults to white. Paint it explicitly so
   the section can stand on its own when dropped into any container. */
.ki-scope .ki-system {
    padding: 88px 0;
    position: relative;
    background: var(--ki-paper);
}

.ki-scope .ki-system .system {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;   /* right copy vertically centered against the image */
}

/* ── Image frame ────────────────────────────────────────────── */
.ki-scope .ki-system .system-img {
    /* The image shows at its natural ratio so it defines its own height; the
       (shorter) right column then centers vertically against it. */
    aspect-ratio: auto;
    background: var(--ki-cream);
    border: 1px solid var(--ki-rule);
    position: relative;
    overflow: hidden;
}
/* When there's no uploaded image, give the placeholder frame a height. */
.ki-scope .ki-system .system-img:not(:has(.ki-system-photo)) {
    aspect-ratio: 4 / 5;
}
.ki-scope .ki-system .system-img .ki-system-photo {
    width: 100%;
    height: auto;
    display: block;
}
/* placeholder stripes inherit from ki-tokens .ph-stripes / .ph-label */

/* ── Right copy ─────────────────────────────────────────────── */
/* stock pill (matches the product-page pill) */
.ki-scope .ki-system .system-info .stock-pill {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ki-mono);
    font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ki-blue-deep);
    padding: 10px 18px; border: 1.5px solid var(--ki-blue); border-radius: 999px;
    background: var(--ki-blue-tint); margin-bottom: 18px;
}
.ki-scope .ki-system .system-info .stock-pill .stock-dot {
    width: 8px; height: 8px; border-radius: 50%; flex: none;
    background: var(--ki-blue); box-shadow: 0 0 0 4px rgba(56,140,196,0.18);
}

.ki-scope .ki-system .system-info .catchline {
    display: block;
    margin-bottom: 18px;
    font-family: var(--ki-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ki-blue-2);
}
.ki-scope .ki-system .system-info h2 {
    font-family: var(--ki-serif);
    font-weight: 400;
    font-size: clamp(34px, 3.6vw, 44px);
    line-height: 1.1;
    margin: 0 0 22px;
    letter-spacing: -0.005em;
    color: var(--ki-ink);
}
.ki-scope .ki-system .system-info h2 em {
    font-family: var(--ki-serif-italic);
    font-style: italic;
    color: var(--ki-blue-deep);
}
.ki-scope .ki-system .system-info .lede {
    font-family: var(--ki-sans);
    font-size: 16px;
    color: var(--ki-ink-mute);
    margin: 0 0 22px;
    line-height: 1.6;
    max-width: 54ch;
}
/* Subheadline — sits between the headline and the lede paragraph.
   Slightly larger + heavier so it reads as a strong supporting line.
   (Override freely via Style → Typography → Subheadline.) */
.ki-scope .ki-system .system-info .system-subhead {
    font-family: var(--ki-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--ki-ink);
    margin: 0 0 16px;
    line-height: 1.42;
    max-width: 54ch;
}
.ki-scope .ki-system .system-info .system-subhead em {
    font-family: var(--ki-serif-italic);
    font-style: italic;
    color: var(--ki-blue-deep);
}

/* ── Checklist ──────────────────────────────────────────────── */
.ki-scope .ki-system .system-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}
.ki-scope .ki-system .system-list .it {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 18px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--ki-rule);
}
.ki-scope .ki-system .system-list .it:first-child {
    border-top: 1px solid var(--ki-rule);
}
.ki-scope .ki-system .system-list .it .chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--ki-blue);
    background: var(--ki-paper);
    display: grid;
    place-items: center;
    color: var(--ki-blue);
}
.ki-scope .ki-system .system-list .it .chk svg {
    width: 11px;
    height: 11px;
}
.ki-scope .ki-system .system-list .it .txt {
    font-family: var(--ki-sans);
    font-size: 15.5px;
    color: var(--ki-ink);
    line-height: 1.4;
}

/* ── Caveat ─────────────────────────────────────────────────── */
.ki-scope .ki-system .system-info p.caveat {
    font-family: var(--ki-sans);
    font-size: 14px;
    color: var(--ki-ink-mute);
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 54ch;
}

/* ── Price strip — big amount + /day, then the note, sharing one baseline
      so they read as a single aligned line (note left-aligned). ── */
.ki-scope .ki-system .price-strip {
    display: flex;
    align-items: baseline;
    gap: 28px;
    padding: 16px 0;
    background: transparent;
    border-top: 1px solid var(--ki-rule);
    border-bottom: 1px solid var(--ki-rule);
    margin-bottom: 20px;
}
.ki-scope .ki-system .price-strip .p {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    flex: none;
}
.ki-scope .ki-system .price-strip .p .amt {
    font-family: var(--ki-num);
    font-size: 34px;
    color: var(--ki-ink);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
}
.ki-scope .ki-system .price-strip .p .per {
    font-family: var(--ki-num);
    font-size: 14px;
    color: var(--ki-ink-mute);
    font-weight: 500;
}
.ki-scope .ki-system .price-strip .l {
    font-family: var(--ki-sans);
    font-size: 13px;
    color: var(--ki-ink-mute);
    line-height: 1.45;
    text-align: left;
    max-width: 48ch;
}
.ki-scope .ki-system .price-strip .l strong {
    color: var(--ki-ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
}

/* ── CTA + foot ─────────────────────────────────────────────── */
.ki-scope .ki-system .system-cta {
    display: flex;
    gap: 12px;
}
.ki-scope .ki-system .btn-system {
    /* Source `.btn-grey` (Ki Home.html 333–340) — grey CTA. */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 52px;
    padding: 0 26px;
    background: #525252;
    color: var(--ki-paper);
    font-family: var(--ki-sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: background 220ms ease, transform 220ms ease;
}
.ki-scope .ki-system .btn-system:hover {
    background: var(--ki-ink);
    transform: translateY(-1px);
}
.ki-scope .ki-system .btn-system::after {
    content: "→";
    font-family: var(--ki-serif);
    font-size: 18px;
}
.ki-scope .ki-system .system-foot {
    margin-top: 18px;
}
.ki-scope .ki-system .system-foot .system-foot-tag,
.ki-scope .ki-system .system-foot .system-trust {
    font-family: var(--ki-sans);
    font-size: 13px;
    color: var(--ki-ink-mute);
    line-height: 1.6;
    margin: 0;
    max-width: 62ch;
}
.ki-scope .ki-system .system-foot .system-trust {
    margin-top: 10px;
    font-weight: 600;
    color: var(--ki-ink-soft);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ki-scope .ki-system { padding: 96px 0; }
    .ki-scope .ki-system .system {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ki-scope .ki-system .system-img {
        aspect-ratio: 4 / 3;
        max-width: 560px;
    }
}
@media (max-width: 700px) {
    .ki-scope .ki-system { padding: 72px 0; }
    .ki-scope .ki-system .system { gap: 36px; }
    .ki-scope .ki-system .price-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .ki-scope .ki-system .btn-system {
        width: 100%;
        justify-content: center;
        height: 56px;
        padding: 0 18px;
        font-size: 11px;
        letter-spacing: 0.16em;
    }
}
