/* ============================================================
   .shock — suite.css
   Session 4 deliverable. NEW component classes for the
   .shock Suite marketing section: /suite/ overview,
   /suite/<module>/ pages, and /pricing/suite/.
   Builds on shock.css tokens/vars — does NOT redefine them and
   does NOT touch shock.css or pages.css.
   Brand authority: dotshock_master_prompt_EXECUTION.md §1 + §7.10–7.11 + §9.
   RULES baked in:
     · red (--red) used <=2% of surface area, NEVER on text
     · --faint is decorative ONLY — never body / status copy
     · status colours: green = Available, yellow = In Development,
       --dim = Planned (all on panels, never as link/body text colour
       below AA — status pills carry their own readable backgrounds)
     · all interactive states inherit the global red :focus-visible ring
     · AA contrast: body/secondary copy uses --text or --dim (>=4.5:1)
     · every grid collapses to a single column on mobile
     · max 4 editorial 1px red frame-lines per page — components that
       emit a red hairline are flagged inline so a page author stays <=4
   ============================================================ */

/* ============================================================
   1. SUITE INTRO BITS — shared lead treatment for /suite/
   ============================================================ */
.suite-intro__lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--text);
  font-weight: 400;
  max-width: 60ch;
  line-height: 1.55;
}
.suite-intro__meta {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.suite-intro__meta b { color: var(--text); font-weight: 500; }

/* ============================================================
   2. STATUS BADGE — three states, readable pills
   green  = Available now (v1)
   yellow = In Development
   dim    = Planned
   Pills carry a tinted background + a coloured dot. The TEXT stays
   --text for AA; the colour is carried by the dot + border, never by
   low-contrast text. Red is never used here (status is green/yellow/dim).
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--panel3);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 6px 12px 6px 11px;
  white-space: nowrap;
}
.status-badge__dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dim);
}
.status-badge--available .status-badge__dot { background: var(--green); }
.status-badge--available {
  background: color-mix(in srgb, var(--green) 12%, var(--panel2));
  border-color: color-mix(in srgb, var(--green) 38%, var(--line2));
}
.status-badge--dev .status-badge__dot { background: var(--yellow); }
.status-badge--dev {
  background: color-mix(in srgb, var(--yellow) 12%, var(--panel2));
  border-color: color-mix(in srgb, var(--yellow) 36%, var(--line2));
}
.status-badge--planned .status-badge__dot { background: var(--dim); }
.status-badge--planned {
  background: var(--panel2);
  border-color: var(--line2);
}
/* Small secondary note that rides next to an Available badge (v2 early access). */
.status-note {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim); /* AA secondary label */
  vertical-align: middle;
}

/* ============================================================
   3. PIPELINE GROUPING — main line + parallel tracks
   A labelled band introduces each group; the cards sit in a grid.
   ============================================================ */
.pipeline-group { margin-top: clamp(32px, 5vw, 56px); }
.pipeline-group:first-of-type { margin-top: 0; }
.pipeline-group__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.pipeline-group__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pipeline-group__label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--red); /* editorial frame-line — counts toward the 4/page max */
}
.pipeline-group--parallel .pipeline-group__label::before {
  background: var(--line2); /* parallel tracks use a neutral marker, not red */
}
.pipeline-group__hint {
  font-size: 0.95rem;
  color: var(--dim);
  max-width: 52ch;
}

/* The flow line drawn as mono breadcrumbs under the main-line label. */
.pipeline-flow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--dim);
  margin-bottom: clamp(18px, 3vw, 26px);
  line-height: 1.9;
}
.pipeline-flow b { color: var(--text); font-weight: 500; }
.pipeline-flow .sep { color: var(--red); padding-inline: 6px; } /* glyph only, not text */

/* ============================================================
   4. MODULE CARD GRID
   ============================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.module-grid--parallel { grid-template-columns: repeat(3, 1fr); }

.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: 26px 24px 24px 26px;
  min-height: 196px;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* Status-keyed card wash: green = live, yellow = in dev, neutral = planned.
   The status colour is already carried by .status-badge__dot; this only
   adds a barely-there background tint so live/in-dev cards read first —
   never a side-stripe accent, never as text (brand rule). */
