/* ============================================================
   WHATS-INCLUDED.CSS — /whats-included (.wi- namespace)
   The engagement-scope page: OpenAI overview anatomy, animated.
   Layers on styles.css tokens + pages-shared.css primitives.

/* ------------------------------------------------------------
   HERO — centered, generous, aurora wash behind the copy
------------------------------------------------------------ */
.wi-hero { position: relative; padding: 168px 0 36px; }

.wi-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 520px;
    background: var(--grad-mesh);
    opacity: 0.32;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 35%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 35%, transparent 100%);
    pointer-events: none;
}

.wi-hero .section-inner { position: relative; }

.wi-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wi-h1 {
    font-size: clamp(40px, 4.6vw, 60px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--c-n900);
    max-width: 24ch;
    text-wrap: balance;
    margin-bottom: 18px;
}

.wi-hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--c-n600);
    max-width: 52ch;
    margin-bottom: 28px;
}

.wi-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

/* ------------------------------------------------------------
   DAY-ONE TIMELINE
------------------------------------------------------------ */
.wi-steps {
    display: grid;
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
    align-items: stretch;
}

.wi-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 18px;
    border-radius: var(--r-lg);
    background: #FFFFFF;
    border: 1px solid var(--pg-hairline);
    box-shadow: var(--pg-e1);
}

.wi-step-time {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--c-accent-ink, #3a52d6);
    background: var(--c-brand-100, #e9f1ff);
    border-radius: var(--r-full);
    padding: 4px 12px;
}

.wi-step-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
    border-radius: 14px;
}

[data-reveal].revealed .wi-step-icon { animation: wiIconPop 550ms var(--ease) 250ms both; }

@keyframes wiIconPop {
    0%   { transform: scale(0.6); opacity: 0; }
    70%  { transform: scale(1.06); }
    100% { transform: scale(1); opacity: 1; }
}

.wi-step-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-step-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--c-n500);
}

@keyframes wiDash {
    to { background-position-x: -12px; }
}

.wi-connector {
    align-self: center;
    height: 2px;
    width: 100%;
    background-image: linear-gradient(90deg, var(--c-brand-400, #8ca8e7) 55%, transparent 55%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
}

.wi-steps.in-view .wi-connector { animation: wiDash 1.1s linear infinite; }

/* ------------------------------------------------------------
   CAPABILITY GRID — included in every engagement
------------------------------------------------------------ */
.wi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Soft, care-forward eyebrow — overrides the mono dev-style kicker on this page only */
.pg-kicker {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--c-n500, #5b5b60);
}

.wi-cap-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wi-cap {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.wi-cap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(79, 110, 247, 0.14), 0 24px 60px rgba(22, 22, 23, 0.08);
    border-color: var(--c-brand-400, #8ca8e7);
}

.wi-cap-icon { transition: background 300ms var(--ease), color 300ms var(--ease); }

.wi-cap:hover .wi-cap-icon {
    background: var(--pg-grad-vivid);
    color: #ffffff;
}

.wi-cap-icon {
    width: 38px;
    height: 38px;
    font-size: 19px;
    border-radius: 12px;
    flex-shrink: 0;
}

.wi-cap-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--c-n900);
}

.wi-cap-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--c-n500);
}

/* Day-one cockpit — CSS-built live panel on an aurora stage */
.wi-cockpit {
    position: relative;
    max-width: 880px;
    margin: 44px auto 0;
    padding: 40px clamp(20px, 5vw, 56px);
    border-radius: var(--r-2xl, 28px);
    background:
        radial-gradient(90% 110% at 80% 0%, rgba(116, 146, 253, 0.24) 0%, rgba(116, 146, 253, 0) 58%),
        radial-gradient(110% 120% at 10% 100%, rgba(79, 110, 247, 0.18) 0%, rgba(79, 110, 247, 0) 55%),
        #f3f6fd;
}

.wi-ck {
    background: #ffffff;
    border: 1px solid var(--pg-hairline);
    border-radius: var(--r-xl);
    box-shadow: 0 22px 56px rgba(22, 22, 23, 0.12), 0 6px 16px rgba(22, 22, 23, 0.05);
    overflow: hidden;
}

