/* ==========================================================================
   MYI369 — page compositions
   Depends on main.css tokens. See DESIGN.md.
   ========================================================================== */

/* --- Hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  /* The stage render is 16:9 with its objects in the lower third and a dark
     band above them. The hero is sized to that band so the copy sits in the
     empty space the artwork already leaves, instead of covering the objects. */
  min-height: min(100vh, 980px);
  padding-block: var(--s-8) var(--s-8);
  text-align: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  /* anchor to the floor so the objects and their reflection stay in frame
     no matter how short the viewport gets */
  background-position: center bottom;
}
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* Legible copy at the top, objects untouched in the middle, and a clean
   hand-off to the page background at the very bottom. Vertical only: a
   side gradient would dim the objects on one side and unbalance the stage. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8,9,11,.94) 0%,
      rgba(8,9,11,.86) 26%,
      rgba(8,9,11,.58) 46%,
      rgba(8,9,11,.30) 56%,
      rgba(8,9,11,.08) 68%,
      rgba(8,9,11,.55) 88%,
      var(--canvas) 100%);
}

.hero__inner { position: relative; display: grid; justify-items: center; }

.hero__h {
  /* Sized so each sentence holds one line at desktop widths: the <br> in the
     markup then gives exactly two lines. The shared .display size overflowed
     to four, orphaning "the plan." on a line of its own. */
  font-size: clamp(2.125rem, 4.3vw, 3.875rem);
  max-width: 34ch;
  margin-inline: auto;
  text-wrap: balance;
}
.hero__sub {
  margin-top: var(--s-4);
  max-width: 54ch;
  margin-inline: auto;
  color: #C3C9D2;
}
.hero__cta { margin-top: var(--s-5); justify-content: center; }
.hero__note {
  margin-top: var(--s-4);
  /* This line lands on the lit part of the stage, where a muted grey stops
     being readable. Lifted in contrast and given a shadow so it holds up over
     whichever object sits behind it at a given viewport width. */
  color: #A9B2BE;
  text-shadow: 0 1px 6px rgba(8, 9, 11, .9), 0 0 18px rgba(8, 9, 11, .7);
}

@media (max-width: 700px) {
  .hero {
    min-height: min(88vh, 700px);
    padding-block: var(--s-8) var(--s-7);
  }
  /* A four-object row cannot read across 375px, and zooming in just cropped
     two of them off the edges. On phones the plate becomes atmosphere: framed
     on the floor and its reflection, with the copy carrying the message. */
  .hero__media { background-size: cover; background-position: center 68%; }
  .hero__scrim {
    background:
      linear-gradient(to bottom,
        rgba(8,9,11,.95) 0%,
        rgba(8,9,11,.90) 38%,
        rgba(8,9,11,.72) 62%,
        rgba(8,9,11,.60) 82%,
        var(--canvas) 100%);
  }
  .hero__h { max-width: 18ch; }
}

@media (max-width: 560px) {
  .hero {
    min-height: min(78vh, 600px);
    padding-block: var(--s-7) var(--s-6);
  }
  .hero__h { max-width: 16ch; }
}

/* --- Sections ------------------------------------------------------------ */

.section--sunken {
  background: var(--surface-sunken);
  border-block: 1px solid var(--border);
}

/* --- Product card -------------------------------------------------------- */

.card--product { display: flex; flex-direction: column; }
.card--product .frame { margin-top: auto; }
.card--product .link-arrow { align-self: flex-start; }

/* --- Steps --------------------------------------------------------------- */
/* The sequence carries information, so the numbers stay. */

.steps { display: grid; gap: var(--s-6); counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); } }

.step { display: flex; gap: var(--s-4); align-items: flex-start; }
.step__n {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  line-height: 1;
}

/* --- Why ----------------------------------------------------------------- */
/* Hairline list, deliberately not a grid of cards. */

.why { display: grid; gap: 0; border-top: 1px solid var(--border); }
@media (min-width: 900px) { .why { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-9); } }

.why__item { padding-block: var(--s-6); border-bottom: 1px solid var(--border); }
.why__item p { max-width: 52ch; }

/* --- CTA band ------------------------------------------------------------ */

.cta-band {
  display: grid;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-8);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(240,180,41,.10), transparent 55%),
    var(--surface);
}
[dir="rtl"] .cta-band {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(240,180,41,.10), transparent 55%),
    var(--surface);
}
@media (min-width: 900px) {
  .cta-band { grid-template-columns: 1fr auto; gap: var(--s-8); padding: var(--s-9) var(--s-8); }
}
.cta-band .lead { max-width: 56ch; }

/* --- Page head ----------------------------------------------------------- */

.page-head { padding-block: var(--s-8) var(--s-7); border-bottom: 1px solid var(--border); }
.page-head .lead { margin-top: var(--s-4); }