.module-card:has(.status-badge--available) {
  background: color-mix(in srgb, var(--green) 5%, var(--panel));
}
.module-card:has(.status-badge--dev) {
  background: color-mix(in srgb, var(--yellow) 4%, var(--panel));
}
.module-card:hover {
  background: var(--panel2);
  box-shadow: inset 0 0 0 1px var(--line2);
  z-index: 1;
}
.module-card:has(.status-badge--available):hover {
  background: color-mix(in srgb, var(--green) 9%, var(--panel2));
}
.module-card:has(.status-badge--dev):hover {
  background: color-mix(in srgb, var(--yellow) 8%, var(--panel2));
}
/* The card is fully clickable via a stretched link, but the visible
   "Learn more" affordance stays a real focusable anchor. */
.module-card__step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--faint); /* decorative step index — never body/status copy */
}
.module-card__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.module-card__name .dot { color: var(--red); }
.module-card__out {
  font-size: 0.93rem;
  color: var(--dim); /* AA secondary copy */
  line-height: 1.5;
  max-width: 34ch;
}
.module-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.module-card__more {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.module-card__more .arrow { transition: transform var(--dur) var(--ease); }
.module-card:hover .module-card__more .arrow { transform: translateX(4px); }
/* Stretched-link pattern: anchor covers the card; foot link stays on top. */
.module-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.module-card__link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -3px;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .module-grid,
  .module-grid--parallel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .module-grid,
  .module-grid--parallel { grid-template-columns: 1fr; }
}

/* ============================================================
   5. SUITE CTA BAND — closes /suite/ → /pricing/suite/
   ============================================================ */
.suite-cta {
  position: relative;
  background: var(--surface);
  text-align: center;
  overflow: hidden;
}
.suite-cta::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 1px; height: 52px;
  background: var(--red); /* single restrained red hairline (frame motif) */
}
.suite-cta h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-inline: auto;
}
.suite-cta p {
  margin: 18px auto 0;
  color: var(--dim);
  font-size: 1.06rem;
  max-width: 52ch;
}
.suite-cta__cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   6. BILLING TOGGLE — [Monthly] [Annual — 2 months free]
   Accessible segmented control (role=group of two buttons).
   ============================================================ */
.billing-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 4px;
  padding: 4px;
  background: var(--panel2);
  border: 1px solid var(--line2);
  border-radius: 999px;
}
.billing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dim);
  background: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 18px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.billing-toggle__btn:hover { color: var(--text); }
.billing-toggle__btn[aria-pressed="true"] {
  color: var(--surface);
  background: var(--text);
}
.billing-toggle__btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
/* "2 months free" chip inside the annual button. */
.billing-toggle__save {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--green) 18%, var(--panel3));
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--green) 40%, var(--line2));
}
.billing-toggle__btn[aria-pressed="true"] .billing-toggle__save {
  background: color-mix(in srgb, var(--surface) 14%, transparent);
  border-color: color-mix(in srgb, var(--surface) 30%, transparent);
  color: var(--surface);
}

/* ============================================================
   7. PLAN CARDS — Free · Starter · Pro (popular) · Studio · Agency
   5-up on wide, scrolls/stacks below. Pro is raised + red top rule.
   ============================================================ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  padding: clamp(22px, 2.2vw, 30px) clamp(18px, 1.8vw, 24px);
  transition: background var(--dur) var(--ease);
}
.plan-card:hover { background: var(--panel2); }
.plan-card--popular { background: var(--panel2); }
.plan-card--popular::before {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: var(--red); /* featured rule — counts toward 4/page max */
  margin-bottom: 16px;
}
.plan-card__badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: color-mix(in srgb, var(--red) 16%, var(--panel3));
  border: 1px solid color-mix(in srgb, var(--red) 45%, var(--line2));
  border-radius: 999px;
  padding: 4px 9px;
}
.plan-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.plan-card__price {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-card__amount {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-card__per {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
}
.plan-card__cycle {
  margin-top: 8px;
  min-height: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--dim); /* AA — shows annual equivalent / "forever free" */
}
.plan-card__cycle b { color: var(--text); font-weight: 500; }
.plan-card__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.plan-card__line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.4;
}
.plan-card__line b { color: var(--text); font-weight: 600; }
/* Neutral tick marker (not red, not faint-text). */
.plan-card__line .mk {
  flex: none;
  margin-top: 1px;
  width: 14px; height: 14px;
  color: var(--text);
}
.plan-card__line .mk svg { width: 100%; height: 100%; display: block; }
.plan-card__foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Plan CTA buttons (Stripe / PayPal placeholders + Start free). */
.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  padding: 0.8em 1em;
  background: transparent;
  color: var(--text);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.plan-btn:hover { border-color: var(--text); background: var(--panel3); transform: translateY(-1px); }