.wi-ck-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--pg-hairline-soft);
}

.wi-ck-title {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-ck-stamp {
    margin-left: auto;
    font-size: 11.5px;
    color: var(--c-n300, #8a8a90);
}

.wi-ck-body {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
}

.wi-ck-measures {
    padding: 8px 22px 14px;
    border-right: 1px solid var(--pg-hairline-soft);
}

.wi-ck-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12.5px 0;
    border-top: 1px solid var(--pg-hairline-soft);
    opacity: 0;
    transform: translateY(6px);
}

.wi-ck-row:first-child { border-top: none; }

[data-reveal].revealed .wi-ck-row {
    animation: wiCkRow 460ms var(--ease) forwards;
}

[data-reveal].revealed .wi-ck-row:nth-child(2) { animation-delay: 110ms; }
[data-reveal].revealed .wi-ck-row:nth-child(3) { animation-delay: 220ms; }
[data-reveal].revealed .wi-ck-row:nth-child(4) { animation-delay: 330ms; }
[data-reveal].revealed .wi-ck-row:nth-child(5) { animation-delay: 440ms; }

@keyframes wiCkRow {
    to { opacity: 1; transform: none; }
}

.wi-ck-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-n700);
}

.wi-ck-pill {
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--r-full);
    padding: 5px 12px;
    white-space: nowrap;
}