.crumb {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}
.crumb:hover { color: var(--accent); }
.crumb svg { transition: transform var(--dur) var(--ease-out); }
.crumb:hover svg { transform: translateX(-3px); }
[dir="rtl"] .crumb svg { transform: scaleX(-1); }
[dir="rtl"] .crumb:hover svg { transform: scaleX(-1) translateX(-3px); }

/* --- Indicator detail ---------------------------------------------------- */

.ind-hero { padding-block: var(--s-8) 0; }
.ind-hero__art {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-sunken);
  aspect-ratio: 16 / 7;
}
.ind-hero__art video, .ind-hero__art img {
  width: 100%; height: 100%; object-fit: cover;
}
.ind-hero__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,9,11,.6), transparent 55%);
  pointer-events: none;
}

/* A real product demo must not be cropped — the panel has to stay whole,
   and nothing may be laid over the numbers. */
.ind-hero__art--product { aspect-ratio: 16 / 9; }
.ind-hero__art--product::after { display: none; }
.ind-hero__art--product video, .ind-hero__art--product img { object-fit: contain; }

/* Two-column feature block, alternating side down the page. */
.feat { display: grid; gap: var(--s-6); align-items: start; }
@media (min-width: 900px) {
  .feat { grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
  .feat--flip > *:first-child { order: 2; }
}

.spec-list { border-top: 1px solid var(--border); }
.spec-list li {
  display: flex;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.spec-list li > svg { flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.spec-list li > span { max-width: 58ch; }

/* --- Pricing ------------------------------------------------------------- */

.plans { display: grid; gap: var(--s-5); }
@media (min-width: 700px)  { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .plans { grid-template-columns: repeat(4, 1fr); } }

.plan {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
/* The recommended plan gets a border and a badge — not a scale, not a glow. */
.plan--best { border-color: var(--accent); }

.plan__top { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); min-height: 26px; }
.plan__name { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600; }

.plan__price {
  margin-top: var(--s-5);
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}
.plan__amt { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.plan__cur { font-size: 1.25rem; font-weight: 600; color: var(--text-secondary); }
.plan__per { margin-top: var(--s-2); font-size: var(--fs-sm); color: var(--text-secondary); }
.plan__eq  { margin-top: var(--s-1); font-size: var(--fs-sm); color: var(--text-muted); font-variant-numeric: tabular-nums; }
.plan__btns { margin-top: var(--s-6); display: grid; gap: var(--s-2); }
.plan__pay { margin-top: var(--s-3); font-size: var(--fs-xs); color: var(--text-muted); text-align: center; letter-spacing: 0; }

/* On a stacked layout the recommended plan comes first. */
@media (max-width: 699px) { .plan--best { order: -1; } }

.includes { display: grid; gap: var(--s-3); }
@media (min-width: 700px) { .includes { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-7); } }
.includes li { display: flex; gap: var(--s-3); align-items: flex-start; color: var(--text-secondary); }
.includes li svg { flex-shrink: 0; margin-top: 3px; color: var(--long); }

/* --- FAQ ----------------------------------------------------------------- */

.faq-tools { position: sticky; top: var(--header-h); z-index: 20; background: var(--canvas); padding-block: var(--s-5); border-bottom: 1px solid var(--border); }

.search { position: relative; }
.search__icon {
  position: absolute;
  inset-inline-start: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.search .input { padding-inline-start: 46px; padding-inline-end: 46px; min-height: 52px; }
.search__clear {
  position: absolute;
  inset-inline-end: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  color: var(--text-secondary);
}
.search__clear:hover { color: var(--text); background: var(--surface-raised); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.chip {
  min-height: 38px;
  padding-inline: 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip.is-active { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }

.faq-count { margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--text-muted); }
.faq-group + .faq-group { margin-top: var(--s-7); }
.faq-group__title { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s-3); }
[dir="rtl"] .faq-group__title { letter-spacing: 0; text-transform: none; font-size: var(--fs-sm); }

.empty { text-align: center; padding-block: var(--s-9); }
.empty svg { color: var(--text-muted); margin-inline: auto; }
.empty h3 { margin-top: var(--s-4); }
.empty p { margin-top: var(--s-3); color: var(--text-secondary); max-width: 44ch; margin-inline: auto; }

/* --- Contact ------------------------------------------------------------- */

.contact-grid { display: grid; gap: var(--s-7); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.35fr 1fr; gap: var(--s-9); } }

.form-grid { display: grid; gap: var(--s-5); }
@media (min-width: 640px) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); } }

.success {
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  text-align: center;
}
.success svg { color: var(--accent); margin-inline: auto; }
.success h3 { margin-top: var(--s-4); }
.success p { margin-top: var(--s-3); color: var(--text-secondary); max-width: 40ch; margin-inline: auto; }

