/* ==========================================================================
   365-casino-login.homes - shell-native-492287.css
   Mobile-first stylesheet tuned for a 320-430px phone canvas that stays
   centered on wide screens. Design language: "lobby registry" - deep navy
   surface, hairline strokes, restrained radii, ember-orange action colour.
   All classes and custom properties carry the frame92287- prefix.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --frame92287-ink: #1B263B;            /* base surface */
  --frame92287-ink-deep: #141D30;       /* page backdrop outside canvas */
  --frame92287-ink-raised: #22304A;     /* raised panels */
  --frame92287-ink-high: #2B3B59;       /* hover / pressed surface */
  --frame92287-mist: #D3D3D3;           /* primary text */
  --frame92287-muted: #97A3B6;          /* secondary text */
  --frame92287-ember: #E65100;          /* action colour */
  --frame92287-ember-bright: #FF7A21;   /* action hover */
  --frame92287-ember-wash: rgba(230, 81, 0, 0.16);
  --frame92287-line: rgba(211, 211, 211, 0.16);
  --frame92287-line-strong: rgba(211, 211, 211, 0.32);
  --frame92287-ok: #6FBF8E;
  --frame92287-font-head: "Segoe UI", "Helvetica Neue", "Arial Nova", system-ui, sans-serif;
  --frame92287-font-body: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --frame92287-font-mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", monospace;
  --frame92287-canvas: 430px;           /* max phone-canvas width */
  --frame92287-radius: 8px;
  --frame92287-radius-lg: 12px;
  --frame92287-top-h: 56px;
  --frame92287-bnav-h: 60px;
  --frame92287-gutter: 14px;
  --frame92287-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--frame92287-ink-deep);
  color: var(--frame92287-mist);
  font-family: var(--frame92287-font-body);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

a {
  color: var(--frame92287-ember-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

::selection {
  background: var(--frame92287-ember);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--frame92287-ember-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

.frame92287-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--frame92287-ember);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 0 0 var(--frame92287-radius) 0;
}

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

/* --------------------------------------------------------------------------
   3. Phone canvas shell
   -------------------------------------------------------------------------- */
.frame92287-canvas {
  width: 100%;
  max-width: 430px;                     /* hard canvas cap */
  margin-inline: auto;
  background: var(--frame92287-ink);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 0 1px var(--frame92287-line);
}

.frame92287-main {
  padding: calc(var(--frame92287-top-h) + 10px) var(--frame92287-gutter) calc(var(--frame92287-bnav-h) + 26px);
  display: block;
}

/* --------------------------------------------------------------------------
   4. Top action band (minimal title band)
   -------------------------------------------------------------------------- */
.frame92287-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;                     /* canvas-aligned fixed bar */
  height: var(--frame92287-top-h);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: rgba(27, 38, 59, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--frame92287-line-strong);
}

.frame92287-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin-right: auto;
}

.frame92287-brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid var(--frame92287-line-strong);
  object-fit: cover;
  flex: none;
  background: var(--frame92287-ink-raised);
}

.frame92287-brand-name {
  font-family: var(--frame92287-font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frame92287-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}

.frame92287-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--frame92287-radius);
  background: var(--frame92287-ember);
  color: #fff;
  font-family: var(--frame92287-font-head);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--frame92287-ember);
  transition: background 0.18s var(--frame92287-ease), transform 0.12s var(--frame92287-ease);
}

.frame92287-btn-solid:hover,
.frame92287-btn-solid:focus-visible {
  background: var(--frame92287-ember-bright);
  text-decoration: none;
}

.frame92287-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: var(--frame92287-radius);
  background: transparent;
  color: var(--frame92287-mist);
  font-family: var(--frame92287-font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--frame92287-line-strong);
  transition: border-color 0.18s var(--frame92287-ease), color 0.18s var(--frame92287-ease), transform 0.12s var(--frame92287-ease);
}

.frame92287-btn-ghost:hover,
.frame92287-btn-ghost:focus-visible {
  border-color: var(--frame92287-ember-bright);
  color: #fff;
  text-decoration: none;
}