.plan-btn:active { transform: translateY(0); }
.plan-btn--stripe {
  background: var(--text);
  color: var(--surface);
  border-color: transparent;
}
.plan-btn--stripe:hover { background: #fff; }
.plan-btn__mark {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.plan-btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

@media (max-width: 1080px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--popular { order: -1; }
}
@media (max-width: 560px) {
  .plan-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   8. COMPARISON TABLE — full module-access matrix
   Sticky header row + sticky first column. Scrolls horizontally
   inside a labelled region on narrow screens.
   ============================================================ */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare caption {
  text-align: left;
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.compare th,
.compare td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--panel2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.compare thead th .compare__price {
  display: block;
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--dim);
}
/* Highlighted Pro column. */
.compare thead th.is-popular,
.compare td.is-popular {
  background: var(--panel2);
}
.compare thead th.is-popular { box-shadow: inset 0 -2px 0 var(--red); } /* frame motif */
.compare__row-label {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  background: var(--panel);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.compare tbody tr:hover td { background: var(--panel2); }
.compare tbody tr:hover .compare__row-label { background: var(--panel3); }
/* Section divider rows inside the matrix. */
.compare__group td {
  text-align: left;
  background: var(--panel3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}
.compare__group .compare__row-label { background: var(--panel3); }
.compare td { color: var(--dim); }
.compare td b { color: var(--text); font-weight: 600; }
/* Yes / no cell glyphs. */
.compare .yes { color: var(--text); }
.compare .yes svg { width: 15px; height: 15px; display: inline-block; vertical-align: middle; }
.compare .no { color: var(--dim); } /* "not included" carries meaning — keep AA-readable */
.compare .val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text);
}

/* ============================================================
   9. AVAILABLE-NOW CALLOUT — tag.shock + imla.shock live
   ============================================================ */
.live-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 48px);
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-left: 2px solid var(--green); /* live = green accent, not red */
  border-radius: var(--radius);
  background: var(--panel2);
  padding: clamp(22px, 3vw, 32px);
}
.live-callout__text h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.live-callout__text h2 .dot { color: var(--red); }
.live-callout__text p {
  margin-top: 10px;
  color: var(--dim);
  font-size: 1rem;
  max-width: 52ch;
}
.live-callout__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   10. MODULE PAGE BITS — /suite/<module>/
   Feature bullets, who-for, pipeline note, availability row.
   ============================================================ */
.module-section { padding-block: clamp(48px, 7vw, 96px); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin-top: clamp(24px, 3vw, 36px);
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--dim); /* AA secondary copy */
  font-size: 0.98rem;
  line-height: 1.5;
}
.feature-list li b { color: var(--text); font-weight: 600; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1px;
  background: var(--line2); /* neutral marker — not red, not faint text */
}
@media (max-width: 640px) {
  .feature-list { grid-template-columns: 1fr; }
}

/* "Where it fits in the pipeline" — prev / this / next chips. */
.pipeline-note {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 28px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.pipeline-note__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--dim);
  background: var(--panel);
}
.pipeline-note__chip--this {
  color: var(--text);
  border-color: var(--text);
  background: var(--panel2);
}
.pipeline-note__chip .dot { color: var(--red); }
.pipeline-note__arrow { color: var(--dim); }

