/* ─────────────────────────────────────────────
   Solutions — Race management
   Rippling-style layout, Stash visual system
───────────────────────────────────────────── */

.nav__links a[aria-current="page"] {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}

/* ─── Shared ─── */
.sol-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sol-overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.sol-overline--light { color: rgba(255,255,255,0.4); }
.sol-h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 18ch;
}
.sol-h2--wide { max-width: 22ch; }
.sol-section__intro--center .sol-h2--wide {
  max-width: 20ch;
}
.sol-h2--light { color: rgba(255,255,255,0.92); }
.sol-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 48ch;
}
.sol-lede--light { color: rgba(255,255,255,0.42); }
.sol-section {
  padding: 96px 0;
}
.sol-section--tight { padding: 72px 0; }
.sol-path,
.sol-cap,
.sol-card,
.sol-mini__card,
.sol-fit__item,
.sol-river,
.sol-section[id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.sol-section--sand {
  background: rgba(255,255,255,0.35);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sol-section--dark {
  background-color: var(--dark);
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sol-section__intro {
  max-width: 640px;
  margin-bottom: 48px;
}
.sol-section__intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sol-section__intro--center .sol-h2 {
  margin-left: auto;
  margin-right: auto;
}
.sol-section__intro--center .sol-lede {
  margin-left: auto;
  margin-right: auto;
}

/* Simple solution subpage hero */
.sol-hero--simple {
  padding: 96px 0 72px;
  border-bottom: none;
  text-align: center;
}
.sol-hero--simple__inner {
  max-width: 720px;
  margin: 0 auto;
}
.sol-hero--simple .sol-hero__heading {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.sol-hero--simple .sol-lede {
  margin-left: auto;
  margin-right: auto;
}
.sol-hero--simple .sol-hero__actions {
  justify-content: center;
}

/* Flow prev/next between solution pages */
.sol-flow-nav {
  padding: 48px 0 72px;
  border-top: 1px solid var(--border);
}
.sol-flow-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sol-flow-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.sol-flow-nav__link--next {
  text-align: right;
  align-items: flex-end;
}
.sol-flow-nav__dir {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sol-flow-nav__link strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
@media (hover: hover) and (pointer: fine) {
  .sol-flow-nav__link:hover {
    background: #fff;
    border-color: rgba(26, 26, 26, 0.22);
  }
  .sol-flow-nav__link:hover .sol-flow-nav__dir {
    color: var(--red);
  }
}
.sol-flow-nav__link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .sol-flow-nav__inner {
    grid-template-columns: 1fr;
  }
  .sol-flow-nav__link--next {
    text-align: left;
    align-items: flex-start;
  }
}

/* Solutions hub pillars */
.sol-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.sol-pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  border-top: 3px solid var(--pillar-accent, var(--red));
}
.sol-pillar__phase {
  margin: 0;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pillar-accent, var(--muted));
  background: var(--pillar-tint, rgba(0, 0, 0, 0.05));
}
.sol-pillar--pre {
  --pillar-accent: var(--blue);
  --pillar-tint: rgba(25, 53, 196, 0.1);
}
.sol-pillar--lead {
  --pillar-accent: #a8841f;
  --pillar-tint: rgba(207, 162, 40, 0.16);
}
.sol-pillar--day {
  --pillar-accent: var(--red);
  --pillar-tint: rgba(251, 69, 40, 0.1);
}
.sol-pillar h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.sol-pillar > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.sol-pillar ul {
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.sol-pillar li {
  font-size: 13px;
  padding-left: 14px;
  position: relative;
}
.sol-pillar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--pillar-accent, var(--red));
}

/* Phase-tinted solution pages (match pillar accents) */
.sol-phase {
  --phase-accent: var(--red);
  --phase-accent-deep: #d63a20;
  --phase-tint: rgba(251, 69, 40, 0.1);
  --phase-wash: rgba(251, 69, 40, 0.06);
}
.sol-phase--pre {
  --phase-accent: var(--blue);
  --phase-accent-deep: #142a9e;
  --phase-tint: rgba(25, 53, 196, 0.1);
  --phase-wash: rgba(25, 53, 196, 0.055);
}
.sol-phase--lead {
  --phase-accent: #a8841f;
  --phase-accent-deep: #8f7018;
  --phase-tint: rgba(207, 162, 40, 0.16);
  --phase-wash: rgba(207, 162, 40, 0.08);
}
.sol-phase--day {
  --phase-accent: var(--red);
  --phase-accent-deep: #d63a20;
  --phase-tint: rgba(251, 69, 40, 0.1);
  --phase-wash: rgba(251, 69, 40, 0.06);
}

.sol-phase .sol-hero--simple {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, var(--phase-wash), transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 30%, var(--phase-wash), transparent 55%);
}
.sol-phase .sol-hero--simple .sol-overline {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--phase-accent);
  background: var(--phase-tint);
  margin-bottom: 16px;
}
.sol-phase .sol-overline:not(.sol-overline--light) {
  color: var(--phase-accent);
}
.sol-phase .sol-river__list li::before {
  background: var(--phase-accent);
}
.sol-phase .bands-divider__band:nth-child(1) { background: var(--phase-accent); }
.sol-phase .bands-divider__band:nth-child(2) { background: var(--phase-accent-deep); }
.sol-phase .bands-divider__band:nth-child(3) { background: var(--phase-accent); opacity: 0.55; }
.sol-phase--pre .bands-divider__band:nth-child(4) { background: var(--gold); }
.sol-phase--pre .bands-divider__band:nth-child(5) { background: var(--green); }
.sol-phase--lead .bands-divider__band:nth-child(4) { background: var(--blue); }
.sol-phase--lead .bands-divider__band:nth-child(5) { background: var(--red); }
.sol-phase--day .bands-divider__band:nth-child(4) { background: var(--gold); }
.sol-phase--day .bands-divider__band:nth-child(5) { background: var(--blue); }

.sol-phase .sol-flow-nav__link {
  border-color: color-mix(in srgb, var(--phase-accent) 18%, var(--border));
}
@media (hover: hover) and (pointer: fine) {
  .sol-phase .sol-flow-nav__link:hover {
    border-color: color-mix(in srgb, var(--phase-accent) 40%, var(--border));
    background: var(--phase-wash);
  }
  .sol-phase .sol-flow-nav__link:hover .sol-flow-nav__dir {
    color: var(--phase-accent);
  }
}
.sol-phase .sol-flow-nav__link:focus-visible {
  outline-color: var(--phase-accent);
}
.sol-phase .sol-section--sand {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, var(--phase-wash), transparent 55%),
    rgba(255, 255, 255, 0.35);
}