.frame92287-btn-solid:active,
.frame92287-btn-ghost:active {
  transform: translateY(1px) scale(0.98);
}

.frame92287-burger {
  width: 38px;
  height: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius);
  flex: none;
}

.frame92287-burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--frame92287-mist);
  transition: transform 0.22s var(--frame92287-ease), opacity 0.18s linear;
}

.frame92287-burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.frame92287-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.frame92287-burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. Side drawer menu
   -------------------------------------------------------------------------- */
.frame92287-scrim {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(10, 15, 26, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s var(--frame92287-ease), visibility 0.24s;
}

.frame92287-scrim.is-on {
  opacity: 1;
  visibility: visible;
}

.frame92287-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: min(82vw, 316px);
  background: var(--frame92287-ink-raised);
  border-right: 1px solid var(--frame92287-line-strong);
  transform: translateX(-102%);
  transition: transform 0.28s var(--frame92287-ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 18px 16px calc(var(--frame92287-bnav-h) + 18px);
}

.frame92287-drawer.is-open {
  transform: translateX(0);
}

.frame92287-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--frame92287-line);
  margin-bottom: 14px;
}

.frame92287-drawer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--frame92287-line-strong);
  object-fit: cover;
}

.frame92287-drawer-brand strong {
  display: block;
  font-family: var(--frame92287-font-head);
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}

.frame92287-drawer-brand small {
  display: block;
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  color: var(--frame92287-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame92287-drawer-group {
  margin-bottom: 16px;
}

.frame92287-drawer-tag {
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame92287-muted);
  padding: 0 10px 6px;
}

.frame92287-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  margin: 0 0 2px;
  border-radius: var(--frame92287-radius);
  border: 1px solid transparent;
  color: var(--frame92287-mist);
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.frame92287-drawer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: var(--frame92287-ember);
  transition: height 0.2s var(--frame92287-ease);
}

.frame92287-drawer-link:hover,
.frame92287-drawer-link:focus-visible {
  background: var(--frame92287-ink-high);
  text-decoration: none;
}

.frame92287-drawer-link.is-current {
  background: var(--frame92287-ember-wash);
  border-color: rgba(230, 81, 0, 0.35);
  color: #fff;
}

.frame92287-drawer-link.is-current::before {
  height: 60%;
}

.frame92287-drawer-link em {
  font-style: normal;
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  color: var(--frame92287-muted);
  letter-spacing: 0.06em;
}

.frame92287-drawer-cta {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--frame92287-line);
}

.frame92287-drawer-cta .frame92287-btn-solid {
  width: 100%;
  min-height: 44px;
}

/* --------------------------------------------------------------------------
   6. Promo carousel
   -------------------------------------------------------------------------- */
.frame92287-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 268px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius-lg);
  overflow: hidden;
  background: var(--frame92287-ink-raised);
}

.frame92287-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6%);
  transition: opacity 0.45s var(--frame92287-ease), transform 0.45s var(--frame92287-ease), visibility 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.frame92287-slide.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.frame92287-slide-media {
  position: absolute;
  inset: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.frame92287-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame92287-slide-copy {
  position: relative;
  z-index: 3;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, rgba(20, 29, 48, 0) 0%, rgba(20, 29, 48, 0.82) 46%, rgba(20, 29, 48, 0.96) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform 0.4s var(--frame92287-ease), opacity 0.4s var(--frame92287-ease);
}

.frame92287-slide.is-on .frame92287-slide-copy {
  transform: translateY(0);
  opacity: 1;
}

.frame92287-kicker {
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--frame92287-ember-bright);
}

.frame92287-slide-copy strong {
  font-family: var(--frame92287-font-head);
  font-size: 16.5px;
  line-height: 1.28;
  color: #fff;
  letter-spacing: 0.01em;
}

.frame92287-slide-copy p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--frame92287-mist);
  max-width: 34ch;
}

.frame92287-slide-copy .frame92287-btn-solid {
  align-self: flex-start;
  margin-top: 4px;
}

