/* ============================================================
   Bridge V4 — "Hum-style" blue theme
   Inspired by humcapital.com: soft blue canvas, heavy rounded
   display type, bright-blue numerals, a marquee of tall
   "funded company" portrait tiles with amount chips, playful
   rounded-square confetti, a stat panel, a "backed by" logo row,
   an intelligent-engine block, a For Suppliers / For Partners
   split, and a confident closing card. Built on Bridge tokens.
   Scoped under body.v4-page so it never leaks into V1/V2/V3.
   ============================================================ */

.v4-page {
  --v4-bg: #e4edfb;
  --v4-bg-2: #eef3fb;
  --v4-card: #ffffff;
  --v4-ink: #06112e;
  --v4-ink-soft: #2a3656;
  --v4-muted: #5d6a89;
  --v4-accent: #005ff1;      /* Bridge blue — bright numerals */
  --v4-accent-deep: #0048c7;
  --v4-navy: #001b2e;        /* Bridge navy — primary pills */
  --v4-mint: #00d28a;
  --v4-line: #d3e0f5;
  --v4-chip: #ffffff;
  --v4-shadow: 0 30px 70px -32px rgba(8, 40, 95, 0.42);
  --v4-shadow-sm: 0 14px 36px -22px rgba(8, 40, 95, 0.4);
  --v4-radius: 26px;
  --v4-radius-sm: 16px;
  --v4-maxw: 1200px;

  background: var(--v4-bg);
  color: var(--v4-ink);
  font-family: Mabrypro, Arial, sans-serif;
  font-synthesis: weight style;
  -webkit-font-smoothing: antialiased;
}

.v4-page * { box-sizing: border-box; }

.v4-wrap {
  width: 100%;
  max-width: var(--v4-maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.v4-section { padding: clamp(64px, 8vw, 104px) 0; position: relative; }
.v4-section--tight { padding: clamp(44px, 6vw, 72px) 0; }
.v4-section--white { background: var(--v4-bg-2); }

/* Clear the sticky header (~104px) for in-page anchor jumps */
#funded, #engine, #cases { scroll-margin-top: 112px; }

/* Heavy rounded Hum-style display type (synthetic weight on Mabry) */
.v4-display {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  color: var(--v4-ink);
}
.v4-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v4-accent);
  margin: 0 0 18px;
}
.v4-h2 { font-size: clamp(32px, 4.6vw, 58px); }
.v4-lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--v4-muted);
  max-width: 640px;
  margin: 0;
}
.v4-accent-txt { color: var(--v4-accent); }

/* ---------- Buttons (pill) ---------- */
.v4-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  padding: 15px 30px;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.v4-btn svg { width: 17px; height: 17px; }
.v4-btn--primary { background: var(--v4-navy); color: #fff; border-color: var(--v4-navy); }
.v4-btn--primary:hover { background: var(--v4-accent); border-color: var(--v4-accent); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0, 95, 241, 0.6); }
.v4-btn--outline { background: transparent; color: var(--v4-navy); border-color: var(--v4-navy); }
.v4-btn--outline:hover { background: var(--v4-navy); color: #fff; transform: translateY(-2px); }
.v4-btn--ghost-light { background: #fff; color: var(--v4-navy); border-color: #fff; }
.v4-btn--ghost-light:hover { transform: translateY(-2px); box-shadow: var(--v4-shadow-sm); }

.v4-arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--v4-accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}
.v4-arrowlink svg { width: 18px; height: 18px; transition: transform 0.18s ease; }
.v4-arrowlink:hover svg { transform: translateX(4px); }

/* ---------- Keyboard focus (production a11y) ---------- */
.v4-btn:focus-visible,
.v4-arrowlink:focus-visible,
.v4-tile:focus-visible,
.v4-case:focus-visible,
.v4-res:focus-visible {
  outline: 3px solid var(--v4-accent);
  outline-offset: 3px;
}
.v4-final-card .v4-btn:focus-visible { outline-color: #fff; }

/* ---------- Playful rounded-square confetti ---------- */
.v4-squares { position: absolute; pointer-events: none; z-index: 0; }
.v4-squares span {
  position: absolute;
  border-radius: 9px;
  background: rgba(0, 95, 241, 0.12);
}

/* ============================================================
   HERO
   ============================================================ */
.v4-hero { padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 5.5vw, 80px); position: relative; overflow: hidden; }

/* Two-column hero: headline left, folded success-story deck right */
.v4-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(24px, 3.4vw, 56px);
}
.v4-hero-head { max-width: 600px; position: relative; z-index: 1; }
.v4-hero .v4-display { font-size: clamp(44px, 6.6vw, 92px); }
.v4-hero .sv-hero-sub {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--v4-ink-soft);
  margin: 24px 0 0;
  max-width: 500px;
}
.v4-hero .sv-hero-vary { min-height: 230px; }
.v4-hero .sv-hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 66px);
  color: var(--v4-ink);
}
.v4-hero .sv-hero-title em { font-style: normal; color: var(--v4-accent); }
.v4-hero .sv-hero-title .l1 { color: var(--v4-accent); }