.sol-pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sol-pillar__link:hover {
    color: var(--red);
  }
}

/* Platform feature index */
.sol-platform-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.sol-platform-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.sol-platform-nav__item::after {
  content: "→";
  margin-left: auto;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 16px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.sol-platform-nav__mark {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.sol-platform-nav__mark--red { background: var(--red); }
.sol-platform-nav__mark--blue { background: var(--blue); }
.sol-platform-nav__mark--gold { background: var(--gold); }
.sol-platform-nav__mark--pink { background: var(--pink); }
.sol-platform-nav__mark--green { background: var(--green); }
.sol-platform-nav__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sol-platform-nav__text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sol-platform-nav__text span {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}
@media (hover: hover) and (pointer: fine) {
  .sol-platform-nav__item:hover {
    background: #fff;
    border-color: rgba(26, 26, 26, 0.22);
  }
  .sol-platform-nav__item:hover::after {
    color: var(--red);
    transform: translateX(3px);
  }
}
.sol-platform-nav__item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ─── Hero 50/50 ─── */
.sol-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}
.sol-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.sol-hero__heading {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 11ch;
}
.sol-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}
.sol-hero__note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 40ch;
}
.sol-hero__note strong { color: var(--text); font-weight: 700; }

.sol-hero__media {
  position: relative;
  min-height: 460px;
}
.sol-hero__photo {
  position: absolute;
  inset: 0 8% 12% 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.sol-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol-hero__float {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(15,15,14,0.12);
  overflow: hidden;
  font-size: 11px;
}
.sol-hero__float--checkout {
  width: 44%;
  right: 0;
  top: 6%;
}
.sol-hero__float--list {
  width: 52%;
  left: 0;
  bottom: 0;
}
.sol-ui-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(242,237,230,0.7);
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.sol-ui-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.sol-ui-body { padding: 10px 12px; }
.sol-ui-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(200,194,186,0.5);
}
.sol-ui-row:last-child { border-bottom: none; }
.sol-ui-cta {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 2px;
}
.sol-ui-person {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,194,186,0.45);
}
.sol-ui-person:last-child { border-bottom: none; }
.sol-ui-av {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 8px; font-weight: 700;
  display: grid; place-items: center;
}
.sol-ui-ok { color: var(--green); font-size: 9px; font-weight: 700; }
.sol-ui-warn { color: #b45309; font-size: 9px; font-weight: 700; }

@keyframes sol-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sol-hero__float--checkout { animation: sol-float 7s var(--ease-in-out) infinite; }
.sol-hero__float--list { animation: sol-float 8s 0.3s var(--ease-in-out) infinite; }
@media (prefers-reduced-motion: reduce) {
  .sol-hero__float { animation: none !important; }
}

/* ─── Feature card grid (Rippling 3-up) ─── */
.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sol-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sol-card__media {
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(180deg, rgba(251,69,40,0.04), transparent 40%),
    var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sol-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol-card__media--ui {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 16px 0;
  background:
    linear-gradient(180deg, rgba(242,237,230,0.2), rgba(242,237,230,0.85)),
    radial-gradient(circle at 30% 20%, rgba(251,69,40,0.12), transparent 50%),
    var(--cream);
}
.sol-card__panel {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  padding: 12px;
  font-size: 11px;
  min-height: 70%;
}
.sol-card__body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sol-card__body h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.sol-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ─── River (alternating 50/50) ─── */
.sol-river {
  padding: 88px 0;
}
.sol-river + .sol-river { padding-top: 24px; }
.sol-river__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.sol-river--flip .sol-river__copy { order: 2; }
.sol-river--flip .sol-river__media { order: 1; }
.sol-river__copy .sol-h2 { max-width: 14ch; }
#participants .sol-river__copy .sol-h2 { max-width: 16ch; }
.sol-river__copy .sol-lede { margin-bottom: 20px; }
.sol-river__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 28px;
}
.sol-river__list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.sol-river__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--red);
}
.sol-river__media {
  position: relative;
}
.sol-river__frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--dark);
}
.sol-river__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol-river__frame--product {
  aspect-ratio: 16 / 10;
  background: #fff;
}
.sol-river__frame--product img {
  object-fit: contain;
  object-position: top center;
  background: #f7f4ef;
}
.sol-river__frame--portal {
  aspect-ratio: 4 / 3;
}
#entries .sol-river__copy .sol-h2,
#forms .sol-river__copy .sol-h2 {
  max-width: 16ch;
}

/* Self-service + transfers combined block */
.sol-ss-xfer {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.sol-ss-xfer__portal {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
  scroll-margin-top: 96px;
}
.sol-ss-xfer__copy {
  padding-right: 8px;
  max-width: 34ch;
}
.sol-ss-xfer__copy h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.sol-ss-xfer__copy > p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 42ch;
}
.sol-ss-xfer__copy .sol-river__list {
  margin-bottom: 0;
  gap: 10px;
}
.sol-ss-xfer__media {
  min-width: 0;
}
.sol-ss-xfer__demo-head {
  margin-bottom: 24px;
  max-width: 52ch;
}
.sol-ss-xfer__demo-head h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.sol-ss-xfer__demo-head .sol-xfer__hint {
  margin: 0;
}
.sol-river__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  max-width: 220px;
  box-shadow: 0 12px 28px rgba(15,15,14,0.12);
}
.sol-river__badge strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.sol-river__badge span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* Nested mini-cards under a river */
.sol-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
.sol-mini__card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
  overflow: hidden;
}
.sol-mini__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.sol-mini__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol-mini__media--ui {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sol-mini__body { padding: 22px; }
.sol-mini__body h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.sol-mini__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Two equal feature columns (transfers / refunds) */
.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sol-split__item {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.sol-split__mock {
  padding: 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  min-height: 280px;
  display: flex;
  align-items: stretch;
}
.sol-split__mock .lf-modal,
.sol-split__mock .sol-shot {
  width: 100%;
  margin: 0;
}
.sol-split__item h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 20px 22px 8px;
}
.sol-split__item > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 22px 22px;
}

