/* ==========================================================================
   ok be · surface-responsive-2ff43b.css
   Mobile-first mobile-canvas styling. All classes use frame43b20- prefix.
   Palette: #BF360C / #FFA500 / #FFBF00 / #1C2833
   Direction: humanist headings + clean body, round buttons + square cards,
   grouped cover cards, fact-summary-then-expand rhythm, short zone
   transitions, compact dual-button CTA group.
   ========================================================================== */

:root {
  --frame43b20-ink: #1C2833;
  --frame43b20-ink-soft: #25323f;
  --frame43b20-ink-raise: #2E3D4D;
  --frame43b20-clay: #BF360C;
  --frame43b20-flame: #FFA500;
  --frame43b20-amber: #FFBF00;
  --frame43b20-paper: #FFF6E2;
  --frame43b20-paper-dim: #F4E4BD;
  --frame43b20-line: rgba(255, 191, 0, 0.22);
  --frame43b20-line-strong: rgba(255, 191, 0, 0.45);
  --frame43b20-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
  --frame43b20-shadow-soft: 0 6px 14px rgba(0, 0, 0, 0.28);
  --frame43b20-radius-btn: 999px;
  --frame43b20-radius-card: 4px;
  --frame43b20-radius-block: 14px;
  --frame43b20-gap: 14px;
  --frame43b20-pad: 16px;
  --frame43b20-max: 430px;
  --frame43b20-header-h: 64px;
  --frame43b20-bottomnav-h: 64px;
  --frame43b20-font-head: "HumanistSans", "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  --frame43b20-font-body: "Segoe UI", "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--frame43b20-font-body);
  background: var(--frame43b20-ink);
  color: var(--frame43b20-paper);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

a {
  color: var(--frame43b20-amber);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover,
a:focus {
  color: var(--frame43b20-flame);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--frame43b20-amber);
  outline-offset: 2px;
  border-radius: 4px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--frame43b20-font-head);
  color: var(--frame43b20-paper);
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 1.55rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.25rem;
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 0.9em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.35em;
}

/* Mobile-canvas frame: page stays in a 430px column on wide screens. */
.frame43b20-canvas {
  position: relative;
  max-width: var(--frame43b20-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 165, 0, 0.10), transparent 38%),
    radial-gradient(circle at 88% 4%, rgba(191, 54, 12, 0.16), transparent 42%),
    linear-gradient(180deg, #1C2833 0%, #1B2530 60%, #161E28 100%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.frame43b20-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--frame43b20-amber);
  color: var(--frame43b20-ink);
  padding: 8px 14px;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}

.frame43b20-skip:focus {
  left: 0;
}

/* ==========================================================================
   Top header — asymmetric brand header
   ========================================================================== */
.frame43b20-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: var(--frame43b20-header-h);
  padding: 0 var(--frame43b20-pad);
  background: linear-gradient(100deg, rgba(28, 40, 51, 0.97) 0%, rgba(191, 54, 12, 0.32) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--frame43b20-line);
}

.frame43b20-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.frame43b20-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--frame43b20-line-strong);
  box-shadow: 0 2px 0 rgba(255, 165, 0, 0.4), var(--frame43b20-shadow-soft);
  flex-shrink: 0;
}

.frame43b20-brand-name {
  font-family: var(--frame43b20-font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.frame43b20-brand-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frame43b20-flame);
  margin-top: 2px;
}

.frame43b20-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.frame43b20-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--frame43b20-radius-btn);
  font-family: var(--frame43b20-font-head);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1;
  transition: transform 0.14s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.frame43b20-btn:active {
  transform: translateY(1px) scale(0.98);
}

.frame43b20-btn-primary {
  background: linear-gradient(180deg, var(--frame43b20-amber) 0%, var(--frame43b20-flame) 100%);
  color: var(--frame43b20-ink);
  box-shadow: 0 4px 0 rgba(191, 54, 12, 0.55), var(--frame43b20-shadow-soft);
}

.frame43b20-btn-primary:hover,
.frame43b20-btn-primary:focus {
  color: var(--frame43b20-ink);
  filter: brightness(1.05);
}

.frame43b20-btn-ghost {
  background: transparent;
  color: var(--frame43b20-paper);
  border: 1px solid var(--frame43b20-line-strong);
}

.frame43b20-btn-ghost:hover,
.frame43b20-btn-ghost:focus {
  color: var(--frame43b20-amber);
  border-color: var(--frame43b20-amber);
}

