/* ============================================================
   Vespexx · Soonr for Employers — enterprise-only components
   Built entirely on Soonr Design System tokens. Loaded after main.css.
   ============================================================ */

/* --------- Nav: secondary external links --------- */
.nav-links a.ext { font-size: var(--text-body-sm); opacity: 0.7; }
.nav-links a.ext:hover { opacity: 1; }
.nav-links a.ext .up { font-size: 12px; opacity: 0.7; }

/* --------- Hero: full landscape product showcase (image 5) --------- */
.hero-showcase {
    margin-top: var(--space-8);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    position: relative;
}
.hero-showcase img { width: 100%; height: auto; display: block; }
.hero-showcase::after {
    content: "";
    position: absolute; inset: 0;
    background: var(--glow-warm);
    mix-blend-mode: soft-light;
    pointer-events: none;
}
.hero-showcase figcaption {
    position: absolute;
    left: var(--space-5); bottom: var(--space-5);
    z-index: 2;
    max-width: min(460px, 76%);
    background: rgba(10, 10, 10, 0.80);
    color: var(--sand-500);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-body-sm);
    line-height: 1.4;
    backdrop-filter: blur(6px);
}

/* --------- Hero right-column square photo (app + device) --------- */
.hero-photo.square { aspect-ratio: 1 / 1; }

/* --------- Standalone demo player (below product system) --------- */
.demo-player {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    background: #000;
    line-height: 0;
}
.demo-player video { width: 100%; height: auto; display: block; }
.demo-player .demo-play {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    border: 0; cursor: pointer; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.05) 40%, rgba(10,10,10,0.35) 100%);
    transition: opacity var(--dur-normal) var(--ease-standard);
}
.demo-player.is-playing .demo-play { opacity: 0; pointer-events: none; }
.demo-player .demo-play .ico {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: grid; place-items: center; font-size: 27px; padding-left: 4px;
    box-shadow: var(--shadow-brand); position: relative;
}
.demo-player .demo-play .ico::before,
.demo-player .demo-play .ico::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--color-primary); animation: demoPulse 2s ease-out infinite;
}
.demo-player .demo-play .ico::after { animation-delay: 1s; }
.demo-player .demo-play .txt {
    background: rgba(10,10,10,0.72); color: #fff; backdrop-filter: blur(6px);
    font-family: var(--font-body); font-size: var(--text-body-sm); font-weight: var(--weight-semibold);
    padding: 8px 16px; border-radius: var(--radius-pill);
}
@media (prefers-reduced-motion: reduce) {
    .demo-player .demo-play .ico::before, .demo-player .demo-play .ico::after { animation: none; }
}

/* --------- Hero hover-to-play demo --------- */
.hero-demo { position: relative; cursor: pointer; }
.hero-demo .hero-demo-vid,
.hero-demo .hero-demo-poster {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.hero-demo .hero-demo-vid { opacity: 0; transition: opacity var(--dur-normal) var(--ease-standard); }
.hero-demo.is-playing .hero-demo-vid { opacity: 1; }
.hero-demo.is-playing .hero-demo-poster { opacity: 0; }
.hero-demo .hero-demo-poster { transition: opacity var(--dur-normal) var(--ease-standard); z-index: 1; }
.hero-demo .hero-demo-vid { z-index: 2; }

/* Nudge — pulsing play button + label */
.hero-demo-nudge {
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; pointer-events: none;
    transition: opacity var(--dur-normal) var(--ease-standard);
    background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.35) 100%);
}
.hero-demo.is-playing .hero-demo-nudge { opacity: 0; }
.hero-demo-play {
    width: 74px; height: 74px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: grid; place-items: center;
    font-size: 26px; padding-left: 4px;
    box-shadow: var(--shadow-brand);
    position: relative;
}
.hero-demo-play::before,
.hero-demo-play::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: demoPulse 2s ease-out infinite;
}
.hero-demo-play::after { animation-delay: 1s; }
@keyframes demoPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}
.hero-demo-label {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(10,10,10,0.72); color: #fff;
    font-family: var(--font-body); font-size: var(--text-body-sm); font-weight: var(--weight-semibold);
    padding: 8px 16px; border-radius: var(--radius-pill);
    backdrop-filter: blur(6px);
}
.hero-demo-label .cur { display: none; }
@media (hover: none) { .hero-demo-label .hov { display: none; } .hero-demo-label .cur { display: inline; } }
@media (prefers-reduced-motion: reduce) {
    .hero-demo-play::before, .hero-demo-play::after { animation: none; }
}