/* Team status strip */
.sol-team {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  width: 100%;
  max-width: 280px;
}
.sol-team__name {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}
.sol-team__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid rgba(200,194,186,0.55);
  font-size: 13px;
}
.sol-team__ok { color: var(--green); font-weight: 700; font-size: 12px; }
.sol-team__warn { color: #b45309; font-weight: 700; font-size: 12px; }
.sol-team__muted { color: var(--muted); font-weight: 700; font-size: 12px; }

/* Hub nodes on photo */
.sol-hub-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(15,15,14,0.15), rgba(15,15,14,0.45));
}
.sol-hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
  width: min(100%, 280px);
  text-align: center;
  box-shadow: 0 16px 40px rgba(15,15,14,0.2);
}
.sol-hub-card__av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; margin: 0 auto 8px;
}
.sol-hub-card strong { display: block; font-size: 15px; font-weight: 800; }
.sol-hub-card span { font-size: 12px; color: var(--muted); }
.sol-hub-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.sol-hub-card__tags em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border: 1px solid var(--border);
  background: var(--cream);
}

/* Lifecycle strip */
.sol-life {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin-top: 40px;
}
.sol-life__step {
  background: var(--dark-2);
  padding: 20px 16px;
  min-height: 140px;
}
.sol-life__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}
.sol-life__step h3 {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.sol-life__step p {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.38);
}
.sol-life__close {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 48ch;
}

/* Replace */
.sol-insights {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}
.sol-insights__mock .sol-shot {
  height: 100%;
  min-height: 420px;
}
.sol-insights__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sol-insights__point {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,0.55);
}
.sol-insights__point--accent {
  background: var(--dark);
  border-color: var(--border-dark);
  color: #fff;
  flex: 1;
}
.sol-insights__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.sol-insights__point--accent .sol-insights__label {
  color: rgba(255,255,255,0.4);
}
.sol-insights__point strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.sol-insights__point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.sol-insights__point--accent p {
  color: rgba(255,255,255,0.45);
}
.sol-insights__point--accent strong {
  color: #fff;
}

/* Event size / type */
.sol-fit {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 36px;
}
.sol-fit__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.sol-fit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sol-fit__grid--types {
  grid-template-columns: repeat(3, 1fr);
}
.sol-fit__item {
  background: rgba(255,255,255,0.55);
  padding: 16px 18px;
  min-height: 0;
}
.sol-fit__item h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  color: var(--text);
}
.sol-fit__item p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* Event-type photo carousel */
.sol-types {
  margin-top: 4px;
}
.sol-types__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.sol-types__bar .sol-fit__heading {
  margin-bottom: 0;
}
.sol-types__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.sol-types__btn {
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.sol-types__btn:hover:not(:disabled) {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.18);
}
.sol-types__btn:active:not(:disabled) {
  transform: scale(0.96);
}
.sol-types__btn:disabled {
  opacity: 0.28;
  cursor: default;
}
.sol-types__track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  margin: 0 -24px;
  padding: 4px 24px 8px;
}
.sol-types__track-wrap::-webkit-scrollbar {
  height: 6px;
}
.sol-types__track-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.14);
  border-radius: 4px;
}
.sol-types__track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-inline-end: 8px;
}
.sol-types__card {
  position: relative;
  flex: 0 0 clamp(200px, 28vw, 248px);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 16px 36px rgba(15, 15, 14, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.sol-types__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sol-types__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 8, 0.04) 30%,
    rgba(12, 10, 8, 0.5) 68%,
    rgba(12, 10, 8, 0.9) 100%
  );
  pointer-events: none;
}
.sol-types__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px 16px;
  pointer-events: none;
}
.sol-types__copy strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.sol-types__copy span {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}
@media (hover: hover) and (pointer: fine) {
  .sol-types__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(15, 15, 14, 0.16);
  }
  .sol-types__card:hover img {
    transform: scale(1.05);
  }
}

/* Comparison — competitor picker */
.sol-section__intro--compare {
  margin-bottom: 20px;
}
.sol-compare-picker {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: 14px;
}
.sol-compare-picker__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.sol-compare-tab {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.sol-compare-tab strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 4px;
}
.sol-compare-tab span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 550;
  line-height: 1.3;
}
.sol-compare-tab.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15,15,14,0.16);
}
.sol-compare-tab.is-active span {
  color: rgba(255,255,255,0.55);
}
@media (hover: hover) and (pointer: fine) {
  .sol-compare-tab:hover:not(.is-active) {
    background: #fff;
    border-color: rgba(26,26,26,0.22);
    transform: translateY(-1px);
  }
}
.sol-compare-tab:focus-visible {
  outline: 2px solid rgba(251,69,40,0.45);
  outline-offset: 2px;
}

.sol-compare-summary {
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  border-radius: 12px;
  border-left: 4px solid var(--green);
}
.sol-compare-summary__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.sol-compare-summary__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 62ch;
}

.sol-compare__wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,15,14,0.06);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.sol-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}
.sol-compare th,
.sol-compare td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(200,194,186,0.55);
  line-height: 1.45;
}
.sol-compare tbody tr:last-child th,
.sol-compare tbody tr:last-child td {
  border-bottom: none;
}
.sol-compare thead th {
  background: #f7f4ef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: top;
  padding-top: 16px;
  padding-bottom: 16px;
  position: sticky;
  top: 0;
  z-index: 2;
}
.sol-compare thead th:first-child,
.sol-compare tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
}
.sol-compare thead th:first-child {
  z-index: 3;
}
.sol-compare__section th {
  background: #ebe6de !important;
  color: var(--text) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,194,186,0.7);
  position: static !important;
  left: auto !important;
  z-index: auto;
  min-width: 0;
  max-width: none;
  box-shadow: none;
}
.sol-compare__section + tr th,
.sol-compare__section + tr td {
  border-top: none;
}
.sol-compare tbody th {
  font-weight: 700;
  min-width: 200px;
  max-width: 240px;
  background: #faf8f4;
  color: var(--text);
  font-size: 13px;
  text-transform: none;
  letter-spacing: -0.01em;
  box-shadow: 1px 0 0 rgba(200,194,186,0.55);
}
.sol-compare__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sol-compare__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(0,0,0,0.05);
  color: var(--text);
}
.sol-compare__icon svg {
  width: 15px;
  height: 15px;
  display: block;
}
.sol-compare td {
  color: var(--muted);
  font-weight: 500;
  background: #fcfbf9;
}
.sol-compare__stash {
  background: rgba(39,107,60,0.07) !important;
  color: var(--text) !important;
  font-weight: 650 !important;
  position: relative;
}
.sol-compare thead .sol-compare__stash {
  color: var(--green) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  background: rgba(39,107,60,0.1) !important;
  box-shadow: inset 0 3px 0 var(--green);
}
.sol-compare__cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sol-compare__mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sol-compare__mark svg {
  width: 11px;
  height: 11px;
  display: block;
}
.sol-compare__mark--yes {
  background: rgba(39,107,60,0.14);
  color: var(--green);
}
.sol-compare__mark--no {
  background: rgba(251,69,40,0.1);
  color: var(--red);
}
.sol-compare__mark--partial {
  background: rgba(0,0,0,0.06);
  color: var(--muted);
}
.sol-compare__cell-text {
  min-width: 0;
}
.sol-compare__examples {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0;
  text-transform: none;
}
.sol-compare__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 72ch;
}
.sol-wins {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.sol-win {
  padding: 16px;
  border-top: 3px solid var(--accent, var(--red));
  background: rgba(255,255,255,0.45);
}
.sol-win strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.sol-win span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* Pricing */
.sol-pricing__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  margin: 40px 0 28px;
}
.sol-pricing__item {
  background: var(--dark-2);
  padding: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.sol-pricing__item span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.sol-pricing__support {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  max-width: 56ch;
  margin-bottom: 28px;
}
.sol-pricing__fine {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* Final CTA */
.sol-final {
  padding: 112px 0 0;
  position: relative;
}
.sol-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 96px;
}
.sol-final__heading {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: rgba(255,255,255,0.92);
  max-width: 12ch;
  margin-bottom: 18px;
}
.sol-final__sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  max-width: 44ch;
  margin-bottom: 28px;
}
.sol-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.sol-final .btn--ghost {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.22);
}
@media (hover: hover) and (pointer: fine) {
  .sol-final .btn--ghost:hover { background: rgba(255,255,255,0.06); }
}
.sol-final__foot {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
}
.sol-final__photo {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  aspect-ratio: 4 / 3;
}
.sol-final__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sol-final__bar {
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 40%, var(--pink) 65%, var(--gold) 82%, var(--green) 100%);
}

