/* ============================================================
   5bmw.click - adaptive-099753-surface.css
   Mobile-first surface for the 5bmw gaming portal.
   All class names use the frame99753- prefix (single design system).
   Palette: #1B263B (base) | #00695C (deep) | #48D1CC / #4DB6AC
            (energetic accents) | #B0E0E6 (soft light text)
   Direction: technical-feel headings, low-radius partitioned
              layout, mixed-size game cards, segmented CTAs.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --frame99753-base: #1B263B;
  --frame99753-base-700: #162032;
  --frame99753-base-600: #1f2d45;
  --frame99753-deep: #00695C;
  --frame99753-deep-700: #004d44;
  --frame99753-accent: #48D1CC;
  --frame99753-accent-soft: #4DB6AC;
  --frame99753-light: #B0E0E6;
  --frame99753-light-dim: rgba(176, 224, 230, 0.72);
  --frame99753-light-faint: rgba(176, 224, 230, 0.42);
  --frame99753-line: rgba(176, 224, 230, 0.16);
  --frame99753-line-strong: rgba(176, 224, 230, 0.32);
  --frame99753-ink: #0d1422;

  --frame99753-radius-xs: 3px;
  --frame99753-radius-sm: 5px;
  --frame99753-radius-md: 8px;
  --frame99753-radius-lg: 12px;

  --frame99753-gap-tiny: 6px;
  --frame99753-gap-sm: 10px;
  --frame99753-gap-md: 16px;
  --frame99753-gap-lg: 22px;
  --frame99753-gap-xl: 32px;

  --frame99753-font-head: "Space Grotesk", "Segoe UI", "Trebuchet MS", system-ui, sans-serif;
  --frame99753-font-mono: "JetBrains Mono", "SFMono-Regular", "Consolas", monospace;
  --frame99753-font-body: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;

  --frame99753-header-h: 58px;
  --frame99753-nav-h: 66px;

  --frame99753-shadow-card: 0 6px 18px rgba(0, 0, 0, 0.28);
  --frame99753-shadow-pop: 0 10px 32px rgba(0, 0, 0, 0.45);
}

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

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

body {
  margin: 0;
  font-family: var(--frame99753-font-body);
  background: var(--frame99753-ink);
  color: var(--frame99753-light);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; border: 0; }
a { color: var(--frame99753-accent); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--frame99753-accent);
  outline-offset: 2px;
  border-radius: var(--frame99753-radius-xs);
}

/* ---------- Mobile canvas ---------- */
.frame99753-canvas {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(900px 360px at 85% -8%, rgba(72, 209, 204, 0.18), transparent 60%),
    radial-gradient(640px 320px at 0% 12%, rgba(77, 182, 172, 0.14), transparent 65%),
    linear-gradient(180deg, var(--frame99753-base-700) 0%, var(--frame99753-base) 40%, var(--frame99753-base-600) 100%);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

.frame99753-main {
  padding-top: calc(var(--frame99753-header-h) + 6px);
  padding-bottom: calc(var(--frame99753-nav-h) + 28px);
}

/* ---------- Section shell ---------- */
.frame99753-section {
  padding: 22px 16px 6px;
}

.frame99753-section--tight { padding: 14px 16px 4px; }

.frame99753-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--frame99753-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--frame99753-accent);
  padding: 4px 10px;
  border: 1px solid var(--frame99753-line-strong);
  border-radius: var(--frame99753-radius-xs);
  background: rgba(72, 209, 204, 0.06);
}

.frame99753-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.frame99753-section-title {
  font-family: var(--frame99753-font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--frame99753-light);
  letter-spacing: -0.01em;
}

.frame99753-section-title em {
  font-style: normal;
  color: var(--frame99753-accent);
}

