/* =============================================================================
 * page-bundle.css — eo SwimBETTER bundle page (/products-bundle, future /products)
 *
 * Scoped to `.page-bundle` so it cannot affect the rest of eolab.com.
 * Tokens are :root-scoped under .page-bundle (sub-selector); existing
 * site styles are unaffected.
 *
 * Token reconciliation (plan §1.6): Tech Blue is #2405f2 here, vs #2404F2 in
 * the site-wide styles.css. One-bit difference, almost certainly the same colour
 * after gamma. Follow-up ticket files the site-wide reconciliation.
 * ============================================================================= */

.page-bundle {
  /* Clear the site-wide fixed nav (#header position: fixed, top: 0).
   * Matches the existing /products page's `.section { padding: 60px 10px; }`
   * vertical offset; desktop nav is taller so bump to 100px ≥1024px.
   * Without this, the back-link renders behind the nav menu items. */
  padding-top: 64px;

  --catalyst-orange: #ff4305;
  --mineral-orange:  #f27e4e;
  --rich-black:      #000000;
  --ink-200:         #1a1a1a;
  --ink-500:         #666666;
  --off-white:       #f2f2f2;
  --tech-blue:       #2405f2;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;

  --radius-0: 0;
  --radius-1: 8px;
  --radius-2: 4px;

  --bg:      var(--off-white);
  --card:    #ffffff;
  --border:  1px solid var(--ink-200);
  --success: #16834a;

  --font: 'Archivo', system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-narrow: 'Archivo Narrow', var(--font);

  font-family: var(--font);
  color: var(--rich-black);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100dvh;
}

.page-bundle *, .page-bundle *::before, .page-bundle *::after { box-sizing: border-box; }
.page-bundle img { display: block; max-width: 100%; }
.page-bundle button { font-family: inherit; }
.page-bundle a { color: inherit; }

/* =========================================================================
   back link
   ========================================================================= */
.page-bundle .back-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.page-bundle .back-link svg { width: 16px; height: 16px; }
.page-bundle .back-link:hover { text-decoration: underline; }

/* =========================================================================
   page layout (single col on mobile → 40/60 grid on lg)
   ========================================================================= */
.page-bundle .page {
  max-width: 100%;
  padding: 0 16px 120px;
}
.page-bundle .col-media { margin-bottom: 24px; }
.page-bundle .col-detail { display: contents; }

@media (min-width: 1024px) {
  .page-bundle {
    /* Desktop nav is taller than mobile — bump the offset. */
    padding-top: 100px;
  }
  .page-bundle .page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 64px 96px;
    display: grid;
    grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
    gap: 64px;
    align-items: start;
  }
  .page-bundle .back-link-wrap { max-width: 1440px; margin: 0 auto; padding: 0 64px; }
  /* Sticky media offset = nav clear (100) + 24 visual breathing room. */
  .page-bundle .col-media { position: sticky; top: 124px; margin-bottom: 0; }
  .page-bundle .col-detail { display: block; }
}

.page-bundle .back-link-wrap { max-width: 1440px; margin: 0 auto; padding: 0 16px; }

/* =========================================================================
   media block (mobile rotator + desktop sticky + thumb strip)
   ========================================================================= */
.page-bundle .media {
  background: var(--rich-black);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 8px;
  border-radius: var(--radius-1);
}
.page-bundle .media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-bundle .media-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}
.page-bundle .media-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 9999px;
  transition: background-color 0.12s, width 0.12s;
}
.page-bundle .media-dot.active {
  background: var(--catalyst-orange);
  width: 22px;
}
.page-bundle .media-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.page-bundle .media-thumb {
  aspect-ratio: 1;
  background: var(--rich-black);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  border: 0;
  padding: 0;
  border-radius: var(--radius-1);
  transition: opacity 0.12s;
}
.page-bundle .media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.page-bundle .media-thumb:hover { opacity: 0.85; }
.page-bundle .media-thumb.active { opacity: 1; outline: 3px solid var(--catalyst-orange); outline-offset: 0; }

