/* ==========================================================================
   91 Club — Brand App Profile V10
   Light modular cards · Cool silver marketplace · Amber action
   ========================================================================== */

:root {
  --bg: #f6f7f9;
  --bg-alt: #ffffff;
  --bg-soft: #eef1f5;
  --surface: #ffffff;
  --surface-2: #fbfbfd;
  --ink: #0f172a;
  --ink-2: #1f2937;
  --ink-muted: #475569;
  --ink-faint: #64748b;
  --border: #e2e8f0;
  --border-soft: #eef1f5;
  --silver: #c0c7d3;
  --silver-light: #e6ebf2;
  --navy: #0f1b2e;
  --navy-2: #1b2940;
  --accent: #b45309;
  --accent-deep: #92400e;
  --accent-soft: #fde68a;
  --gold: #b88600;
  --success: #15803d;
  --success-soft: #dcfce7;
  --danger: #dc2626;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --header-h: 64px;
  --font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; gap: 24px;
  min-height: var(--header-h);
  padding-block: 10px;
}
.brand-link {
  display: flex; align-items: center; gap: 10px;
  flex: 0 0 auto;
}
.brand-link img {
  width: 40px; height: 40px; border-radius: 10px; object-fit: cover;
}
.brand-link .brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -0.01em;
}
.brand-link .brand-tag {
  font-size: 11px; color: var(--ink-muted); display: block; line-height: 1.2;
}

.main-nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1 1 auto; justify-content: center;
}
.main-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.main-nav a.is-cta { background: var(--navy); color: #fff; padding: 10px 18px; }
.main-nav a.is-cta:hover { background: var(--navy-2); }
.main-nav a.is-ghost { color: var(--ink-2); }

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

.btn-install {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  border: 0; padding: 11px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-install:hover { background: var(--accent-deep); }

.hamburger {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px; border-radius: 10px;
  position: relative;
}
.hamburger:hover { background: var(--bg-soft); }
.hamburger span {
  position: absolute; left: 11px; right: 11px;
  height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto;
  width: min(86%, 360px);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 70;
  overflow-y: auto;
  padding: 24px 22px 90px;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer[aria-hidden="false"] { transform: translateX(0); }
.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 65;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.mobile-drawer-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }
.mobile-drawer nav a {
  display: block;
  padding: 14px 14px;
  border-radius: 10px;
  font-size: 16px; font-weight: 500;
  color: var(--ink-2);
}
.mobile-drawer nav a:hover { background: var(--bg-soft); }
.mobile-drawer .btn-install { margin-top: 16px; width: 100%; justify-content: center; }
.mobile-drawer-close {
  background: transparent; border: 0;
  width: 40px; height: 40px; border-radius: 10px;
  font-size: 22px; color: var(--ink-muted);
  margin-left: auto; display: block;
}
.mobile-drawer-close:hover { background: var(--bg-soft); color: var(--ink); }

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .header-actions .btn-install { display: none; }
}

/* ==========================================================================
   Hero / Brand App Profile block
   ========================================================================== */
.brand-app-profile {
  padding: 32px 0 48px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.brand-app-profile .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

.bid-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(245, 158, 11, 0.08);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-bottom: 16px;
}
.bid-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

.bid-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.bid-title .accent { color: var(--accent-deep); }

.bid-tagline {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 24px;
}

.bid-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.bid-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px;
  min-width: 0;
}
.bid-stat .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 700;
}
.bid-stat .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.15;
}
.bid-stat .stat-value small {
  font-size: 12px; font-weight: 500; color: var(--ink-muted); display: block;
}

.bid-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.bid-actions .btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  border: 0; padding: 16px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.32);
}
.bid-actions .btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.bid-actions .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border); padding: 16px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; white-space: nowrap;
}
.bid-actions .btn-secondary:hover { background: var(--bg-soft); }

.bid-note {
  margin-top: 16px;
  font-size: 12px; color: var(--ink-faint);
  max-width: 60ch;
}

/* App identity panel (right column) */
.bid-identity {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
}
.bid-identity-head { display: flex; align-items: center; gap: 14px; }
.bid-identity-head img { width: 80px; height: 80px; border-radius: 18px; box-shadow: 0 8px 24px rgba(245, 158, 11, 0.18); }
.bid-identity-head .identity-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink);
  display: block;
}
.bid-identity-head .identity-cat {
  font-size: 13px; color: var(--ink-muted);
}
.bid-identity-head .identity-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--success);
  background: var(--success-soft);
  padding: 3px 10px; border-radius: 999px;
  margin-top: 4px;
}
.bid-identity-head .identity-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
}