.frame99753-section-kicker {
  font-family: var(--frame99753-font-mono);
  font-size: 11px;
  color: var(--frame99753-light-dim);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.frame99753-section-intro {
  margin: 8px 0 16px;
  color: var(--frame99753-light-dim);
  font-size: 14px;
  max-width: 42ch;
}

/* ---------- Header ---------- */
.frame99753-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(13, 20, 34, 0.96), rgba(13, 20, 34, 0.82));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--frame99753-line);
}

.frame99753-header-row {
  width: 100%;
  max-width: 430px;
  height: var(--frame99753-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}

.frame99753-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.frame99753-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--frame99753-radius-sm);
  object-fit: cover;
  border: 1px solid var(--frame99753-line-strong);
  background: rgba(72, 209, 204, 0.1);
  flex: 0 0 auto;
}

.frame99753-brand-name {
  font-family: var(--frame99753-font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--frame99753-light);
  line-height: 1;
}

.frame99753-brand-name span {
  color: var(--frame99753-accent);
}

.frame99753-header-spacer { width: 0; }

.frame99753-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.frame99753-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: var(--frame99753-radius-sm);
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

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

.frame99753-btn--register {
  background: linear-gradient(135deg, var(--frame99753-accent) 0%, var(--frame99753-accent-soft) 100%);
  color: var(--frame99753-ink);
  box-shadow: 0 4px 14px rgba(72, 209, 204, 0.28);
}

.frame99753-btn--login {
  background: transparent;
  color: var(--frame99753-light);
  border-color: var(--frame99753-line-strong);
}

.frame99753-btn--login:active {
  background: rgba(176, 224, 230, 0.08);
}

.frame99753-menu-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--frame99753-radius-sm);
  border: 1px solid var(--frame99753-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 224, 230, 0.04);
}

.frame99753-menu-btn:hover { background: rgba(176, 224, 230, 0.1); }

.frame99753-menu-btn-bars,
.frame99753-menu-btn-bars::before,
.frame99753-menu-btn-bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--frame99753-light);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.frame99753-menu-btn-bars {
  position: relative;
}
.frame99753-menu-btn-bars::before,
.frame99753-menu-btn-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.frame99753-menu-btn-bars::before { top: -6px; }
.frame99753-menu-btn-bars::after { top: 6px; }

.frame99753-menu-btn[aria-expanded="true"] .frame99753-menu-btn-bars { background: transparent; }
.frame99753-menu-btn[aria-expanded="true"] .frame99753-menu-btn-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.frame99753-menu-btn[aria-expanded="true"] .frame99753-menu-btn-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Slide-down menu overlay ---------- */
.frame99753-menu {
  position: fixed;
  top: var(--frame99753-header-h);
  left: 0;
  right: 0;
  z-index: 55;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.frame99753-menu-panel {
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, rgba(13, 20, 34, 0.98), rgba(22, 32, 50, 0.98));
  border-bottom: 1px solid var(--frame99753-line);
  padding: 12px 16px 18px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.2s ease;
  pointer-events: none;
}

.frame99753-menu.is-open { pointer-events: auto; }
.frame99753-menu.is-open .frame99753-menu-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.frame99753-menu-title {
  font-family: var(--frame99753-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--frame99753-accent);
  padding: 4px 0 10px;
  border-bottom: 1px dashed var(--frame99753-line);
  margin-bottom: 10px;
}

.frame99753-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.frame99753-menu-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid var(--frame99753-line);
  border-radius: var(--frame99753-radius-sm);
  background: rgba(176, 224, 230, 0.03);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  min-height: 44px;
  justify-content: center;
}

.frame99753-menu-link:active { transform: scale(0.98); }
.frame99753-menu-link:hover { background: rgba(72, 209, 204, 0.1); border-color: var(--frame99753-line-strong); }

.frame99753-menu-link b {
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--frame99753-light);
}

.frame99753-menu-link small {
  font-size: 11px;
  color: var(--frame99753-light-dim);
  line-height: 1.3;
}

.frame99753-menu-cta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.frame99753-menu-cta .frame99753-btn { flex: 1; min-height: 40px; }

.frame99753-scrim {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 18, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 50;
}

