/* ============================================================================
   Team + Ask — swappable slide layouts.
   The slide is a .ta-host holding several full-bleed .ta-variant layers;
   the bottom-left switcher sets .ta-show-<X> to reveal one at a time.
   Variants reuse the deck's own slide vocabulary:
     E  Split + Timeline  (Slide 04 Architecture)
     F  Report Card       (Slide 03 Solution)
     G  Title Echo        (Slide 01 Intro)
     H  Band + Columns    (Slide 02 Problem)
   "current" is the original Austin layout (.sq-team-ask).
   ============================================================================ */
.ta-host { position: relative; background: var(--c-ink); overflow: hidden; }
.ta-variant { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .22s ease; z-index: 1; }
.ta-host.ta-show-current .ta-v-current,
.ta-host.ta-show-E .ta-v-E,
.ta-host.ta-show-F .ta-v-F,
.ta-host.ta-show-G .ta-v-G,
.ta-host.ta-show-H .ta-v-H,
.ta-host.ta-show-I .ta-v-I,
.ta-host.ta-show-J .ta-v-J,
.ta-host.ta-show-K .ta-v-K,
.ta-host.ta-show-L .ta-v-L,
.ta-host.ta-show-M .ta-v-M { visibility: visible; opacity: 1; z-index: 2; }

