/* ==========================================================================
   Components — nav, footer, buttons, cards, chips, forms, Orin guide
   ========================================================================== */

/* --- Typography roles ---------------------------------------------------- */

.eyebrow {
  font-weight: 500;
  font-size: var(--text-eyebrow);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--beacon-deep);
}
.eyebrow--on-dark  { color: var(--beacon-soft); }
.eyebrow--muted    { color: var(--slate-soft); }
.eyebrow--on-vigil { color: var(--on-dark); }
.eyebrow--tight { font-size: 12px; letter-spacing: .12em; }

.title-hero {
  font-size: var(--text-hero);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: var(--leading-tight);
  text-wrap: pretty;
}
.title-1 {
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: var(--track-tight);
  line-height: var(--leading-tight);
  text-wrap: pretty;
}
.title-2 {
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: var(--track-snug);
  line-height: var(--leading-snug);
}
.title-3 {
  font-size: var(--text-h3);
  font-weight: 700;
  letter-spacing: var(--track-snug);
  line-height: 1.16;
}
.title-4 {
  font-size: var(--text-h4);
  font-weight: 700;
  letter-spacing: var(--track-snug);
  line-height: 1.16;
}
.statement {
  font-size: var(--text-statement);
  font-weight: 700;
  letter-spacing: var(--track-snug);
  line-height: 1.14;
  text-wrap: pretty;
}
.statement__quiet  { color: var(--slate-soft); }
.statement__accent { color: var(--beacon-deep); }

.lede {
  font-size: var(--text-lede);
  line-height: 1.58;
  color: var(--slate);
}
.lede--lg { font-size: var(--text-lede-lg); line-height: 1.55; }
.lede--on-dark { color: var(--on-dark); }
.lede--on-terracotta { color: var(--tint-warm); }

.prose { font-size: var(--text-body-lg); line-height: var(--leading-normal); color: var(--slate); }
.prose--sm { font-size: 18px; line-height: 1.62; }
.note { font-size: var(--text-xs); line-height: 1.55; color: var(--slate-soft); }

/* Measure caps. Long lines are the most common failure on a wide monitor. */
.measure-19 { max-width: 19ch; }
.measure-20 { max-width: 20ch; }
.measure-22 { max-width: 22ch; }
.measure-24 { max-width: 24ch; }
.measure-26 { max-width: 26ch; }
.measure-30 { max-width: 30ch; }
.measure-52 { max-width: 52ch; }
.measure-56 { max-width: 56ch; }
.measure-58 { max-width: 58ch; }
.measure-62 { max-width: 62ch; }
.measure-64 { max-width: 64ch; }
.measure-68 { max-width: 68ch; }

.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: var(--space-16); }
.mt-20 { margin-top: var(--space-20); }
.mt-22 { margin-top: 22px; }
.mt-24 { margin-top: var(--space-24); }
.mt-26 { margin-top: 26px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: var(--space-32); }
.mt-36 { margin-top: 36px; }
.mt-40 { margin-top: 40px; }
.mb-12 { margin-bottom: var(--space-12); }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: var(--space-16); }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: var(--space-20); }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: var(--space-24); }
.mb-26 { margin-bottom: 26px; }
.mb-40 { margin-bottom: 40px; }
.mb-44 { margin-bottom: var(--space-44); }
.mb-56 { margin-bottom: var(--space-56); }


/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  height: 56px;
  padding: 0 30px;
  border-radius: var(--radius-control);
  font-weight: 600;
  font-size: 16.5px;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.btn--primary {
  background: var(--beacon-deep);
  color: var(--surface);
}
.btn--primary:hover {
  background: var(--beacon-press);
  color: var(--surface);
}
/* Outline on a dark ground. On light grounds use .btn--outline. */
.btn--ghost-dark {
  border: 1.5px solid var(--line-dark);
  color: var(--paper);
}
.btn--ghost-dark:hover {
  border-color: var(--on-dark);
  color: var(--paper);
}
.btn--outline {
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--beacon-deep); color: var(--ink); }
.btn--lg { height: 58px; padding: 0 34px; font-size: 17px; }
.btn--sm { height: 50px; padding: 0 26px; font-size: 16px; }

.link-strong { font-weight: 600; font-size: 16.5px; }


/* --- Site nav ------------------------------------------------------------ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--vigil);
}
.site-nav__bar {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.wordmark {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--paper);
  white-space: nowrap;
}
/* The logo tint NEVER changes: xr is --beacon on every ground, light or dark.
   Do not substitute --beacon-soft here; that token is for terracotta *text*.
   Logotypes are exempt from WCAG 1.4.3 contrast minimums. */