.frame92287-dots {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  gap: 6px;
}

.frame92287-dot {
  width: 22px;
  height: 6px;
  border-radius: 3px;
  background: rgba(211, 211, 211, 0.35);
  border: 1px solid rgba(211, 211, 211, 0.25);
  transition: background 0.2s var(--frame92287-ease);
}

.frame92287-dot.is-on {
  background: var(--frame92287-ember);
  border-color: var(--frame92287-ember);
}

.frame92287-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 34px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(20, 29, 48, 0.55);
  border: 1px solid var(--frame92287-line-strong);
}

.frame92287-arrow-prev {
  left: 0;
  border-left: 0;
  border-radius: 0 var(--frame92287-radius) var(--frame92287-radius) 0;
}

.frame92287-arrow-next {
  right: 0;
  border-right: 0;
  border-radius: var(--frame92287-radius) 0 0 var(--frame92287-radius);
}

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

.frame92287-arrow:hover {
  background: rgba(230, 81, 0, 0.72);
}

/* --------------------------------------------------------------------------
   7. Intro block
   -------------------------------------------------------------------------- */
.frame92287-intro {
  padding: 20px 0 6px;
}

.frame92287-intro .frame92287-kicker {
  display: block;
  margin-bottom: 8px;
}

.frame92287-intro h1 {
  font-family: var(--frame92287-font-head);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 10px;
}

.frame92287-intro .frame92287-lead {
  font-size: 14.5px;
  color: var(--frame92287-mist);
}

.frame92287-intro-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.frame92287-intro-cta .frame92287-btn-solid,
.frame92287-intro-cta .frame92287-btn-ghost {
  flex: 1 1 auto;
  min-height: 44px;
  min-width: 140px;
}

/* --------------------------------------------------------------------------
   8. Category quick chips
   -------------------------------------------------------------------------- */
.frame92287-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.frame92287-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 13px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: 999px;
  font-family: var(--frame92287-font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--frame92287-mist);
  background: var(--frame92287-ink-raised);
}

.frame92287-chip i {
  font-style: normal;
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  color: var(--frame92287-ember-bright);
}

.frame92287-chip:hover {
  border-color: var(--frame92287-ember);
  color: #fff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   9. Lobby category blocks and tile grid
   -------------------------------------------------------------------------- */
.frame92287-cat {
  margin-bottom: 26px;
  scroll-margin-top: calc(var(--frame92287-top-h) + 8px);
}

.frame92287-cat-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--frame92287-line);
  margin-bottom: 10px;
}

.frame92287-cat-index {
  font-family: var(--frame92287-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--frame92287-ember-bright);
  letter-spacing: 0.1em;
  flex: none;
}

.frame92287-cat h2 {
  font-family: var(--frame92287-font-head);
  font-size: 18.5px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.frame92287-cat-count {
  margin-left: auto;
  flex: none;
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  color: var(--frame92287-muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.frame92287-cat-note {
  font-size: 13px;
  color: var(--frame92287-muted);
  margin-bottom: 12px;
}

.frame92287-cat-note a {
  color: var(--frame92287-ember-bright);
}

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

.frame92287-tile-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 5px 7px;
  border: 1px solid var(--frame92287-line);
  border-radius: var(--frame92287-radius);
  background: var(--frame92287-ink-raised);
  text-align: center;
  transition: transform 0.16s var(--frame92287-ease), border-color 0.16s var(--frame92287-ease), background 0.16s var(--frame92287-ease);
}

.frame92287-tile-btn:hover {
  border-color: var(--frame92287-ember);
  background: var(--frame92287-ink-high);
  transform: translateY(-2px);          /* light card lift */
}

.frame92287-tile-btn:active {
  transform: translateY(0) scale(0.97);
}

.frame92287-tile-art {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--frame92287-line);
  background: var(--frame92287-ink);
}

.frame92287-tile-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame92287-tile-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--frame92287-font-head);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--frame92287-mist);
  min-height: 2.6em;
  overflow-wrap: anywhere;
}