/* shared monogram portrait placeholders */
.ta-host .portrait { background: linear-gradient(150deg,#23282b,#15181a); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ta-host .portrait .mi { font-family: var(--f-display); font-weight: 300; color: rgba(232,227,214,.35); }
.ta-host .portrait img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.ta-host .portrait.lite { background: linear-gradient(150deg,#e8e3d6,#cfc9bb); }
.ta-host .portrait.lite .mi { color: rgba(20,18,15,.32); }

/* ===== E — SPLIT / TIMELINE (echoes Slide 04 Architecture) ===== */
.eE .lpane .l-top { font-family:var(--f-mono); font-size:15px; letter-spacing:.26em; text-transform:uppercase; color:rgba(255,255,255,.72); }
.eE .lpane .l-top .num { color:#fff; margin-right:16px; }
.eE .lpane .ask-amt { font-family:var(--f-display); font-weight:200; font-size:184px; line-height:.86; letter-spacing:-.04em; color:#fff; margin:26px 0 0; }
.eE .lpane .ask-sub { font-family:var(--f-mono); font-size:15px; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.8); margin-top:18px; }
.eE .l-inner { justify-content:space-between !important; }
.eE .rpane .r-label { margin-bottom:8px; }
.eE .frow.person { grid-template-columns:112px 1fr !important; align-items:center !important; gap:28px; }
.eE .frow.person .pic { width:96px; height:96px; border:1px solid var(--c-line-2); }
.eE .frow.person .pic .mi { font-size:34px; }
.eE .frow.person .ft .role { font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--c-rust); margin:4px 0 8px; }
.eE .uof { margin-top:30px; padding-top:24px; border-top:1px solid var(--c-line); }
.eE .uof .ul { font-family:var(--f-mono); font-size:13px; letter-spacing:.2em; text-transform:uppercase; color:var(--c-dim); margin-bottom:14px; }
.eE .uof .chips { display:flex; flex-wrap:wrap; gap:10px; }
.eE .uof .chips span { font-family:var(--f-display); font-weight:300; font-size:18px; color:var(--c-ink); border:1px solid var(--c-line-2); border-radius:999px; padding:7px 16px; }
.eE .contacts { margin-top:20px; display:flex; gap:40px; }
.eE .contacts div { font-family:var(--f-mono); font-size:13px; color:var(--c-mute); line-height:1.6; }
.eE .contacts b { color:var(--c-ink); font-weight:500; }

/* ===== F — REPORT CARD / TERMINAL (echoes Slide 03 Solution) ===== */
.eF .founder-list { display:flex; flex-direction:column; }
.eF .founder { display:grid; grid-template-columns:84px 1fr; gap:20px; padding:22px 0; border-top:1px solid rgba(236,238,241,.09); align-items:start; }
.eF .founder:first-child { border-top:0; padding-top:6px; }
.eF .founder .pic { width:84px; height:84px; border:1px solid rgba(236,238,241,.16); }
.eF .founder .pic .mi { font-size:30px; }
.eF .founder .nm { font-family:var(--f-display); font-weight:400; font-size:28px; color:#ECEEF1; line-height:1; }
.eF .founder .ro { font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:#CD6038; margin:7px 0 10px; }
.eF .founder .cr { font-family:var(--f-mono); font-size:13px; line-height:1.55; color:rgba(236,238,241,.5); }
.eF .contact-line { font-family:var(--f-mono); font-size:13px; color:rgba(236,238,241,.5); margin-top:auto; padding-top:22px; }
.eF .contact-line b { color:#ECEEF1; font-weight:500; }

/* ===== G — TITLE ECHO (echoes Slide 01 Intro) ===== */
.eG .content { padding-bottom:104px !important; }
.eG .uof-strip { margin-top:40px; padding-top:26px; border-top:1px solid rgba(255,255,255,.22); display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.eG .uof-strip .ul { font-family:var(--f-mono); font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-right:6px; }
.eG .uof-strip span.c { font-family:var(--f-mono); font-size:13px; letter-spacing:.08em; color:rgba(255,255,255,.78); border:1px solid rgba(255,255,255,.28); border-radius:999px; padding:8px 16px; }

/* ===== H — BAND + COLUMNS (echoes Slide 02 Problem) ===== */
.eH { background:var(--c-paper); }
.eH .ta-cols { display:grid; grid-template-columns:1fr 1fr; padding:48px 110px 0; gap:0; }
.eH .ta-col { padding:40px 56px 0 0; border-top:1px solid var(--c-line); }
.eH .ta-col + .ta-col { padding-left:56px; padding-right:0; border-left:1px solid var(--c-line); }
.eH .ta-col .label { font-family:var(--f-mono); font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--c-mute); margin-bottom:26px; }
.eH .person { display:grid; grid-template-columns:110px 1fr; gap:26px; align-items:start; margin-bottom:30px; }
.eH .person .pic { width:110px; height:110px; border:1px solid var(--c-line-2); }
.eH .person .pic .mi { font-size:40px; }
.eH .person .nm { font-family:var(--f-display); font-weight:400; font-size:32px; color:var(--c-ink); line-height:1.02; }
.eH .person .ro { font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--c-forest); margin:7px 0 10px; }
.eH .person .cr { font-size:16px; line-height:1.45; color:var(--c-ink-2); }
.eH .ask-rows { display:flex; flex-direction:column; }
.eH .ask-row { display:flex; justify-content:space-between; align-items:baseline; padding:16px 0; border-bottom:1px solid var(--c-line); }
.eH .ask-row .k { font-family:var(--f-mono); font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--c-mute); }
.eH .ask-row .v { font-family:var(--f-display); font-weight:300; font-size:30px; letter-spacing:-.02em; color:var(--c-ink); }
.eH .ask-row .v.amt { color:var(--c-forest); font-weight:400; }
.eH .uof-list { margin-top:22px; display:flex; flex-wrap:wrap; gap:9px; }
.eH .uof-list span { font-family:var(--f-mono); font-size:12px; letter-spacing:.06em; color:var(--c-mute); border:1px solid var(--c-line-2); border-radius:999px; padding:7px 14px; }
.eH .contacts { margin-top:22px; font-family:var(--f-mono); font-size:13px; color:var(--c-mute); line-height:1.7; }
.eH .contacts b { color:var(--c-ink); font-weight:500; }

/* ============================================================================
   Team + Ask — shared photo system (driven by the bottom-left photo picker).
   The picker sets three vars on .ta-host; every photo layer reads them, so
   one choice updates Current / E / G / H and the new riffs at once. The grade
   still comes from the deck's data-tint via --photo-filter.
   ============================================================================ */
.ta-host {
  --ta-photo: url('_gallery/full/img117.jpg');
  --ta-pos: 50%;
  --ta-veil: 0.78;
}
.ta-host .ta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--ta-photo); background-size: cover;
  background-position: 50% var(--ta-pos);
  filter: var(--photo-filter, none);
}
.ta-host .ta-veil-layer {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,12,14, var(--ta-veil));
}
/* band variant (H) — photo only fills the top band, same source/position */
.ta-host .ta-bg-band {
  background-image: var(--ta-photo); background-size: cover;
  background-position: 50% var(--ta-pos);
  filter: var(--photo-filter, none);
}
/* Current's founder avatars as shared B&W headshots (match E/F/H) */
.ta-host .sq-ta-avatar img { width: 100%; height: 100%; object-fit: cover; filter: none; display: block; }

/* ===== new close riffs on Current (same content blocks, different photo treatment) ===== */
/* I · INSET — content floats in a translucent panel so more of the photo shows */
.ta-v-I .sq-ta-content {
  margin: 132px 120px 104px; padding: 64px 72px;
  background: rgba(10,12,14,0.55); border: 1px solid rgba(232,227,214,0.16);
  backdrop-filter: blur(3px); height: auto; inset: auto;
}
.ta-v-I.ta-v-I { } /* keep specificity tidy */

/* J · LOWER — lighter veil, content anchored low under a bottom gradient */
.ta-v-J .ta-veil-layer {
  background: linear-gradient(180deg, rgba(10,12,14,0.18) 0%, rgba(10,12,14,0.30) 42%, rgba(10,12,14,calc(var(--ta-veil) + 0.10)) 100%);
}
.ta-v-J .sq-ta-content { justify-content: flex-end; }
.ta-v-J .sq-ta-head h2.display { font-size: 104px; }

/* ===== K — SPLIT · ASK LOW (reference-inspired: ask anchored bottom-left, clean white right) ===== */
.ta-v-K.eK { grid-template-columns: 38% 62%; background: var(--c-paper); }
.eK .lpane { position: relative; overflow: hidden; }
.eK .eK-veil { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,12,14,0.22) 0%, rgba(10,12,14,0) 30%, rgba(10,12,14,0.18) 58%, rgba(10,12,14,0.64) 100%); }
.eK .l-inner { position: absolute; inset: 0; z-index: 2; padding: 72px 64px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.eK .eK-eyebrow { font-family: var(--f-mono); font-size: 14px; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.eK .eK-eyebrow span { color: #fff; margin-right: 16px; }
.eK .eK-foot .rule { width: 210px; height: 1px; background: rgba(255,255,255,.5); margin-bottom: 26px; }
.eK .eK-line { font-family: var(--f-display); font-weight: 300; font-size: 64px; line-height: 1; letter-spacing: -.025em; color: #fff; white-space: nowrap; }
/* L mirror — photo on the right, content on the left */
.eK.eK-mirror { grid-template-columns: 62% 38%; }
.eK.eK-mirror .lpane { order: 2; }
.eK.eK-mirror .rpane { order: 1; }
.eK .eK-sub { font-family: var(--f-display); font-weight: 300; font-size: 27px; color: rgba(255,255,255,.82); margin-top: 24px; }
.eK .rpane { background: var(--c-paper); padding: 120px 96px; display: flex; flex-direction: column; justify-content: center; }
.eK .eK-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.eK .eK-name { font-family: var(--f-display); font-weight: 400; font-size: 34px; letter-spacing: -.015em; color: var(--c-ink); line-height: 1; }
.eK .eK-role { font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-dim); margin: 10px 0 22px; }
.eK .eK-creds { display: flex; flex-direction: column; gap: 9px; }
.eK .eK-creds span { font-family: var(--f-display); font-weight: 300; font-size: 19px; line-height: 1.3; color: var(--c-ink-2); }
.eK .eK-rule { height: 1px; background: var(--c-line); margin: 46px 0; }
.eK .eK-uof-label { font-family: var(--f-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-mute); margin-bottom: 30px; }
.eK .eK-uof { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 64px; }
.eK .eK-uof div { font-family: var(--f-display); font-weight: 300; font-size: 36px; letter-spacing: -.02em; line-height: 1; color: var(--c-ink); }
.eK .eK-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.eK .eK-contacts .eK-col { font-family: var(--f-mono); font-size: 14px; line-height: 1.7; color: var(--c-mute); }
.eK .eK-contacts b { color: var(--c-ink); font-weight: 500; }

.eK .eK-pic { width: 76px; height: 76px; margin-bottom: 20px; border: 1px solid var(--c-line-2); }
/* L mirror — page number sits over the photo (right), so flip it light */
.eK.eK-mirror .chrome-bot .right > span:nth-last-child(2) { color: #F2EEE3; }
.eK.eK-mirror .chrome-bot .right > span:last-child { color: rgba(232,227,214,.6); }
.eK.eK-mirror .chrome-bot .right .slide-name { color: rgba(232,227,214,.7); border-right-color: rgba(232,227,214,.3); }

/* eK founder header — bigger photo to the LEFT of name/role (color) */
.eK .eK-head { display: flex; align-items: center; gap: 22px; margin-bottom: 24px; }
.eK .eK-pic { width: 104px; height: 104px; margin-bottom: 0; flex-shrink: 0; border: 1px solid var(--c-line-2); }
.eK .eK-id .eK-role { margin: 8px 0 0; }

/* push contacts to the very bottom of the right pane */
.eK .rpane { justify-content: flex-start; }
.eK .eK-rule-bottom { margin-top: auto; }

/* Team below Use of Funds (K/L) — reorder the flex column; contacts stay pinned bottom */
.eK .eK-uof-label { order: 1; }
.eK .eK-uof { order: 2; }
.eK .eK-rule { order: 3; }
.eK .eK-founders { order: 4; }
.eK .eK-rule-bottom { order: 5; }
.eK .eK-contacts { order: 6; }

/* bigger section headers + slot Our Team between Use of Funds and founders */
.eK .eK-uof-label, .eK .eK-team-label { font-family: var(--f-mono); font-size: 17px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--c-mute); margin-bottom: 30px; }
.eK .eK-team-label { order: 4; }
.eK .eK-founders { order: 5; }
.eK .eK-rule-bottom { order: 6; }
.eK .eK-contacts { order: 7; }

/* headers: display font, black, bigger · larger photos + bigger points */
.eK .eK-uof-label, .eK .eK-team-label { font-family: var(--f-display); font-size: 28px; font-weight: 500; letter-spacing: -.01em; text-transform: none; color: var(--c-ink); margin-bottom: 30px; }
.eK .eK-pic { width: 132px; height: 132px; }
.eK .eK-creds span { font-size: 22px; }
/* even bigger section headers */
.eK .eK-uof-label, .eK .eK-team-label { font-size: 44px; margin-bottom: 34px; }
/* use-of-funds: actual bullet markers */
.eK .eK-uof div { display: flex; align-items: center; gap: 18px; }
.eK .eK-uof div::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--c-sand); flex-shrink: 0; }
/* clearer divider between Use of Funds and Our Team */
.eK .eK-rule { background: var(--c-line-2); }
/* bullet markers on team creds (match use-of-funds) */
.eK .eK-creds span { display: flex; align-items: center; gap: 14px; }
.eK .eK-creds span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-sand); flex-shrink: 0; }