.wordmark__xr { color: var(--beacon); }
.wordmark__tld { font-weight: 500; font-size: .65em; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.site-nav__link {
  color: var(--on-dark);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--beacon-soft); }
.site-nav__link.is-active { color: var(--paper); font-weight: 600; }

/* margin-left: auto keeps the CTA hard right even if anything above it wraps,
   so it can never end up orphaned under the logo. */
.site-nav__cta {
  margin-left: auto;
  flex: none;
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--beacon-deep);
  color: var(--surface);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease);
}
.site-nav__cta:hover { background: var(--beacon-press); color: var(--surface); }

.site-nav__burger {
  display: none;
  flex: none;
  width: 42px; height: 42px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--paper);
}
.site-nav__burger:hover { background: var(--vigil-soft); }

.site-nav__drawer {
  display: none;
  border-top: 1px solid var(--line-dark);
  background: var(--vigil);
  animation: sx-drop var(--dur-base) var(--ease) both;
}
.site-nav__drawer.is-open { display: block; }
.site-nav__drawer-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 14px var(--gutter) var(--space-20);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-nav__drawer .site-nav__link {
  display: block;
  padding: var(--space-12) var(--space-4);
  font-size: var(--text-body);
}

/* Collapse point is where the six links would start to crowd the CTA. */
@media (max-width: 1080px) {
  .site-nav__links { display: none; }
  .site-nav__burger { display: grid; }
}


/* --- Site footer --------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 64px 0 var(--space-56);
  margin-top: var(--space-96);
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: var(--space-44);
  border-bottom: 1px solid var(--slate);
}
.site-footer__heading {
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 14px;
}
.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
}
.site-footer__list a,
.site-footer__promise { color: var(--on-dark); }
.site-footer__list a:hover { color: var(--beacon-soft); }
.site-footer__promise { font-size: 14.5px; line-height: var(--leading-normal); margin-top: 14px; max-width: 30ch; }
.site-footer__legal { font-size: var(--text-xs); color: var(--on-dark); margin-top: 28px; }
.site-footer .wordmark { font-size: 18px; }


/* --- Cards --------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px 32px 32px;
}
.card--flush { padding: 0; overflow: hidden; }
.card--panel { border-radius: var(--radius-panel); padding: 44px 46px; }
.card--alert { border-color: var(--alert-line); }
.card--on-dark {
  background: var(--vigil-deep);
  border-color: var(--line-dark);
  border-radius: var(--radius-card);
  padding: var(--space-24) 26px;
}
.card__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: var(--space-12);
}
.card__title--lg { font-size: 20px; }
.card__title--xl { font-size: 21px; }
.card__body { font-size: var(--text-sm); line-height: var(--leading-normal); color: var(--slate); }
.card__num {
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--beacon-deep);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

/* Product card: whole card is the link, accent stripe names the product. */
.product-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--vigil);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: inherit;
  transition: border-color var(--dur-fast) var(--ease);
}
.product-card:hover { border-color: var(--vigil); color: inherit; }
.product-card--new { border-top-color: var(--beacon); }
.product-card--new:hover { border-color: var(--beacon-deep); border-top-color: var(--beacon-deep); }
.product-card__body { padding: 26px 28px 28px; }
.product-card__name {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: var(--space-12);
}
.product-card__blurb { font-size: var(--text-body); line-height: var(--leading-normal); color: var(--slate); }

/* Stat block */
.stat__value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: 15px; line-height: 1.5; color: var(--slate-soft); margin-top: var(--space-8); }

/* Column inside a coloured band */
.band-col__title { font-size: 20px; font-weight: 600; color: var(--surface); margin-bottom: var(--space-12); }
.band-col__body { font-size: 16.5px; line-height: 1.62; color: var(--tint-warm); }
.band-col--vigil .band-col__title { color: var(--beacon-soft); font-size: 21px; }
.band-col--vigil .band-col__body { color: var(--on-dark); }

/* Rule-marked list: three short claims under a heading */
.marked { display: flex; flex-direction: column; gap: 14px; }
.marked li {
  font-size: 16.5px;
  line-height: var(--leading-normal);
  color: var(--ink);
  padding-left: var(--space-16);
  border-left: 3px solid var(--beacon);
}