.frame92287-tile-btn:hover .frame92287-tile-name {
  color: #fff;
}

/* --------------------------------------------------------------------------
   10. Content modules (scenario-branch rhythm)
   -------------------------------------------------------------------------- */
.frame92287-mod {
  margin: 30px 0;
  padding-top: 18px;
  border-top: 1px solid var(--frame92287-line-strong);
}

.frame92287-mod-tag {
  display: inline-block;
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--frame92287-ember-bright);
  border: 1px solid rgba(230, 81, 0, 0.4);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.frame92287-mod h2 {
  font-family: var(--frame92287-font-head);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.frame92287-mod > .frame92287-mod-lede {
  font-size: 13.5px;
  color: var(--frame92287-muted);
  margin-bottom: 14px;
}

.frame92287-mod h3 {
  font-family: var(--frame92287-font-head);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.frame92287-branch {
  border: 1px solid var(--frame92287-line);
  border-radius: var(--frame92287-radius);
  background: var(--frame92287-ink-raised);
  padding: 13px 14px;
  margin-bottom: 10px;
}

.frame92287-branch-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.frame92287-branch-top i {
  font-style: normal;
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--frame92287-ember-bright);
  border: 1px solid rgba(230, 81, 0, 0.4);
  border-radius: 4px;
  padding: 2px 6px;
  flex: none;
}

.frame92287-branch p {
  font-size: 13px;
  color: var(--frame92287-mist);
}

.frame92287-branch .frame92287-when {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--frame92287-muted);
}

.frame92287-branch .frame92287-when b {
  color: var(--frame92287-ok);
  font-weight: 700;
}

/* Winners feed */
.frame92287-feed {
  border: 1px solid var(--frame92287-line);
  border-radius: var(--frame92287-radius);
  overflow: hidden;
}

.frame92287-feed-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  padding: 9px 12px;
  background: var(--frame92287-ink-raised);
  border-bottom: 1px solid var(--frame92287-line);
}

.frame92287-feed-row:last-child {
  border-bottom: 0;
}

.frame92287-feed-row:nth-child(odd) {
  background: rgba(34, 48, 74, 0.55);
}

.frame92287-feed-who {
  font-family: var(--frame92287-font-mono);
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.03em;
}

.frame92287-feed-game {
  grid-row: 2;
  font-size: 12px;
  color: var(--frame92287-muted);
}

.frame92287-feed-amount {
  text-align: right;
  font-family: var(--frame92287-font-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--frame92287-ember-bright);
  white-space: nowrap;
}

.frame92287-feed-when {
  grid-row: 2;
  grid-column: 2;
  text-align: right;
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  color: var(--frame92287-muted);
  white-space: nowrap;
}

.frame92287-feed-note {
  font-size: 12px;
  color: var(--frame92287-muted);
  margin-top: 10px;
}

/* Promo cards */
.frame92287-promo-card {
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius-lg);
  background: var(--frame92287-ink-raised);
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frame92287-promo-card h3 {
  margin-bottom: 0;
}

.frame92287-promo-card p {
  font-size: 13px;
  color: var(--frame92287-mist);
}

.frame92287-promo-card .frame92287-btn-solid,
.frame92287-promo-card .frame92287-btn-ghost {
  align-self: flex-start;
  min-height: 40px;
}