/* Availability-by-plan small row/table on the module page. */
.plan-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 28px);
}
.plan-row__cell {
  background: var(--panel);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-row__plan {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.plan-row__val {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.plan-row__cell--popular { background: var(--panel2); box-shadow: inset 0 2px 0 var(--red); }
@media (max-width: 720px) {
  .plan-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .plan-row { grid-template-columns: 1fr; }
}

/* Reference / inspiration note (small, mono, quiet). */
.reference-note {
  margin-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.02em;
  max-width: 62ch;
  line-height: 1.6;
}
.reference-note b { color: var(--text); font-weight: 500; }

/* ============================================================
   11. SUITE OVERVIEW HERO — ambient backdrop + at-a-glance stats
   ============================================================ */
.suite-hero { position: relative; }
.suite-hero .page-hero__inner { max-width: 920px; }
.suite-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 78% at 84% -6%,
      color-mix(in srgb, var(--panel3) 88%, #2c2c3b) 0%, transparent 60%),
    radial-gradient(42% 64% at -4% 104%,
      color-mix(in srgb, var(--panel2) 82%, transparent) 0%, transparent 70%);
}
.suite-stats {
  margin-top: clamp(34px, 4.5vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  padding-top: clamp(26px, 3.5vw, 36px);
  border-top: 1px solid var(--line);
}
.suite-stat { display: flex; flex-direction: column; gap: 6px; }
.suite-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.suite-stat__label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--dim);
  max-width: 22ch;
}
.suite-stat--live .suite-stat__label::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: middle;
}
@media (max-width: 560px) {
  .suite-stats { grid-template-columns: 1fr 1fr; gap: 26px 34px; }
}

/* ============================================================
   12. WHY ONE WORKFLOW — three differentiators (neutral markers)
   ============================================================ */
.suite-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.suite-why__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  padding: clamp(24px, 2.4vw, 34px) clamp(22px, 2vw, 30px);
  transition: background var(--dur) var(--ease);
}
.suite-why__card:hover { background: var(--panel2); }
.suite-why__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--faint);
}
.suite-why__title {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.suite-why__body {
  font-size: 0.95rem;
  color: var(--dim);
  line-height: 1.55;
}
@media (max-width: 820px) {
  .suite-why { grid-template-columns: 1fr; }
}

/* ============================================================
   13. TRUST STRIP — real, sourced credibility (mirrors footer facts)
   ============================================================ */
.suite-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--dim);
  text-align: center;
}
.suite-trust b { color: var(--text); font-weight: 500; }
.suite-trust__sep { color: var(--line2); }
.suite-cta .suite-trust { margin-bottom: clamp(26px, 3.6vw, 40px); }

/* ============================================================
   14. PIPELINE RAIL — the main line drawn as connected nodes
   ============================================================ */
.pipeline-rail {
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin: 0 0 clamp(20px, 3vw, 28px);
  padding: 6px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pipeline-rail::-webkit-scrollbar { display: none; }
.pipeline-rail__node {
  position: relative;
  flex: 1 0 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}
.pipeline-rail__node::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--line2);
  z-index: 0;
}
.pipeline-rail__node:last-child::before { display: none; }
.pipeline-rail__dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--faint);
  box-shadow: 0 0 0 3px var(--surface);
}
.pipeline-rail__node--live .pipeline-rail__dot { background: var(--green); }
.pipeline-rail__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--dim);
  white-space: nowrap;
}
.pipeline-rail__node--live .pipeline-rail__name { color: var(--text); }

/* ============================================================
   15. LIVE-MODULE OPEN ACTION — direct "open the app" affordance
   ============================================================ */
.module-card__open {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 5px 12px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.module-card__open:hover {
  border-color: color-mix(in srgb, var(--green) 55%, var(--line2));
  background: color-mix(in srgb, var(--green) 12%, transparent);
}
.module-card__open:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ============================================================
   16. STICKY SUB-CTA — slim live bar that appears past the hero.
   Fail-safe: hidden by default, only revealed by JS adding .is-visible.
   ============================================================ */
.suite-stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  background: color-mix(in srgb, var(--panel) 90%, #000);
  border-top: 1px solid var(--line2);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .suite-stickybar {
    background: color-mix(in srgb, var(--panel) 76%, transparent);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    backdrop-filter: saturate(140%) blur(8px);
  }
}
.suite-stickybar.is-visible { transform: translateY(0); }
.suite-stickybar__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px clamp(16px, 4vw, 32px);
}
.suite-stickybar__msg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  font-size: 0.95rem;
  color: var(--text);
}
.suite-stickybar__msg::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}
.suite-stickybar__msg b { font-weight: 600; }
.suite-stickybar__close {
  all: unset;
  cursor: pointer;
  color: var(--dim);
  font-size: 18px;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 4px;
}
.suite-stickybar__close:hover { color: var(--text); }
.suite-stickybar__close:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
@media (max-width: 560px) {
  .suite-stickybar__msg { font-size: 0.85rem; }
  .suite-stickybar__inner { gap: 10px; }
}

/* ============================================================
   17. FAQ — native <details> accordion. Content lives in the DOM
   (crawlable) and is mirrored by FAQPage JSON-LD for rich results.
   ============================================================ */