/* ===== M — Split · Stacked Team (use of funds on the photo; big stacked founders) ===== */
/* left pane: use of funds under the ask, on the image */
.eM .eM-luof { margin-top: 30px; }
.eM .eM-luof-label { font-family: var(--f-mono); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.eM .eM-luof-item { font-family: var(--f-display); font-weight: 300; font-size: 23px; line-height: 1; color: #fff; display: flex; align-items: center; gap: 14px; padding: 6px 0; }
.eM .eM-luof-item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-sand); flex-shrink: 0; }
/* right pane: stacked team, blown-up photos left of names */
.eM .rpane { padding: 80px 80px; justify-content: flex-start; }
.eM .eM-team-label { font-family: var(--f-display); font-weight: 500; font-size: 44px; letter-spacing: -.01em; color: var(--c-ink); margin-bottom: 36px; }
.eM .eM-team { display: flex; flex-direction: column; gap: 40px; flex: 1; min-height: 0; }
.eM .eM-person { display: flex; align-items: center; gap: 44px; flex: 1; min-height: 0; }
.eM .eM-pic { align-self: stretch; aspect-ratio: 1 / 1; flex-shrink: 0; border: 1px solid var(--c-line-2); overflow: hidden; }
.eM .eM-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eM .eM-pinfo { flex: 1; }
.eM .eM-pname { font-family: var(--f-display); font-weight: 400; font-size: 42px; letter-spacing: -.02em; line-height: 1; color: var(--c-ink); }
.eM .eM-prole { font-family: var(--f-mono); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-dim); margin: 12px 0 20px; }
.eM .eM-pbullets { display: flex; flex-direction: column; gap: 10px; }
.eM .eM-pbullets span { font-family: var(--f-display); font-weight: 300; font-size: 22px; line-height: 1.3; color: var(--c-ink-2); display: flex; align-items: center; gap: 14px; }
.eM .eM-pbullets span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-sand); flex-shrink: 0; }
.eM .eM-pcontact { font-family: var(--f-mono); font-size: 13px; color: var(--c-mute); margin-top: 18px; }