.frame99753-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero / Carousel ---------- */
.frame99753-hero {
  padding: 14px 16px 4px;
}

.frame99753-hero-card {
  position: relative;
  border-radius: var(--frame99753-radius-lg);
  overflow: hidden;
  border: 1px solid var(--frame99753-line);
  background: var(--frame99753-base-700);
  box-shadow: var(--frame99753-shadow-card);
}

.frame99753-carousel {
  position: relative;
}

.frame99753-carousel-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.frame99753-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
}

.frame99753-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05);
}

.frame99753-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 20, 34, 0.05) 30%, rgba(13, 20, 34, 0.82) 100%);
}

.frame99753-slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frame99753-slide-tag {
  align-self: flex-start;
  font-family: var(--frame99753-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frame99753-ink);
  background: var(--frame99753-accent);
  padding: 3px 8px;
  border-radius: var(--frame99753-radius-xs);
}

.frame99753-slide-title {
  font-family: var(--frame99753-font-head);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.frame99753-slide-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--frame99753-font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--frame99753-ink);
  background: #fff;
  padding: 7px 12px;
  border-radius: var(--frame99753-radius-sm);
}

.frame99753-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.frame99753-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(176, 224, 230, 0.45);
  border: 0;
  padding: 0;
  transition: background 0.18s ease, width 0.22s ease;
}

.frame99753-dot.is-active {
  background: var(--frame99753-accent);
  width: 18px;
  border-radius: 4px;
}

/* ---------- Hero stat strip ---------- */
.frame99753-strip {
  margin: 12px 16px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.frame99753-strip-cell {
  border: 1px solid var(--frame99753-line);
  border-radius: var(--frame99753-radius-sm);
  padding: 10px 8px;
  text-align: center;
  background: rgba(176, 224, 230, 0.03);
}

.frame99753-strip-num {
  font-family: var(--frame99753-font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--frame99753-accent);
  line-height: 1;
}

.frame99753-strip-label {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frame99753-light-dim);
}

/* ---------- Game area ---------- */
.frame99753-game-block {
  border-top: 1px solid var(--frame99753-line);
  padding: 22px 16px 4px;
  margin-top: 14px;
}

.frame99753-game-block:first-of-type { border-top: 0; margin-top: 4px; }

.frame99753-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.frame99753-cat-pip {
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--frame99753-accent), var(--frame99753-deep));
}

.frame99753-cat-title {
  font-family: var(--frame99753-font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--frame99753-light);
  letter-spacing: -0.005em;
}

.frame99753-cat-count {
  margin-left: auto;
  font-family: var(--frame99753-font-mono);
  font-size: 11px;
  color: var(--frame99753-light-dim);
  letter-spacing: 0.06em;
}

/* Mixed-size game grid: featured large + small grid */
.frame99753-game-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.frame99753-game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--frame99753-line);
  border-radius: var(--frame99753-radius-md);
  background: linear-gradient(180deg, rgba(31, 45, 69, 0.85), rgba(22, 32, 50, 0.85));
  overflow: hidden;
  transition: transform 0.14s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: 100%;
}

.frame99753-game-card:hover,
.frame99753-game-card:focus-visible {
  border-color: var(--frame99753-accent);
  box-shadow: 0 6px 18px rgba(72, 209, 204, 0.18);
}

.frame99753-game-card:active { transform: translateY(1px) scale(0.985); }

.frame99753-game-card--lg {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}

.frame99753-game-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0c1322;
  overflow: hidden;
  flex: 0 0 auto;
}

.frame99753-game-card--lg .frame99753-game-thumb {
  width: 96px;
  aspect-ratio: 1 / 1;
  border-right: 1px solid var(--frame99753-line);
}

.frame99753-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.frame99753-game-card:hover .frame99753-game-thumb img { transform: scale(1.06); }

.frame99753-game-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  font-family: var(--frame99753-font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: var(--frame99753-radius-xs);
  background: rgba(13, 20, 34, 0.82);
  color: var(--frame99753-accent);
  border: 1px solid var(--frame99753-line-strong);
}