.wi-ck-pill--ok { color: var(--pg-ok-ink, #157a42); background: var(--pg-ok-bg, #e7f6ec); }
.wi-ck-pill--warn { color: #8a5d0d; background: #fbf1dc; }

.wi-ck-side {
    display: flex;
    flex-direction: column;
}

.wi-ck-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 18px 20px;
    text-align: center;
}

.wi-ck-stat + .wi-ck-stat { border-top: 1px solid var(--pg-hairline-soft); }

.wi-ck-stat-value {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-n900);
    font-variant-numeric: tabular-nums;
}

.wi-ck-stat-value .ph { font-size: 24px; color: var(--c-brand-600, #4f6ef7); }

.wi-ck-stat-label {
    font-size: 12.5px;
    color: var(--c-n500);
}

.wi-ck-spark {
    width: 120px;
    height: 44px;
}

.wi-ck-spark-path {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
}

[data-reveal].revealed .wi-ck-spark-path {
    animation: wiSparkDraw 1.1s var(--ease) 350ms forwards;
}

@keyframes wiSparkDraw {
    to { stroke-dashoffset: 0; }
}

/* ------------------------------------------------------------
   PROGRAMS OUT OF THE BOX — 6% vs 100% + grouped catalog
------------------------------------------------------------ */
.wi-pop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.wi-pop-card {
    padding: 34px 30px 30px;
    border-radius: var(--r-xl);
    background: #ffffff;
    border: 1px solid var(--pg-hairline);
    box-shadow: var(--pg-e2);
}

.wi-pop-card--us {
    background: var(--c-brand-100, #e9f1ff);
    border-color: rgba(79, 110, 247, 0.28);
    box-shadow: 0 10px 28px rgba(79, 110, 247, 0.12);
}

.wi-dots {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 7px;
    max-width: 280px;
    margin: 0 auto 26px;
}

.wi-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-g200, #e6e6e6);
    justify-self: center;
    transform: scale(0.4);
    opacity: 0;
}

.wi-pop.revealed .wi-dots span {
    animation: wiDotIn 420ms var(--ease) forwards;
    animation-delay: calc(var(--i) * 9ms);
}

@keyframes wiDotIn {
    to { transform: scale(1); opacity: 1; }
}

.wi-pop-card--them .wi-dots span.lit { background: var(--c-n900); }

.wi-pop-card--us .wi-dots span {
    background: var(--c-accent, #4f6ef7);
    box-shadow: 0 0 6px rgba(79, 110, 247, 0.35);
}

.wi-pop-value {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--c-n900);
    font-variant-numeric: tabular-nums;
    margin-bottom: 10px;
}

.wi-pop-card--them .wi-pop-value { color: var(--c-n400, #6f6f75); }
.wi-pop-card--us .wi-pop-value { color: var(--c-accent-ink, #3a52d6); }

.wi-pop-label {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--c-n500);
    max-width: 270px;
    margin-inline: auto;
}

.wi-pop-card--us .wi-pop-label { color: var(--c-n600, #5b5b60); }

.wi-prog-list {
    max-width: 880px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.wi-prog-group {
    display: flex;
    align-items: baseline;
    gap: 28px;
    padding: 20px 4px;
    border-top: 1px solid var(--pg-hairline-soft);
}

.wi-prog-group:first-child { border-top: none; }

.wi-prog-cat {
    flex: 0 0 172px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-prog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wi-prog {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: var(--r-full);
    border: 1px solid var(--pg-hairline);
    background: #ffffff;
    font-size: 13.5px;
    line-height: 1.3;
    color: var(--c-n700);
    white-space: nowrap;
    transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.wi-prog:hover {
    transform: translateY(-2px);
    border-color: var(--c-brand-400, #8ca8e7);
    box-shadow: 0 6px 16px rgba(79, 110, 247, 0.14);
}

.wi-prog--accent {
    border-color: transparent;
    background: var(--c-n900);
    color: #fff;
}

.wi-prog-foot {
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-n500);
    max-width: 560px;
    margin: 36px auto 0;
}

/* ------------------------------------------------------------
   UI-STORY CARDS — product moments built in code (no images)
------------------------------------------------------------ */
.wi-uistage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px 22px;
    background: linear-gradient(168deg, #eef3fc 0%, #dde7fa 52%, #bccdf4 100%);
}

.wi-uicard {
    width: 100%;
    max-width: 340px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(38, 56, 120, 0.16), 0 4px 10px rgba(38, 56, 120, 0.07);
    padding: 18px;
}

.wi-uichip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border-radius: var(--r-full);
    box-shadow: 0 8px 22px rgba(38, 56, 120, 0.14);
    padding: 9px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--c-n900);
    white-space: nowrap;
}

.wi-uichip b { font-weight: 700; }

.wi-uidot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.wi-uidot--ok { background: var(--pg-ok, #1f9d57); }
.wi-uidot--warn { background: #d99a2b; }

/* chat thread tile */
.wi-uicard--chat { display: flex; flex-direction: column; gap: 9px; }

.wi-msg {
    max-width: 88%;
    background: #f2f3f6;
    border-radius: 14px 14px 14px 4px;
    padding: 10px 13px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--c-n700);
}

.wi-msg--me {
    align-self: flex-end;
    background: var(--pg-grad-vivid);
    color: #ffffff;
    border-radius: 14px 14px 4px 14px;
}

.wi-uichip--inline {
    align-self: center;
    box-shadow: none;
    border: 1px solid var(--pg-hairline);
    margin-top: 3px;
}

/* price-drop tile */
.wi-uicard--save { display: flex; flex-direction: column; gap: 13px; }

.wi-save-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wi-save-head b {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--c-n900);
}

.wi-save-pill {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--c-brand-700, #3a52d6);
    background: var(--c-brand-100, #e9f1ff);
    border-radius: var(--r-full);
    padding: 5px 10px;
    white-space: nowrap;
}

.wi-save-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-variant-numeric: tabular-nums;
}

.wi-save-prices s {
    font-size: 24px;
    font-weight: 600;
    color: var(--c-n300, #8a8a90);
    text-decoration-thickness: 2px;
}

.wi-save-prices svg {
    width: 18px;
    height: 18px;
    align-self: center;
    color: var(--c-n300, #8a8a90);
}

.wi-save-prices b {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-n900);
}

.wi-save-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--c-n500);
    border-top: 1px solid var(--pg-hairline-soft);
    padding-top: 11px;
}

/* nurse takeover card (Responsible AI) */
.wi-uistage--tall {
    border-radius: var(--r-xl);
    padding: 30px 24px;
    min-height: 460px;
    box-shadow: 0 18px 48px rgba(22, 22, 23, 0.10);
}

.wi-uichip--tr { align-self: flex-end; }
.wi-uichip--bl { align-self: flex-start; }
.wi-uichip--bl b { font-weight: 700; }

.wi-nurse { display: flex; flex-direction: column; gap: 12px; padding: 20px; }

.wi-nurse-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--pg-hairline-soft);
}

.wi-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--pg-grad-vivid);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.wi-nurse-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.wi-nurse-id b {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-nurse-id span {
    font-size: 12px;
    color: var(--c-n500);
    white-space: nowrap;
}

.wi-loop-pill {
    margin-left: auto;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--pg-ok-ink, #157a42);
    background: var(--pg-ok-bg, #e7f6ec);
    border-radius: var(--r-full);
    padding: 5px 11px;
    white-space: nowrap;
}

.wi-nurse-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--c-n500);
}

.wi-nurse-quote {
    font-size: 15.5px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-nurse-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--c-n500);
}

/* ------------------------------------------------------------
   MEMBER VALUE — image cards (patients-page assets)
------------------------------------------------------------ */
.wi-member-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 20px;
}

.wi-member-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wi-member-art {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 6 / 5;
    box-shadow: 0 14px 38px rgba(22,22,23,0.10), 0 5px 14px rgba(22,22,23,0.05);
    margin-bottom: 8px;
}

.wi-member-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wi-member-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-member-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-n500);
}

/* ------------------------------------------------------------
   FAMILY SPLIT
------------------------------------------------------------ */
.wi-family-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.wi-split-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
    color: var(--c-n900);
    margin-bottom: 14px;
}

.wi-split-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-n500);
    margin-bottom: 24px;
}