/* --------- Usage "how to use" grid (Amazon detail imagery) --------- */
.usage { margin-top: var(--space-7); }
.usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.usage-tile {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--dur-normal) var(--ease-standard);
}
.usage-tile:hover { box-shadow: var(--shadow-md); }
.usage-tile .ph { aspect-ratio: 1 / 1; overflow: hidden; background: var(--ink-050); }
.usage-tile .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.usage-tile .cap { padding: var(--space-5) var(--space-6) var(--space-6); }
.usage-tile .step {
    font-family: var(--font-body); font-size: var(--text-micro);
    font-weight: var(--weight-semibold); letter-spacing: var(--tracking-label);
    text-transform: uppercase; color: var(--color-primary);
}
.usage-tile h3 { font-size: var(--text-title); margin: 6px 0 var(--space-2); }
.usage-tile p { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .usage-grid { grid-template-columns: 1fr; } }

/* --------- The gap strip, directly under the hero ---------
   A benefits lead reads the headline as a claim about their programme, then
   immediately wants to size it. These three numbers sit above the fold on a
   laptop so the sizing happens before the first scroll, and each carries its
   source because an unsourced number in this category reads as marketing. */
.hero-gap {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
}
.hero-gap-item b {
    display: block;
    font-family: var(--font-display, inherit);
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}
.hero-gap-item:first-child b { color: var(--color-primary); }
.hero-gap-item span {
    display: block;
    margin-top: 8px;
    max-width: 32ch;
    font-family: var(--font-body);
    font-size: var(--text-body-sm);
    line-height: 1.5;
    color: var(--text-secondary);
}
.hero-gap-item i {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--text-micro);
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    color: var(--text-muted);
}
@media (max-width: 900px) {
    .hero-gap { grid-template-columns: 1fr; gap: var(--space-5); }
    .hero-gap-item span { max-width: none; }
}

/* --------- Provenance line + partner logo strip, still inside the hero ---------
   Kept monochrome and small on purpose: nine logos at full colour would out-shout
   the headline, and the strip is there to settle a credibility question, not to
   become the thing you look at first. */
.hero-trust {
    margin-top: var(--space-7);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
}
.hero-trust-line {
    margin: 0 0 var(--space-5);
    max-width: 74ch;
    font-family: var(--font-body);
    font-size: var(--text-body-sm);
    line-height: 1.6;
    color: var(--text-secondary);
}
.hero-trust-line strong { color: var(--text-primary); font-weight: var(--weight-semibold); }
.hero-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-5) var(--space-7);
}
.hero-logos img {
    height: 30px;
    width: auto;
    max-width: 148px;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(100%);
    transition: opacity var(--dur-normal) var(--ease-standard), filter var(--dur-normal) var(--ease-standard);
}
.hero-logos img:hover { opacity: 1; filter: grayscale(0%); }
.hero-logos-note {
    margin: var(--space-5) 0 0;
    max-width: 80ch;
    font-family: var(--font-body);
    font-size: var(--text-micro);
    line-height: 1.55;
    color: var(--text-muted);
}
@media (max-width: 900px) {
    .hero-logos { gap: var(--space-4) var(--space-5); }
    .hero-logos img { height: 24px; max-width: 116px; }
}

/* --------- External site link row --------- */
.site-links {
    margin-top: var(--space-6);
    display: flex;
    gap: var(--space-3);
    align-items: center;
    flex-wrap: wrap;
}
.site-links .label {
    font-family: var(--font-body);
    font-size: var(--text-caption);
    color: var(--text-muted);
}

/* --------- Plain media frame (shows a landscape photo in full) --------- */
.media-frame {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: auto; display: block; }