/* ===== K reworked: ask top-left (black) + Use of Funds bottom-left on the photo (scoped to K) ===== */
.ta-v-K .l-inner { justify-content: space-between; }
.ta-v-K .eK-veil { background: linear-gradient(180deg, rgba(245,242,236,0.55) 0%, rgba(245,242,236,0) 26%, rgba(10,12,14,0) 50%, rgba(10,12,14,0.70) 100%); }
.ta-v-K .eK-foot .rule { background: var(--c-ink); }
.ta-v-K .eK-line { color: var(--c-ink); }
.ta-v-K .eK-sub { color: var(--c-ink-2); }
.ta-v-K .eK-luof-label { font-family: var(--f-mono); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.ta-v-K .eK-luof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.ta-v-K .eK-luof-grid div { font-family: var(--f-display); font-weight: 300; font-size: 21px; line-height: 1; color: #fff; display: flex; align-items: center; gap: 12px; }
.ta-v-K .eK-luof-grid div::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-sand); flex-shrink: 0; }

/* ===== K v2: ask + Use of Funds grouped top-left (black); stacked team right (small equal squares) ===== */
.ta-v-K .l-inner { justify-content: flex-start; }
.ta-v-K .eK-veil { background: linear-gradient(180deg, rgba(245,242,236,0.64) 0%, rgba(245,242,236,0.34) 30%, rgba(245,242,236,0) 55%, rgba(10,12,14,0) 100%); }
.ta-v-K .eK-luof { margin-top: 32px; }
.ta-v-K .eK-luof-label { color: var(--c-mute); }
.ta-v-K .eK-luof-grid { display: flex; flex-direction: column; gap: 12px; }
.ta-v-K .eK-luof-grid div { color: var(--c-ink); font-size: 23px; }
/* stacked team */
.ta-v-K .eK-team-label { order: 0; }
.ta-v-K .kc-team { order: 1; display: flex; flex-direction: column; gap: 30px; margin-top: 28px; }
.ta-v-K .kc-person { display: flex; align-items: flex-start; gap: 30px; }
.ta-v-K .kc-pic { width: 150px; height: 150px; flex-shrink: 0; border: 1px solid var(--c-line-2); overflow: hidden; }
.ta-v-K .kc-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ta-v-K .kc-info { flex: 1; }
.ta-v-K .kc-name { font-family: var(--f-display); font-weight: 400; font-size: 34px; letter-spacing: -.015em; line-height: 1; color: var(--c-ink); }
.ta-v-K .kc-role { font-family: var(--f-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-dim); margin: 9px 0 12px; }
.ta-v-K .kc-contact { font-family: var(--f-mono); font-size: 13px; color: var(--c-mute); line-height: 1.6; margin-bottom: 14px; }
.ta-v-K .kc-bullets { display: flex; flex-direction: column; gap: 8px; }
.ta-v-K .kc-bullets span { font-family: var(--f-display); font-weight: 300; font-size: 19px; line-height: 1.3; color: var(--c-ink-2); display: flex; align-items: center; gap: 13px; }
.ta-v-K .kc-bullets span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-sand); flex-shrink: 0; }