/* Check-in UI mock */
.sol-checkin-ui {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  width: 100%;
  max-width: 260px;
}
.sol-checkin-ui__search {
  padding: 8px 10px;
  background: var(--cream);
  border-radius: 2px;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 10px;
}
.sol-checkin-ui__hit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.sol-checkin-ui__bib {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue);
}

/* ─── Event-type pages (Road races, etc.) ─── */
.sol-type-hero__heading {
  max-width: 14ch;
}
.sol-type-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0;
  max-width: 42ch;
}
.sol-type-hero__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 550;
}
.sol-type-hero__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--red);
}
.sol-type-hero .sol-hero__actions {
  margin-top: 28px;
}
.sol-type-hero__shot {
  position: absolute;
  inset: 8% 4% 18% 8%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 15, 14, 0.14);
}
.sol-type-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.sol-type-hero__photo {
  inset: 0 6% 8% 0;
  border-radius: 4px;
}
.sol-type-hero__photo img {
  object-position: center 20%;
}
.sol-type-hero__photo--trail img {
  object-position: center 35%;
}

/* Trail races — lean into green */
.sol-type--trail {
  --sol-type-accent: var(--green);
}
.sol-type--trail .sol-type-hero {
  background: #1a3d28;
  border-bottom: none;
}
.sol-type--trail .sol-type-hero .sol-overline {
  color: rgba(255, 255, 255, 0.55);
}
.sol-type--trail .sol-type-hero .sol-hero__heading,
.sol-type--trail .sol-type-hero .sol-type-hero__bullets li {
  color: #fff;
}
.sol-type--trail .sol-type-hero .sol-lede {
  color: rgba(255, 255, 255, 0.72);
}
.sol-type--trail .sol-type-hero__bullets li::before {
  background: #fff;
}
.sol-type--trail .sol-type-hero .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .sol-type--trail .sol-type-hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
  }
}
.sol-type--trail .sol-type-hero__photo {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.18);
}
.sol-type--trail .sol-type-cap__icon {
  background: rgba(39, 107, 60, 0.12);
  color: var(--green);
}
.sol-type--trail .sol-runner-card__mark {
  background: var(--green);
}
.sol-type--trail .sol-runner-card__mark::after {
  border-color: #0f2a18;
}
.sol-type--trail .sol-runner-card__av {
  background: var(--green);
}
.sol-type--trail .sol-section--dark {
  background-color: #1a3d28;
  background-image: none;
}
.sol-type--trail .sol-type-outcomes {
  gap: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.sol-type--trail .sol-type-outcome {
  background: transparent;
  min-height: 0;
  padding: 36px 40px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.sol-type--trail .sol-type-outcome:last-child {
  border-right: none;
  padding-right: 0;
}
.sol-type--trail .sol-type-outcome:not(:first-child) {
  padding-left: 40px;
}
.sol-type--trail .sol-type-outcome strong {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.sol-type--trail .sol-type-outcome strong::before {
  content: '';
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.85);
}
.sol-type--trail .sol-type-outcome span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  max-width: 28ch;
}
.sol-type--trail .sol-type-more__link:hover {
  color: var(--green);
}
.sol-type--trail .bands-divider__band:nth-child(1) { background: var(--green); }
.sol-type--trail .bands-divider__band:nth-child(2) { background: #3d8a52; }
.sol-type--trail .bands-divider__band:nth-child(3) { background: var(--gold); }
.sol-type--trail .bands-divider__band:nth-child(4) { background: #1f4d2c; }
.sol-type--trail .bands-divider__band:nth-child(5) { background: var(--red); }

/* Teams / relays — lean into blue */
.sol-type--teams {
  --sol-type-accent: var(--blue);
}
.sol-type--teams .sol-type-hero {
  background: #12182e;
  border-bottom: none;
}
.sol-type--teams .sol-type-hero .sol-overline {
  color: rgba(255, 255, 255, 0.55);
}
.sol-type--teams .sol-type-hero .sol-hero__heading {
  color: #fff;
  max-width: 12ch;
}
.sol-type--teams .sol-type-hero .sol-lede {
  color: rgba(255, 255, 255, 0.72);
}
.sol-type--teams .sol-type-hero .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .sol-type--teams .sol-type-hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
  }
}
.sol-type--teams .sol-type-hero__photo {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.14);
}
.sol-type--teams .sol-type-hero__photo--teams img {
  object-position: center 30%;
}
.sol-type--teams .sol-type-cap__icon {
  background: rgba(25, 53, 196, 0.10);
  color: var(--blue);
}
.sol-type--teams .sol-section__intro .sol-lede {
  margin-top: 4px;
}
.sol-type--teams .sol-section--dark {
  background-color: #12182e;
  background-image: none;
}
.sol-type--teams .sol-type-outcomes {
  gap: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.sol-type--teams .sol-type-outcome {
  background: transparent;
  min-height: 0;
  padding: 36px 40px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.sol-type--teams .sol-type-outcome:last-child {
  border-right: none;
  padding-right: 0;
}
.sol-type--teams .sol-type-outcome:not(:first-child) {
  padding-left: 40px;
}
.sol-type--teams .sol-type-outcome strong {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.sol-type--teams .sol-type-outcome strong::before {
  content: '';
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.85);
}
.sol-type--teams .sol-type-outcome span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  max-width: 28ch;
}
.sol-type--teams .sol-type-more__link:hover {
  color: var(--blue);
}
.sol-type--teams .bands-divider__band:nth-child(1) { background: var(--blue); }
.sol-type--teams .bands-divider__band:nth-child(2) { background: #3d52c9; }
.sol-type--teams .bands-divider__band:nth-child(3) { background: var(--gold); }
.sol-type--teams .bands-divider__band:nth-child(4) { background: #0f1840; }
.sol-type--teams .bands-divider__band:nth-child(5) { background: var(--red); }

/* Ultras — night / headlamp theme */
.sol-type--ultra {
  --sol-type-accent: var(--gold);
  --cream: #0c0b0a;
  --text: #f2ede6;
  --muted: rgba(242, 237, 230, 0.58);
  --border: rgba(242, 237, 230, 0.14);
  --border-dark: rgba(242, 237, 230, 0.1);
  color: var(--text);
  background-color: #0c0b0a;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(251, 69, 40, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(212, 168, 67, 0.08), transparent 50%),
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
  color-scheme: dark;
}
.sol-type--ultra .nav {
  background: rgba(12, 11, 10, 0.86);
}
.sol-type--ultra .nav.scrolled {
  border-bottom-color: rgba(242, 237, 230, 0.1);
}
.sol-type--ultra .nav__links a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.sol-type--ultra .nav__hamburger span {
  background: var(--text);
}
.sol-type--ultra .nav__drawer {
  background: #121110;
  border-top-color: rgba(242, 237, 230, 0.1);
}
.sol-type--ultra .nav__drawer a {
  border-bottom-color: rgba(242, 237, 230, 0.08);
}
.sol-type--ultra .nav__mega-panel {
  background: #161412;
  border-color: rgba(242, 237, 230, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.sol-type--ultra .nav__mega-label {
  color: rgba(242, 237, 230, 0.4);
}
.sol-type--ultra .nav__mega-link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.sol-type--ultra .sol-type-hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(12, 11, 10, 0.92) 38%, rgba(12, 11, 10, 0.45) 62%, transparent 78%),
    radial-gradient(ellipse 50% 70% at 78% 45%, rgba(212, 168, 67, 0.16), transparent 60%),
    #0c0b0a;
  border-bottom: none;
  overflow: hidden;
}
.sol-type--ultra .sol-type-hero .sol-overline {
  color: rgba(242, 237, 230, 0.5);
}
.sol-type--ultra .sol-type-hero .sol-hero__heading {
  color: #fff;
}
.sol-type--ultra .sol-type-hero .sol-lede {
  color: rgba(242, 237, 230, 0.72);
}
.sol-type--ultra .sol-type-hero .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
@media (hover: hover) and (pointer: fine) {
  .sol-type--ultra .sol-type-hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
  }
}
.sol-type--ultra .sol-type-hero__photo {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(212, 168, 67, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(212, 168, 67, 0.12);
}
.sol-type--ultra .sol-type-hero__photo img {
  object-position: center 28%;
  filter: saturate(1.05) contrast(1.04);
}
.sol-type--ultra .btn--ghost {
  color: var(--text);
  border-color: rgba(242, 237, 230, 0.28);
}
@media (hover: hover) and (pointer: fine) {
  .sol-type--ultra .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(242, 237, 230, 0.45);
  }
}
.sol-type--ultra .sol-section--sand {
  background: rgba(255, 255, 255, 0.035);
  border-top-color: rgba(242, 237, 230, 0.1);
  border-bottom-color: rgba(242, 237, 230, 0.1);
}
.sol-type--ultra .sol-section--dark {
  background-color: #080706;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}
.sol-type--ultra .sol-type-caps {
  background: rgba(242, 237, 230, 0.1);
  border-color: rgba(242, 237, 230, 0.1);
}
.sol-type--ultra .sol-type-cap {
  background: rgba(255, 255, 255, 0.04);
}
.sol-type--ultra .sol-type-cap h3 {
  color: #fff;
}
.sol-type--ultra .sol-type-cap__icon {
  background: rgba(212, 168, 67, 0.14);
  color: var(--gold);
}
.sol-type--ultra .sol-trail-brief__list li {
  color: rgba(242, 237, 230, 0.82);
}
.sol-type--ultra .sol-trail-brief__list li::before {
  background: var(--gold);
}
.sol-type--ultra .sol-river__list li {
  color: rgba(242, 237, 230, 0.78);
}
.sol-type--ultra .sol-type-outcomes {
  gap: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sol-type--ultra .sol-type-outcome {
  background: transparent;
  min-height: 0;
  padding: 36px 40px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sol-type--ultra .sol-type-outcome:last-child {
  border-right: none;
  padding-right: 0;
}
.sol-type--ultra .sol-type-outcome:not(:first-child) {
  padding-left: 40px;
}
.sol-type--ultra .sol-type-outcome strong {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: #fff;
}
.sol-type--ultra .sol-type-outcome strong::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--gold);
}
.sol-type--ultra .sol-type-outcome span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  max-width: 28ch;
}
.sol-type--ultra .sol-type-included li {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 237, 230, 0.12);
  color: rgba(242, 237, 230, 0.88);
}
.sol-type--ultra .sol-type-more__link {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(242, 237, 230, 0.12);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .sol-type--ultra .sol-type-more__link:hover {
    color: var(--gold);
    border-color: rgba(212, 168, 67, 0.45);
    background: rgba(212, 168, 67, 0.08);
  }
}
.sol-type--ultra .sol-runner-card__mark {
  background: var(--gold);
}
.sol-type--ultra .sol-runner-card__mark::after {
  border-color: #1a1408;
}
.sol-type--ultra .sol-runner-card__av {
  background: #3a2a0c;
  color: var(--gold);
}
/* Keep product mocks readable on the dark page */
.sol-type--ultra .sol-shot,
.sol-type--ultra .sol-runner-card,
.sol-type--ultra .sol-ready {
  --text: #181614;
  --muted: #787068;
  --border: #C8C2BA;
  color: #181614;
}
.sol-type--ultra .bands-divider__band:nth-child(1) { background: #1a1208; }
.sol-type--ultra .bands-divider__band:nth-child(2) { background: var(--gold); }
.sol-type--ultra .bands-divider__band:nth-child(3) { background: #7a4a12; }
.sol-type--ultra .bands-divider__band:nth-child(4) { background: #2a1810; }
.sol-type--ultra .bands-divider__band:nth-child(5) { background: var(--red); }

.sol-teams-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: end;
}
.sol-teams-proof .sol-h2 { max-width: 16ch; }
.sol-teams-proof__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.sol-teams-proof__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.sol-teams-proof__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 550;
}
.sol-teams-proof__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--blue);
}