.aside-block + .aside-block { margin-top: var(--s-6); padding-top: var(--s-6); border-top: 1px solid var(--border); }
.aside-block h3 { font-size: 1.0625rem; }
.aside-block p { margin-top: var(--s-2); color: var(--text-secondary); font-size: var(--fs-sm); }

.note {
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: var(--fs-sm);
}

/* --- Dashboard ----------------------------------------------------------- */

.db-grid { display: grid; gap: var(--s-6); align-items: start; }
@media (min-width: 900px) { .db-grid { grid-template-columns: 1fr 1.6fr; gap: var(--s-7); } }

.kv { display: grid; gap: var(--s-3); }
.kv__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); padding-block: var(--s-2); }
.kv__row + .kv__row { border-top: 1px solid var(--border); }
.kv__k { font-size: var(--fs-sm); color: var(--text-secondary); }
.kv__v { font-weight: 600; font-variant-numeric: tabular-nums; text-align: end; }

.ind-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
}
.ind-row:first-child { border-top: 1px solid var(--border); }
.ind-row__thumb {
  flex-shrink: 0;
  width: 84px; height: 52px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-sunken);
}
.ind-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ind-row__body { flex: 1; min-width: 0; }
.ind-row__name { font-family: var(--font-display); font-weight: 600; }
.ind-row__meta { font-size: var(--fs-sm); color: var(--long); display: flex; align-items: center; gap: 6px; margin-top: 2px; }

.guide { counter-reset: g; display: grid; gap: var(--s-3); }
.guide li { display: flex; gap: var(--s-3); color: var(--text-secondary); }
.guide li::before {
  counter-increment: g;
  content: counter(g);
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.guide li strong { color: var(--text); font-weight: 600; }

.demo-note {
  margin-bottom: var(--s-6);
  padding: var(--s-3) var(--s-4);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* --- Legal pages --------------------------------------------------------- */

.legal { max-width: var(--measure); }
.legal h2 { font-size: 1.5rem; margin-top: var(--s-8); }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--text-secondary); }
.legal p { margin-top: var(--s-4); }
.legal ul { margin-top: var(--s-4); display: grid; gap: var(--s-2); }
.legal ul li { display: flex; gap: var(--s-3); }
.legal ul li::before { content: "—"; color: var(--text-muted); flex-shrink: 0; }

/* --- Pricing builder ------------------------------------------------------ */

.pb { display: grid; gap: var(--s-7); align-items: start; }
@media (min-width: 1000px) {
  .pb { grid-template-columns: 1fr 400px; gap: var(--s-8); }
  .pb__quote { position: sticky; top: calc(var(--header-h) + var(--s-5)); }
}

.pb__block + .pb__block { margin-top: var(--s-8); padding-top: var(--s-7); border-top: 1px solid var(--border); }

/* --- indicator picker --- */
.pb-items { display: grid; gap: var(--s-3); }