/* --------- Split media (reference .split + landscape photo) --------- */
.split-photo.land { aspect-ratio: 4/3; }
.split-photo.contain {
    background: linear-gradient(160deg, var(--sand-100), var(--orange-100));
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-6);
}
.split-photo.contain img { width: 92%; height: auto; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(20,16,12,0.18)); }
.split-photo.contain::after { display: none; }

/* --------- Big stat number --------- */
.bignum {
    font-family: var(--font-display);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    letter-spacing: var(--tracking-display);
    font-size: clamp(48px, 7vw, 72px);
    line-height: 0.9;
    margin-bottom: var(--space-2);
}
.bignum-sub {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--text-secondary);
}

/* --------- Comparison bars (data viz) --------- */
.cmp-bars { display: grid; gap: var(--space-4); }
.cmp-line {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 7px;
    font-family: var(--font-body); font-size: var(--text-body-sm);
}
.cmp-line .n { color: var(--text-secondary); }
.cmp-line .v {
    font-family: var(--font-display); font-weight: var(--weight-semibold);
    color: var(--text-primary); font-size: var(--text-title);
}
.cmp-track { height: 14px; background: var(--sand-300); border-radius: var(--radius-pill); overflow: hidden; }
.cmp-fill { height: 100%; border-radius: var(--radius-pill); min-width: 3px; }
.cmp-fill.soonr { background: var(--color-primary); }
.cmp-fill.other { background: var(--ink-300); }
.cmp-note {
    display: inline-block; margin-top: var(--space-3);
    font-family: var(--font-body); font-size: var(--text-caption);
    font-weight: var(--weight-semibold);
    color: var(--orange-700); background: var(--orange-100);
    border-radius: var(--radius-pill); padding: 3px 12px;
}

/* --------- Four daily actions (Sleep / Stress / Nutrition / Exercise) --------- */
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.action {
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xs);
}
.action .ph { aspect-ratio: 4/3; overflow: hidden; background: var(--ink-050); }
.action .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.action .cap { padding: var(--space-4) var(--space-5); }
.action .cap .lab {
    font-family: var(--font-display); font-weight: var(--weight-semibold);
    font-size: 18px; letter-spacing: var(--tracking-tight);
}
.action .cap .mod { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); margin-top: 2px; }
@media (max-width: 720px) { .action-grid { grid-template-columns: repeat(2, 1fr); } }

/* --------- Competitive "vs" table --------- */
.vs-wrap { overflow-x: auto; margin-top: var(--space-6); border-radius: var(--radius-xl); }
.vs-table {
    width: 100%; border-collapse: collapse; min-width: 760px;
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); overflow: hidden;
}
.vs-table th, .vs-table td {
    text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--border-subtle);
    font-family: var(--font-body); font-size: var(--text-body-sm); vertical-align: top; line-height: 1.4;
}
.vs-table thead th {
    font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-body);
    letter-spacing: var(--tracking-tight); background: var(--ink-050); color: var(--text-secondary);
}
.vs-table thead th small { display: block; font-family: var(--font-body); font-size: var(--text-caption); font-weight: var(--weight-regular); color: var(--text-muted); margin-top: 2px; }
.vs-table thead th.hl { background: var(--color-primary); color: var(--soonr-white); }
.vs-table thead th.hl small { color: rgba(255,255,255,0.85); }
.vs-table td.row-h { font-weight: var(--weight-semibold); color: var(--text-primary); background: var(--surface-page); }
.vs-table td.no { color: var(--text-muted); }
.vs-table td.hl { background: var(--orange-100); color: var(--ink-900); font-weight: var(--weight-semibold); }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table tr:last-child td.hl { color: var(--orange-700); }

/* --------- Regulatory badges --------- */
.badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-4) 0; }
.badge {
    font-family: var(--font-body); font-size: var(--text-micro);
    font-weight: var(--weight-semibold); letter-spacing: var(--tracking-label);
    text-transform: uppercase; color: var(--teal-500);
    background: var(--teal-100); border: 1px solid var(--teal-200);
    border-radius: var(--radius-md); padding: 6px 11px;
}