.frame99753-game-body {
  padding: 7px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.frame99753-game-card--lg .frame99753-game-body {
  justify-content: center;
  padding: 8px 10px;
}

.frame99753-game-name {
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.25;
  color: var(--frame99753-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.frame99753-game-card--lg .frame99753-game-name {
  font-size: 14px;
  -webkit-line-clamp: 1;
}

.frame99753-game-meta {
  font-family: var(--frame99753-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--frame99753-light-faint);
}

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

.frame99753-game-grid .frame99753-game-thumb { aspect-ratio: 1 / 1; }
.frame99753-game-grid .frame99753-game-name { font-size: 11px; }

@media (min-width: 380px) {
  .frame99753-game-grid { gap: 10px; }
  .frame99753-game-grid .frame99753-game-name { font-size: 11.5px; }
}

@media (min-width: 410px) {
  .frame99753-game-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- Info / content blocks ---------- */
.frame99753-prose {
  color: var(--frame99753-light-dim);
  font-size: 14px;
  line-height: 1.65;
}

.frame99753-prose p + p { margin-top: 10px; }

.frame99753-prose strong { color: var(--frame99753-light); font-weight: 600; }

.frame99753-prose a {
  color: var(--frame99753-accent);
  border-bottom: 1px dashed rgba(72, 209, 204, 0.45);
  padding-bottom: 1px;
}

.frame99753-prose a:hover { color: var(--frame99753-light); }

.frame99753-card {
  border: 1px solid var(--frame99753-line);
  border-radius: var(--frame99753-radius-md);
  padding: 16px;
  background: rgba(176, 224, 230, 0.03);
}

.frame99753-card + .frame99753-card { margin-top: 12px; }

.frame99753-card h3 {
  font-family: var(--frame99753-font-head);
  font-size: 15px;
  color: var(--frame99753-light);
  margin-bottom: 8px;
  font-weight: 700;
}

.frame99753-card p {
  font-size: 13.5px;
  color: var(--frame99753-light-dim);
  line-height: 1.6;
}

/* Conclusion-first comparison list */
.frame99753-compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.frame99753-compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid var(--frame99753-line);
  border-left: 3px solid var(--frame99753-accent);
  border-radius: var(--frame99753-radius-sm);
  background: rgba(31, 45, 69, 0.55);
}

.frame99753-compare-lead {
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--frame99753-light);
}

.frame99753-compare-note {
  font-size: 12.5px;
  color: var(--frame99753-light-dim);
  line-height: 1.5;
}

/* Use case scenario grid */
.frame99753-scenarios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.frame99753-scenario {
  padding: 12px 14px;
  border-radius: var(--frame99753-radius-sm);
  background: rgba(0, 105, 92, 0.18);
  border: 1px solid rgba(72, 209, 204, 0.22);
}

.frame99753-scenario-tag {
  font-family: var(--frame99753-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--frame99753-accent);
}

.frame99753-scenario-title {
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--frame99753-light);
  margin-top: 4px;
}

.frame99753-scenario p {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--frame99753-light-dim);
  line-height: 1.55;
}

/* App download block */
.frame99753-app {
  position: relative;
  padding: 18px 16px;
  border-radius: var(--frame99753-radius-lg);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(72, 209, 204, 0.18), transparent 60%),
    linear-gradient(135deg, var(--frame99753-deep-700), var(--frame99753-base-700));
  border: 1px solid var(--frame99753-line-strong);
  overflow: hidden;
}

.frame99753-app-title {
  font-family: var(--frame99753-font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--frame99753-light);
}

.frame99753-app p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--frame99753-light-dim);
  line-height: 1.55;
  max-width: 44ch;
}

.frame99753-app-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frame99753-app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--frame99753-radius-sm);
  border: 1px solid var(--frame99753-line-strong);
  background: rgba(13, 20, 34, 0.55);
  transition: transform 0.12s ease, border-color 0.18s ease;
  text-align: left;
  width: 100%;
}