.pb-item {
  display: grid;
  grid-template-columns: 26px 74px 1fr auto;
  align-items: center;
  gap: var(--s-4);
  width: 100%;
  padding: var(--s-4);
  text-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.pb-item:hover { background: var(--surface-raised); border-color: var(--border-strong); }
.pb-item.is-on { border-color: var(--accent); background: var(--accent-soft); }

.pb-item__check {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 7px;
  border: 1.5px solid var(--border-strong);
  color: transparent;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.pb-item.is-on .pb-item__check { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.pb-item__thumb {
  width: 74px; aspect-ratio: 16/10;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-sunken);
}
.pb-item__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pb-item__body { display: grid; gap: 3px; min-width: 0; }
.pb-item__name { font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; }
.pb-item__tag  { font-size: var(--fs-sm); color: var(--text-secondary); }

.pb-item__price { text-align: end; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pb-item__price span { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.pb-item__price small { display: block; font-size: var(--fs-xs); color: var(--text-muted); letter-spacing: 0; }

@media (prefers-reduced-motion: no-preference) {
  .pb-item.is-shake { animation: pbShake .32s var(--ease-out); }
  @keyframes pbShake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
  }
}

/* --- term tabs --- */
.pb-terms { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s-2); }
@media (min-width: 640px) { .pb-terms { grid-template-columns: repeat(4,1fr); } }

.pb-term {
  display: grid; gap: 4px; place-items: center;
  min-height: 62px; padding: var(--s-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-secondary);
  font-size: var(--fs-sm); font-weight: 600;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.pb-term:hover { color: var(--text); border-color: var(--border-strong); }
.pb-term.is-on { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.pb-term__off {
  font-size: var(--fs-xs); font-weight: 700;
  padding: 2px 8px; border-radius: var(--r-pill);
  background: var(--long-soft); color: var(--long);
  font-variant-numeric: tabular-nums; letter-spacing: 0;
}
.pb-term.is-on .pb-term__off { background: rgba(22,199,132,.2); }

/* --- how-it-builds --- */
.pb-steps { counter-reset: pbs; display: grid; gap: var(--s-4); }
.pb-steps li { display: flex; gap: var(--s-4); color: var(--text-secondary); }
.pb-steps li::before {
  counter-increment: pbs; content: counter(pbs);
  flex-shrink: 0; display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  color: var(--accent); font-size: var(--fs-xs); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.pb-steps strong { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }

/* --- quote card --- */
.pb-card {
  background: var(--surface);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.pb-price { margin-top: var(--s-5); display: grid; gap: 4px; }
.pb-price__amt {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.25rem); line-height: 1; letter-spacing: -0.03em;
}
.pb-price__per { font-size: var(--fs-sm); color: var(--accent); font-weight: 600; }

.pb-lines { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--border); display: grid; gap: var(--s-3); }
.pb-line { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); font-size: var(--fs-sm); }
.pb-line__k { color: var(--text-secondary); }
.pb-line__v { font-weight: 600; }
.pb-line--off .pb-line__v { color: var(--long); }

.pb-saved {
  margin-top: var(--s-4);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  background: var(--long-soft);
  color: var(--long);
  font-size: var(--fs-sm); font-weight: 600; text-align: center;
  font-variant-numeric: tabular-nums;
}

.pb-cta { margin-top: var(--s-6); display: grid; gap: var(--s-2); }
.pb-note { margin-top: var(--s-3); text-align: center; font-size: var(--fs-xs); color: var(--text-muted); letter-spacing: 0; }

.pb-inc { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--border); }
.pb-inc__list { display: grid; gap: var(--s-2); }
.pb-inc__list li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--fs-sm); }
.pb-inc__list li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pb-inc__list--muted li { color: var(--text-secondary); }
.pb-inc__list--muted li svg { color: var(--long); }

/* matrix: highlight the all-four row */
#pb-matrix tbody tr.is-premium td { background: var(--accent-soft); }
#pb-matrix tbody tr.is-premium td:first-child { color: var(--accent); font-weight: 700; }

/* --- Bundle band ---------------------------------------------------------- */
/* The recommended package: one gold hairline and a badge (DESIGN.md "Price
   card"), no scale, no glow. Copy on one side, the price on the other. */
.bundle {
  display: grid;
  gap: var(--s-6);
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--r-xl);
}
@media (min-width: 900px) {
  .bundle { grid-template-columns: 1.35fr 1fr; gap: var(--s-8); padding: var(--s-7) var(--s-8); align-items: center; }
}
.bundle__head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3); }
.bundle__head h2 { text-wrap: balance; }
.bundle__list { display: grid; gap: var(--s-2); }
@media (min-width: 560px) { .bundle__list { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-5); } }
.bundle__list li { display: flex; gap: var(--s-3); align-items: baseline; font-weight: 500; }
.bundle__list li svg { flex-shrink: 0; position: relative; top: 2px; color: var(--accent); }
.bundle__list li small { color: var(--text-muted); font-size: var(--fs-sm); white-space: nowrap; }
.bundle__list li small s { color: var(--text-muted); }
.bundle__list li span { flex: 1; min-width: 0; }

/* The price well: a sunken plate like a product frame, not a second card. */
.bundle__price {
  display: grid;
  gap: var(--s-1);
  padding: var(--s-6);
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}
.bundle__was { font-size: var(--fs-body); color: var(--text-muted); text-decoration: line-through; }
.bundle__amt {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.25rem); line-height: 1; letter-spacing: -0.03em;
}
.bundle__amt small {
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 500;
  color: var(--text-secondary); letter-spacing: 0; margin-inline-start: 6px;
}
[dir="rtl"] .bundle__amt { letter-spacing: 0; }
.bundle__annual { margin-top: var(--s-2); font-size: var(--fs-sm); font-weight: 600; color: var(--accent); }

/* --- Limited-time offer on one indicator ---------------------------------- */
/* The list price stays visible, struck through, above the reduced one, with the
   end date under it. A date, not a countdown. */
.pb-item__price--sale { display: grid; gap: 1px; justify-items: end; }
[dir="rtl"] .pb-item__price--sale { justify-items: start; }
.pb-item__was { font-size: var(--fs-sm); font-weight: 500; color: var(--text-muted); text-decoration: line-through; }
.pb-item__sale {
  display: block; margin-top: 2px;
  font-size: var(--fs-xs); font-style: normal; font-weight: 600;
  color: var(--accent); letter-spacing: 0; white-space: normal; text-align: end;
}
[dir="rtl"] .pb-item__sale { text-align: start; }
.sale-flag { font-variant-numeric: tabular-nums; }