.frame43b20-btn-block {
  display: flex;
  width: 100%;
}

.frame43b20-btn-tight {
  padding: 9px 12px;
  font-size: 0.82rem;
}

.frame43b20-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--frame43b20-radius-btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 191, 0, 0.12);
  border: 1px solid var(--frame43b20-line);
  color: var(--frame43b20-amber);
  transition: transform 0.14s ease, background 0.18s ease;
}

.frame43b20-icon-btn:active {
  transform: scale(0.95);
}

.frame43b20-icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ==========================================================================
   Full-height menu layer
   ========================================================================== */
.frame43b20-menu-mask {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 95;
}

.frame43b20-menu-mask.frame43b20-visible {
  opacity: 1;
  pointer-events: auto;
}

.frame43b20-menu-layer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86%, 360px);
  height: 100vh;
  background: linear-gradient(180deg, #1F2C39 0%, #18222C 100%);
  border-left: 1px solid var(--frame43b20-line-strong);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.frame43b20-menu-layer.frame43b20-open {
  transform: translateX(0);
}

.frame43b20-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--frame43b20-pad);
  border-bottom: 1px solid var(--frame43b20-line);
}

.frame43b20-menu-title {
  font-family: var(--frame43b20-font-head);
  font-size: 1.05rem;
  color: var(--frame43b20-amber);
  margin: 0;
  letter-spacing: 0.02em;
}

.frame43b20-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.14);
  color: var(--frame43b20-paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.frame43b20-menu-body {
  padding: 12px var(--frame43b20-pad) 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.frame43b20-menu-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frame43b20-flame);
  margin: 14px 6px 4px;
}

.frame43b20-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  color: var(--frame43b20-paper);
  font-family: var(--frame43b20-font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.16s ease, transform 0.14s ease;
}

.frame43b20-menu-link:hover,
.frame43b20-menu-link:focus {
  background: rgba(255, 191, 0, 0.10);
  color: var(--frame43b20-amber);
  transform: translateX(2px);
}

.frame43b20-menu-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--frame43b20-amber);
}

.frame43b20-menu-cta {
  display: flex;
  gap: 8px;
  margin: 18px 4px 4px;
}

.frame43b20-menu-cta .frame43b20-btn {
  flex: 1;
}

/* ==========================================================================
   Main structural sections
   ========================================================================== */
main.frame43b20-main {
  display: block;
  padding: 12px var(--frame43b20-pad) calc(var(--frame43b20-bottomnav-h) + 28px);
}

.frame43b20-section {
  margin: 22px 0;
}

.frame43b20-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.frame43b20-section-head h2 {
  margin: 0;
  position: relative;
  padding-left: 12px;
}

.frame43b20-section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--frame43b20-amber), var(--frame43b20-clay));
}

.frame43b20-section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame43b20-flame);
}

/* ==========================================================================
   Hero carousel
   ========================================================================== */
.frame43b20-carousel {
  position: relative;
  border-radius: var(--frame43b20-radius-block);
  overflow: hidden;
  background: var(--frame43b20-ink-soft);
  box-shadow: var(--frame43b20-shadow);
  margin-top: 6px;
}

.frame43b20-carousel-viewport {
  overflow: hidden;
}

.frame43b20-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.frame43b20-slide {
  min-width: 100%;
  position: relative;
  display: block;
}

.frame43b20-slide-img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
}

.frame43b20-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 40, 51, 0.10) 0%, rgba(28, 40, 51, 0.55) 55%, rgba(28, 40, 51, 0.92) 100%);
}

.frame43b20-slide-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 14px;
  color: var(--frame43b20-paper);
}

.frame43b20-slide-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frame43b20-ink);
  background: var(--frame43b20-amber);
  padding: 3px 8px;
  border-radius: var(--frame43b20-radius-btn);
  font-weight: 700;
  margin-bottom: 6px;
}

.frame43b20-slide-title {
  font-family: var(--frame43b20-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.2;
}

.frame43b20-slide-text {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: var(--frame43b20-paper-dim);
  line-height: 1.45;
}

.frame43b20-slide-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.frame43b20-carousel-arrows {
  position: absolute;
  top: 50%;
  left: 6px;
  right: 6px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.frame43b20-carousel-arrow {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(28, 40, 51, 0.65);
  color: var(--frame43b20-amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame43b20-line);
}

.frame43b20-carousel-arrow svg {
  width: 16px;
  height: 16px;
}

.frame43b20-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.frame43b20-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 246, 226, 0.5);
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}