/* ===== K v3: filled team cards with dividers + expertise subline; bigger black-bullet Use of Funds ===== */
.ta-v-K .rpane { padding: 84px 84px; }
.ta-v-K .eK-luof-label { font-size: 15px; }
.ta-v-K .eK-luof-grid { gap: 14px; }
.ta-v-K .eK-luof-grid div { font-size: 28px; gap: 16px; }
.ta-v-K .eK-luof-grid div::before { background: var(--c-ink); width: 8px; height: 8px; }
.ta-v-K .kc-head { order: 0; }
.ta-v-K .kc-teamsub { font-family: var(--f-display); font-weight: 300; font-size: 21px; line-height: 1.4; color: var(--c-mute); max-width: 820px; margin-top: 16px; }
.ta-v-K .kc-divider { height: 1px; background: var(--c-line); flex-shrink: 0; }
.ta-v-K .kc-divider-top { margin-top: 28px; }
.ta-v-K .kc-team { order: 1; flex: 1; display: flex; flex-direction: column; gap: 0; margin-top: 0; min-height: 0; }
.ta-v-K .kc-person { flex: 1; display: flex; align-items: center; gap: 32px; padding: 30px 0; }
.ta-v-K .kc-pic { width: 160px; height: 160px; }

/* ===== K v4: name/role/contact above; bigger photo with bullets to its right ===== */
.ta-v-K .kc-person { flex-direction: column; align-items: stretch; justify-content: center; gap: 20px; }
.ta-v-K .kc-contact { margin-bottom: 0; }
.ta-v-K .kc-bottom { display: flex; align-items: center; gap: 32px; }
.ta-v-K .kc-pic { width: 185px; height: 185px; }
.ta-v-K .kc-bullets { flex: 1; }