.wi-family-shot {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(22,22,23,0.11), 0 6px 16px rgba(22,22,23,0.05);
}

.wi-family-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.wi-family-shot .pg-float-chip b { font-size: 14px; }

/* ------------------------------------------------------------
   NEVER PAY FOR — x rows
------------------------------------------------------------ */
.wi-never-list {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.wi-never-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 4px;
    border-top: 1px solid var(--pg-hairline-soft);
}

.wi-never-row:first-child { border-top: none; }

.wi-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-g50, #f5f6f6);
    color: var(--c-n400, #6f6f75);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.wi-never-row h3 {
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-n900);
    margin-bottom: 3px;
    text-decoration: line-through;
    text-decoration-color: rgba(22,22,23,0.28);
    text-decoration-thickness: 1.5px;
}

.wi-never-row p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-n500);
}

/* ------------------------------------------------------------
   RESPONSIBLE AI — clinician imagery + guardrail rows
------------------------------------------------------------ */
.wi-resp-split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 56px;
    align-items: center;
    max-width: 1080px;
    margin-inline: auto;
}

.wi-resp-shot {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(22, 22, 23, 0.14), 0 6px 16px rgba(22, 22, 23, 0.06);
}

.wi-resp-shot img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.wi-resp-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.wi-resp-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 17px 4px;
    border-top: 1px solid var(--pg-hairline-soft);
}

.wi-resp-row:first-child { border-top: none; }

.wi-resp-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
    border-radius: 13px;
    flex-shrink: 0;
}

.wi-resp-row h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-n900);
    margin-bottom: 4px;
}

.wi-resp-row p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--c-n500);
}

/* ------------------------------------------------------------
   OPERATING STANDARDS strip
------------------------------------------------------------ */
.wi-standards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    padding: 44px 36px;
    border-radius: var(--r-2xl, 28px);
    background: #ffffff;
    border: 1px solid var(--c-g200, #e6e6e6);
    box-shadow: var(--shadow-sm, 0 2px 6px rgba(22, 22, 23, 0.06));
}

.wi-standard {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wi-standard b {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-n900);
}

.wi-standard span {
    font-size: 13px;
    line-height: 1.45;
    color: var(--c-n500);
}