/* --------- Spec list --------- */
.specs { list-style: none; margin: 0; padding: 0; }
.specs li {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
    font-family: var(--font-body); font-size: var(--text-body-sm);
}
.specs li:last-child { border-bottom: none; }
.specs .k { color: var(--text-secondary); }
.specs .v { color: var(--text-primary); font-weight: var(--weight-semibold); text-align: right; }

/* --------- Persona (Maya) --------- */
.persona {
    background: var(--soonr-teal); color: var(--soonr-white);
    border-radius: var(--radius-2xl); padding: var(--space-7);
    margin-top: var(--space-5); position: relative; overflow: hidden;
}
.persona::after {
    content: ""; position: absolute; width: 320px; height: 320px;
    border-radius: 50%; background: radial-gradient(circle, var(--color-primary) 0%, transparent 68%);
    opacity: 0.28; top: -140px; right: -100px; pointer-events: none;
}
.persona > * { position: relative; z-index: 1; }
.persona .q {
    font-family: var(--font-serif); font-style: italic;
    font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3;
    color: #fff; margin: 0 0 var(--space-4); max-width: 42ch;
}
.persona .who { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--soonr-sand); }
.persona .who span { color: rgba(255, 255, 255, 0.7); }

/* --------- Pricing --------- */
.price-head { display: flex; align-items: baseline; gap: 8px; margin: var(--space-2) 0 var(--space-3); }
.price-big {
    font-family: var(--font-display); font-weight: var(--weight-semibold);
    font-size: 46px; letter-spacing: var(--tracking-display); line-height: 1;
    color: var(--text-primary);
}
.card.orange .price-big { color: var(--ink-900); }
.card.dark .price-big { color: var(--soonr-white); }
.price-unit { font-family: var(--font-body); font-size: var(--text-body); color: var(--text-secondary); }
.card.dark .price-unit { color: rgba(255,255,255,0.7); }
.price-was {
    font-family: var(--font-body); font-size: var(--text-body-sm);
    color: var(--text-muted); text-decoration: line-through; margin-left: 6px;
}
.plan-feats { list-style: none; margin: var(--space-4) 0 0; padding: 0; font-family: var(--font-body); font-size: var(--text-body-sm); }
.plan-feats li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; color: var(--text-primary); }
.plan-feats li .mk { flex-shrink: 0; font-weight: 700; }
.plan-feats li .mk.yes { color: var(--color-primary); }
.plan-feats li .mk.no { color: var(--ink-300); }
.plan-feats li.off { color: var(--text-muted); }
.card.dark .plan-feats li { color: rgba(255,255,255,0.92); }
.card.dark .plan-feats li .mk.yes { color: var(--color-primary); }
.pricing-note {
    margin-top: var(--space-6);
    font-family: var(--font-body); font-size: var(--text-caption); color: var(--text-muted);
}

/* --------- Amplitude award --------- */
.award {
    display: flex; align-items: center; gap: var(--space-5);
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); padding: var(--space-5) var(--space-6);
    margin-top: var(--space-5); box-shadow: var(--shadow-xs);
}
.award img { height: 32px; width: auto; }
.award p { margin: 0; font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); }
.award p strong { color: var(--text-primary); }

@media (max-width: 900px) {
    .persona { padding: var(--space-6); }
}

/* --------- Brand "for Enterprise" lockup --------- */
.brand-mark { display: inline-flex; align-items: center; gap: 9px; }
.brand-badge {
    font-family: var(--font-body); font-weight: var(--weight-semibold);
    font-size: 11px; letter-spacing: 0.04em; text-transform: none;
    color: var(--color-primary);
    border-left: 1.5px solid var(--border-strong);
    padding-left: 9px; line-height: 1; white-space: nowrap;
}
.foot .brand-badge { color: var(--sand-500); border-color: rgba(255,255,255,0.24); }

/* ============================================================
   About page — team, advisors, video, KFS 2026
   ============================================================ */
