/* ============================================================
 *  Custom AI Products — Cinematic Upgrades
 *    1. CAPWhatThisV2 — replaces the empty-ring 6-step strip
 *       with a cinematic stepper + live mini-mockup per step.
 *    2. CAPHubV2 — replaces the radial integration hub with
 *       a real-life "your stack" board: 8 system cards with
 *       brand chips, animated read/write packets to a center
 *       AI core.
 *    3. cap-band tightening so the inline CTA doesn't float.
 * ============================================================ */

/* ----------------------------------------------------------
 *  Tighten inline CTA band so it visually anchors to neighbors
 * ---------------------------------------------------------- */
.cap-band-tight-wrap {
  margin: -48px 0 -32px;
  position: relative;
  z-index: 2;
}
.cap-band-tight-wrap .aa-cv-band { padding: 0; }
.cap-band-tight-wrap .aa-cv-band-row {
  background:
    linear-gradient(90deg, rgba(94,255,164,0.08), rgba(79,200,255,0.05) 60%, rgba(10,14,31,0.92)),
    rgba(10,14,31,0.92);
  border: 1px solid rgba(79,200,255,0.22);
  border-left: 2px solid #5EFFA4;
  padding: 18px 26px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.cap-band-tight-wrap .aa-cv-band-msg {
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap-band-tight-wrap .aa-cv-band-msg .d {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5EFFA4; box-shadow: 0 0 10px #5EFFA4;
  flex-shrink: 0;
}
.cap-band-tight-wrap .aa-cv-band-ctas {
  display: flex; gap: 16px; align-items: center; flex-shrink: 0;
}

/* ============================================================
 *  1. CAPWhatThisV2 — cinematic stepper
 * ============================================================ */
.cwt2-section { padding: 100px 0; }
.cwt2-stage {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  margin-top: 48px;
  background:
    radial-gradient(900px 420px at 80% 0%, color-mix(in oklab, var(--ic, #4FC8FF) 12%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(10,14,31,0.88), rgba(5,7,15,0.94));
  border: 1px solid rgba(79,200,255,0.12);
  border-radius: 3px;
  min-height: 540px;
  overflow: hidden;
  --ic: #4FC8FF;
}
@media (max-width: 1000px) { .cwt2-stage { grid-template-columns: 1fr; } }

.cwt2-rail {
  background: rgba(0,0,0,0.35);
  border-right: 1px solid rgba(79,200,255,0.08);
  display: flex; flex-direction: column;
}
@media (max-width: 1000px) { .cwt2-rail { border-right: 0; border-bottom: 1px solid rgba(79,200,255,0.08); } }

.cwt2-rail-h {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(79,200,255,0.08);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  display: flex; justify-content: space-between; align-items: center;
}

.cwt2-step {
  --c: var(--ic);
  width: 100%; background: transparent; border: 0; cursor: pointer;
  padding: 14px 18px;
  display: grid; grid-template-columns: 38px 1fr auto; gap: 12px;
  align-items: center;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: left;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}
.cwt2-step:hover { color: #fff; background: rgba(255,255,255,0.02); }
.cwt2-step.on {
  color: #fff; border-left-color: var(--c);
  background: linear-gradient(90deg, color-mix(in oklab, var(--c) 14%, transparent), transparent 80%);
}
.cwt2-step-num {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.4);
}
.cwt2-step.on .cwt2-step-num {
  border-color: var(--c); color: var(--c);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c) 12%, transparent);
}
.cwt2-step-h { font-family: var(--font-display); font-size: 16px; font-weight: 500; color: inherit; line-height: 1.2; }
.cwt2-step-s { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; margin-top: 2px; }
.cwt2-step-arrow {
  font-family: var(--font-mono); font-size: 16px; color: rgba(255,255,255,0.2);
}
.cwt2-step.on .cwt2-step-arrow { color: var(--c); }

.cwt2-rail-foot {
  margin-top: auto;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(79,200,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.cwt2-rail-foot b { color: #fff; font-weight: 500; }

.cwt2-stage-body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; z-index: 1;
}
.cwt2-stage-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  flex-wrap: wrap;
}
.cwt2-stage-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: var(--ic); }
.cwt2-stage-title { font-family: var(--font-display); font-size: 28px; line-height: 1.1; color: #fff; font-weight: 400; letter-spacing: -0.02em; margin-top: 4px; }
.cwt2-stage-sub { font-size: 14px; line-height: 1.5; color: var(--site-text-2); max-width: 520px; }
.cwt2-stage-meta { display: flex; gap: 18px; }
.cwt2-stage-meta .m { display: flex; flex-direction: column; gap: 2px; }
.cwt2-stage-meta .m span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.5); }
.cwt2-stage-meta .m b { font-family: var(--font-mono); font-size: 12px; color: #fff; font-weight: 500; }

/* mockup viewport */
.cwt2-mock {
  flex: 1;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15));
  border: 1px solid rgba(79,200,255,0.1);
  border-radius: 3px;
  padding: 20px;
  min-height: 280px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.cwt2-mock::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(0deg, rgba(79,200,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,200,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000, transparent 90%);
}
.cwt2-mock > * { position: relative; z-index: 1; }

.cwt2-mock-h {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(79,200,255,0.18);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
}
.cwt2-mock-h .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px;
  background: rgba(94,255,164,0.08);
  color: #5EFFA4;
  border: 1px solid rgba(94,255,164,0.3);
  border-radius: 1px;
  font-size: 9.5px;
}
.cwt2-mock-h .pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #5EFFA4; box-shadow: 0 0 6px #5EFFA4;
  animation: cwt2-blink 1.4s ease-in-out infinite;
}
@keyframes cwt2-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* mock variants */
.cwt2-mock-rows { display: flex; flex-direction: column; gap: 8px; }
.cwt2-mock-row {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 12px; align-items: center;
  padding: 10px 12px;
  background: rgba(10,14,31,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid var(--rc, var(--ic));
  font-family: var(--font-mono); font-size: 11px;
  opacity: 0.4; transform: translateX(-6px);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cwt2-mock-row.on { opacity: 1; transform: translateX(0); }
.cwt2-mock-row .k { color: var(--rc, var(--ic)); letter-spacing: 0.12em; font-size: 9.5px; }
.cwt2-mock-row .v { color: #fff; font-family: var(--font-display); font-size: 13.5px; }
.cwt2-mock-row .b { font-size: 9.5px; color: rgba(94,255,164,0.85); letter-spacing: 0.04em; }

/* model picker grid (step 02) */
.cwt2-mock-models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cwt2-mock-mod {
  padding: 12px 14px;
  background: rgba(10,14,31,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  transition: all 0.4s ease;
}
.cwt2-mock-mod.on {
  border-color: var(--ic);
  background: color-mix(in oklab, var(--ic) 10%, rgba(10,14,31,0.7));
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--ic) 22%, transparent);
}
.cwt2-mock-mod .mh { font-family: var(--font-display); font-size: 14px; color: #fff; font-weight: 500; }
.cwt2-mock-mod .ms { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.cwt2-mock-mod .mtag {
  position: absolute; top: 8px; right: 8px;
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.14em;
  color: var(--ic);
  opacity: 0; transition: opacity 0.3s;
}
.cwt2-mock-mod.on .mtag { opacity: 1; }

/* flow board (step 03) */
.cwt2-mock-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; align-items: center; }
.cwt2-mock-fnode {
  padding: 10px 8px;
  text-align: center;
  background: rgba(10,14,31,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.cwt2-mock-fnode.on {
  color: #fff; border-color: var(--ic);
  background: color-mix(in oklab, var(--ic) 10%, rgba(10,14,31,0.7));
  box-shadow: 0 0 14px color-mix(in oklab, var(--ic) 30%, transparent);
}
.cwt2-mock-fnode b { display: block; color: var(--ic); font-size: 9px; letter-spacing: 0.16em; margin-bottom: 4px; }
.cwt2-mock-farr { color: rgba(79,200,255,0.5); text-align: center; font-family: var(--font-mono); }

/* approval dialog (step 04) */
.cwt2-mock-appr {
  background: rgba(60,40,12,0.4);
  border: 1px solid rgba(255,214,107,0.45);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.cwt2-mock-appr-h { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: #FFD66B; }
.cwt2-mock-appr-q { font-family: var(--font-display); font-size: 17px; line-height: 1.3; color: #fff; }
.cwt2-mock-appr-q b { color: #FFD66B; font-weight: 500; }
.cwt2-mock-appr-meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.65); }
.cwt2-mock-appr-meta b { color: #fff; }
.cwt2-mock-appr-btns { display: flex; gap: 10px; }
.cwt2-mock-appr-btns .ab {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,0.18);
  background: transparent; color: rgba(255,255,255,0.7);
}
.cwt2-mock-appr-btns .ab.ok { border-color: #5EFFA4; color: #5EFFA4; background: rgba(94,255,164,0.06); }
.cwt2-mock-appr-btns .ab.no { border-color: rgba(255,120,120,0.5); color: #FF8866; }
.cwt2-mock-appr-btns .ab.on {
  box-shadow: 0 0 0 2px currentColor inset, 0 0 18px color-mix(in oklab, currentColor 35%, transparent);
}

/* live product surfaces (step 05) */
.cwt2-mock-surf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cwt2-mock-surf-card {
  aspect-ratio: 4 / 3.4;
  background: rgba(10,14,31,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.cwt2-mock-surf-card.on { border-color: var(--ic); box-shadow: 0 0 0 1px color-mix(in oklab, var(--ic) 22%, transparent); }
.cwt2-mock-surf-bar { height: 14px; background: rgba(255,255,255,0.04); display: flex; align-items: center; padding: 0 6px; gap: 4px; }
.cwt2-mock-surf-bar i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.cwt2-mock-surf-body { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.cwt2-mock-surf-body .l { height: 5px; background: rgba(255,255,255,0.1); border-radius: 1px; }
.cwt2-mock-surf-body .l.s { width: 60%; background: var(--ic); opacity: 0.6; }
.cwt2-mock-surf-body .l.t { width: 40%; height: 8px; background: rgba(255,255,255,0.18); margin-top: auto; }
.cwt2-mock-surf-tag { position: absolute; bottom: 6px; right: 8px; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); }
.cwt2-mock-surf-card.on .cwt2-mock-surf-tag { color: var(--ic); }

/* dashboard (step 06) */
.cwt2-mock-dash { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.cwt2-mock-dash-tile {
  padding: 10px 12px; background: rgba(10,14,31,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.cwt2-mock-dash-tile .t { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.55); }
.cwt2-mock-dash-tile .v { font-family: var(--font-display); font-size: 22px; color: #fff; line-height: 1; }
.cwt2-mock-dash-tile .v sup { font-size: 11px; color: rgba(94,255,164,0.85); margin-left: 4px; vertical-align: 8px; }
.cwt2-mock-dash-spark { display: flex; align-items: flex-end; gap: 2px; height: 22px; }
.cwt2-mock-dash-spark i { flex: 1; background: var(--ic); opacity: 0.8; }

.cwt2-mock-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  padding-top: 10px;
  border-top: 1px dashed rgba(79,200,255,0.18);
}
.cwt2-mock-foot b { color: var(--ic); }

/* ============================================================
 *  2. CAPHubV2 — real-life integrations board
 * ============================================================ */
.chub2-section { padding: 110px 0; }
.chub2-stage {
  margin-top: 48px;
  background:
    radial-gradient(800px 360px at 50% 0%, rgba(94,255,164,0.10), transparent 60%),
    linear-gradient(180deg, rgba(10,14,31,0.9), rgba(5,7,15,0.96));
  border: 1px solid rgba(79,200,255,0.12);
  border-radius: 3px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.chub2-stage::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg, rgba(79,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,200,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 95%);
  pointer-events: none;
}
.chub2-grid {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .chub2-grid { grid-template-columns: 1fr; }
  .chub2-col-l, .chub2-col-r { order: 2; }
  .chub2-core { order: 1; }
}

.chub2-col-l, .chub2-col-r { display: flex; flex-direction: column; gap: 14px; }

/* system card */
.chub2-sys {
  --c: #4FC8FF;
  background: rgba(10,14,31,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  position: relative;
  transition: all 0.4s ease;
}
.chub2-sys.on {
  border-color: var(--c);
  background: color-mix(in oklab, var(--c) 10%, rgba(10,14,31,0.85));
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--c) 25%, transparent), 0 0 28px color-mix(in oklab, var(--c) 14%, transparent);
}
.chub2-sys-logo {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.4);
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--c);
  letter-spacing: 0.04em;
  position: relative;
}
.chub2-sys.on .chub2-sys-logo {
  border-color: var(--c);
  background: color-mix(in oklab, var(--c) 14%, rgba(0,0,0,0.4));
}
.chub2-sys-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.chub2-sys-h { font-family: var(--font-display); font-size: 15px; color: #fff; font-weight: 500; line-height: 1.1; }
.chub2-sys-s {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chub2-sys-op {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em;
  padding: 3px 7px;
  border-radius: 1px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.chub2-sys.on .chub2-sys-op {
  background: color-mix(in oklab, var(--c) 18%, transparent);
  border-color: var(--c);
  color: #fff;
}
.chub2-sys-op.read { border-color: rgba(94,255,164,0.4); color: #5EFFA4; }
.chub2-sys-op.write { border-color: rgba(255,214,107,0.4); color: #FFD66B; }
.chub2-sys-op.trig { border-color: rgba(255,123,193,0.4); color: #FF7BC1; }

/* moving packet */
.chub2-sys-pulse {
  position: absolute; left: -1px; right: -1px; top: 50%;
  transform: translateY(-50%);
  height: 2px;
  pointer-events: none;
  opacity: 0;
}
.chub2-sys.on .chub2-sys-pulse {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--c), transparent);
  animation: chub2-flow 0.85s linear;
}
@keyframes chub2-flow {
  0% { transform: translate(-100%, -50%); }
  100% { transform: translate(100%, -50%); }
}

/* CORE — the AI product */
.chub2-core {
  display: flex; flex-direction: column;
  background:
    radial-gradient(circle at 50% 50%, rgba(94,255,164,0.18), rgba(94,255,164,0.04) 60%, transparent 80%),
    rgba(5,7,15,0.9);
  border: 1px solid rgba(94,255,164,0.4);
  border-radius: 3px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.chub2-core::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(94,255,164,0.15), transparent 50%);
  animation: chub2-pulse 3s ease-in-out infinite;
}
@keyframes chub2-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.chub2-core-h {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em;
  color: #5EFFA4; text-align: center;
  position: relative; z-index: 1;
}
.chub2-core-h2 {
  font-family: var(--font-display); font-size: 22px; line-height: 1.1;
  color: #fff; font-weight: 400; letter-spacing: -0.02em; text-align: center;
  margin-top: 6px; position: relative; z-index: 1;
}
.chub2-core-img {
  margin: 16px 0; padding: 14px;
  background: rgba(10,14,31,0.85);
  border: 1px solid rgba(94,255,164,0.25);
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.chub2-core-window {
  display: flex; gap: 4px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chub2-core-window i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.chub2-core-msg {
  padding: 8px 10px; background: rgba(94,255,164,0.06);
  border-left: 2px solid #5EFFA4;
  font-family: var(--font-display); font-size: 12.5px; color: #fff; line-height: 1.4;
}
.chub2-core-msg .a { color: #5EFFA4; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; display: block; margin-bottom: 3px; }
.chub2-core-msg.user { background: rgba(79,200,255,0.06); border-left-color: #4FC8FF; }
.chub2-core-msg.user .a { color: #4FC8FF; }
.chub2-core-typing {
  display: flex; gap: 4px; padding: 8px 10px;
}
.chub2-core-typing i { width: 6px; height: 6px; border-radius: 50%; background: #5EFFA4; animation: chub2-type 1.2s infinite; }
.chub2-core-typing i:nth-child(2) { animation-delay: 0.15s; }
.chub2-core-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes chub2-type { 0%,60%,100% { opacity: 0.3; } 30% { opacity: 1; transform: translateY(-2px); } }

.chub2-core-foot {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  position: relative; z-index: 1;
  padding-top: 10px; border-top: 1px dashed rgba(94,255,164,0.2);
}
.chub2-core-foot b { color: #5EFFA4; }

/* connection lanes (lines drawn behind grid) */
.chub2-grid::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent, rgba(79,200,255,0.18), transparent);
  height: 1px; top: 50%; opacity: 0;
}

.chub2-foot {
  margin-top: 24px;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: space-between;
  align-items: center;
  position: relative; z-index: 1;
  padding-top: 20px;
  border-top: 1px dashed rgba(79,200,255,0.18);
}
.chub2-foot-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.chub2-foot-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(10,14,31,0.85);
  border: 1px solid rgba(79,200,255,0.18);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}
.chub2-foot-pill .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4FC8FF; box-shadow: 0 0 6px #4FC8FF;
}
.chub2-foot-pill.green .d { background: #5EFFA4; box-shadow: 0 0 6px #5EFFA4; }
.chub2-foot-pill.amber .d { background: #FFD66B; box-shadow: 0 0 6px #FFD66B; }

.chub2-stats {
  display: flex; gap: 22px;
}
.chub2-stat { display: flex; flex-direction: column; gap: 2px; align-items: flex-end; }
.chub2-stat .v { font-family: var(--font-display); font-size: 22px; color: #fff; line-height: 1; }
.chub2-stat .l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.5); }