.bid-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bid-facts .fact {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  min-width: 0;
}
.bid-facts .fact .fact-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-muted); font-weight: 700;
}
.bid-facts .fact .fact-value {
  display: block;
  font-size: 14px; font-weight: 600; color: var(--ink); margin-top: 2px;
  word-break: break-word;
}

.bid-trustline {
  font-size: 13px; color: var(--ink-muted); line-height: 1.5;
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}

@media (max-width: 1023px) {
  .brand-app-profile .container { grid-template-columns: 1fr; gap: 24px; }
  .bid-stats { grid-template-columns: repeat(2, 1fr); }
  .bid-identity { order: -1; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-rail {
  padding: 36px 0 16px;
  background: var(--bg);
}
.gallery-rail .container {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start;
}
.gallery-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--surface);
}
.gallery-photo img { width: 100%; height: auto; display: block; aspect-ratio: 5/3; object-fit: cover; }
.gallery-photo figcaption {
  font-size: 12px; color: var(--ink-faint); padding: 8px 14px 10px;
}
.gallery-thumbs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.gallery-thumbs .thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.gallery-thumbs .thumb img {
  width: 100%; aspect-ratio: 5/4; object-fit: cover; display: block;
}
.gallery-thumbs .thumb span {
  display: block; padding: 8px 12px 10px; font-size: 12px; color: var(--ink-muted);
}