.sol-trail-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: end;
}
.sol-trail-brief .sol-h2 { max-width: 16ch; }
.sol-trail-brief__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.sol-trail-brief__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.sol-trail-brief__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 550;
}
.sol-trail-brief__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--green);
}

/* Ultra readiness checklist mock */
.sol-ready.sol-shot {
  border-radius: 12px;
}
.sol-ready__body {
  padding: 16px !important;
}
.sol-ready__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sol-ready__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.sol-ready__who {
  min-width: 0;
  flex: 1;
}
.sol-ready__who strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.sol-ready__who span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.sol-ready__badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  font-style: normal;
  background: rgba(251, 69, 40, 0.1);
  color: var(--red);
}
.sol-ready__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.sol-ready__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.sol-ready__row:first-child {
  border-top: 0;
}
.sol-ready__row.is-due {
  background: rgba(251, 69, 40, 0.05);
}
.sol-ready__mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sol-ready__mark svg {
  width: 12px;
  height: 12px;
  display: block;
}
.sol-ready__row.is-ok .sol-ready__mark {
  background: rgba(39, 107, 60, 0.14);
  color: var(--green);
}
.sol-ready__row.is-due .sol-ready__mark {
  background: rgba(251, 69, 40, 0.12);
  color: var(--red);
}
.sol-ready__copy {
  min-width: 0;
  flex: 1;
}
.sol-ready__copy strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  font-style: normal;
}
.sol-ready__copy span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.sol-ready__tag {
  flex-shrink: 0;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.sol-ready__row.is-ok .sol-ready__tag {
  background: rgba(39, 107, 60, 0.1);
  color: var(--green);
}
.sol-ready__row.is-due .sol-ready__tag {
  background: rgba(251, 69, 40, 0.1);
  color: var(--red);
}
.sol-ready__foot {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.sol-ready__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--text);
}
.sol-ready__btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(251, 69, 40, 0.2);
}