@media (min-width: 1024px) {
  .page-bundle .media { aspect-ratio: 1 / 1; margin-bottom: 12px; }
  .page-bundle .media-thumbs { margin-bottom: 24px; }
}

/* =========================================================================
   headline
   ========================================================================= */
.page-bundle .eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--catalyst-orange);
  margin-bottom: 8px;
}
.page-bundle .h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-transform: none;
}
.page-bundle .h1 .eo {
  font-weight: 800;
  text-transform: lowercase;
}
.page-bundle .lede {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-200);
  margin: 0 0 24px;
  max-width: 60ch;
}
@media (min-width: 1024px) {
  .page-bundle .h1 { font-size: 44px; letter-spacing: -0.025em; margin-bottom: 16px; }
  .page-bundle .lede { font-size: 18px; line-height: 1.55; margin-bottom: 32px; }
}

/* =========================================================================
   trust strip
   ========================================================================= */
.page-bundle .trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.page-bundle .trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-1);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.page-bundle .trust-pill svg {
  width: 20px; height: 20px;
  color: var(--catalyst-orange);
  flex-shrink: 0;
}
.page-bundle .trust-desktop { display: none; }
@media (min-width: 1024px) {
  .page-bundle .trust { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
  .page-bundle .trust-pill { padding: 14px 16px; font-size: 13px; }
  .page-bundle .trust-desktop { display: grid; }
  .page-bundle .trust-mobile  { display: none; }
}

/* =========================================================================
   section head — "Pick your bundle"
   ========================================================================= */
.page-bundle .section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.page-bundle .section-head h2 {
  font-size: 18px; font-weight: 700;
  margin: 0;
}
.page-bundle .help-link {
  font-size: 14px; font-weight: 600;
  color: var(--tech-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none; border: 0; padding: 4px 0;
  cursor: pointer;
  font-family: inherit;
}
.page-bundle .help-link:focus-visible {
  outline: 3px solid var(--tech-blue);
  outline-offset: 2px;
}
.page-bundle .section-sub {
  font-size: 14px; color: var(--ink-500);
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .page-bundle .section-head h2 { font-size: 20px; }
}

/* =========================================================================
   bundle picker
   ========================================================================= */
.page-bundle .bundle-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.page-bundle .bundle-pick {
  position: relative;
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-1);
  padding: 14px 12px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  min-height: 44px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.12s, box-shadow 0.12s, background-color 0.12s;
}
.page-bundle .bundle-pick > span { display: block; min-width: 0; }
.page-bundle .bundle-pick:focus-visible {
  outline: 3px solid var(--tech-blue);
  outline-offset: 2px;
}
.page-bundle .bundle-pick[aria-checked="true"] {
  border: 3px solid var(--catalyst-orange);
  padding: 12px 10px;
  background: #fff5f1;
}
.page-bundle .bundle-pick-radio { display: none; }
.page-bundle .bundle-pick-badge {
  position: absolute;
  top: -10px; left: 12px;
  background: var(--catalyst-orange);
  color: #fff;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-1);
}
.page-bundle .bundle-pick-name {
  font-weight: 800; font-size: 14px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.page-bundle .bundle-pick-name b { color: var(--catalyst-orange); }
.page-bundle .bundle-pick-detail {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 3px;
  line-height: 1.35;
}
.page-bundle .bundle-pick-price {
  font-size: 15px;
  font-weight: 800;
  margin-top: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.page-bundle .bundle-pick-bestfor {
  font-size: 10px;
  color: var(--ink-500);
  line-height: 1.35;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #e6e6e6;
}
@media (min-width: 1024px) {
  .page-bundle .bundle-pick { padding: 20px; }
  .page-bundle .bundle-pick[aria-checked="true"] { padding: 18px; }
  .page-bundle .bundle-pick-name { font-size: 18px; line-height: 1.1; }
  .page-bundle .bundle-pick-detail { font-size: 13px; margin-top: 4px; }
  .page-bundle .bundle-pick-price { font-size: 22px; margin-top: 12px; }
  .page-bundle .bundle-pick-bestfor { font-size: 12px; margin-top: 12px; padding-top: 10px; }
  .page-bundle .bundle-pick-badge { font-size: 10px; padding: 4px 10px; left: 14px; }
}

/* =========================================================================
   "in the box" block
   ========================================================================= */
.page-bundle .includes {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-1);
  padding: 20px;
  margin-bottom: 16px;
}
.page-bundle .includes-placeholder {
  background: var(--card);
  border: 1px dashed var(--ink-200);
  border-radius: var(--radius-1);
  padding: 24px 20px;
  margin-bottom: 16px;
  text-align: left;
}
.page-bundle .includes-placeholder strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.page-bundle .includes-placeholder p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-500);
  margin: 0;
}
.page-bundle .includes-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebebeb;
}
.page-bundle .includes-head .label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-500);
}
.page-bundle .includes-head .price {
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.01em;
}
.page-bundle .includes-list {
  display: flex; flex-direction: column;
  gap: 14px;
}
.page-bundle .includes-row {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; line-height: 1.45;
}
.page-bundle .includes-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--rich-black);
  color: var(--catalyst-orange);
  border-radius: var(--radius-1);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.page-bundle .includes-row strong { display: block; font-weight: 700; }
