:root {
  --rh-color-brand-red: #ee0000;
  --rh-color-brand-red-dark: #a60000;
  --rh-color-text-primary: #151515;
  --rh-color-text-secondary: #6a6e73;
  --rh-color-surface: #ffffff;
  --rh-color-surface-subtle: #f2f2f2;
  --rh-color-border: #d2d2d2;
  --rh-font-display: "Red Hat Display", "RedHatDisplay", sans-serif;
  --rh-font-text: "Red Hat Text", "RedHatText", sans-serif;
  --max: 88rem;
  --pad-x: clamp(1rem, 2.5vw, 1.75rem);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--rh-font-text);
  color: var(--rh-color-text-primary);
  background:
    radial-gradient(1200px 500px at 10% -10%, #fce3e3 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--rh-color-surface-subtle) 100%);
  min-height: 100vh;
}
a { color: var(--rh-color-brand-red); text-decoration-thickness: 1px; }
a:hover { color: var(--rh-color-brand-red-dark); }
abbr[title] {
  text-decoration: underline dotted var(--rh-color-text-secondary);
  text-underline-offset: 2px;
  cursor: help;
}

/* ── Header / nav ─────────────────────────────────────────── */
header {
  border-bottom: 1px solid var(--rh-color-border);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 20;
}
.bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem var(--pad-x);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.bar-brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.rh-mark { height: 26px; width: auto; display: block; }
.bar .nav-toggle { margin-left: auto; }
.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--rh-color-border);
  background: #fff;
  border-radius: 3px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--rh-color-text-primary);
  border-radius: 1px;
  transition: transform .15s ease, opacity .15s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.bar nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 1.1rem;
  font-size: 0.9rem;
  min-width: 0;
}
.bar nav a {
  color: var(--rh-color-text-primary);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.bar nav a:hover { color: var(--rh-color-brand-red); }
.bar nav a[aria-current="page"] {
  color: var(--rh-color-brand-red);
  font-weight: 700;
  border-bottom: 2px solid var(--rh-color-brand-red);
  padding-bottom: 2px;
}
.nav-primary {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.1rem;
  min-width: 0;
}
.nav-more-panel { display: none; }
.nav-more { position: relative; flex-shrink: 0; }
.nav-more > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--rh-color-text-primary);
  white-space: nowrap;
  padding: 0.2rem 0;
}
.nav-more > summary::-webkit-details-marker { display: none; }
.nav-more > summary::after { content: " ▾"; font-size: 0.75em; color: var(--rh-color-text-secondary); }
.nav-more[open] > summary { color: var(--rh-color-brand-red); }
.nav-more-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  min-width: 13.5rem;
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(21,21,21,.12);
  padding: 0.45rem;
  z-index: 30;
}
.nav-more-panel a + a { border-top: 1px solid transparent; }
.nav-more[open] > .nav-more-panel {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-more-panel a {
  padding: 0.45rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-more-panel a:hover { background: var(--rh-color-surface-subtle); }
.nav-ext {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-left: 0.85rem;
  margin-left: auto;
  border-left: 1px solid var(--rh-color-border);
  flex-shrink: 0;
}

/* ── Main ─────────────────────────────────────────────────── */
main { max-width: var(--max); margin: 0 auto; padding: 2rem var(--pad-x) 3.5rem; }

/* ── Hero (index only) ────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
  margin-bottom: 2.5rem;
}
.hero-copy { min-width: 0; display: flex; flex-direction: column; }
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.hero h1 {
  font-family: var(--rh-font-display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  margin: 0.4rem 0 0.35rem;
  font-weight: 700;
  max-width: 22ch;
}
.hero .byline {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--rh-color-text-secondary);
  max-width: 46rem;
  line-height: 1.4;
}
.hero .byline a { font-weight: 600; }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--rh-color-text-secondary);
  max-width: 48rem;
  margin: 0 0 1.1rem;
  line-height: 1.5;
}
.hero .muted { max-width: 48rem; margin-bottom: 1.25rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rh-color-brand-red);
}
.tldr {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-left: 4px solid var(--rh-color-brand-red);
  border-radius: 0 6px 6px 0;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 48rem;
  color: var(--rh-color-text-primary);
}
.tldr strong { font-weight: 700; }
.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: auto;
}
.cta-primary { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.cta-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.cta-secondary .btn {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 3px;
  font-family: var(--rh-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rh-color-brand-red);
  color: #fff;
}
.btn-primary:hover { background: var(--rh-color-brand-red-dark); color: #fff; }
.btn-secondary {
  background: #fff;
  border-color: var(--rh-color-border);
  color: var(--rh-color-text-primary);
}
.btn-secondary:hover { border-color: var(--rh-color-brand-red); color: var(--rh-color-brand-red); }
.btn-devspaces {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(238, 0, 0, 0.35);
  outline: 2px solid var(--rh-color-brand-red);
  outline-offset: 2px;
  transform: scale(1.02);
}
.btn-devspaces img { height: 44px; width: auto; display: block; }
.btn-devspaces:hover { opacity: 0.95; outline-color: var(--rh-color-brand-red-dark); }
.cta-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rh-color-text-secondary);
}

/* ── Logo card (hero aside) ───────────────────────────────── */
.logo-card {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(21,21,21,.06);
  flex: 0 0 auto;
  min-height: 9.5rem;
}
.logo-card img.lw { width: min(100%, 280px); height: auto; display: block; }
.hero-aside .callout {
  flex: 1 1 auto;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.hero-aside .callout ul { flex: 1 1 auto; }
.hero-aside .callout ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--rh-color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.45;
}
.hero-aside .callout li + li { margin-top: 0.4rem; }

/* ── Sections ─────────────────────────────────────────────── */
section { margin: 2.75rem 0; }
h2 {
  font-family: var(--rh-font-display);
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}
.muted { color: var(--rh-color-text-secondary); margin: 0 0 1.25rem; max-width: 54rem; }
.muted.wide { max-width: 48rem; }

/* ── Page intro (guide / proof) ───────────────────────────── */
.page-intro {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rh-color-border);
}
.page-intro h1 {
  font-family: var(--rh-font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.page-intro .lead {
  font-size: 1.05rem;
  color: var(--rh-color-text-secondary);
  max-width: 52rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Stack / tiles ────────────────────────────────────────── */
.stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .stack { grid-template-columns: 1fr; } }
.tile {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}
.tile img { width: 48px; height: 48px; }
.tile h3 {
  font-family: var(--rh-font-display);
  font-size: 1.05rem;
  margin: 0;
}
.tile p { margin: 0; color: var(--rh-color-text-secondary); font-size: 0.95rem; flex: 1; }
.tile a { font-weight: 600; font-size: 0.9rem; }

/* ── Carousel ─────────────────────────────────────────────── */
.journey-carousel {
  position: relative;
  background: #0f0f10;
  border: 1px solid var(--rh-color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  max-width: none;
  width: 100%;
}
.journey-carousel:focus { outline: 2px solid var(--rh-color-brand-red); outline-offset: 3px; }
.journey-carousel.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  max-width: none;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  background: #0f0f10;
}
.journey-carousel.is-fullscreen .journey-viewport { flex: 1; min-height: 0; }
.journey-carousel.is-fullscreen .journey-slide img,
.journey-carousel.is-fullscreen .journey-slide .slide-cta {
  height: calc(100vh - 11rem);
  max-height: none;
  min-height: 0;
}
body.journey-fs-open { overflow: hidden; }
.journey-viewport {
  position: relative;
  min-height: min(62vh, 480px);
  background: #151515;
}
.journey-slide {
  display: none;
  flex-direction: column;
  height: 100%;
  margin: 0;
}
.journey-slide.is-active { display: flex; }
.journey-slide img {
  width: 100%;
  height: min(56vh, 440px);
  object-fit: contain;
  object-position: center top;
  background: #1a1a1a;
  display: block;
  cursor: zoom-in;
}
.journey-slide .slide-cta {
  min-height: min(56vh, 440px);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, #1c1c1c 0%, #2a1212 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #f5f5f5;
}
.journey-slide .slide-cta p { margin: 0; color: #d2d2d2; max-width: 28rem; }
.journey-slide figcaption {
  padding: 1rem 1.25rem 1.15rem;
  background: #fff;
  border-top: 1px solid var(--rh-color-border);
}
.journey-slide .slide-num {
  display: inline-block;
  font-family: var(--rh-font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rh-color-brand-red);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.journey-slide strong {
  display: block;
  color: var(--rh-color-text-primary);
  font-family: var(--rh-font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.journey-slide figcaption span.desc {
  color: var(--rh-color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
}
.journey-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-top: 1px solid var(--rh-color-border);
}
.journey-nav { display: flex; gap: 0.5rem; }
.journey-btn {
  appearance: none;
  border: 1px solid var(--rh-color-border);
  background: #fff;
  color: var(--rh-color-text-primary);
  font-family: var(--rh-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
}
.journey-btn:hover { border-color: var(--rh-color-brand-red); color: var(--rh-color-brand-red); }
.journey-btn:focus-visible { outline: 2px solid var(--rh-color-brand-red); outline-offset: 2px; }
.journey-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
}
.journey-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c8c8c8;
  cursor: pointer;
}
.journey-dot[aria-current="true"] {
  background: var(--rh-color-brand-red);
  transform: scale(1.25);
}
.journey-status {
  font-size: 0.8rem;
  color: var(--rh-color-text-secondary);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ── Callout ──────────────────────────────────────────────── */
.callout {
  background: #fff;
  border-left: 4px solid var(--rh-color-brand-red);
  border: 1px solid var(--rh-color-border);
  border-left-width: 4px;
  border-left-color: var(--rh-color-brand-red);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  max-width: 48rem;
}
.callout p { margin: 0.35rem 0; color: var(--rh-color-text-secondary); }
.demo-warn {
  border-left-color: #c9190b;
  background: #fff8f7;
  max-width: 52rem;
}
.demo-warn p { color: var(--rh-color-text-primary); }

/* ── Architecture ─────────────────────────────────────────── */
.arch {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--rh-color-border);
  background: #fff;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.steps li {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 3.2rem;
  position: relative;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--rh-color-brand-red);
  color: #fff;
  font-family: var(--rh-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

/* ── Credential reveal ────────────────────────────────────── */
.cred-reveal {
  margin: 0.75rem 0 1.25rem;
  max-width: 52rem;
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
}
.cred-reveal summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--rh-font-display);
  font-size: 0.95rem;
}
.cred-reveal[open] summary { margin-bottom: 0.5rem; }
.cred-reveal code { color: #a30000; }

/* ── Proof links ──────────────────────────────────────────── */
.proof-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 1rem 0 1.25rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  max-width: 48rem;
}
.proof-link p { margin: 0; color: var(--rh-color-text-secondary); font-size: 0.95rem; flex: 1 1 12rem; }

/* ── Badges ───────────────────────────────────────────────── */
.badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; align-items: center; }
.badges img { height: 22px; opacity: 0.95; }
.badges a img { height: 28px; }

/* ── Code ─────────────────────────────────────────────────── */
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--rh-color-surface-subtle);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
pre.codeblock {
  background: #151515;
  color: #f0f0f0;
  border-radius: 8px;
  padding: 1rem 1.15rem;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.45;
  max-width: 52rem;
}
pre.codeblock code { color: inherit; background: none; border: 0; padding: 0; }

/* ── Compare panes ────────────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare-pane {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  padding: 1.25rem;
}
.compare-pane h3 {
  font-family: var(--rh-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.compare-pane.risk { border-top: 3px solid #c9190b; }
.compare-pane.safe { border-top: 3px solid #3e8635; }
.compare-pane ul { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--rh-color-text-secondary); }
.compare-pane li { margin: 0.35rem 0; }

/* ── Tables ───────────────────────────────────────────────── */
table.gav {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}
table.gav th, table.gav td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--rh-color-border);
  vertical-align: top;
}
table.gav th {
  font-family: var(--rh-font-display);
  background: var(--rh-color-surface-subtle);
  font-weight: 700;
}
table.gav tr:last-child td { border-bottom: none; }

/* ── Tags ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}
.tag-risk { background: #faeae8; color: #a30000; }
.tag-ok { background: #e9f5e8; color: #1e4f18; }

/* ── Proof screenshots ────────────────────────────────────── */
.proof-shot {
  width: 100%;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  display: block;
  background: #151515;
}
.proof-caption {
  font-size: 0.9rem;
  color: var(--rh-color-text-secondary);
  margin: 0.6rem 0 0;
  max-width: 48rem;
}

/* ── Troubleshooting ──────────────────────────────────────── */
details.troubleshooting {
  margin-top: 1.5rem;
  max-width: 48rem;
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
}
details.troubleshooting summary {
  padding: 1rem 1.25rem;
  font-family: var(--rh-font-display);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
details.troubleshooting summary:hover { background: var(--rh-color-surface-subtle); }
details.troubleshooting > div {
  padding: 0 1.25rem 1rem;
  color: var(--rh-color-text-secondary);
  font-size: 0.95rem;
}
details.troubleshooting p { margin: 0.5rem 0; }

/* ── Glossary ─────────────────────────────────────────────── */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.term {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.term dt {
  font-family: var(--rh-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--rh-color-text-primary);
}
.term dd {
  margin: 0;
  color: var(--rh-color-text-secondary);
  font-size: 0.92rem;
}

/* ── Effort grid (Nexus+Tekton) ───────────────────────────── */
.effort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}
@media (max-width: 900px) { .effort-grid { grid-template-columns: 1fr; } }
.effort-card {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-radius: 8px;
  padding: 1rem 1.15rem;
}
.effort-card h3 {
  font-family: var(--rh-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.effort-card p { margin: 0; color: var(--rh-color-text-secondary); font-size: 0.95rem; }
.effort-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rh-color-brand-red);
  margin-bottom: 0.35rem;
}

/* ── Flow list ────────────────────────────────────────────── */
.flow-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
  max-width: 52rem;
}
.flow-list li {
  background: #fff;
  border: 1px solid var(--rh-color-border);
  border-left: 4px solid var(--rh-color-brand-red);
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1rem;
}
.flow-list strong {
  display: block;
  font-family: var(--rh-font-display);
  margin-bottom: 0.25rem;
}
.flow-list span { color: var(--rh-color-text-secondary); font-size: 0.95rem; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--rh-color-border);
  padding: 2rem 1.25rem;
  color: var(--rh-color-text-secondary);
  font-size: 0.85rem;
}
footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}
footer .inner p { margin: 0; }
footer .foot-sep { color: var(--rh-color-border); }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .bar { flex-wrap: wrap; }
  .bar nav {
    display: none;
    width: 100%;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding: 0.35rem 0 0.5rem;
    border-top: 1px solid var(--rh-color-border);
    font-size: 0.95rem;
  }
  .bar nav.is-open { display: flex; }
  .nav-primary, .nav-ext {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
  }
  .nav-more { border: 0; width: 100%; }
  .nav-more > summary { display: none; }
  details.nav-more > .nav-more-panel,
  details.nav-more:not([open]) > .nav-more-panel {
    display: flex !important;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    flex-direction: column;
    gap: 0.1rem;
  }
  .nav-ext {
    border-left: 0;
    border-top: 1px solid var(--rh-color-border);
    margin: 0.35rem 0 0;
    padding: 0.45rem 0 0;
  }
  .bar nav a { padding: 0.55rem 0.15rem; white-space: normal; }
  .bar nav a[aria-current="page"] { border-bottom: 0; padding-bottom: 0.55rem; }
  .hero { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 640px) {
  .journey-status { display: none; }
  .journey-viewport { min-height: 320px; }
  .journey-slide img, .journey-slide .slide-cta { height: auto; min-height: 240px; }
}
@media (max-width: 560px) {
  .cta-primary, .cta-secondary { width: 100%; }
  .cta-secondary .btn { flex: 1 1 auto; justify-content: center; }
  .btn-devspaces { width: 100%; justify-content: center; }
  .btn-devspaces img { height: 40px; width: auto; max-width: 100%; }
}