/* Trail — expandable aid station maps */
#aid-stations {
  padding-top: 64px;
  padding-bottom: 64px;
}
#aid-stations .sol-section__intro {
  margin-bottom: 28px;
}
#aid-stations .sol-section__intro .sol-lede {
  margin-left: auto;
  margin-right: auto;
}
.sol-aid-maps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}
.sol-aid-maps__hint {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.sol-aid-map {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  perspective: 1000px;
}
.sol-aid-map__surface {
  position: relative;
  display: block;
  width: 240px;
  height: 92px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 15, 14, 0.07);
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms ease,
    box-shadow 280ms ease;
  transform-style: preserve-3d;
}
.sol-aid-map.is-expanded .sol-aid-map__surface {
  width: 300px;
  height: 340px;
  box-shadow: 0 24px 50px rgba(15, 15, 14, 0.12);
}
@media (hover: hover) and (pointer: fine) {
  .sol-aid-map:hover .sol-aid-map__surface {
    transform: translateY(-2px);
  }
}
.sol-aid-map__tiles {
  position: absolute;
  inset: 0 0 46% 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 320ms ease 80ms;
  pointer-events: none;
}
.sol-aid-map.is-expanded .sol-aid-map__tiles {
  opacity: 1;
}
.sol-aid-map__tiles-grid {
  position: absolute;
  width: 768px;
  height: 768px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sol-aid-map__tile {
  position: absolute;
  width: 256px;
  height: 256px;
  background: #e8ebe6;
}
.sol-aid-map__tile img {
  display: block;
  width: 100%;
  height: 100%;
}
.sol-aid-map__marker {
  position: absolute;
  left: 50%;
  top: 27%;
  width: 28px;
  height: 28px;
  margin: -28px 0 0 -14px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-12px) scale(0.6);
  transition: opacity 280ms ease 180ms, transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z' fill='%23276B3C'/%3E%3Ccircle cx='12' cy='9' r='2.5' fill='%23fff'/%3E%3C/svg%3E");
  filter: drop-shadow(0 6px 10px rgba(15, 15, 14, 0.28));
  pointer-events: none;
}
.sol-aid-map.is-expanded .sol-aid-map__marker {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sol-aid-map__shade {
  position: absolute;
  inset: 0 0 46% 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(255,255,255,0.94), transparent 40%),
    linear-gradient(to bottom, rgba(255,255,255,0.28), transparent 28%);
  opacity: 0;
  transition: opacity 280ms ease;
}
.sol-aid-map.is-expanded .sol-aid-map__shade {
  opacity: 1;
}
.sol-aid-map__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 16px;
  pointer-events: none;
}
.sol-aid-map.is-expanded .sol-aid-map__content {
  justify-content: space-between;
  gap: 0;
  padding: 16px 18px;
}
.sol-aid-map__icon {
  color: var(--green);
  display: flex;
  transition: opacity 220ms ease;
}
.sol-aid-map.is-expanded .sol-aid-map__icon {
  opacity: 0;
}
.sol-aid-map__meta {
  display: block;
}
.sol-aid-map__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.sol-aid-map__coords,
.sol-aid-map__note,
.sol-aid-map__amenities {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 320ms ease, opacity 240ms ease, margin-top 240ms ease;
}
.sol-aid-map__coords {
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
}
.sol-aid-map__note {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.sol-aid-map__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sol-aid-map__amenities span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(39, 107, 60, 0.18);
  background: rgba(39, 107, 60, 0.08);
  color: var(--green);
}
.sol-aid-map.is-expanded .sol-aid-map__coords {
  max-height: 24px;
  opacity: 1;
  margin-top: 4px;
}
.sol-aid-map.is-expanded .sol-aid-map__note {
  max-height: 48px;
  opacity: 1;
  margin-top: 10px;
}
.sol-aid-map.is-expanded .sol-aid-map__amenities {
  max-height: 72px;
  opacity: 1;
  margin-top: 12px;
}
.sol-aid-map__rule {
  display: block;
  height: 1px;
  margin-top: 8px;
  width: 30%;
  background: linear-gradient(90deg, rgba(39,107,60,0.55), transparent);
  transition: width 320ms ease, margin-top 240ms ease;
}
.sol-aid-map:hover .sol-aid-map__rule,
.sol-aid-map.is-expanded .sol-aid-map__rule {
  width: 100%;
}
.sol-aid-map.is-expanded .sol-aid-map__rule {
  margin-top: 12px;
}