.page-bundle .includes-row span {
  display: block;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.45;
  margin-top: 2px;
}

/* =========================================================================
   cadence card
   ========================================================================= */
.page-bundle .cadence {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-1);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.page-bundle .cadence[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }
.page-bundle .cadence-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.page-bundle .cadence-title {
  font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.page-bundle .cadence-tooltip { position: relative; }
.page-bundle .info-icon {
  width: 18px; height: 18px;
  background: none; border: 1.5px solid var(--ink-500); color: var(--ink-500);
  border-radius: 9999px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: help;
  padding: 0;
}
.page-bundle .info-icon:focus-visible {
  outline: 3px solid var(--tech-blue);
  outline-offset: 2px;
}
.page-bundle .cadence-trial {
  font-size: 12px; color: var(--success);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.page-bundle .cadence-trial svg { width: 14px; height: 14px; flex-shrink: 0; }

.page-bundle .toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}
.page-bundle .toggle-opt {
  background: #fff;
  border: 0;
  padding: 12px 16px;
  min-height: 56px;
  text-align: center;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.12s, color 0.12s;
}
.page-bundle .toggle-opt + .toggle-opt { border-left: var(--border); }
.page-bundle .toggle-opt[aria-checked="true"] {
  background: var(--rich-black);
  color: var(--off-white);
}
.page-bundle .toggle-opt:focus-visible {
  outline: 3px solid var(--tech-blue);
  outline-offset: -3px;
  z-index: 1;
}
.page-bundle .toggle-label { font-size: 14px; font-weight: 700; line-height: 1.2; }
.page-bundle .toggle-price { font-size: 12px; font-weight: 500; margin-top: 3px; opacity: 0.8; }
.page-bundle .toggle-save  { font-size: 11px; font-weight: 700; color: var(--catalyst-orange); margin-top: 2px; }
.page-bundle .toggle-opt[aria-checked="true"] .toggle-save { color: var(--catalyst-orange); }

/* =========================================================================
   lifetime card
   ========================================================================= */
.page-bundle .lifetime {
  position: relative;
  background: var(--rich-black);
  color: var(--off-white);
  border: 2px solid var(--rich-black);
  border-radius: var(--radius-1);
  padding: 16px 20px;
  margin-bottom: 16px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.12s;
}
.page-bundle .lifetime[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }
.page-bundle .lifetime[aria-checked="true"] {
  border-color: var(--catalyst-orange);
  box-shadow: 0 0 0 1px var(--catalyst-orange) inset;
}
.page-bundle .lifetime:focus-visible { outline: 3px solid var(--tech-blue); outline-offset: 2px; }
.page-bundle .lifetime-badge {
  position: absolute;
  top: -10px; left: 16px;
  background: var(--catalyst-orange);
  color: #fff;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-1);
}
.page-bundle .lifetime-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.page-bundle .lifetime-radio {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid var(--off-white);
  border-radius: 9999px;
  background: transparent;
  margin-top: 2px;
}
.page-bundle .lifetime[aria-checked="true"] .lifetime-radio {
  border-color: var(--catalyst-orange);
  background: var(--catalyst-orange);
  box-shadow: inset 0 0 0 4px var(--rich-black);
}
.page-bundle .lifetime-text { flex: 1; }
.page-bundle .lifetime-text strong {
  display: block;
  font-size: 15px; font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.page-bundle .lifetime-text span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(242, 242, 242, 0.72);
}
.page-bundle .lifetime-price {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* =========================================================================
   aux disclosures
   ========================================================================= */
.page-bundle .aux-stack {
  display: grid; gap: 8px;
  margin-bottom: 24px;
}
.page-bundle .aux-card {
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius-1);
  padding: 14px 16px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  transition: border-color 0.12s, background-color 0.12s;
}
.page-bundle .aux-card:hover { border-color: var(--rich-black); background: #fafafa; }
.page-bundle .aux-card:focus-visible {
  outline: 3px solid var(--tech-blue);
  outline-offset: 2px;
}
.page-bundle .aux-card-text { font-size: 14px; font-weight: 600; line-height: 1.35; }
.page-bundle .aux-card-text small {
  display: block;
  color: var(--ink-500); font-weight: 500; font-size: 13px;
  margin-top: 2px;
}
.page-bundle .aux-card-icon { color: var(--ink-500); flex-shrink: 0; }
.page-bundle .aux-card-icon svg { width: 18px; height: 18px; }
.page-bundle .aux-card-body {
  padding: 14px 16px 16px;
  border-top: 1px solid #ebebeb;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}
.page-bundle .aux-card-body a { color: var(--rich-black); font-weight: 600; }

/* For the team-disclosure <details>: hide rotation indicator default */
.page-bundle details.aux-card summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; cursor: pointer;
}
.page-bundle details.aux-card summary::-webkit-details-marker { display: none; }
.page-bundle details.aux-card[open] .aux-card-icon { transform: rotate(180deg); }
.page-bundle details.aux-card { display: block; padding: 0; }
.page-bundle details.aux-card > summary { padding: 14px 16px; min-height: 56px; }

/* =========================================================================
   primary CTA
   ========================================================================= */
.page-bundle .cta-block { display: contents; }
.page-bundle .cta {
  width: 100%;
  background: var(--tech-blue);
  color: #fff;
  border: 0;
  padding: 18px 24px;
  border-radius: var(--radius-1);
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 56px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: background-color 0.12s, box-shadow 0.12s;
}
.page-bundle .cta:hover { background: #1a04c2; }
.page-bundle .cta:active { background: #0f0288; }
.page-bundle .cta:focus-visible { outline: 3px solid var(--catalyst-orange); outline-offset: 2px; }
.page-bundle .cta[aria-disabled="true"] {
  background: var(--ink-200);
  color: rgba(255,255,255,0.7);
  cursor: not-allowed;
}
.page-bundle .cta-aux {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-500);
}
.page-bundle .cta-aux a {
  color: var(--rich-black); font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* mobile sticky CTA */
.page-bundle .sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--off-white);
  margin: 0 -16px;
  padding: 12px 16px 16px;
  border-top: 1px solid #d8d8d8;
  z-index: 20;
}
@media (min-width: 1024px) {
  .page-bundle .sticky-cta {
    position: static;
    margin: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
  }
}

/* =========================================================================
   desktop "Inside the experience" block
   ========================================================================= */
.page-bundle .experience { display: none; }
@media (min-width: 1024px) {
  .page-bundle .experience {
    display: block;
    background: var(--card);
    border: var(--border);
    border-radius: var(--radius-1);
    padding: 20px;
    margin-top: 16px;
  }
  .page-bundle .experience-eyebrow {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-500);
    margin-bottom: 6px;
  }
  .page-bundle .experience-title {
    font-size: 16px; font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    line-height: 1.3;
  }
  .page-bundle .experience-toggle {
    display: inline-flex;
    border: var(--border);
    border-radius: var(--radius-1);
    padding: 3px;
    margin-bottom: 16px;
    gap: 0;
    background: var(--off-white);
  }
  .page-bundle .experience-pill {
    padding: 8px 14px;
    font-family: inherit;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em;
    border: 0;
    background: transparent;
    color: var(--ink-500);
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.12s, color 0.12s;
  }
  .page-bundle .experience-pill[aria-pressed="true"] {
    background: var(--rich-black);
    color: var(--off-white);
  }
  .page-bundle .experience-pill:focus-visible {
    outline: 3px solid var(--tech-blue);
    outline-offset: -3px;
  }
  .page-bundle .experience-views {
    position: relative;
    /* Safety belt so the App ↔ Platform toggle doesn't shift surrounding layout
     * if the two images differ in aspect. App (phone): 1:2 portrait, ~160×320
     * after the max-height cap below. Platform (dashboard): 1.65:1 landscape,
     * ~290px tall at the right-column width. Caption ~50px on both. */
    min-height: 380px;
  }
  .page-bundle .experience-view { display: none; }
  .page-bundle .experience-view[data-active="true"] { display: block; }
  .page-bundle .experience-view-app {
    display: flex; justify-content: center; align-items: flex-start;
    padding: 8px 0 4px;
  }
  /* Phone image: cap height so it visually matches the dashboard view's height
   * (~320px). aspect-ratio of the source is preserved via height-only cap with
   * width: auto; the max-width acts as an upper limit on narrower viewports. */
  .page-bundle .experience-view-app img {
    max-width: 220px;
    max-height: 320px;
    width: auto;
    height: auto;
  }
  .page-bundle .experience-platform-frame {
    border: 1px solid #d8d8d8;
    border-radius: var(--radius-1);
    overflow: hidden;
    background: #fff;
  }
  .page-bundle .experience-platform-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 10px;
    background: #ececec;
    border-bottom: 1px solid #d8d8d8;
  }
  .page-bundle .experience-dot {
    width: 9px; height: 9px; border-radius: 9999px;
    background: #cfcfcf;
  }
  .page-bundle .experience-url {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--ink-500);
    margin-left: 8px;
    font-family: var(--font-narrow);
  }
  .page-bundle .experience-platform-frame img { display: block; width: 100%; height: auto; }
  .page-bundle .experience-caption {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.5;
    margin: 14px 0 0;
    text-align: center;
  }
}