.frame99753-app-btn:active { transform: scale(0.985); border-color: var(--frame99753-accent); }

.frame99753-app-btn-ic {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--frame99753-accent);
  color: var(--frame99753-ink);
  font-family: var(--frame99753-font-head);
  font-weight: 800;
  font-size: 13px;
  flex: 0 0 auto;
}

.frame99753-app-btn b {
  display: block;
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--frame99753-light);
}

.frame99753-app-btn small {
  display: block;
  font-size: 10.5px;
  color: var(--frame99753-light-dim);
  letter-spacing: 0.04em;
}

/* ---------- CTA banner ---------- */
.frame99753-cta {
  margin: 22px 16px 6px;
  padding: 18px 16px;
  border-radius: var(--frame99753-radius-lg);
  border: 1px solid var(--frame99753-line-strong);
  background:
    linear-gradient(135deg, rgba(72, 209, 204, 0.16), rgba(0, 105, 92, 0.22)),
    var(--frame99753-base-700);
  text-align: center;
  box-shadow: var(--frame99753-shadow-card);
}

.frame99753-cta-eyebrow {
  font-family: var(--frame99753-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--frame99753-accent);
}

.frame99753-cta-title {
  margin-top: 6px;
  font-family: var(--frame99753-font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--frame99753-light);
  line-height: 1.25;
}

.frame99753-cta p {
  margin: 8px auto 0;
  font-size: 13px;
  color: var(--frame99753-light-dim);
  max-width: 40ch;
  line-height: 1.55;
}

.frame99753-cta-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.frame99753-cta-actions .frame99753-btn { min-height: 40px; padding: 0 18px; }

/* ---------- Trust badges (partners) ---------- */
.frame99753-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.frame99753-trust-cell {
  border: 1px solid var(--frame99753-line);
  border-radius: var(--frame99753-radius-sm);
  background: rgba(176, 224, 230, 0.04);
  padding: 8px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.frame99753-trust-cell img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: grayscale(0.15);
}

/* ---------- Extended footer ---------- */
.frame99753-extended {
  margin-top: 24px;
  padding: 22px 16px 6px;
  border-top: 1px solid var(--frame99753-line);
  background: linear-gradient(180deg, rgba(13, 20, 34, 0.5), rgba(13, 20, 34, 0.15));
}

.frame99753-extended-block { margin-bottom: 20px; }
.frame99753-extended-block:last-child { margin-bottom: 6px; }

.frame99753-extended-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.frame99753-extended-heading h2 {
  font-family: var(--frame99753-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--frame99753-light);
  letter-spacing: 0.02em;
}

.frame99753-extended-heading .frame99753-eyebrow {
  padding: 2px 8px;
  font-size: 10px;
}

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

.frame99753-extended-brand img {
  width: 30px;
  height: 30px;
  border-radius: var(--frame99753-radius-xs);
  border: 1px solid var(--frame99753-line-strong);
}

.frame99753-extended-brand b {
  font-family: var(--frame99753-font-head);
  font-size: 15px;
  color: var(--frame99753-light);
}

.frame99753-extended p {
  font-size: 12.5px;
  color: var(--frame99753-light-dim);
  line-height: 1.6;
}

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

.frame99753-directory a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 4px;
  border-bottom: 1px dashed var(--frame99753-line);
  font-size: 12.5px;
  color: var(--frame99753-light);
  line-height: 1.3;
}

.frame99753-directory a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--frame99753-accent);
  flex: 0 0 auto;
}

.frame99753-directory a:hover { color: var(--frame99753-accent); }

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

.frame99753-promo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--frame99753-radius-sm);
  border: 1px solid var(--frame99753-line-strong);
  background: rgba(72, 209, 204, 0.08);
  text-align: left;
  transition: transform 0.12s ease, border-color 0.18s ease;
}