/* --- Chips and tags ------------------------------------------------------ */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.chip:hover { border-color: var(--beacon-deep); }
.chip.is-on {
  border-color: var(--beacon-deep);
  background: var(--tint-warm);
  font-weight: 600;
}
.chip--orin { border-color: var(--assistant-border); }
.chip--orin:hover { border-color: var(--orin); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag--guide    { background: var(--tint-warm); color: var(--beacon-deep); }
.tag--research { background: var(--success-tint); color: var(--success-deep); }
.tag--case     { background: var(--paper-2); color: var(--slate); }
.tag--briefing { background: var(--assistant-surface); color: var(--orin); }
.tag--new {
  padding: 6px 14px;
  background: var(--beacon-deep);
  color: var(--surface);
  font-size: 12.5px;
}
.tag--never {
  padding: 0;
  background: none;
  color: var(--alert-deep);
  font-size: 12px;
  letter-spacing: .1em;
}


/* --- Media placeholders -------------------------------------------------- */
/* Dashed panels marking where real photography or a product screenshot goes.
   Replace the <img> src; the wrapper keeps the aspect and radius. */

.media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper-2);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--flat { border-radius: 0; }
.media--panel { border-radius: var(--radius-panel); }
.media--card { height: 168px; }
.media--hero { height: 380px; }
.media--tall { height: 420px; }
.media-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.media-frame .media { height: 380px; border-radius: 12px; }


/* --- Orin ---------------------------------------------------------------- */

.orin { display: block; flex: none; }
.orin--spin g.orin__beams { transform-origin: 100px 100px; animation: sx-orbit 28s linear infinite; }
.orin--think g.orin__beams { transform-origin: 100px 100px; animation: sx-orbit 3.5s linear infinite; }

/* Anything Orin said sits on the assistant surface. */
.orin-said {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--assistant-surface);
  border: 1px solid var(--assistant-border);
  border-radius: 12px;
}
.orin-said__label {
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orin);
  margin-bottom: 6px;
}
.orin-said__body { font-size: 16.5px; line-height: 1.55; }

.orin-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: var(--space-56);
}
.orin-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-44);
  align-items: start;
  padding-top: 48px;
  border-top: 1px solid var(--line-dark);
}


/* --- Orin site guide (fixed, bottom right) ------------------------------- */

.guide { position: fixed; right: 0; bottom: 0; z-index: var(--z-guide); pointer-events: none; }

.guide__fab {
  pointer-events: auto;
  position: fixed;
  right: var(--space-24);
  bottom: var(--space-24);
  display: flex;
  align-items: center;
  gap: var(--space-12);
  height: 60px;
  padding: 0 var(--space-24) 0 14px;
  border-radius: var(--radius-pill);
  background: var(--vigil);
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-fab);
  transition: background var(--dur-fast) var(--ease);
}
.guide__fab:hover { background: var(--vigil-soft); }
.guide__fab.is-hidden { display: none; }

.guide__panel {
  pointer-events: auto;
  position: fixed;
  right: var(--space-24);
  bottom: var(--space-24);
  width: 396px;
  max-width: calc(100vw - 32px);
  height: 596px;
  max-height: calc(100vh - 48px);
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}
.guide__panel.is-open { display: flex; animation: sx-guide-in 220ms var(--ease) both; }

.guide__head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--space-16) 18px;
  background: var(--vigil);
}
.guide__name { font-size: 15.5px; font-weight: 600; color: var(--paper); }
.guide__role { font-size: 12.5px; color: var(--on-dark); margin-top: 2px; }
.guide__close {
  flex: none;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--on-dark);
}
.guide__close:hover { background: var(--vigil-soft); color: var(--paper); }

.guide__log {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: var(--space-20) 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide__msg { display: flex; gap: 10px; align-items: flex-start; }
.guide__msg--visitor {
  align-self: flex-end;
  max-width: 84%;
  background: var(--vigil);
  border-radius: 14px 14px 4px 14px;
  padding: 11px 14px;
}
.guide__msg--visitor p { font-size: 14.5px; line-height: 1.55; color: var(--paper); }
.guide__bubble {
  flex: 1;
  min-width: 0;
  background: var(--assistant-surface);
  border: 1px solid var(--assistant-border);
  border-radius: 4px 14px 14px 14px;
  padding: var(--space-12) 14px;
}
.guide__bubble p { font-size: 14.5px; line-height: var(--leading-normal); color: var(--ink); }
.guide__avatar { flex: none; margin-top: 3px; }

.guide__typing { display: flex; gap: 10px; align-items: center; }
.guide__dots { display: flex; gap: 4px; }
.guide__dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--slate-soft);
  animation: sx-dot 1.3s ease-in-out infinite;
}
.guide__dots span:nth-child(2) { animation-delay: .16s; }
.guide__dots span:nth-child(3) { animation-delay: .32s; }