/* =========================================================================
   modal (Help me choose stub + reusable)
   ========================================================================= */
.page-bundle .modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 50;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
}
.page-bundle .modal-backdrop[data-open="true"] { display: flex; }
.page-bundle .modal {
  background: var(--card);
  border-radius: var(--radius-1);
  max-width: 480px;
  width: 100%;
  padding: 24px;
  position: relative;
  max-height: 90dvh;
  overflow-y: auto;
}
.page-bundle .modal-close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: 0;
  width: 36px; height: 36px;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-500);
}
.page-bundle .modal-close:hover { background: #f0f0f0; }
.page-bundle .modal-close:focus-visible {
  outline: 3px solid var(--tech-blue);
  outline-offset: 2px;
}
.page-bundle .modal h3 {
  margin: 0 0 12px;
  font-size: 20px; font-weight: 800;
  letter-spacing: -0.01em;
}
.page-bundle .modal p {
  margin: 0 0 12px;
  font-size: 15px; line-height: 1.5;
  color: var(--ink-200);
}
.page-bundle .modal-stub {
  display: inline-block;
  background: var(--off-white);
  color: var(--ink-500);
  border-radius: var(--radius-2);
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* =========================================================================
   tooltip popup (cadence card info-icon)
   ========================================================================= */
.page-bundle .tooltip-popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--rich-black);
  color: var(--off-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: var(--radius-1);
  max-width: 260px;
  width: max-content;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.12s, transform 0.12s;
}
.page-bundle .tooltip-popup[data-open="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================================
   state utilities — driven by data-state on .page-bundle
   ========================================================================= */
.page-bundle[data-state="initial"] .includes-populated { display: none; }
.page-bundle[data-state="initial"] .cta-aux           { display: none; }
.page-bundle[data-state="selected"] .includes-placeholder { display: none; }

/* hide the lifetime stub TODO marker — purely a developer signal in the source */
.page-bundle .dev-todo { display: none; }