.sol-type-float--wave {
  left: auto;
  right: -2%;
  top: 10%;
  width: min(240px, 52%);
}
.sol-type-float--bib {
  left: 2%;
  bottom: 2%;
  top: auto;
  width: min(260px, 58%);
}
.sol-type-caps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sol-type-cap {
  background: rgba(255,255,255,0.55);
  padding: 32px 28px;
  min-height: 0;
}
.sol-type-cap__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ebe8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--text);
}
.sol-type-cap__icon svg {
  width: 20px;
  height: 20px;
}
.sol-type-cap h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
  max-width: none;
}
.sol-type-cap p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 34ch;
}
.sol-type-shot-frame {
  background: #fff;
  aspect-ratio: 16 / 11;
}
.sol-type-shot-frame img {
  object-fit: contain;
  object-position: top center;
  background: #f7f4ef;
}

/* Runner card product mock */
.sol-runner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 15, 14, 0.1);
  font-size: 12px;
}
.sol-runner-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(200, 194, 186, 0.55);
}
.sol-runner-card__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.sol-runner-card__mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--gold);
  position: relative;
}
.sol-runner-card__mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid #2f2300;
  border-radius: 50%;
}
.sol-runner-card__tools {
  display: flex;
  gap: 8px;
}
.sol-runner-card__tools span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #ebe8e1;
}
.sol-runner-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 10px;
}
.sol-runner-card__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f8a6a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.sol-runner-card__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
.sol-runner-card__name em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #1f8a6a;
  background: rgba(31, 138, 106, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
}
.sol-runner-card__bib {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}
.sol-runner-card__tabs {
  display: flex;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(200, 194, 186, 0.55);
  overflow: auto;
}
.sol-runner-card__tabs span {
  flex-shrink: 0;
  padding: 10px 0 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.sol-runner-card__tabs .is-active {
  color: var(--text);
  border-bottom-color: var(--gold);
}
.sol-runner-card__cols {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: 0;
  background: #f4f1eb;
}
.sol-runner-card__col {
  padding: 14px 12px 16px;
  border-right: 1px solid rgba(200, 194, 186, 0.45);
  min-width: 0;
}
.sol-runner-card__col:last-child { border-right: none; }
.sol-runner-card__label {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 12px 0 8px;
}
.sol-runner-card__col > .sol-runner-card__label:first-child { margin-top: 0; }
.sol-runner-card__field {
  margin-bottom: 8px;
}
.sol-runner-card__field span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 2px;
}
.sol-runner-card__field strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.015em;
}
.sol-runner-card__btn {
  display: block;
  text-align: center;
  background: #1f8a6a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.sol-runner-card__bib-assign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 11px;
}
.sol-runner-card__bib-assign em {
  font-style: normal;
  font-weight: 800;
  color: var(--text);
}
.sol-runner-card__form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  margin-bottom: 8px;
}
.sol-runner-card__form i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c2ba;
  flex-shrink: 0;
}
.sol-runner-card__form i.is-ok { background: #1f8a6a; }
.sol-runner-card__form strong {
  display: block;
  font-size: 12px;
  font-weight: 750;
  color: var(--text);
}
.sol-runner-card__form span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}
.sol-runner-card__order {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.sol-runner-card__order > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.sol-runner-card__order strong {
  font-size: 12px;
  font-weight: 750;
}
.sol-runner-card__order em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: #1f8a6a;
  background: rgba(31, 138, 106, 0.12);
  padding: 2px 7px;
  border-radius: 999px;
}
.sol-runner-card__order > span {
  font-size: 11px;
  color: var(--muted);
}
.sol-runner-card__timeline {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}
.sol-runner-card__timeline li {
  position: relative;
  padding: 0 0 12px 14px;
  border-left: 1.5px solid rgba(200, 194, 186, 0.7);
  margin-left: 4px;
}
.sol-runner-card__timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.sol-runner-card__timeline li::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c2ba;
  border: 1.5px solid #fff;
}
.sol-runner-card__timeline li.is-done::before { background: #1f8a6a; }
.sol-runner-card__timeline strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.sol-runner-card__timeline span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}
.sol-runner-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sol-runner-card__actions span {
  display: block;
  text-align: center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 650;
  color: var(--text);
}
.sol-runner-card__actions .is-danger {
  border-color: rgba(251, 69, 40, 0.35);
  color: var(--red);
}