.guide__chips {
  flex: none;
  padding: 0 18px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.guide__chip {
  height: 32px;
  padding: 0 13px;
  border: 1px solid var(--assistant-border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--slate);
  font-size: 12.5px;
  font-weight: 500;
}
.guide__chip:hover { border-color: var(--orin); color: var(--ink); }

.guide__form {
  flex: none;
  display: flex;
  gap: var(--space-8);
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.guide__input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 14.5px;
  color: var(--ink);
}
.guide__send {
  flex: none;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--beacon-deep);
  color: var(--surface);
}
.guide__send:hover { background: var(--beacon-press); }


/* --- Forms --------------------------------------------------------------- */

.field { display: block; }
.field__label {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 7px;
}
.field__input,
.field__textarea {
  width: 100%;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--paper);
  font-size: var(--text-body);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
}
.field__input { height: 50px; }
.field__textarea { padding: 13px 15px; line-height: 1.55; resize: vertical; }
.field__input:focus,
.field__textarea:focus { border-color: var(--beacon-deep); }

/* Validation is applied on submit, never on blur — telling someone their
   email is wrong while they are still typing it is why forms get abandoned. */
.field.is-invalid .field__input,
.field.is-invalid .field__textarea {
  border-color: var(--alert-deep);
  background: var(--alert-tint);
}
.field__error {
  font-size: var(--text-xs);
  color: var(--alert-deep);
  margin-top: 7px;
  display: none;
}
.field.is-invalid .field__error { display: block; }
.field__help { font-size: var(--text-xs); color: var(--slate-soft); margin-top: 7px; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-20);
}
.chip-set { display: flex; flex-wrap: wrap; gap: 9px; }
.form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-32);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}


/* ==========================================================================
   Utilities and one-off roles
   --------------------------------------------------------------------------
   Every declaration that used to be an inline style. Named rather than
   anonymous so a change lands everywhere it should.
   ========================================================================== */

/* --- Spacing ------------------------------------------------------------- */
.mt-88 { margin-top: var(--space-88); }
.mt-96 { margin-top: var(--space-96); }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: var(--space-32); }

/* --- Type sizes bound to a role ----------------------------------------- */
.fs-15       { font-size: 15px; }
.fs-17       { font-size: 17px; }
.fs-185      { font-size: 18.5px; }
.fs-sm       { font-size: var(--text-sm); }
.fs-body-lg  { font-size: var(--text-body-lg); }
.fs-lede-uni { font-size: clamp(18px, 1.8vw, 22px); }
.lh-114      { line-height: 1.14; }
.lh-162      { line-height: 1.62; }

/* Headings that sit at a size between the standard steps. */
.title-section  { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; }
.title-band     { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.14; color: var(--surface); }
.title-split    { font-size: clamp(26px, 3vw, 38px); line-height: 1.18; }
.title-panel    { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.02em; line-height: 1.18; }
.title-featured { font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.022em; line-height: 1.18; }
.title-confirm  { font-size: 32px; letter-spacing: -.02em; line-height: 1.15; }
.title-hero--uni { font-size: clamp(40px, 5.6vw, 76px); line-height: 1.04; }
.statement--sm  { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.15; }

/* The product name under a hero h1 — "SentinelXR Campus". */
.product-name {
  font-weight: 500;
  font-size: var(--text-body);
  color: var(--beacon-soft);
}

/* A lede one step down, used inside dark bands. */
.lede--17 { font-size: 17.5px; line-height: 1.62; }

/* Body copy in the procurement cards, a step up from .card__body. */
.card__body--lg { font-size: var(--text-body); }

.link-soft { color: var(--beacon-soft); }
.link-soft:hover { color: var(--surface); }
.u-on-band { color: var(--surface); }

.measure-40 { max-width: 40ch; }

/* --- Layout helpers ----------------------------------------------------- */
.u-fill   { flex: 1; min-width: 0; }
.u-block  { display: block; }
.u-center { margin: 0 auto; }
.gap-22   { gap: 22px; }
.gap-36   { gap: 36px; }

.grid--quad  { gap: var(--space-20); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--certs { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.split--orin { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 48px; }

/* --- Hero and band height variants -------------------------------------- */
.hero--tall    { padding: var(--space-96) 0 var(--space-88); }
.hero--slim    { padding: var(--space-88) 0 80px; }
.hero--compact { padding: 76px 0 68px; }
.band--84      { padding: 84px 0; }

/* --- Card padding variants ---------------------------------------------- */
.card--roomy { padding: 30px 32px 32px; }
.card--snug  { padding: 28px 30px; }

/* --- The New tag beside a product eyebrow ------------------------------- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: var(--space-24);
}