.frame92287-promo-banner {
  position: relative;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.frame92287-promo-banner img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.frame92287-promo-banner figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(180deg, rgba(20, 29, 48, 0), rgba(20, 29, 48, 0.92));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.frame92287-promo-banner figcaption span {
  font-family: var(--frame92287-font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Compare blocks */
.frame92287-compare {
  border: 1px solid var(--frame92287-line);
  border-radius: var(--frame92287-radius);
  padding: 12px;
  margin-bottom: 10px;
  background: var(--frame92287-ink-raised);
}

.frame92287-compare h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.frame92287-compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.frame92287-compare-col {
  border: 1px dashed var(--frame92287-line-strong);
  border-radius: 6px;
  padding: 9px 10px;
}

.frame92287-compare-col b {
  display: block;
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--frame92287-ember-bright);
  margin-bottom: 5px;
}

.frame92287-compare-col ul {
  list-style: none;
}

.frame92287-compare-col li {
  font-size: 12px;
  line-height: 1.5;
  color: var(--frame92287-mist);
  padding-left: 12px;
  position: relative;
  margin-bottom: 3px;
}

.frame92287-compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  border: 1px solid var(--frame92287-ember);
}

.frame92287-compare-col li:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   11. Extended footer (homepage only)
   -------------------------------------------------------------------------- */
.frame92287-xfoot {
  margin-top: 30px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius-lg);
  overflow: hidden;
  background: var(--frame92287-ink-raised);
}

.frame92287-xfoot-section {
  padding: 16px 14px;
  border-bottom: 1px solid var(--frame92287-line);
}

.frame92287-xfoot-section:last-child {
  border-bottom: 0;
}

.frame92287-xfoot-label {
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--frame92287-muted);
  margin-bottom: 8px;
}

.frame92287-xfoot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.frame92287-xfoot-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--frame92287-line-strong);
  object-fit: cover;
  flex: none;
}

.frame92287-xfoot-brand strong {
  font-family: var(--frame92287-font-head);
  font-size: 15px;
  color: #fff;
}

.frame92287-xfoot-section p {
  font-size: 12.5px;
  color: var(--frame92287-muted);
}

.frame92287-promo-list li + li {
  margin-top: 8px;
}

.frame92287-promo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius);
  background: var(--frame92287-ink);
  text-align: left;
  transition: border-color 0.16s var(--frame92287-ease), transform 0.12s var(--frame92287-ease);
}

.frame92287-promo-row:hover {
  border-color: var(--frame92287-ember);
  transform: translateY(-1px);
}

.frame92287-promo-row:active {
  transform: translateY(1px) scale(0.99);
}

.frame92287-promo-row span {
  font-family: var(--frame92287-font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.frame92287-promo-row small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--frame92287-muted);
}

.frame92287-promo-row em {
  font-style: normal;
  flex: none;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--frame92287-ember-wash);
  color: var(--frame92287-ember-bright);
  font-size: 13px;
  line-height: 1;
}

.frame92287-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.frame92287-dir-group h3 {
  font-family: var(--frame92287-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame92287-muted);
  margin-bottom: 6px;
}

.frame92287-dir-group a {
  display: block;
  padding: 7px 10px;
  margin-bottom: 2px;
  border-left: 2px solid var(--frame92287-line-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--frame92287-mist);
  border-radius: 0 6px 6px 0;
}

.frame92287-dir-group a:hover {
  border-left-color: var(--frame92287-ember);
  background: var(--frame92287-ink-high);
  color: #fff;
  text-decoration: none;
}

.frame92287-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.frame92287-partners li {
  width: 44px;
  height: 30px;
  border: 1px solid var(--frame92287-line);
  border-radius: 6px;
  background: var(--frame92287-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frame92287-partners img {
  max-width: 36px;
  max-height: 22px;
  object-fit: contain;
}

.frame92287-xfoot-disclaimer {
  background: var(--frame92287-ink-deep);
}

.frame92287-xfoot-disclaimer p {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--frame92287-muted);
}

/* --------------------------------------------------------------------------
   12. Site footer and mobile bottom action bar
   -------------------------------------------------------------------------- */
.frame92287-sitefoot {
  padding: 18px var(--frame92287-gutter) 10px;
  text-align: center;
}

.frame92287-copy {
  font-family: var(--frame92287-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--frame92287-muted);
}

.frame92287-bnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;                     /* canvas-aligned bottom bar */
  height: calc(var(--frame92287-bnav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 92;
  display: flex;
  background: rgba(20, 29, 48, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--frame92287-line-strong);
}

.frame92287-bnav-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  position: relative;
  color: var(--frame92287-muted);
  transition: color 0.18s var(--frame92287-ease);
}

.frame92287-bnav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--frame92287-ember);
  transition: width 0.2s var(--frame92287-ease);
}