/* Large photo-forward people cards (founders + advisors together) */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); max-width: 1000px; margin: 0 auto; }
.people-grid.founders { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
.pcard {
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xs);
    display: flex; flex-direction: column;
    transition: box-shadow var(--dur-normal) var(--ease-standard), transform var(--dur-normal) var(--ease-standard);
}
.pcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pcard .pphoto { aspect-ratio: 1/1; overflow: hidden; background: var(--ink-050); }
.pcard.tall .pphoto { aspect-ratio: 4/5; }
.pcard .pphoto img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.pcard .pbody { padding: var(--space-5) var(--space-5) var(--space-6); }
.pcard .role {
    font-family: var(--font-body); font-size: var(--text-micro); font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--color-primary); margin-bottom: 6px;
}
.pcard .name { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 22px; letter-spacing: var(--tracking-tight); line-height: 1.1; margin-bottom: 4px; }
.pcard .who2 { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); line-height: 1.4; }
.pcard .bio { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); line-height: 1.55; margin: var(--space-3) 0 0; }

/* Institution logo strip (advisor hospitals & schools) */
.inst-logos {
    margin-top: var(--space-7); padding: var(--space-6);
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-6) var(--space-8);
}
.inst-logos img { height: 40px; width: auto; object-fit: contain; opacity: 0.82; filter: grayscale(100%); transition: opacity var(--dur-normal) var(--ease-standard), filter var(--dur-normal) var(--ease-standard); }
.inst-logos img:hover { opacity: 1; filter: grayscale(0%); }

@media (max-width: 900px) {
    .people-grid { grid-template-columns: repeat(2, 1fr); }
    .people-grid.founders { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .people-grid { grid-template-columns: 1fr; } }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.member {
    background: var(--surface-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-xs);
}
.member .avatar {
    width: 104px; height: 104px; border-radius: 50%; overflow: hidden;
    margin-bottom: var(--space-4); background: var(--ink-050);
    box-shadow: 0 0 0 3px var(--sand-300);
}
.member .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.member .role {
    font-family: var(--font-body); font-size: var(--text-micro); font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--color-primary); margin-bottom: 4px;
}
.member .name { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 22px; letter-spacing: var(--tracking-tight); margin-bottom: 2px; }
.member .who2 { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); margin-bottom: var(--space-4); }
.member .bio { font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-secondary); line-height: 1.6; margin: 0; }

.advisor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.advisor { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: var(--space-5); text-align: center; box-shadow: var(--shadow-xs); }
.advisor .avatar { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin: 0 auto var(--space-3); background: var(--ink-050); box-shadow: 0 0 0 2px var(--sand-300); }
.advisor .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.advisor .name { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 16px; letter-spacing: var(--tracking-tight); }
.advisor .who2 { font-family: var(--font-body); font-size: var(--text-caption); color: var(--text-secondary); margin-top: 2px; line-height: 1.35; }

/* Video */
.video-frame { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: #000; }
.video-frame video, .video-frame iframe { width: 100%; height: 100%; object-fit: cover; display: block; border: 0; }

/* KFS facts + speaker chips + photo gallery */
.kfs-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: var(--space-6); }
.kfs-fact { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: var(--space-5); }
.kfs-fact .k { font-family: var(--font-body); font-size: var(--text-micro); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--color-primary); margin-bottom: 6px; }
.kfs-fact .v { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-title); letter-spacing: var(--tracking-tight); line-height: 1.15; }
.speaker-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.speaker-chips .chip2 { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); padding: 8px 14px; font-family: var(--font-body); font-size: var(--text-body-sm); color: var(--text-primary); }
.speaker-chips .chip2 span { color: var(--text-secondary); }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-top: var(--space-6); }
.photo-duo .media-frame { box-shadow: var(--shadow-md); }
.photo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.photo-trio img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); }

/* Blog page */
.post-card { display: flex; flex-direction: column; text-decoration: none; }
.post-card .card-tag { color: var(--text-secondary); }
.post-card:hover h3 { color: var(--color-primary); }
.post-meta { font-family: var(--font-body); font-size: var(--text-caption); color: var(--text-muted); margin-bottom: var(--space-3); }

@media (max-width: 900px) {
    .member-grid { grid-template-columns: 1fr; }
    .advisor-grid { grid-template-columns: repeat(2, 1fr); }
    .kfs-facts { grid-template-columns: repeat(2, 1fr); }
    .photo-duo, .photo-trio { grid-template-columns: 1fr; }
}