.frame43b20-dot.frame43b20-active {
  width: 18px;
  border-radius: 3px;
  background: var(--frame43b20-amber);
}

/* ==========================================================================
   Category quick chips
   ========================================================================== */
.frame43b20-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  margin: 0 0 6px;
  scrollbar-width: none;
}

.frame43b20-chips::-webkit-scrollbar {
  display: none;
}

.frame43b20-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: var(--frame43b20-radius-btn);
  background: rgba(255, 191, 0, 0.08);
  border: 1px solid var(--frame43b20-line);
  color: var(--frame43b20-paper-dim);
  font-size: 0.8rem;
  font-family: var(--frame43b20-font-head);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease;
}

.frame43b20-chip:active {
  transform: scale(0.96);
}

.frame43b20-chip:hover {
  color: var(--frame43b20-amber);
  background: rgba(255, 191, 0, 0.16);
}

/* ==========================================================================
   Game grid — grouped cover cards
   ========================================================================== */
.frame43b20-game-block {
  margin: 26px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.frame43b20-game-block.frame43b20-visible {
  opacity: 1;
  transform: translateY(0);
}

.frame43b20-game-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--frame43b20-line);
}

.frame43b20-game-block-head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.frame43b20-game-block-note {
  font-size: 0.72rem;
  color: var(--frame43b20-flame);
  letter-spacing: 0.04em;
}

.frame43b20-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.frame43b20-game-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--frame43b20-ink-soft);
  border-radius: var(--frame43b20-radius-card);
  overflow: hidden;
  border: 1px solid var(--frame43b20-line);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.18s ease;
  text-align: center;
  cursor: pointer;
}

.frame43b20-game-card:hover,
.frame43b20-game-card:focus {
  transform: translateY(-2px);
  border-color: var(--frame43b20-amber);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.frame43b20-game-card:active {
  transform: translateY(0) scale(0.98);
}

.frame43b20-game-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0F1620;
  overflow: hidden;
}

.frame43b20-game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame43b20-game-cover-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--frame43b20-clay);
  color: var(--frame43b20-paper);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
}

.frame43b20-game-name {
  font-size: 0.68rem;
  line-height: 1.2;
  padding: 6px 4px 8px;
  color: var(--frame43b20-paper);
  font-family: var(--frame43b20-font-head);
  font-weight: 600;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 191, 0, 0.04), rgba(0, 0, 0, 0.15));
}

/* On 375px+ allow a fifth column to keep grids tight. */
@media (min-width: 375px) {
  .frame43b20-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
  }
  .frame43b20-game-name {
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   Content modules — fact summary then expand
   ========================================================================== */
.frame43b20-card {
  background: var(--frame43b20-ink-soft);
  border: 1px solid var(--frame43b20-line);
  border-radius: var(--frame43b20-radius-block);
  padding: 16px;
  margin: 12px 0;
  box-shadow: var(--frame43b20-shadow-soft);
}

.frame43b20-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.frame43b20-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--frame43b20-amber), var(--frame43b20-clay));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--frame43b20-ink);
}

.frame43b20-card-icon svg {
  width: 20px;
  height: 20px;
}

.frame43b20-card-title {
  margin: 0;
  font-size: 1.05rem;
}

.frame43b20-lead {
  margin: 0 0 10px;
  color: var(--frame43b20-paper);
  font-weight: 600;
}

.frame43b20-card p {
  font-size: 0.9rem;
  color: var(--frame43b20-paper-dim);
}

.frame43b20-card ul,
.frame43b20-card ol {
  font-size: 0.9rem;
  color: var(--frame43b20-paper-dim);
}

/* Compact dual-button CTA group */
.frame43b20-cta-pair {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.frame43b20-cta-pair .frame43b20-btn {
  flex: 1 1 140px;
}

/* Promo list (Promotions module, extended footer) */
.frame43b20-promo-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--frame43b20-line);
}

.frame43b20-promo-row:first-of-type {
  border-top: none;
}

.frame43b20-promo-tag {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 165, 0, 0.14);
  border: 1px solid var(--frame43b20-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--frame43b20-amber);
}

.frame43b20-promo-tag svg {
  width: 20px;
  height: 20px;
}

.frame43b20-promo-text {
  flex: 1 1 auto;
  min-width: 0;
}

.frame43b20-promo-text h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.frame43b20-promo-text p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--frame43b20-paper-dim);
}