.suite-faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.suite-faq__item {
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.suite-faq__item:first-child { border-top: 0; }
.suite-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.suite-faq__q::-webkit-details-marker { display: none; }
.suite-faq__q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--dim);
  flex: none;
}
.suite-faq__item[open] .suite-faq__q::after { content: "–"; }
.suite-faq__q:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }
.suite-faq__item:hover { background: var(--panel2); }
.suite-faq__a { padding: 0 22px 20px; }
.suite-faq__a p {
  margin: 0;
  color: var(--dim); /* AA secondary copy */
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 70ch;
}
.suite-faq__a a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   18. IN-PAGE STICKY SUB-NAV — wayfinding on the long page.
   Hidden until scrolled past the hero (JS toggles .is-stuck).
   ============================================================ */
.suite-subnav {
  position: fixed;
  left: 0; right: 0;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  -webkit-backdrop-filter: saturate(150%) blur(9px);
  backdrop-filter: saturate(150%) blur(9px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-101%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.suite-subnav.is-stuck { transform: translateY(0); opacity: 1; pointer-events: auto; }
.suite-subnav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 9px clamp(16px, 4vw, 32px);
}
.suite-subnav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-right: auto;
}
.suite-subnav__brand .dot { color: var(--red); }
.suite-subnav__links { display: flex; gap: 2px; flex-wrap: wrap; }
.suite-subnav__links a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--dim);
  padding: 6px 11px;
  border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.suite-subnav__links a:hover { color: var(--text); }
.suite-subnav__links a.is-active { color: var(--text); background: var(--panel2); }
.suite-subnav__cta { margin-left: 6px; padding: 7px 14px; font-size: 0.85rem; }
@media (max-width: 680px) {
  .suite-subnav__brand { display: none; }
  .suite-subnav__links { margin-right: auto; }
  .suite-subnav__links a { padding: 6px 9px; }
  .suite-subnav__cta { display: none; }
}
/* sections jumped to via the sub-nav clear the sticky bar */
.suite-anchor { scroll-margin-top: 70px; }

/* ============================================================
   19. HOW IT WORKS — three-step mental model above the detail
   ============================================================ */
.suite-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.suite-step {
  position: relative;
  background: var(--panel);
  padding: clamp(24px, 2.4vw, 34px) clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.suite-step__n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--faint); /* decorative index */
}
.suite-step__title {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.suite-step__title .dot { color: var(--red); }
.suite-step__body { font-size: 0.95rem; color: var(--dim); line-height: 1.55; }
@media (max-width: 760px) { .suite-steps { grid-template-columns: 1fr; } }

/* ============================================================
   20. WHO IT'S FOR — three audience cards (neutral markers)
   ============================================================ */
.suite-personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.suite-persona {
  background: var(--panel);
  padding: clamp(24px, 2.4vw, 34px) clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--dur) var(--ease);
}
.suite-persona:hover { background: var(--panel2); }
.suite-persona__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}
.suite-persona__title {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.suite-persona__body { font-size: 0.94rem; color: var(--dim); line-height: 1.55; }
@media (max-width: 820px) { .suite-personas { grid-template-columns: 1fr; } }

/* ============================================================
   21. BEFORE / AFTER — a stack of apps vs one Suite
   ============================================================ */
.suite-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.suite-vs__col { background: var(--panel); padding: clamp(24px, 2.6vw, 36px); }
.suite-vs__col--after { background: color-mix(in srgb, var(--green) 5%, var(--panel)); }
.suite-vs__head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.suite-vs__col--after .suite-vs__head { color: var(--text); }
.suite-vs__list { display: flex; flex-direction: column; gap: 11px; }
.suite-vs__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--dim);
}
.suite-vs__item b { color: var(--text); font-weight: 600; }
.suite-vs__mk { flex: none; margin-top: 2px; width: 14px; height: 14px; }
.suite-vs__col--before .suite-vs__mk { color: var(--faint); }
.suite-vs__col--after .suite-vs__mk { color: var(--green); }
.suite-vs__mk svg { width: 100%; height: 100%; display: block; }
@media (max-width: 720px) { .suite-vs { grid-template-columns: 1fr; } }

/* ============================================================
   22. PRICING TEASER — condensed 3-tier block → /pricing/suite/
   ============================================================ */