.frame99753-promo-row:active { transform: scale(0.985); border-color: var(--frame99753-accent); }

.frame99753-promo-ic {
  width: 30px;
  height: 30px;
  border-radius: var(--frame99753-radius-xs);
  background: var(--frame99753-deep);
  color: var(--frame99753-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.frame99753-promo-ic svg { width: 16px; height: 16px; display: block; }

.frame99753-promo-row b {
  display: block;
  font-family: var(--frame99753-font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--frame99753-light);
}

.frame99753-promo-row small {
  display: block;
  font-size: 10.5px;
  color: var(--frame99753-light-dim);
  letter-spacing: 0.04em;
}

.frame99753-disclaimer {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: var(--frame99753-radius-sm);
  border: 1px dashed var(--frame99753-line-strong);
  background: rgba(13, 20, 34, 0.45);
  font-size: 11.5px;
  color: var(--frame99753-light-dim);
  line-height: 1.55;
}

.frame99753-disclaimer b { color: var(--frame99753-light); font-weight: 600; }

/* ---------- Generic footer (copyright only) ---------- */
.frame99753-footer {
  padding: 18px 16px 8px;
  border-top: 1px solid var(--frame99753-line);
  text-align: center;
}

.frame99753-footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.frame99753-footer-mark img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--frame99753-line-strong);
}

.frame99753-footer-mark b {
  font-family: var(--frame99753-font-head);
  font-size: 13px;
  color: var(--frame99753-light);
}

.frame99753-footer-copy {
  font-family: var(--frame99753-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--frame99753-light-faint);
}

/* ---------- Bottom dock nav ---------- */
.frame99753-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  background: linear-gradient(0deg, rgba(13, 20, 34, 0.98), rgba(13, 20, 34, 0.86));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--frame99753-line);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.frame99753-dock-row {
  width: 100%;
  max-width: 430px;
  height: var(--frame99753-nav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.frame99753-dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  padding: 0 2px;
  color: var(--frame99753-light-dim);
  transition: color 0.18s ease, transform 0.12s ease;
  text-align: center;
  min-height: 44px;
}

.frame99753-dock-item:active { transform: translateY(1px) scale(0.94); }

.frame99753-dock-item svg {
  width: 20px;
  height: 20px;
  display: block;
}

.frame99753-dock-label {
  font-family: var(--frame99753-font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.frame99753-dock-item.is-active {
  color: var(--frame99753-accent);
}

.frame99753-dock-item.is-active .frame99753-dock-label {
  position: relative;
}

.frame99753-dock-item.is-active .frame99753-dock-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--frame99753-accent);
}

.frame99753-dock-item--promo {
  color: var(--frame99753-light);
}

.frame99753-dock-item--promo svg { color: var(--frame99753-accent); }

.frame99753-dock-pill {
  position: relative;
}

.frame99753-dock-pill::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame99753-accent), var(--frame99753-accent-soft));
  box-shadow: 0 4px 12px rgba(72, 209, 204, 0.4);
  z-index: 0;
}

.frame99753-dock-pill svg {
  position: relative;
  z-index: 1;
  color: var(--frame99753-ink);
  width: 18px;
  height: 18px;
  margin-top: -6px;
}

.frame99753-dock-pill .frame99753-dock-label {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: var(--frame99753-accent);
}

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

/* ---------- Animations ---------- */
@keyframes frame99753-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.frame99753-main > section,
.frame99753-hero {
  animation: frame99753-fade-up 0.5s ease both;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Wide screen framing ---------- */
@media (min-width: 431px) {
  body { background: #060a14; }
  .frame99753-canvas { margin-top: 18px; margin-bottom: 18px; min-height: calc(100vh - 36px); border-radius: 18px; }
  .frame99753-header { top: 18px; }
  .frame99753-header,
  .frame99753-dock,
  .frame99753-menu,
  .frame99753-scrim { width: 100%; }
  .frame99753-dock { bottom: 18px; }
}