.frame92287-bnav-item.is-current {
  color: #fff;
}

.frame92287-bnav-item.is-current::before {
  width: 34%;
}

.frame92287-bnav-item:hover {
  color: #fff;
  text-decoration: none;
}

.frame92287-bnav-item:active {
  transform: translateY(1px);
}

.frame92287-bnav-ico {
  width: 23px;
  height: 23px;
  flex: none;
}

/* two-tone role icons: outline half + fill half */
.frame92287-ico-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.frame92287-ico-fill {
  fill: #556482;
  stroke: none;
  transition: fill 0.18s var(--frame92287-ease);
}

.frame92287-bnav-item.is-current .frame92287-ico-fill {
  fill: var(--frame92287-ember);        /* active state = fill swap */
}

.frame92287-bnav-item:hover .frame92287-ico-fill {
  fill: #6E7FA3;
}

.frame92287-bnav-item.is-current:hover .frame92287-ico-fill {
  fill: var(--frame92287-ember-bright);
}

.frame92287-bnav-text {
  font-family: var(--frame92287-font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   13. Reveal motion (menu slide + light card lift only)
   -------------------------------------------------------------------------- */
.frame92287-rise {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--frame92287-ease), transform 0.5s var(--frame92287-ease);
}

.frame92287-rise.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   14. Help page instruments
   -------------------------------------------------------------------------- */
.frame92287-help-hero {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--frame92287-line-strong);
}

.frame92287-help-hero h1 {
  max-width: 19ch;
  font-family: var(--frame92287-font-head);
  font-size: 25px;
  line-height: 1.2;
  color: #fff;
  margin: 7px 0 10px;
}

.frame92287-help-hero p {
  font-size: 14px;
  color: var(--frame92287-mist);
}

.frame92287-help-hero-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.frame92287-help-hero-actions a,
.frame92287-help-hero-actions button {
  min-height: 44px;
  flex: 1 1 145px;
}

.frame92287-route {
  margin: 22px 0 30px;
  counter-reset: route-step;
}

.frame92287-route h2,
.frame92287-help-section h2,
.frame92287-feature-board h2 {
  font-family: var(--frame92287-font-head);
  font-size: 19px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 8px;
}

.frame92287-route > p,
.frame92287-help-section > p,
.frame92287-feature-board > p {
  font-size: 13.5px;
  color: var(--frame92287-muted);
  margin-bottom: 14px;
}

.frame92287-route-list {
  display: grid;
  gap: 10px;
}

.frame92287-route-step {
  counter-increment: route-step;
  position: relative;
  padding: 13px 13px 13px 49px;
  border-left: 2px solid var(--frame92287-ember);
  background: linear-gradient(90deg, var(--frame92287-ink-raised), rgba(34, 48, 74, 0.38));
}

.frame92287-route-step::before {
  content: counter(route-step, decimal-leading-zero);
  position: absolute;
  left: 13px;
  top: 13px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--frame92287-ember);
  border-radius: 50%;
  color: var(--frame92287-ember-bright);
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  font-weight: 700;
}

.frame92287-route-step h3,
.frame92287-help-section h3 {
  font-family: var(--frame92287-font-head);
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 5px;
}

.frame92287-route-step p,
.frame92287-help-section li,
.frame92287-help-section dd {
  font-size: 13px;
  color: var(--frame92287-mist);
}

.frame92287-route-step p + p {
  margin-top: 6px;
}

.frame92287-help-section {
  margin: 28px 0;
  padding-top: 17px;
  border-top: 1px solid var(--frame92287-line-strong);
}

.frame92287-help-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 14px;
  padding-left: 17px;
  list-style: square;
}

.frame92287-help-section li::marker {
  color: var(--frame92287-ember-bright);
}

.frame92287-help-section dl {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.frame92287-help-section dt {
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--frame92287-ember-bright);
  margin-bottom: 3px;
}

.frame92287-help-section dd {
  margin: 0;
}