.frame43b20-promo-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--frame43b20-amber);
  font-family: var(--frame43b20-font-head);
}

/* Popular Play Styles comparison strip */
.frame43b20-style-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--frame43b20-line);
}

.frame43b20-style-row:first-of-type {
  border-top: none;
}

.frame43b20-style-label {
  font-family: var(--frame43b20-font-head);
  font-weight: 700;
  color: var(--frame43b20-amber);
  font-size: 0.86rem;
  padding-top: 2px;
}

.frame43b20-style-body {
  font-size: 0.86rem;
  color: var(--frame43b20-paper-dim);
}

.frame43b20-style-body strong {
  color: var(--frame43b20-paper);
}

/* Pros / Limitations two-up */
.frame43b20-pair-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.frame43b20-pair-cell {
  background: rgba(255, 191, 0, 0.05);
  border: 1px solid var(--frame43b20-line);
  border-radius: 10px;
  padding: 12px;
}

.frame43b20-pair-cell h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.frame43b20-pair-cell .frame43b20-pair-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--frame43b20-amber);
  flex-shrink: 0;
}

.frame43b20-pair-cell.frame43b20-pair-dim .frame43b20-pair-dot {
  background: var(--frame43b20-clay);
}

.frame43b20-pair-cell ul {
  margin: 0;
  font-size: 0.85rem;
  color: var(--frame43b20-paper-dim);
}

/* Comparison table */
.frame43b20-compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frame43b20-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 191, 0, 0.04);
  border: 1px solid var(--frame43b20-line);
  border-radius: 8px;
}

.frame43b20-compare-row span:first-child {
  font-family: var(--frame43b20-font-head);
  color: var(--frame43b20-paper);
  font-weight: 600;
  font-size: 0.85rem;
}

.frame43b20-compare-row span:last-child {
  color: var(--frame43b20-paper-dim);
  font-size: 0.85rem;
}

/* Inline content link inside paragraphs */
.frame43b20-body-link {
  color: var(--frame43b20-amber);
  font-weight: 700;
  border-bottom: 1px dashed var(--frame43b20-line-strong);
}

.frame43b20-body-link:hover {
  color: var(--frame43b20-flame);
  border-bottom-color: var(--frame43b20-flame);
}

/* ==========================================================================
   Extended footer (homepage only)
   ========================================================================== */
.frame43b20-ext-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--frame43b20-line-strong);
}

.frame43b20-ext-foot-block {
  margin-bottom: 22px;
}

.frame43b20-ext-foot-block h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.frame43b20-ext-foot-block h3 svg {
  width: 18px;
  height: 18px;
  color: var(--frame43b20-amber);
}

.frame43b20-brand-blurb {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.frame43b20-brand-blurb img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--frame43b20-line-strong);
}

.frame43b20-brand-blurb p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--frame43b20-paper-dim);
}

.frame43b20-ext-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.frame43b20-ext-promo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 191, 0, 0.06);
  border: 1px solid var(--frame43b20-line);
}

.frame43b20-ext-promo strong {
  font-family: var(--frame43b20-font-head);
  font-size: 0.82rem;
  color: var(--frame43b20-amber);
}

.frame43b20-ext-promo span {
  font-size: 0.72rem;
  color: var(--frame43b20-paper-dim);
}

.frame43b20-directory {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.frame43b20-directory a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--frame43b20-line);
  color: var(--frame43b20-paper);
  font-size: 0.88rem;
}

.frame43b20-directory a:last-child {
  border-bottom: none;
}

.frame43b20-directory a svg {
  width: 14px;
  height: 14px;
  color: var(--frame43b20-flame);
  flex-shrink: 0;
}

.frame43b20-directory a:hover {
  color: var(--frame43b20-amber);
}

.frame43b20-disclaimer {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(191, 54, 12, 0.10);
  border: 1px solid rgba(191, 54, 12, 0.4);
  font-size: 0.76rem;
  color: var(--frame43b20-paper-dim);
  line-height: 1.5;
}

.frame43b20-disclaimer strong {
  color: var(--frame43b20-amber);
  font-family: var(--frame43b20-font-head);
}

/* ==========================================================================
   Common footer (copyright)
   ========================================================================== */
.frame43b20-footer-copy {
  margin-top: 22px;
  padding: 14px var(--frame43b20-pad);
  text-align: center;
  font-size: 0.74rem;
  color: var(--frame43b20-paper-dim);
  border-top: 1px solid var(--frame43b20-line);
}