.v4-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.v4-hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-top: 26px; font-size: 14px; color: var(--v4-ink-soft); font-weight: 600;
}
.v4-hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--v4-accent); }

/* ---------- Funded-company expand accordion (Hum-style "expand-slider") ---------- */
.v4-hero-aside { position: relative; z-index: 1; }
.v4-fan {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.1vw, 16px);
  height: clamp(420px, 44vw, 568px);
  overflow: hidden;
}

/* Base tile = collapsed strip */
.v4-tile {
  position: relative;
  flex: 1 1 0;
  min-width: clamp(52px, 5.6vw, 82px);
  width: auto;
  height: auto;
  border-radius: clamp(18px, 1.8vw, 26px);
  overflow: hidden;
  background: var(--v4-navy);
  box-shadow: var(--v4-shadow-sm);
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: flex-grow 0.55s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.v4-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.4s ease;
}
.v4-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 46, 0) 38%, rgba(6, 17, 46, 0.82) 100%);
}

/* Brand name — vertical while collapsed */
.v4-tile-name {
  position: absolute;
  left: 50%; bottom: 26px; top: auto; right: auto;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  writing-mode: vertical-rl;
  font-size: clamp(15px, 1.5vw, 19px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.v4-tile-name small { display: none; }

/* Quick-info badge — Hum "$X Funds Raised" (revealed when expanded) */
.v4-chip {
  position: absolute;
  left: clamp(18px, 2vw, 30px);
  bottom: clamp(80px, 10vw, 124px);
  z-index: 3;
  background: #e8f1fc;
  border-radius: 12px;
  padding: 13px 22px 16px;
  box-shadow: 0 26px 60px -20px rgba(6, 17, 46, 0.5);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.v4-chip .amt { display: block; font-size: clamp(34px, 3.6vw, 54px); font-weight: 800; letter-spacing: -0.03em; color: var(--v4-accent); line-height: 1; white-space: nowrap; }
.v4-chip .lbl { display: block; font-size: clamp(12px, 1.05vw, 15px); font-weight: 700; color: var(--v4-ink); margin-top: 6px; }

/* Expanded state = default-active OR hovered OR keyboard-focused */
.v4-fan .v4-tile.is-active,
.v4-fan .v4-tile:hover,
.v4-fan .v4-tile:focus-within { flex-grow: 8; }
.v4-fan .v4-tile.is-active img,
.v4-fan .v4-tile:hover img,
.v4-fan .v4-tile:focus-within img { filter: none; }
.v4-fan .v4-tile.is-active .v4-chip,
.v4-fan .v4-tile:hover .v4-chip,
.v4-fan .v4-tile:focus-within .v4-chip { opacity: 1; transform: none; }
.v4-fan .v4-tile.is-active .v4-tile-name,
.v4-fan .v4-tile:hover .v4-tile-name,
.v4-fan .v4-tile:focus-within .v4-tile-name {
  writing-mode: horizontal-tb;
  left: clamp(20px, 2.2vw, 34px);
  transform: none;
  bottom: clamp(24px, 2.6vw, 38px);
  font-size: clamp(22px, 2.3vw, 30px);
}
.v4-fan .v4-tile.is-active .v4-tile-name small,
.v4-fan .v4-tile:hover .v4-tile-name small,
.v4-fan .v4-tile:focus-within .v4-tile-name small {
  display: block;
  writing-mode: horizontal-tb;
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 600;
  opacity: 0.85;
  margin-top: 5px;
}

/* When the row is hovered, collapse every card except the hovered one
   (this overrides the default-active card so the pointer always wins) */
.v4-fan:hover .v4-tile:not(:hover) { flex-grow: 1; }
.v4-fan:hover .v4-tile:not(:hover) img { filter: grayscale(1) contrast(1.02); }
.v4-fan:hover .v4-tile:not(:hover) .v4-chip { opacity: 0; transform: translateY(10px); }
.v4-fan:hover .v4-tile:not(:hover) .v4-tile-name {
  writing-mode: vertical-rl;
  left: 50%; transform: translateX(-50%);
  bottom: 26px;
  font-size: clamp(15px, 1.5vw, 19px);
}
.v4-fan:hover .v4-tile:not(:hover) .v4-tile-name small { display: none; }

.v4-gallery-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 14px; flex-wrap: wrap;
}
.v4-gallery-note { font-size: 13px; color: var(--v4-muted); }

/* ============================================================
   STAT PANEL
   ============================================================ */
.v4-statpanel {
  background: var(--v4-card);
  border-radius: var(--v4-radius);
  box-shadow: var(--v4-shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.v4-statpanel .col { position: relative; padding-left: 28px; }
.v4-statpanel .col + .col::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 1px; background: var(--v4-line);
}
.v4-statpanel .col:first-child { padding-left: 0; }
.v4-stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--v4-accent);
  line-height: 1;
}
.v4-stat-num .unit { font-size: 0.55em; }
.v4-stat-lbl { margin-top: 10px; font-size: 15px; line-height: 1.35; color: var(--v4-ink-soft); font-weight: 600; }

/* ============================================================
   BACKED BY (logo row)
   ============================================================ */
.v4-backed { text-align: center; }
.v4-backed-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--v4-muted); font-weight: 700; margin: 0 0 30px;
}
.v4-backed-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px 56px;
}
.v4-backed-row img {
  height: 30px; width: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.v4-backed-row img:hover { opacity: 0.85; }
.v4-backed-note { margin-top: 26px; font-size: 13px; color: var(--v4-muted); }
.v4-backed-note b { color: var(--v4-ink); font-weight: 700; }

/* ============================================================
   INTELLIGENT ENGINE
   ============================================================ */
.v4-engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.v4-engine-copy { max-width: 460px; }
.v4-engine-card {
  background: linear-gradient(165deg, #063a6e 0%, var(--v4-navy) 100%);
  border-radius: var(--v4-radius);
  padding: 34px;
  color: #fff;
  box-shadow: var(--v4-shadow);
  position: relative;
  overflow: hidden;
}
.v4-engine-card::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 24px;
  background: rgba(0, 95, 241, 0.25);
  transform: rotate(18deg);
}
.v4-engine-row {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.v4-engine-row:last-child { margin-bottom: 0; }
.v4-engine-row .ic {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  background: rgba(0, 95, 241, 0.35); color: #fff;
  display: grid; place-items: center;
}
.v4-engine-row .ic svg { width: 20px; height: 20px; }
.v4-engine-row .t { font-weight: 700; font-size: 15px; }
.v4-engine-row .s { font-size: 13px; color: #b9c3e8; margin-top: 2px; }
.v4-engine-row .amt { margin-left: auto; font-weight: 800; color: var(--v4-mint); font-size: 17px; }

/* ============================================================
   SPLIT — For Suppliers / For Partners
   ============================================================ */
.v4-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.v4-split-card {
  background: var(--v4-card);
  border-radius: var(--v4-radius);
  padding: 40px;
  box-shadow: var(--v4-shadow-sm);
  position: relative;
  overflow: hidden;
}
.v4-split-card .tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--v4-accent); margin: 0 0 14px;
}
.v4-split-card h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 24px; line-height: 1.05; }
.v4-split-list { list-style: none; margin: 0 0 28px; padding: 0; }
.v4-split-list li { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--v4-line); }
.v4-split-list li:first-child { border-top: 0; }
.v4-split-list .n {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: #e4eefb; color: var(--v4-accent);
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
}
.v4-split-list .b { font-weight: 700; font-size: 16px; }
.v4-split-list .d { font-size: 14px; color: var(--v4-muted); margin-top: 3px; line-height: 1.45; }