@media (max-width: 1023px) {
  .gallery-rail .container { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   Content sections (overview / features / install)
   ========================================================================== */
.section {
  padding: 48px 0;
}
.section--alt { background: var(--surface); border-block: 1px solid var(--border); }
.section--ink {
  background: var(--navy); color: #f1f5f9;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #cbd5e1; }
.section--ink .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.section--ink .card h3 { color: #fff; }
.section--ink .card p { color: #cbd5e1; }
.section--ink .hot-desc {
  color: #475569;
}
.section--ink .hot-shelf .hot-item { background: #fff; border-color: rgba(255,255,255,0.18); }
.section--ink .hot-shelf .hot-label { color: #0f172a; }
.section--ink .hot-shelf .hot-desc { color: #475569; }
.section--ink .hot-label { color: #fff; }
.section--ink .section-eyebrow,
.section--ink .section-lede { color: #cbd5e1; }
.section--ink .cta-strip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.section--ink .cta-strip strong { color: #fff; }
.section--ink .cta-strip p { color: #cbd5e1; }
.section--ink .feature-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.section--ink .feature-card h3 { color: #fff; }
.section--ink .feature-card p { color: #cbd5e1; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.section-eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 2px; background: var(--accent-deep); border-radius: 2px;
}
.section-eyebrow.eyebrow-light { color: var(--accent-soft); }
.section-eyebrow.eyebrow-light::before { background: var(--accent-soft); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 8px 0 12px;
  max-width: 22ch;
}
.section-title.wide { max-width: 36ch; }
.section-lede {
  font-size: 17px; color: var(--ink-muted); max-width: 60ch;
  margin: 0 0 28px;
}
.section-head { margin-bottom: 28px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 8px; color: var(--ink); }
.card p { margin: 0; font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1023px) { .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  min-width: 0;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.feature-card .feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,0.16), rgba(245,158,11,0.04));
  color: var(--accent-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0; color: var(--ink); }
.feature-card p { margin: 0; font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

/* ==========================================================================
   Install steps (ruled newspaper feel)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.step {
  padding: 22px 22px 24px;
  border-right: 1px solid var(--border-soft);
  min-width: 0;
}
.step:last-child { border-right: 0; }
.step .step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  background: rgba(245,158,11,0.1);
  padding: 4px 10px; border-radius: 999px;
}
.step h3 { font-family: var(--font-display); font-size: 18px; margin: 14px 0 6px; color: var(--ink); }
.step p { font-size: 14px; color: var(--ink-muted); line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .step:last-child { border-bottom: 0; }
}

/* ==========================================================================
   HOT shelf
   ========================================================================== */
.hot-shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hot-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.hot-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hot-art {
  width: 80px; height: 80px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  color: #fff;
  flex: 0 0 auto;
}
.hot-label {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin: 0;
}
.hot-desc {
  font-size: 13px; color: var(--ink-muted); line-height: 1.45;
  margin: 0;
}
.hot-cta {
  font-size: 12px; font-weight: 600;
  color: var(--accent-deep); margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 900px) {
  .hot-shelf {
    grid-template-columns: repeat(4, 84px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-inline: -16px;
    padding-inline: 16px;
  }
  .hot-item { scroll-snap-align: start; flex: 0 0 84px; }
}

/* ==========================================================================
   YONO collection
   ========================================================================== */
.yono-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.yono-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px; align-items: center;
  min-width: 0;
}
.yono-row .yono-art {
  width: 72px; height: 72px;
  border-radius: 14px; object-fit: cover;
  background: var(--bg-soft);
}
.yono-row .yono-meta { min-width: 0; }
.yono-row .yono-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink);
  display: block; line-height: 1.2;
}
.yono-row .yono-cat {
  font-size: 12px; color: var(--ink-muted); display: block; margin-top: 2px;
}
.yono-row .yono-install {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  color: #fff; background: var(--navy);
  padding: 8px 14px; border-radius: 999px;
  white-space: nowrap;
}
.yono-row .yono-install:hover { background: var(--navy-2); }

@media (max-width: 1023px) { .yono-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .yono-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   App directory
   ========================================================================== */
.app-directory { display: flex; flex-direction: column; gap: 14px; }
.app-directory-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  margin-bottom: 6px;
}
.app-directory-toolbar input,
.app-directory-toolbar select {
  font: inherit; font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}
.app-directory-toolbar input:focus,
.app-directory-toolbar select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.app-result-count {
  font-size: 13px; color: var(--ink-muted);
  margin: 4px 0 8px;
}
.app-result-count strong { color: var(--ink); }

.app-rows { display: flex; flex-direction: column; gap: 8px; }
.app-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  gap: 14px; align-items: center;
  min-width: 0;
}
.app-row .app-art {
  width: 72px; height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--bg-soft);
}
.app-row .app-meta { min-width: 0; }
.app-row .app-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink);
  display: block; line-height: 1.2;
}
.app-row .app-sub {
  font-size: 12px; color: var(--ink-muted); display: block; margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.app-row .app-rtp {
  font-size: 12px; color: var(--ink-muted); text-align: right;
  font-family: var(--font-mono);
}
.app-row .app-rtp strong { display: block; color: var(--ink); font-size: 14px; }
.app-row .app-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  color: #fff; background: var(--accent);
  padding: 10px 18px; border-radius: 999px;
  white-space: nowrap;
}
.app-row .app-cta:hover { background: var(--accent-deep); }
@media (max-width: 700px) {
  .app-directory-toolbar { grid-template-columns: 1fr; }
  .app-row { grid-template-columns: 60px 1fr auto; gap: 10px; padding: 12px; }
  .app-row .app-art { width: 60px; height: 60px; }
  .app-row .app-rtp { display: none; }
}

/* ==========================================================================
   Promo / VIP cards
   ========================================================================== */
.promo-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.promo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0;
}
.promo-card.feature {
  background: linear-gradient(135deg, #1b2940 0%, #0f1b2e 100%);
  color: #f1f5f9; border-color: transparent;
}
.promo-card.feature .promo-eyebrow { color: var(--accent-soft); }
.promo-card.feature h3 { color: #fff; }
.promo-card.feature p { color: #cbd5e1; }
.promo-card .promo-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-deep);
}
.promo-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0; }
.promo-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.5; margin: 0; }
.promo-card a {
  font-size: 13px; font-weight: 600; color: var(--accent-deep);
  align-self: flex-start;
}

@media (max-width: 900px) { .promo-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   News / FAQ
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  min-width: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.news-card .news-thumb {
  width: 120px; height: 100px; border-radius: var(--radius-sm); object-fit: cover; background: var(--bg-soft);
}
.news-card .news-meta { min-width: 0; }
.news-card .news-date {
  font-size: 12px; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.news-card h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  line-height: 1.3; margin: 6px 0 6px; color: var(--ink);
}
.news-card p { font-size: 13px; color: var(--ink-muted); margin: 0; line-height: 1.5; }
.news-card .news-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: var(--bg-soft); color: var(--accent-deep);
  padding: 3px 8px; border-radius: 6px; margin-right: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card { grid-template-columns: 90px 1fr; }
  .news-card .news-thumb { width: 90px; height: 80px; }
}

.news-side { display: flex; flex-direction: column; gap: 14px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; line-height: 1; color: var(--ink-muted);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 18px 18px; font-size: 14px; color: var(--ink-muted); line-height: 1.65; }
.faq-item .faq-body p { margin: 0 0 8px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 56px 0 36px;
  margin-top: 32px;
}
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
}
.footer-brand .brand-mark { width: 56px; height: 56px; border-radius: 14px; }
.footer-brand .brand-name {
  font-family: var(--font-display); color: #fff; font-size: 22px; font-weight: 700; margin-top: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.55; max-width: 32ch; margin: 12px 0 0; }
.footer-col h3 {
  font-family: var(--font-display); color: #fff; font-size: 14px;
  margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 14px; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: #94a3b8;
}
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-disclosure {
  margin-top: 18px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.55;
  max-width: 90ch;
}
.footer-disclosure a { color: #f1f5f9; text-decoration: underline; text-underline-offset: 2px; }
.footer-col li a:hover, .footer-bottom nav a:hover { text-decoration: underline; }
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
  white-space: nowrap;
  width: 100%;
}
.mobile-cta a:hover { background: var(--accent-deep); }
@media (max-width: 1023px) { .mobile-cta { display: block; } }

/* ==========================================================================
   Misc helpers
   ========================================================================== */
.text-muted { color: var(--ink-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 28px; }
.divider { height: 1px; background: var(--border); margin: 36px 0; }

.lead-form {
  display: flex; gap: 8px; max-width: 540px; margin: 18px 0;
}
.lead-form input {
  flex: 1; min-width: 0;
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
  font: inherit; font-size: 15px; background: var(--surface); color: var(--ink);
}
.lead-form button {
  border: 0; background: var(--accent); color: #fff;
  padding: 14px 22px; border-radius: 12px; font-weight: 700; font-size: 15px;
  white-space: nowrap;
}

.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.cta-strip p { margin: 0; font-size: 14px; color: var(--ink-muted); }
.cta-strip strong { color: var(--ink); }

.callout {
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.02) 100%);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 22px;
}
.callout .callout-icon {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.callout p { margin: 4px 0 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ==========================================================================
   Article / page content
   ========================================================================== */
.article-body { max-width: 72ch; margin: 0 auto; }
.article-body p { font-size: 17px; color: var(--ink-2); line-height: 1.75; margin: 0 0 18px; }
.article-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); margin: 36px 0 12px; line-height: 1.2; }
.article-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; line-height: 1.25; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 18px; }
.article-body li { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin-bottom: 8px; }
.article-body blockquote {
  margin: 24px 0; padding: 18px 22px;
  background: var(--surface); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px; color: var(--ink-2); font-style: normal;
}
.article-body figure { margin: 24px 0; }
.article-body figure img { border-radius: var(--radius); width: 100%; height: auto; }
.article-body figure figcaption { font-size: 13px; color: var(--ink-muted); margin-top: 8px; padding: 0 4px; }

.hero-page {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hero-page .eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px;
}
.hero-page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 22ch;
}
.hero-page p.lede {
  font-size: 18px; color: var(--ink-muted); max-width: 60ch; margin: 0 0 16px;
}
.hero-page .meta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  font-size: 13px; color: var(--ink-faint); margin-top: 16px;
}
.hero-page .meta strong { color: var(--ink); }

.crumbs {
  font-size: 12px; color: var(--ink-faint);
  padding: 12px 0; display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.crumbs a:hover { color: var(--ink); }
.crumbs span.sep { opacity: 0.5; }

/* ==========================================================================
   Stats / VIP table
   ========================================================================== */
.vip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vip-table th, .vip-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  white-space: nowrap;
}
.vip-table th {
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vip-table tbody tr:nth-child(2n) { background: var(--surface-2); }
.vip-table tbody tr:last-child td { border-bottom: 0; }
.vip-table .lvl-tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(245,158,11,0.1); color: var(--accent-deep);
  font-weight: 700; font-size: 12px;
}
@media (max-width: 720px) {
  .vip-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .vip-table { min-width: 600px; }
}

/* ==========================================================================
   Form (cookie consent)
   ========================================================================== */
.cookie-panel {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: none;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-panel[data-open="true"] { display: block; }
.cookie-panel h4 { margin: 0 0 6px; font-size: 15px; }
.cookie-panel p { font-size: 13px; color: var(--ink-muted); margin: 0 0 12px; }
.cookie-panel .cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-panel button {
  font: inherit; padding: 10px 14px; border-radius: 10px; font-weight: 600;
  border: 1px solid var(--border); background: var(--surface); cursor: pointer;
}
.cookie-panel button.is-primary { background: var(--accent); border-color: transparent; color: #fff; }
.cookie-panel button.is-secondary { background: var(--surface); color: var(--ink); }
@media (min-width: 1024px) {
  .cookie-panel { left: auto; right: 24px; bottom: 24px; max-width: 380px; }
}

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