.suite-ptease {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.suite-ptease__card {
  position: relative;
  background: var(--panel);
  padding: clamp(24px, 2.4vw, 32px) clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--dur) var(--ease);
}
.suite-ptease__card:hover { background: var(--panel2); }
.suite-ptease__card--popular { background: var(--panel2); }
.suite-ptease__card--popular::before {
  content: "";
  display: block;
  width: 34px; height: 1px;
  background: var(--red); /* one featured hairline — counts toward the 4/page max */
  margin-bottom: 6px;
}
.suite-ptease__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: color-mix(in srgb, var(--red) 16%, var(--panel3));
  border: 1px solid color-mix(in srgb, var(--red) 45%, var(--line2));
  border-radius: 999px;
  padding: 3px 8px;
}
.suite-ptease__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}
.suite-ptease__price { display: flex; align-items: baseline; gap: 4px; margin-top: 2px; }
.suite-ptease__amount {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.suite-ptease__per { font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.suite-ptease__note { font-size: 0.9rem; color: var(--dim); line-height: 1.45; }
.suite-ptease__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(18px, 3vw, 26px);
}
.suite-ptease__more {
  font-size: 0.9rem;
  color: var(--dim);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) { .suite-ptease { grid-template-columns: 1fr; } }

/* ============================================================
   23. LIVE-DOT PULSE — draw the eye to what's usable today
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  @keyframes suite-pulse {
    0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--green) 60%, transparent); }
    70%  { box-shadow: 0 0 0 6px color-mix(in srgb, var(--green) 0%, transparent); }
    100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--green) 0%, transparent); }
  }
  .status-badge--available .status-badge__dot,
  .pipeline-rail__node--live .pipeline-rail__dot {
    animation: suite-pulse 2.4s var(--ease) infinite;
  }
}

/* ============================================================
   24. MODULE-CARD ICON — small line glyph aids scannability
   ============================================================ */
.module-card__icon {
  width: 22px;
  height: 22px;
  color: var(--dim);
  margin-bottom: 2px;
}
.module-card:has(.status-badge--available) .module-card__icon { color: var(--green); }
.module-card__icon svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   25. PRODUCT MOCKUPS — stylised, illustrative app windows for the
   two live modules (NOT screenshots). Drop real captures in later.
   ============================================================ */
.suite-mocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(22px, 3vw, 34px);
}
.suite-mock {
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.suite-mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.suite-mock__dots { display: flex; gap: 5px; }
.suite-mock__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line2); }
.suite-mock__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--dim);
  margin-left: 6px;
}
.suite-mock__name .dot { color: var(--red); }
.suite-mock__tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.suite-mock__body { padding: 14px; }

/* tag.shock — thumbnail + keyword chips + score */
.suite-mock__row { display: flex; gap: 12px; align-items: flex-start; }
.suite-mock__thumb {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--panel3), var(--panel));
  border: 1px solid var(--line);
}
.suite-mock__chips { display: flex; flex-wrap: wrap; gap: 6px; align-content: flex-start; }
.suite-mock__chip {
  height: 16px;
  border-radius: 999px;
  background: var(--panel2);
  border: 1px solid var(--line2);
}
.suite-mock__chip:nth-child(1) { width: 56px; }
.suite-mock__chip:nth-child(2) { width: 42px; }
.suite-mock__chip:nth-child(3) { width: 64px; }
.suite-mock__chip:nth-child(4) { width: 38px; }
.suite-mock__chip:nth-child(5) { width: 50px; }
.suite-mock__chip:nth-child(6) { width: 30px; }
.suite-mock__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.suite-mock__bars { display: flex; gap: 3px; align-items: flex-end; height: 18px; }
.suite-mock__bars i { width: 4px; background: var(--line2); border-radius: 1px; }
.suite-mock__bars i:nth-child(1){height:40%} .suite-mock__bars i:nth-child(2){height:70%}
.suite-mock__bars i:nth-child(3){height:55%} .suite-mock__bars i:nth-child(4){height:90%}
.suite-mock__bars i:nth-child(5){height:65%}
.suite-mock__score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.suite-mock__score b { color: var(--green); font-weight: 600; }

/* imla.shock — prompt bar + generated-image grid */
.suite-mock__prompt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  background: var(--panel);
  border: 1px solid var(--line2);
  border-radius: 6px;
  padding: 9px 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suite-mock__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.suite-mock__grid span {
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  border: 1px solid var(--line);
}
.suite-mock__grid span:nth-child(1){ background: linear-gradient(135deg,#23323f,#161a24); }
.suite-mock__grid span:nth-child(2){ background: linear-gradient(135deg,#3a2b30,#1a1620); }
.suite-mock__grid span:nth-child(3){ background: linear-gradient(135deg,#2a3326,#161c18); }
.suite-mock__grid span:nth-child(4){ background: linear-gradient(135deg,#2d2a3c,#17161f); }

@media (max-width: 720px) { .suite-mocks { grid-template-columns: 1fr; } }