@media (max-width: 1024px) {
  .sol-runner-card__cols { grid-template-columns: 1fr 1fr; }
  .sol-runner-card__col--activity { display: none; }
}
@media (max-width: 600px) {
  .sol-runner-card__cols { grid-template-columns: 1fr; }
  .sol-runner-card__col { border-right: none; border-bottom: 1px solid rgba(200, 194, 186, 0.45); }
  .sol-runner-card__col:last-child { border-bottom: none; }
  .sol-runner-card__name { font-size: 16px; }
}
.sol-type-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.sol-type-outcome {
  background: var(--dark-2);
  padding: 32px 28px;
  min-height: 180px;
}
.sol-type-outcome strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}
.sol-type-outcome span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.42);
}
.sol-type-included {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto 36px;
}
.sol-type-included li {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  color: var(--text);
}
.sol-type-included__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.sol-type-more__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sol-type-more__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  transition: background 140ms ease, border-color 140ms ease;
}
.sol-type-more__link::after {
  content: '→';
  color: var(--muted);
  font-weight: 600;
}
@media (hover: hover) and (pointer: fine) {
  .sol-type-more__link:hover {
    background: #fff;
    border-color: rgba(26, 26, 26, 0.22);
  }
}
.sol-fit__title-link {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sol-fit__title-link:hover {
    color: var(--red);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .sol-hero__grid,
  .sol-river__grid,
  .sol-insights,
  .sol-final__grid { grid-template-columns: 1fr; gap: 36px; }
  .sol-river--flip .sol-river__copy,
  .sol-river--flip .sol-river__media { order: initial; }
  .sol-ss-xfer__portal { grid-template-columns: 1fr; gap: 36px; }
  .sol-ss-xfer__copy { max-width: none; padding-right: 0; }
  .sol-platform-nav { grid-template-columns: 1fr; }
  .sol-pillars { grid-template-columns: 1fr; }
  .sol-cards { grid-template-columns: 1fr; }
  .sol-life { grid-template-columns: 1fr 1fr 1fr; }
  .sol-wins { grid-template-columns: 1fr 1fr; }
  .sol-pricing__list { grid-template-columns: 1fr 1fr; }
  .sol-fit__grid { grid-template-columns: 1fr 1fr; }
  .sol-fit__grid--types { grid-template-columns: 1fr 1fr; }
  .sol-type-caps { grid-template-columns: 1fr; }
  .sol-compare-picker__tabs { grid-template-columns: 1fr; }
  .sol-trail-brief { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .sol-teams-proof { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .sol-aid-maps { gap: 12px; }
  .sol-aid-map__surface,
  .sol-aid-map.is-expanded .sol-aid-map__surface {
    width: min(100vw - 48px, 300px);
  }
  .sol-type-outcomes { grid-template-columns: 1fr; }
  .sol-type--trail .sol-type-outcome,
  .sol-type--trail .sol-type-outcome:not(:first-child),
  .sol-type--trail .sol-type-outcome:last-child {
    border-right: none;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .sol-type--trail .sol-type-outcome:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sol-type--trail .sol-type-outcomes {
    border-top: none;
  }
  .sol-type--teams .sol-type-outcome,
  .sol-type--teams .sol-type-outcome:not(:first-child),
  .sol-type--teams .sol-type-outcome:last-child {
    border-right: none;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .sol-type--teams .sol-type-outcome:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sol-type--teams .sol-type-outcomes {
    border-top: none;
  }
  .sol-type--ultra .sol-type-outcome,
  .sol-type--ultra .sol-type-outcome:not(:first-child),
  .sol-type--ultra .sol-type-outcome:last-child {
    border-right: none;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .sol-type--ultra .sol-type-outcome:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sol-type--ultra .sol-type-outcomes {
    border-top: none;
  }
  .sol-type-more__grid { grid-template-columns: 1fr 1fr; }
  .sol-hero__media { min-height: 380px; }
}
@media (max-width: 860px) {
  .sol-section, .sol-river, .sol-hero { padding-left: 0; padding-right: 0; }
  .sol-section { padding-top: 72px; padding-bottom: 72px; }
  .sol-mini { grid-template-columns: 1fr; }
  .sol-split { grid-template-columns: 1fr; }
  .sol-life { grid-template-columns: 1fr 1fr; }
  .sol-hero { padding-top: 48px; }
  .sol-compare {
    min-width: 560px;
    font-size: 12.5px;
  }
  .sol-compare th,
  .sol-compare td {
    padding: 12px 14px;
  }
  .sol-compare tbody th {
    min-width: 160px;
    max-width: 180px;
  }
  .sol-types__track-wrap {
    margin: 0 -20px;
    padding: 4px 20px 8px;
  }
  .sol-types__card {
    flex-basis: clamp(180px, 42vw, 220px);
  }
}
@media (max-width: 720px) {
  .sol-compare-summary {
    padding: 14px 16px;
  }
  .sol-compare-summary__text {
    font-size: 15px;
  }
  .sol-compare-tab {
    padding: 12px 14px;
  }
  .sol-compare-tab strong {
    font-size: 13px;
  }

  /* Compact comparison cards — capability + side-by-side values */
  .sol-compare__wrap {
    overflow: visible;
    box-shadow: none;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .sol-compare {
    min-width: 0;
    width: 100%;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
  }
  .sol-compare thead {
    display: none;
  }
  .sol-compare tbody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sol-compare__section {
    display: block;
    margin: 14px 0 2px;
  }
  .sol-compare__section:first-child {
    margin-top: 0;
  }
  .sol-compare__section th {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0 2px 6px;
    background: transparent !important;
    color: var(--muted) !important;
    font-size: 11px;
    letter-spacing: 0.08em;
    box-shadow: none;
    position: static !important;
  }
  .sol-compare__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "cap cap"
      "comp stash";
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }
  .sol-compare__row th,
  .sol-compare__row td {
    display: block;
    width: auto;
    max-width: none !important;
    min-width: 0 !important;
    position: static !important;
    left: auto !important;
    box-shadow: none !important;
    border-bottom: none;
    padding: 10px 12px;
  }
  .sol-compare__row th {
    grid-area: cap;
    background: #fff;
    font-size: 13px;
    font-weight: 750;
    padding: 11px 12px 8px;
    border-bottom: 1px solid rgba(200,194,186,0.4);
  }
  .sol-compare__row td {
    background: #fcfbf9;
    border-top: 1px solid rgba(200,194,186,0.35);
    font-size: 12.5px;
    line-height: 1.4;
  }
  .sol-compare__row td:not(.sol-compare__stash) {
    grid-area: comp;
    border-right: 1px solid rgba(200,194,186,0.35);
  }
  .sol-compare__row .sol-compare__stash {
    grid-area: stash;
    background: rgba(39,107,60,0.07) !important;
    box-shadow: none !important;
  }
  .sol-compare__row td::before {
    content: attr(data-label-short);
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .sol-compare__row .sol-compare__stash::before {
    color: var(--green);
  }
  .sol-compare__label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .sol-compare__icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }
  .sol-compare__icon svg {
    width: 13px;
    height: 13px;
  }
  .sol-compare__cell {
    gap: 8px;
  }
  .sol-compare__mark {
    width: 16px;
    height: 16px;
    margin-top: 0;
  }
  .sol-compare__mark svg {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 600px) {
  .sol-wrap { padding: 0 20px; }
  .sol-fit__grid,
  .sol-fit__grid--types { grid-template-columns: 1fr; }
  .sol-type-more__grid { grid-template-columns: 1fr; }
  .sol-type-included { justify-content: flex-start; }
  .sol-type-included__actions { justify-content: flex-start; }
  .sol-life { grid-template-columns: 1fr; }
  .sol-wins, .sol-pricing__list { grid-template-columns: 1fr; }
  .sol-hero__media { min-height: 280px; }
  .sol-hero__float--checkout { width: 56%; }
  .sol-hero__float--list { width: 70%; }
  .sol-final { padding-top: 80px; }
  .sol-final__grid { padding-bottom: 72px; }
  .sol-type-hero .sol-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sol-type-hero .sol-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .sol-types__track-wrap {
    margin: 0 -20px;
    padding: 4px 20px 10px;
  }
  .sol-types__card {
    flex-basis: min(72vw, 220px);
  }
  .sol-compare-summary__text {
    font-size: 14px;
    line-height: 1.5;
  }
}