/* ------------------------------------------------------------
   FAQ rows
------------------------------------------------------------ */
.wi-faq-list {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.wi-faq-row {
    border-top: 1px solid var(--pg-hairline-soft);
}

.wi-faq-row:first-child { border-top: none; }

.wi-faq-row summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 4px;
    cursor: pointer;
    list-style: none;
}

.wi-faq-row summary::-webkit-details-marker { display: none; }

.wi-faq-row h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--c-n900);
}

.wi-faq-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--pg-hairline);
    color: var(--c-n500);
    transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}

.wi-faq-plus svg { width: 14px; height: 14px; }

.wi-faq-row summary:hover .wi-faq-plus {
    border-color: var(--c-brand-400, #8ca8e7);
    color: var(--c-n900);
}

.wi-faq-row[open] .wi-faq-plus {
    transform: rotate(45deg);
    background: var(--c-n900);
    border-color: var(--c-n900);
    color: #ffffff;
}

.wi-faq-row p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-n500);
    max-width: 62ch;
    padding: 0 4px 24px;
}

.wi-faq-row[open] p {
    animation: wiFaqIn 320ms var(--ease);
}

@keyframes wiFaqIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   Reduced motion
------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    [data-reveal].revealed .wi-step-icon { animation: none; }
    .wi-steps.in-view .wi-connector { animation: none; }
    .wi-cap { transition: none; }
    .wi-dots span { transform: none; opacity: 1; }
    .wi-pop.revealed .wi-dots span { animation: none; }
    .wi-prog, .wi-faq-plus { transition: none; }
    .wi-faq-row[open] p { animation: none; }
    .wi-ck-row { opacity: 1; transform: none; }
    [data-reveal].revealed .wi-ck-row { animation: none; }
    .wi-ck-spark-path { stroke-dashoffset: 0; }
    [data-reveal].revealed .wi-ck-spark-path { animation: none; }
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */
@media (max-width: 1100px) {
    .wi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .wi-hero { padding-top: 140px; }
    .wi-steps { grid-template-columns: 1fr; }
    .wi-connector {
        width: 2px;
        height: 28px;
        justify-self: center;
        background-image: linear-gradient(180deg, var(--c-brand-400, #8ca8e7) 55%, transparent 55%);
        background-size: 2px 12px;
        background-repeat: repeat-y;
    }
    @keyframes wiDashV { to { background-position-y: -12px; } }
    .wi-steps.in-view .wi-connector { animation: wiDashV 1.1s linear infinite; }
    .wi-member-grid { grid-template-columns: 1fr 1fr; }
    .wi-ck-body { grid-template-columns: 1fr; }
    .wi-ck-measures { border-right: none; border-bottom: 1px solid var(--pg-hairline-soft); }
    .wi-ck-side { flex-direction: row; }
    .wi-ck-stat + .wi-ck-stat { border-top: none; border-left: 1px solid var(--pg-hairline-soft); }
    .wi-prog-group { flex-direction: column; gap: 12px; }
    .wi-prog-cat { flex-basis: auto; }
    .wi-family-split { grid-template-columns: 1fr; gap: 36px; }
    .wi-resp-split { grid-template-columns: 1fr; gap: 32px; }
    .wi-resp-shot { max-width: 420px; margin-inline: auto; }
    .wi-standards { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}

@media (max-width: 768px) {
    .wi-hero-actions { flex-direction: column; width: 100%; }
    .wi-hero-actions .pg-btn { width: 100%; }
}

@media (max-width: 480px) {
    .wi-h1 { font-size: 33px; }
    .wi-member-grid { grid-template-columns: 1fr; }
    .wi-grid { grid-template-columns: 1fr; }
    .wi-pop { grid-template-columns: 1fr; }
    .wi-pop-value { font-size: 44px; }
    .wi-prog { white-space: normal; }
}

/* Accreditation strip label — class borrowed from platform.css, which this
   page doesn't load; styled here in this page's softer voice */
.pp-strip-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--c-n500, #5b5b60);
    margin-bottom: 24px;
}