/* ==========================================================================
   Bottom segmented action bar (5 roles)
   ========================================================================== */
.frame43b20-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--frame43b20-max);
  height: var(--frame43b20-bottomnav-h);
  background: linear-gradient(180deg, rgba(28, 40, 51, 0.96), rgba(20, 28, 36, 0.98));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--frame43b20-line-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  z-index: 80;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.35);
}

.frame43b20-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px 8px;
  color: var(--frame43b20-paper-dim);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  font-family: var(--frame43b20-font-head);
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
}

.frame43b20-nav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.frame43b20-nav-item:active {
  transform: scale(0.94);
}

.frame43b20-nav-item:hover {
  color: var(--frame43b20-amber);
}

.frame43b20-nav-item.frame43b20-active {
  color: var(--frame43b20-amber);
}

.frame43b20-nav-item.frame43b20-active svg {
  transform: translateY(-3px);
  filter: drop-shadow(0 4px 6px rgba(255, 165, 0, 0.4));
}

.frame43b20-nav-item.frame43b20-active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--frame43b20-amber);
}

.frame43b20-nav-promo {
  position: relative;
  color: var(--frame43b20-amber);
}

.frame43b20-nav-promo .frame43b20-nav-bubble {
  position: absolute;
  top: 4px;
  right: 50%;
  margin-right: -22px;
  background: var(--frame43b20-clay);
  color: var(--frame43b20-paper);
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  padding: 1px 5px;
  border-radius: 6px;
  font-weight: 700;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.frame43b20-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frame43b20-ink);
  background: var(--frame43b20-amber);
  padding: 3px 9px;
  border-radius: var(--frame43b20-radius-btn);
  font-weight: 700;
  margin-bottom: 6px;
}

.frame43b20-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Help page patterns: timelines, answer rails, and practical checklists. */
.frame43b20-help-main {
  padding-top: 18px;
}
.frame43b20-help-hero {
  padding: 18px 2px 12px;
  border-bottom: 1px solid var(--frame43b20-line-strong);
}
.frame43b20-help-hero h1 {
  margin-bottom: 10px;
}
.frame43b20-help-hero p {
  color: var(--frame43b20-paper-dim);
}
.frame43b20-answer-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}
.frame43b20-answer-item {
  padding: 13px 14px;
  border-left: 3px solid var(--frame43b20-amber);
  background: rgba(255,191,0,.06);
}
.frame43b20-answer-item dt {
  color: var(--frame43b20-paper);
  font-family: var(--frame43b20-font-head);
  font-weight: 700;
  margin-bottom: 4px;
}
.frame43b20-answer-item dd {
  margin: 0;
  color: var(--frame43b20-paper-dim);
  font-size: .9rem;
}
.frame43b20-step-rail {
  display: grid;
  gap: 0;
  margin: 12px 0;
}
.frame43b20-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  padding: 0 0 18px;
}
.frame43b20-step:last-child { padding-bottom: 0; }
.frame43b20-step::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 31px;
  bottom: 0;
  border-left: 1px dashed var(--frame43b20-line-strong);
}
.frame43b20-step:last-child::before { display: none; }
.frame43b20-step-no {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--frame43b20-amber);
  color: var(--frame43b20-ink);
  font-family: var(--frame43b20-font-head);
  font-weight: 800;
}
.frame43b20-step h3 { margin: 2px 0 4px; font-size: .98rem; }
.frame43b20-step p { margin: 0; }
.frame43b20-note-band {
  padding: 13px 14px;
  border: 1px solid rgba(191,54,12,.55);
  background: rgba(191,54,12,.13);
  border-radius: 10px;
  color: var(--frame43b20-paper-dim);
}
.frame43b20-note-band strong { color: var(--frame43b20-amber); }
.frame43b20-scenario-grid {
  display: grid;
  gap: 10px;
}
.frame43b20-scenario {
  padding: 12px;
  border-top: 2px solid var(--frame43b20-flame);
  background: rgba(28,40,51,.72);
}
.frame43b20-scenario h3 { margin: 0 0 5px; font-size: .98rem; }
.frame43b20-scenario p { margin: 0; }
.frame43b20-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.frame43b20-link-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--frame43b20-line-strong);
  border-radius: var(--frame43b20-radius-btn);
  font-family: var(--frame43b20-font-head);
  font-weight: 700;
  font-size: .82rem;
}
@media (min-width: 375px) {
  .frame43b20-scenario-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