/* ============================================================
   CASE STUDIES (funded)
   ============================================================ */
.v4-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.v4-case {
  background: var(--v4-card);
  border-radius: var(--v4-radius);
  overflow: hidden;
  box-shadow: var(--v4-shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.v4-case:hover { transform: translateY(-4px); box-shadow: var(--v4-shadow); }
.v4-case-media { position: relative; height: 190px; background: var(--v4-navy); }
.v4-case-media img { width: 100%; height: 100%; object-fit: cover; }
.v4-case-amt {
  position: absolute; left: 14px; bottom: -18px;
  background: #fff; border-radius: 13px; padding: 9px 14px;
  box-shadow: var(--v4-shadow-sm);
}
.v4-case-amt .v { display: block; font-size: 22px; font-weight: 800; color: var(--v4-accent); letter-spacing: -0.02em; line-height: 1; }
.v4-case-amt .k { display: block; font-size: 11px; font-weight: 700; color: var(--v4-ink); margin-top: 2px; }
.v4-case-body { padding: 30px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.v4-case-quote { font-size: 16px; line-height: 1.5; margin: 0 0 20px; }
.v4-case-cite { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.v4-case-cite .nm { font-weight: 700; font-size: 14px; }
.v4-case-cite .rl { font-size: 13px; color: var(--v4-muted); }

/* ============================================================
   RESOURCES
   ============================================================ */
.v4-res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.v4-res {
  background: var(--v4-card); border-radius: var(--v4-radius-sm);
  padding: 26px; box-shadow: var(--v4-shadow-sm);
  text-decoration: none; color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: block;
}
.v4-res:hover { transform: translateY(-3px); box-shadow: var(--v4-shadow); }
.v4-res .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--v4-accent); }
.v4-res h4 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; margin: 12px 0 10px; line-height: 1.15; }
.v4-res p { font-size: 14px; color: var(--v4-muted); line-height: 1.5; margin: 0 0 16px; }

/* ============================================================
   CLOSING CARD
   ============================================================ */
.v4-final-card {
  background: linear-gradient(150deg, #063a6e 0%, var(--v4-navy) 100%);
  border-radius: 34px;
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--v4-shadow);
}
.v4-final-card .v4-kicker { color: var(--v4-mint); }
.v4-final-card h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; margin: 0 auto 20px; max-width: 760px; }
.v4-final-card h2 em { font-style: normal; color: var(--v4-mint); }
.v4-final-card p { color: #c2cbef; font-size: 18px; max-width: 560px; margin: 0 auto 32px; line-height: 1.5; }
.v4-final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.v4-final-card .v4-btn--outline { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.v4-final-card .v4-btn--outline:hover { background: #fff; color: var(--v4-navy); border-color: #fff; }

/* ============================================================
   RESPONSIVE LADDER
   Desktop (>=1024): 4-col stats · 2-col engine/split · 3-col cases/resources
   Tablet  (<=1024): 2-col stats/cases/resources/split · stacked engine
   Compact (<=760) : single column for split/cases/resources
   Mobile  (<=520) : tighten stats, gallery tiles, closing card
   ============================================================ */
@media (max-width: 1024px) {
  .v4-statpanel { grid-template-columns: repeat(2, 1fr); gap: 34px 28px; padding: 40px; }
  .v4-statpanel .col, .v4-statpanel .col:first-child { padding-left: 0; }
  .v4-statpanel .col::before { display: none !important; }
  .v4-engine-grid { grid-template-columns: 1fr; gap: 32px; }
  .v4-engine-copy { max-width: none; }
  .v4-split-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .v4-split-card { padding: 32px; }
  .v4-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .v4-res-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .v4-split-grid { grid-template-columns: 1fr; }
  .v4-cases-grid { grid-template-columns: 1fr; }
  .v4-res-grid { grid-template-columns: 1fr; }
  .v4-hero-cta .v4-btn { flex: 1 1 auto; justify-content: center; }
}

/* Collapse hero to single column + turn the accordion into a scroll row of full cards */
@media (max-width: 900px) {
  .v4-hero-grid { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }
  .v4-hero-head { max-width: none; }
  .v4-hero .sv-hero-vary { min-height: 0; }
  .v4-fan {
    height: auto;
    align-items: stretch;
    overflow-x: auto;
    gap: 14px;
    padding: 4px 2px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #c3cbf0 transparent;
  }
  .v4-fan::-webkit-scrollbar { height: 8px; }
  .v4-fan::-webkit-scrollbar-thumb { background: #c3cbf0; border-radius: 999px; }
  .v4-fan .v4-tile {
    flex: 0 0 auto;
    width: clamp(208px, 62vw, 248px);
    height: clamp(320px, 84vw, 384px);
    min-width: 0;
    scroll-snap-align: start;
  }
  /* No accordion collapse on touch — every card shows its image + badge + name */
  .v4-fan .v4-tile img { filter: none; }
  .v4-fan .v4-tile .v4-chip {
    left: 16px; top: 16px; bottom: auto;
    opacity: 1; transform: none;
    padding: 10px 16px 12px;
  }
  .v4-fan .v4-tile .v4-chip .amt { font-size: 30px; }
  .v4-fan .v4-tile .v4-chip .lbl { font-size: 12px; margin-top: 3px; }
  .v4-fan .v4-tile .v4-tile-name {
    writing-mode: horizontal-tb;
    left: 16px; right: auto; top: auto; bottom: 16px;
    transform: none;
    font-size: 20px;
  }
  .v4-fan .v4-tile .v4-tile-name small {
    display: block; writing-mode: horizontal-tb;
    font-size: 12px; font-weight: 600; opacity: 0.85; margin-top: 3px;
  }
}

@media (max-width: 520px) {
  .v4-hero .sv-hero-vary { min-height: 0; }
  .v4-statpanel { grid-template-columns: 1fr; gap: 26px; padding: 30px; }
  .v4-backed-row { gap: 26px 34px; }
  .v4-backed-row img { height: 24px; }
  .v4-fan .v4-tile { width: clamp(196px, 74vw, 230px); height: 340px; }
  .v4-engine-card, .v4-split-card { padding: 26px; }
  .v4-final-card { padding: 48px 22px; }
  .v4-gallery-foot { gap: 10px; }
}

/* ============================================================
   REDUCED MOTION — honor user preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .v4-tile, .v4-tile img, .v4-chip, .v4-case, .v4-res, .v4-btn, .v4-arrowlink svg { transition: none !important; }
  .v4-case:hover, .v4-res:hover, .v4-btn:hover { transform: none !important; }
  .v4-arrowlink:hover svg { transform: none !important; }
}