.frame92287-help-note {
  margin: 12px 0;
  padding: 12px 13px;
  border: 1px dashed var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius);
  background: var(--frame92287-ink-raised);
  color: var(--frame92287-mist);
  font-size: 13px;
}

.frame92287-help-actions {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.frame92287-help-action {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: var(--frame92287-radius);
  background: var(--frame92287-ink-raised);
  color: #fff;
  text-align: left;
  font-family: var(--frame92287-font-head);
  font-size: 13px;
  font-weight: 700;
}

.frame92287-help-action span {
  display: block;
  color: var(--frame92287-mist);
}

.frame92287-help-action small {
  display: block;
  margin-top: 2px;
  color: var(--frame92287-muted);
  font-family: var(--frame92287-font-body);
  font-size: 11px;
  font-weight: 400;
}

.frame92287-help-action em {
  flex: none;
  color: var(--frame92287-ember-bright);
  font-style: normal;
  font-size: 18px;
}

.frame92287-help-action:hover,
.frame92287-help-action:focus-visible {
  border-color: var(--frame92287-ember);
  text-decoration: none;
  transform: translateX(2px);
}

.frame92287-feature-board {
  margin: 22px 0 30px;
}

.frame92287-feature-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 13px 0 19px;
}

.frame92287-feature-index a {
  min-height: 45px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: 6px;
  color: var(--frame92287-mist);
  background: var(--frame92287-ink-raised);
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.04em;
}

.frame92287-feature-index a:hover {
  color: #fff;
  border-color: var(--frame92287-ember);
  text-decoration: none;
}

.frame92287-feature-stack {
  display: grid;
  gap: 1px;
  border: 1px solid var(--frame92287-line-strong);
  background: var(--frame92287-line-strong);
}

.frame92287-feature-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 11px;
  background: var(--frame92287-ink-raised);
}

.frame92287-feature-row:nth-child(even) {
  background: var(--frame92287-ink);
}

.frame92287-feature-label {
  font-family: var(--frame92287-font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frame92287-ember-bright);
}

.frame92287-feature-row strong {
  display: block;
  font-family: var(--frame92287-font-head);
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 4px;
}

.frame92287-feature-row p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--frame92287-mist);
}

.frame92287-relationship {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.frame92287-relationship-node {
  padding: 11px 12px;
  border: 1px solid var(--frame92287-line-strong);
  border-radius: 6px;
  background: var(--frame92287-ink-raised);
}

.frame92287-relationship-node b {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-family: var(--frame92287-font-head);
  font-size: 13px;
}

.frame92287-relationship-node span {
  display: block;
  color: var(--frame92287-muted);
  font-size: 12px;
}

.frame92287-relationship-link {
  color: var(--frame92287-ember-bright);
  font-family: var(--frame92287-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
}

.frame92287-actions .frame92287-btn-solid,
.frame92287-actions .frame92287-btn-ghost,
.frame92287-burger {
  min-height: 44px;
}

/* --------------------------------------------------------------------------
   15. Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 359px) {
  :root {
    --frame92287-gutter: 10px;
  }

  .frame92287-brand-name {
    font-size: 12px;
  }

  .frame92287-intro h1 {
    font-size: 21.5px;
  }
}

@media (min-width: 375px) {
  .frame92287-intro h1 {
    font-size: 25.5px;
  }

  .frame92287-cat h2 {
    font-size: 19.5px;
  }

  .frame92287-directory {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 480px) {
  .frame92287-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .frame92287-intro h1 {
    font-size: 27px;
  }
}

/* Wide screens keep the centered phone canvas with a quiet backdrop */
@media (min-width: 520px) {
  body {
    background:
      radial-gradient(1100px 500px at 50% -160px, rgba(230, 81, 0, 0.12), transparent 62%),
      var(--frame92287-ink-deep);
  }

  .frame92287-canvas {
    box-shadow: 0 0 0 1px var(--frame92287-line), 0 24px 60px rgba(0, 0, 0, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .frame92287-rise {
    opacity: 1;
    transform: none;
  }
}