/* ===== K v5: contact below the photo ===== */
.ta-v-K .kc-bottom { align-items: flex-start; }
.ta-v-K .kc-photo-col { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; width: 185px; }
.ta-v-K .kc-contact { margin: 0; font-size: 12.5px; line-height: 1.6; }

/* ===== K v6: photo left, all info (name/role/contact/bullets) to the right ===== */
.ta-v-K .kc-person { flex-direction: row; align-items: flex-start; gap: 32px; }
.ta-v-K .kc-pic { width: 185px; height: 185px; }
.ta-v-K .kc-info { flex: 1; }
.ta-v-K .kc-role { margin: 9px 0 10px; }
.ta-v-K .kc-contact { margin: 0 0 16px; font-size: 13px; line-height: 1.6; }
/* Use of Funds label -> Funnel Display */
.ta-v-K .eK-luof-label { font-family: var(--f-display); font-weight: 500; letter-spacing: .04em; font-size: 17px; }

/* ===== K v7: Use of Funds below the team (right pane); founders above, tighter spacing, big matching headline ===== */
.ta-v-K .kc-team { flex: 0 0 auto; gap: 34px; margin-top: 30px; }      /* stop the two founders from stretching apart */
.ta-v-K .kc-person { flex: 0 0 auto; padding: 0; }
.ta-v-K .rpane .eK-luof { order: 2; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--c-line); }  /* even spacing below the team (matches the gap between the founders) */
.ta-v-K .rpane .eK-luof-label { font-family: var(--f-display); font-weight: 500; font-size: 44px; letter-spacing: -.01em; text-transform: none; color: var(--c-ink); margin-bottom: 24px; }  /* match "Our Team" */
.ta-v-K .rpane .eK-luof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.ta-v-K .rpane .eK-luof-grid div { color: var(--c-ink); font-size: 22px; }
.ta-v-K .rpane .eK-luof-grid div::before { background: var(--c-ink); }
.ta-v-K .eK-line { font-weight: 400; font-size: 96px; line-height: 1.02; white-space: normal; }   /* "Our Ask — $1.5M" — bigger, wraps to two lines */

/* founder photos: no border, slight rounded rectangle */
.ta-v-K .kc-pic { border: none; border-radius: 6px; }
/* unify "Our Team" + founder bullets to the Use-of-Funds color/font (ink Funnel Display, ink dots) */
.ta-v-K .eK-team-label { color: var(--c-ink); font-family: var(--f-display); }
.ta-v-K .kc-bullets span { font-family: var(--f-display); color: var(--c-ink); }
.ta-v-K .kc-bullets span::before { background: var(--c-ink); }
