

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-hi); 
}

.mkt-wrap { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.mkt-section { max-width: var(--container-max); margin-inline: auto; padding: clamp(48px, 6.5vw, 88px) var(--gutter); }

.mkt-h2,
.mkt-prob-head h2,
.mkt-feat-title,
.mkt-finalcta-title,
.mkt-hiw-step h3,
.mkt-games-head .mkt-h2 { margin: 0; }

.mkt-kicker {
  display: inline-block; margin-bottom: 12px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sl-cyan-700); 
}
.mkt-h2 {
  font-family: var(--font-display); font-size: var(--text-h2); font-weight: 800;
  letter-spacing: var(--track-display); line-height: var(--lh-h2); color: var(--colors-text-default); max-width: 16ch;
}
.mkt-lead {
  margin-top: 12px; font-size: var(--text-lead); line-height: var(--lh-lead);
  color: var(--colors-text-subtle); max-width: 52ch; font-family: var(--font-body);
}

.mkt-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: center; pointer-events: none;
  transition: padding 0.38s var(--ease-out);
}
.mkt-header.scrolled { padding: 14px clamp(14px, 4vw, 40px); }

.mkt-header-bar {
  pointer-events: auto; width: 100%; display: flex; align-items: center;
  gap: clamp(16px, 3vw, 36px); height: var(--header-h-top);
  padding-inline: clamp(20px, 5vw, 48px);
  border-radius: 0; border-bottom: 1px solid rgba(245, 243, 247, 0.10);
  transition: max-width 0.38s var(--ease-out), height 0.38s var(--ease-out), padding 0.38s var(--ease-out),
    border-radius 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out), background 0.3s ease;
  background: transparent; border-color: transparent;
}
.mkt-header.scrolled .mkt-header-bar {
  max-width: var(--container-max); height: var(--header-h-scroll); padding: 0 12px 0 22px;
  border-radius: var(--radius-pill); border: 1px solid var(--colors-border-default);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3);
}

.mkt-header:not(.scrolled) .mkt-logo,
.mkt-header:not(.scrolled) .mkt-nav a,
.mkt-header:not(.scrolled) .mkt-navdrop-trigger,
.mkt-header:not(.scrolled) .mkt-header-link { color: var(--colors-loud-text); }
.mkt-header.scrolled .mkt-logo,
.mkt-header.scrolled .mkt-nav a,
.mkt-header.scrolled .mkt-navdrop-trigger,
.mkt-header.scrolled .mkt-header-link { color: var(--colors-text-subtle); }
.mkt-header.scrolled .mkt-nav a:hover,
.mkt-header.scrolled .mkt-navdrop-trigger:hover,
.mkt-header.scrolled .mkt-header-link:hover { color: var(--colors-text-default); }

.mkt-logo { display: flex; align-items: center; gap: 9px; flex: none; transition: color 0.3s ease; }
.mkt-logo-mark { display: block; height: 26px; width: auto; flex: none; }
.mkt-logo-word {
  display: block; height: 15px; width: 0; overflow: hidden; opacity: 0;
  transition: width 0.38s var(--ease-out), opacity 0.3s ease;
}
.mkt-header.scrolled .mkt-logo-word { width: 62px; opacity: 1; }

.mkt-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); margin-left: 6px; font-family: var(--font-body); }
.mkt-nav a, .mkt-navdrop-trigger {
  font-size: 15px; font-weight: 600;
  transition: color 0.15s;
  background: none; border: 0; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; font-family: inherit;
}
.mkt-navdrop-chev { width: 10px; height: auto; transition: transform 0.28s var(--ease-out); }
.mkt-navdrop.open .mkt-navdrop-chev { transform: rotate(180deg); }

.mkt-navdrop { position: relative; }
.mkt-navdrop-panel {
  position: absolute; top: calc(100% + 14px); left: -18px; z-index: 120;
  width: max-content; max-width: min(90vw, 380px); padding: 10px; border-radius: 22px;
  background: var(--colors-quiet-bg-raised); border: 1px solid var(--colors-quiet-border);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98); transform-origin: top left;
  transition: opacity 0.22s ease, transform 0.3s var(--ease-out), visibility 0s linear 0.3s;
}
.mkt-navdrop.open .mkt-navdrop-panel {
  opacity: 1; visibility: visible; transform: none; transition: opacity 0.2s ease, transform 0.32s var(--ease-out), visibility 0s;
}
.mkt-navdrop-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: 14px;
  transition: background 0.2s var(--ease-out);
}
.mkt-navdrop-item:hover { background: var(--sl-cyan-50); }

.mkt-navdrop-item--static { cursor: default; }
.mkt-navdrop-item--static:hover { background: transparent; }
.mkt-navdrop-ico { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--colors-quiet-text-subtle); }
.mkt-navdrop-name { display: block; font-size: 14.5px; font-weight: 700; color: var(--colors-quiet-text); font-family: var(--font-body); }
.mkt-navdrop-blurb { display: block; margin-top: 2px; font-size: 12.5px; line-height: 1.35; color: var(--colors-quiet-text-subtle); font-family: var(--font-body); }

.mkt-header-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.mkt-header-link { font-size: 15px; font-weight: 600; font-family: var(--font-body); }

.mkt-header-cta {
  font-size: 15px; font-weight: 700; color: #fff; background: var(--sl-violet-600);
  padding: 11px 20px; border-radius: var(--radius-pill); font-family: var(--font-body);
  transition: transform 0.12s, filter 0.2s;
}
.mkt-header-cta:hover { transform: translateY(-1px); filter: brightness(1.15); }

@media (max-width: 900px) {
  .mkt-nav { display: none; }
}

.mkt-hero-runway { height: calc(100vh + var(--hero-morph)); }
.mkt-hero-sticky { position: sticky; top: 0; height: 100vh; }

.mkt-hero-frame { height: 100%;
  padding: var(--hero-gap-top, 0px) var(--hero-inset, 0px) var(--hero-gap-bottom, 0px); }
.mkt-hero {
  position: relative; height: 100%; max-width: var(--hero-max, none); margin-inline: auto;
  overflow: hidden; background: var(--sl-ink);
  border-radius: var(--hero-radius, 0px);
}
.mkt-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mkt-hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(11, 10, 16, 0.62) 0%, rgba(11, 10, 16, 0.32) 34%, rgba(11, 10, 16, 0) 62%);
}
.mkt-hero-ui { position: absolute; inset: 0; display: flex; align-items: center; padding-inline: clamp(24px, 6vw, 88px); pointer-events: none; }

.mkt-hero-tag {
  margin: -12px 4px 20px; pointer-events: none;
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(15px, 1.45vw, 19px); line-height: 1.3;
  color: #FFF; text-shadow: 0 1px 5px rgba(11, 10, 16, 0.5);
}

.mkt-hero-cta {
  position: absolute; z-index: 3; pointer-events: auto;
  left: 50%; transform: translateX(-50%);
  bottom: clamp(22px, 4vw, 46px);
  display: inline-flex; align-items: center; justify-content: center;
  
  width: var(--hero-col-w); max-width: calc(100vw - 30px);
  min-height: 48px; padding: 14px 34px;
  border-radius: var(--radius-pill);
  background: #FFF; color: var(--sl-ink);
  font-family: var(--font-body); font-weight: 700; font-size: clamp(15px, 1.2vw, 16px);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(11, 10, 16, 0.22);
  transition: transform 0.18s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.mkt-hero-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 16px 38px rgba(11, 10, 16, 0.28);
}
.mkt-hero-cta:focus-visible { outline: 3px solid #FFF; outline-offset: 3px; }

@media (max-width: 620px) {
  
  .mkt-hero-cta {
    transition: transform 0.18s var(--ease-out), box-shadow 0.22s var(--ease-out),
                bottom 0.28s var(--ease-out);
  }

  
  .ck-banner-up .mkt-hero-cta { bottom: 178px; }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-hero-cta, .mkt-hero-cta:hover { transition: none; }
}

.mkt-hero { --hero-col-w: 360px; }
.mkt-hero-col { position: relative; width: var(--hero-col-w); flex: 0 0 var(--hero-col-w); }
.mkt-hero-logo { display: block; width: 128px; height: auto; margin: 0 4px 22px; color: var(--colors-loud-text); }

.mkt-zoom { transform-origin: left center; transition: transform 1.4s var(--ease-out); }
.mkt-zoom.in { transform: scale(1.02); }

.mkt-search-pill {
  display: flex; align-items: center; gap: 12px; height: 58px; width: 58px;
  padding-left: 17px; padding-right: 20px; border-radius: var(--radius-pill); overflow: hidden; position: relative;
  transition: width 0.45s var(--ease-out), transform 0.16s ease, box-shadow 0.22s ease;
}
.mkt-search-pill.expanded { width: var(--hero-col-w); }
.mkt-search-pill.pressed { transform: scale(0.9); }
.mkt-search-icon { width: 22px; height: 22px; flex: 0 0 22px; color: var(--colors-loud-text); opacity: 0.95; }
.mkt-search-text { font-family: var(--font-body); font-size: 19px; font-weight: 700; color: var(--colors-loud-text); white-space: nowrap; }
.mkt-caret { display: inline-block; width: 2px; height: 22px; background: var(--sl-cyan-400); margin-left: 1px; vertical-align: -5px; opacity: 0; }
.mkt-caret.on { animation: mkt-blink 1s steps(1) infinite; }
@keyframes mkt-blink { 50% { opacity: 0; } }

.mkt-dropdown {
  margin-top: 12px; border-radius: 16px; overflow: hidden; max-height: 0; opacity: 0; transform: translateY(-6px);
  transition: max-height 0.42s var(--ease-out), opacity 0.32s ease, transform 0.32s ease;
}
.mkt-dropdown.open { max-height: 230px; opacity: 1; transform: none; }
.mkt-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid rgba(245, 243, 247, 0.08); }
.mkt-row:last-child { border-bottom: 0; }
.mkt-row .mkt-thumb { width: 36px; height: 49px; border-radius: 6px; flex: 0 0 auto; overflow: hidden; background: rgba(245, 243, 247, 0.12); }
.mkt-row .mkt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mkt-row .mkt-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.mkt-ln { height: 9px; border-radius: 5px; background: rgba(245, 243, 247, 0.14); }
.mkt-ln.short { width: 52%; }
.mkt-sk { position: relative; overflow: hidden; }
.mkt-sk::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(245, 243, 247, 0.18), transparent); animation: mkt-shimmer 1.25s infinite;
}
@keyframes mkt-shimmer { 100% { transform: translateX(100%); } }
.mkt-row.result { opacity: 0; transform: translateY(5px); transition: opacity 0.38s ease, transform 0.38s ease, background 0.2s ease; cursor: pointer; }
.mkt-row.result.show { opacity: 1; transform: none; }
.mkt-row.result.hot { background: rgba(0, 202, 224, 0.10); }
.mkt-row.result.press { background: rgba(0, 202, 224, 0.16); }
.mkt-row.result .mkt-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; font-family: var(--font-body); }
.mkt-row.result .mkt-name { font-size: 13.5px; font-weight: 700; color: var(--colors-loud-text); line-height: 1.15; }
.mkt-row.result .mkt-sub { font-size: 10.5px; color: var(--colors-loud-text-subtle); font-family: var(--font-mono); }
.mkt-row.result .mkt-price { font-size: 14px; font-weight: 700; color: var(--sl-cyan-300); font-family: var(--font-mono); white-space: nowrap; }

.mkt-card-stage {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.5s var(--ease-out);
}
.mkt-card-stage.show { opacity: 1; }
.mkt-card-stage.ship { transform: translate(-50%, -140%) scale(0.86); opacity: 0; transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.5, -0.1, 0.7, 0); }
.mkt-card-frame {
  position: relative; width: 210px; padding: 8px; border-radius: 14px; overflow: hidden; backface-visibility: hidden;
  transform: rotateY(-90deg) scale(0.7); opacity: 0; transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease;
}
.mkt-card-frame.flip { transform: rotateY(0deg) scale(1); opacity: 1; }
.mkt-card-frame img { width: 100%; height: auto; display: block; border-radius: 8px; }
.mkt-card-frame .mkt-shine {
  position: absolute; inset: 8px; border-radius: 8px;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.5) 50%, transparent 58%);
  transform: translateX(-130%); mix-blend-mode: screen; pointer-events: none;
}
.mkt-buy-btn {
  pointer-events: auto; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--sl-ink);
  background: #fff; border: 0; padding: 13px 0; width: 210px;
  border-radius: 12px; cursor: pointer; opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.15s ease;
}
.mkt-buy-btn.show { opacity: 1; transform: none; }
.mkt-buy-btn.press { transform: scale(0.96); }
.mkt-buy-btn:hover { background: var(--sl-paper, #F5F3F7); }
.mkt-binder-btn {
  pointer-events: auto; font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--colors-loud-text);
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 210px; padding: 12px 0;
  margin-top: -4px; border-radius: 12px; cursor: pointer; opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.15s ease;
}
.mkt-binder-btn.show { opacity: 1; transform: none; }
.mkt-binder-ico { width: 17px; height: 17px; flex: 0 0 auto; }

.mkt-success {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, 10px) scale(0.92);
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--colors-loud-text); white-space: nowrap;
  opacity: 0; transition: opacity 0.4s ease, transform 0.5s var(--ease-out);
}
.mkt-success.show { opacity: 1; transform: translate(-50%, 10px) scale(1); }
.mkt-success .mkt-truck { width: 24px; height: 24px; color: #fff; flex: 0 0 auto; }

@media (prefers-reduced-motion: reduce) {
  .mkt-zoom, .mkt-search-pill, .mkt-dropdown, .mkt-row.result, .mkt-card-stage, .mkt-card-frame,
  .mkt-buy-btn, .mkt-binder-btn, .mkt-success { transition: none; }
}

@media (max-width: 900px) {
  .mkt-hero-runway { height: auto; }
  .mkt-hero-sticky { position: static; height: 100vh; min-height: 560px; }
}

.mkt-logos { border-bottom: 1px solid var(--colors-border-default); }
.mkt-logos-inner {
  max-width: var(--container-max); margin-inline: auto; padding: clamp(30px, 4.5vw, 52px) var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: clamp(18px, 2.6vw, 30px);
}
.mkt-logos-cap { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--colors-text-muted); }

.mkt-logos-rail {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.mkt-logos-track { display: flex; align-items: center; width: max-content; gap: clamp(38px, 6vw, 86px); animation: mkt-conveyor 32s linear infinite; }
.mkt-logos-rail:hover .mkt-logos-track { animation-play-state: paused; }
@keyframes mkt-conveyor { to { transform: translateX(-50%); } }
.mkt-logo-item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.mkt-logo-item img { width: clamp(96px, 9vw, 132px); height: auto; opacity: 0.72; transition: opacity 0.2s var(--ease-out); } 
.mkt-logos-rail:hover .mkt-logo-item img { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .mkt-logos-track { animation: none; } }

.mkt-prob-head { text-align: center; margin-bottom: clamp(26px, 3.2vw, 44px); }
.mkt-prob-head h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4.4vw, 3.1rem); font-weight: 800;
  letter-spacing: var(--track-display); line-height: 0.98; color: var(--colors-text-default); max-width: 27ch; margin-inline: auto;
}

.mkt-prob-turn { margin-top: 14px !important; font-weight: 700; color: var(--colors-text-default) !important; }
.mkt-prob-head .mkt-kicker { margin-bottom: 7px; }
.mkt-prob-head p { margin-top: 12px; font-family: var(--font-body); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.5; color: var(--colors-text-subtle); max-width: 44ch; margin-inline: auto; }

.mkt-prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.mkt-prob-left { display: flex; flex-direction: column; gap: clamp(16px, 1.7vw, 24px); }
.mkt-prob-tabs { display: flex; flex-direction: column; gap: clamp(4px, 0.6vw, 10px); }
.mkt-prob-tab-head {
  display: flex; align-items: center; gap: 15px; width: 100%; text-align: left; border: 0; background: none;
  font-family: var(--font-display); cursor: pointer; padding: 16px 8px; color: var(--colors-text-muted); transition: color 0.25s var(--ease-out);
}
.mkt-prob-tab-head:hover { color: var(--colors-text-subtle); }
.mkt-prob-tab.active .mkt-prob-tab-head { color: var(--colors-text-default); }
.mkt-tab-title { font-size: clamp(21px, 2.3vw, 28px); font-weight: 700; letter-spacing: var(--track-display); line-height: 1.1; }
.mkt-chev { width: 18px; height: 18px; flex: 0 0 auto; opacity: 0.75; transition: transform 0.38s var(--ease-out); }
.mkt-prob-tab.active .mkt-chev { transform: rotate(90deg); color: var(--sl-cyan-400); }
.mkt-prob-reveal { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.42s var(--ease-out); }
.mkt-prob-tab.active .mkt-prob-reveal { grid-template-rows: 1fr; }
.mkt-prob-reveal > div { overflow: hidden; }
.mkt-prob-body { margin: 2px 8px 14px 41px; font-family: var(--font-body); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.58; color: var(--colors-text-subtle); }

.mkt-prob-pole {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 11px; padding: 6px 15px 6px 6px;
  border-radius: var(--radius-pill); background: var(--colors-bg-container); border: 1px solid var(--colors-border-default);
}
.mkt-prob-play {
  flex: 0 0 auto; width: 30px; height: 30px; border: 0; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--sl-ink); background: var(--sl-cyan-400); transition: transform 0.16s var(--ease-out);
}
.mkt-prob-play:hover { transform: scale(1.06); }
.mkt-prob-play svg { width: 13px; height: 13px; }
.mkt-prob-track { width: 100px; height: 5px; border-radius: var(--radius-pill); background: var(--colors-border-default); overflow: hidden; }
.mkt-prob-track i { display: block; height: 100%; width: 100%; transform-origin: left; transform: scaleX(0); background: var(--sl-cyan-400); border-radius: var(--radius-pill); }
.mkt-prob-track i.running { animation: mkt-prob-fill linear forwards; }
@keyframes mkt-prob-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.mkt-prob-card {
  position: relative; aspect-ratio: 3 / 4; align-self: center; height: 76vh; max-height: 640px; width: auto;
  max-width: 100%; margin-inline: auto; border-radius: 22px; overflow: hidden; background: var(--colors-bg-container);
}
.mkt-prob-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mkt-prob-chat {
  position: absolute; inset: 0; margin: auto;
  width: min(86%, 400px); height: 62%; pointer-events: none;
}

.mkt-chat {
  width: 100%; height: 100%; display: flex; flex-direction: column; overflow: hidden; border-radius: 24px; color: var(--colors-loud-text);
  
  background: rgba(11, 10, 16, 0.62); -webkit-backdrop-filter: blur(8px) saturate(1.06); backdrop-filter: blur(8px) saturate(1.06);
  font-family: var(--font-body);
}
.mkt-chat-head { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border-bottom: 1px solid rgba(245, 243, 247, 0.12); background: rgba(0, 0, 0, 0.22); }
.mkt-chat-avatar { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--colors-loud-text); background: rgba(245, 243, 247, 0.14); }
.mkt-chat-avatar--anon svg { width: 20px; height: 20px; opacity: 0.72; }
.mkt-chat-id { flex: 1; min-width: 0; }
.mkt-chat-name { font-size: 14.5px; font-weight: 700; line-height: 1.15; }
.mkt-chat-status { font-size: 11px; color: var(--colors-loud-text-subtle); margin-top: 1px; }
.mkt-chat-body { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; padding: 14px 16px; overflow: hidden; }
.mkt-cmsg { max-width: 84%; padding: 10px 14px 11px; border-radius: 18px; font-size: 14.5px; line-height: 1.4; color: var(--colors-loud-text); animation: mkt-cmsg-in 0.5s var(--ease-out) backwards; }
.mkt-cmsg--in { align-self: flex-start; background: rgba(245, 243, 247, 0.14); border-bottom-left-radius: 6px; }
.mkt-cmsg--out { align-self: flex-end; background: var(--sl-violet-600); border-bottom-right-radius: 6px; }
.mkt-cmsg-author { display: block; font-size: 12px; font-weight: 700; margin-bottom: 2px; color: var(--sl-cyan-300); }
.mkt-cmsg--typing { padding: 11px 13px; }
.mkt-cmsg-dots { display: inline-flex; gap: 4px; align-items: center; }
.mkt-cmsg-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(245, 243, 247, 0.72); animation: mkt-dot 1.2s infinite ease-in-out; }
.mkt-cmsg-dots i:nth-child(2) { animation-delay: 0.16s; }
.mkt-cmsg-dots i:nth-child(3) { animation-delay: 0.32s; }
@keyframes mkt-dot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }
.mkt-cdiv { align-self: center; margin: 3px 0; animation: mkt-cmsg-in 0.5s var(--ease-out) backwards; }
.mkt-cdiv span { font-size: 10.5px; color: var(--colors-loud-text-subtle); background: rgba(0, 0, 0, 0.2); padding: 4px 11px; border-radius: 999px; }
.mkt-chat-input { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-top: 1px solid rgba(245, 243, 247, 0.12); background: rgba(0, 0, 0, 0.22); }
.mkt-chat-field { flex: 1; font-size: 13.5px; color: var(--colors-loud-text-subtle); background: rgba(245, 243, 247, 0.1); border-radius: 999px; padding: 9px 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mkt-chat-send { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; color: var(--sl-ink); background: var(--sl-cyan-400); }
.mkt-chat-send svg { width: 16px; height: 16px; }
@keyframes mkt-cmsg-in { from { opacity: 0; transform: translateY(12px) scale(0.985); } to { opacity: 1; transform: none; } }

@media (max-width: 820px) {
  .mkt-prob-grid { grid-template-columns: 1fr; gap: 24px; }
  .mkt-prob-card { height: auto; max-width: 400px; margin-inline: auto; width: 100%; }
}

.mkt-hiw-head { text-align: center; margin-inline: auto; margin-bottom: clamp(40px, 5vw, 66px); }

.mkt-hiw-head .mkt-kicker { margin-bottom: 18px; }
.mkt-hiw-head .mkt-h2 {
  max-width: none; margin-inline: auto;
  font-size: clamp(30px, 4.6vw, 52px);
}
.mkt-hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.mkt-hiw-step { display: flex; flex-direction: column; }
.mkt-hiw-tile {
  position: relative; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; margin-bottom: 20px;
  background: var(--colors-bg-container);
  transition: transform 0.22s var(--ease-out);
}
.mkt-hiw-step:hover .mkt-hiw-tile { transform: translateY(-4px); }
.mkt-hiw-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.mkt-hiw-step h3 { margin-top: 18px; font-family: var(--font-display); font-size: clamp(19px, 1.6vw, 22px); font-weight: 700; line-height: 1.16; letter-spacing: var(--track-display); color: var(--colors-text-default); }
.mkt-hiw-step p { margin-top: 8px; font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--colors-text-subtle); max-width: 40ch; }

.mkt-hs-root { position: absolute; inset: 0; z-index: 2; }
.mkt-hs { position: absolute; left: 50%; top: clamp(24px, 12%, 56px); transform: translateX(-50%); width: 78%; display: flex; flex-direction: column; gap: 9px; color: var(--colors-loud-text); }
.mkt-hs .glass { -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); }
.mkt-hs-pill { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-radius: 999px; background: rgba(11, 10, 16, 0.5); overflow: hidden; }
.mkt-hs-pill svg { width: 15px; height: 15px; flex: 0 0 auto; opacity: 0.82; }
.mkt-hs-q { flex: 1; font-family: var(--font-body); font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; }
.mkt-hs-caret { width: 2px; height: 14px; background: var(--sl-cyan-400); opacity: 0; flex: 0 0 auto; }
.mkt-hs-caret.on { animation: mkt-blink 1.05s steps(1) infinite; }
.mkt-hs-drop { max-height: 0; opacity: 0; transform: translateY(-6px); overflow: hidden; border-radius: 14px; background: rgba(11, 10, 16, 0.5); transition: max-height 0.42s var(--ease-out), opacity 0.32s ease, transform 0.32s ease; }
.mkt-hs-drop.open { max-height: 200px; opacity: 1; transform: none; }
.mkt-hs-row { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-bottom: 1px solid rgba(245, 243, 247, 0.08); }
.mkt-hs-row:last-child { border-bottom: 0; }
.mkt-hs-result { cursor: pointer; opacity: 0; transform: translateY(5px); transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease; }
.mkt-hs-result.show { opacity: 1; transform: none; }
.mkt-hs-result.hot { background: rgba(0, 202, 224, 0.12); }
.mkt-hs-result.press { background: rgba(0, 202, 224, 0.2); }
.mkt-hs-thumb { width: 32px; height: 45px; border-radius: 5px; overflow: hidden; flex: 0 0 auto; }
.mkt-hs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mkt-hs-meta { flex: 1; min-width: 0; font-family: var(--font-body); }
.mkt-hs-name { font-size: 12.5px; font-weight: 700; }
.mkt-hs-sub { font-size: 9.5px; color: var(--colors-loud-text-subtle); font-family: var(--font-mono); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mkt-hs-price { font-size: 12.5px; font-weight: 700; font-family: var(--font-mono); color: var(--sl-cyan-300); white-space: nowrap; }
.mkt-hs-ghost .mkt-hs-th { width: 32px; height: 45px; border-radius: 5px; background: rgba(245, 243, 247, 0.13); flex: 0 0 auto; }
.mkt-hs-ghost .mkt-hs-ln { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mkt-hs-ghost .mkt-hs-ln i { height: 7px; border-radius: 4px; background: rgba(245, 243, 247, 0.13); display: block; }
.mkt-hs-ghost .mkt-hs-ln i:last-child { width: 52%; }
.mkt-hs-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; z-index: 3; transition: opacity 0.3s ease; }
.mkt-hs-stage.show { opacity: 1; }
.mkt-hs-cardframe { position: relative; width: clamp(118px, 48%, 164px); border-radius: 10px; overflow: hidden; backface-visibility: hidden; transform: rotateY(-90deg) scale(0.7); opacity: 0; transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease; }
.mkt-hs-cardframe.flip { transform: rotateY(0deg) scale(1); opacity: 1; }
.mkt-hs-cardframe img { width: 100%; height: auto; display: block; }
.mkt-hs-shine { position: absolute; inset: 0; border-radius: 10px; pointer-events: none; mix-blend-mode: screen; background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.5) 50%, transparent 58%); transform: translateX(-130%); }

.mkt-st-root { position: absolute; inset: 0; z-index: 2; }
.mkt-st { position: absolute; left: 50%; top: clamp(20px, 10%, 48px); transform: translateX(-50%); width: 84%; display: flex; flex-direction: column; gap: 12px; color: var(--colors-loud-text); }
.mkt-st .glass { -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); }
.mkt-st-card { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.55s var(--ease-out); border-radius: 16px; background: rgba(11, 10, 16, 0.5); font-family: var(--font-body); }
.mkt-st-card.in { opacity: 1; transform: none; }
.mkt-st-profile { display: flex; align-items: center; gap: 13px; padding: 15px 17px; }
.mkt-st-avatar { width: 46px; height: 46px; border-radius: 13px; flex: 0 0 auto; display: grid; place-items: center; font-size: 16px; font-weight: 800; color: var(--sl-ink); background: var(--sl-violet-400); }
.mkt-st-id { flex: 1; min-width: 0; }
.mkt-st-namerow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mkt-st-name { font-size: 17px; font-weight: 700; color: var(--colors-loud-text); }
.mkt-st-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--sl-ink); background: var(--sl-cyan-400); padding: 3px 9px 3px 7px; border-radius: 999px; white-space: nowrap; }
.mkt-st-verified svg { width: 12px; height: 12px; }
.mkt-st-stats { display: flex; align-items: center; gap: 9px; margin-top: 6px; font-size: 12.5px; color: var(--colors-loud-text-subtle); font-family: var(--font-mono); }
.mkt-st-stats b { color: var(--colors-loud-text); font-weight: 700; }
.mkt-st-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--colors-loud-text-subtle); flex: 0 0 auto; }
.mkt-st-rate { display: inline-flex; align-items: center; gap: 4px; color: var(--colors-loud-text); }
.mkt-st-rate svg { width: 13px; height: 13px; color: var(--sl-cyan-300); }
.mkt-st-rate em { font-style: normal; color: var(--colors-loud-text-subtle); }
.mkt-st-review { padding: 14px 17px; }
.mkt-st-rv-top { display: flex; align-items: center; gap: 10px; }
.mkt-st-rv-av { width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--sl-ink); background: var(--sl-violet-400); }
.mkt-st-rv-name { font-size: 14px; font-weight: 700; color: var(--colors-loud-text); }
.mkt-st-rv-stars { margin-left: auto; font-size: 14px; color: var(--sl-cyan-300); letter-spacing: 1.5px; }
.mkt-st-rv-text { margin-top: 10px; font-size: 13.5px; line-height: 1.5; color: var(--colors-loud-text-subtle); }

.mkt-tk-root { position: absolute; inset: 0; z-index: 2; }
.mkt-tk { position: absolute; left: 50%; top: clamp(20px, 10%, 48px); transform: translateX(-50%); width: 84%; padding: 15px 17px; border-radius: 16px; background: rgba(11, 10, 16, 0.5); color: var(--colors-loud-text); font-family: var(--font-body); }
.mkt-tk.glass { -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); }
.mkt-tk-head { display: flex; align-items: center; gap: 8px; }
.mkt-tk-hico { width: 17px; height: 17px; flex: 0 0 auto; color: var(--sl-cyan-300); }
.mkt-tk-order { flex: 1; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--colors-loud-text-subtle); }
.mkt-tk-step { font-family: var(--font-mono); font-size: 12px; color: var(--colors-loud-text-subtle); }
.mkt-tk-stagewrap { position: relative; height: 52px; margin: 11px 0; }
.mkt-tk-item { position: absolute; inset: 0; display: flex; align-items: center; gap: 11px; opacity: 0; transform: translateY(14px); transition: opacity 0.42s ease, transform 0.48s var(--ease-out); }
.mkt-tk-item.in { opacity: 1; transform: none; }
.mkt-tk-item.out { opacity: 0; transform: translateY(-16px); }
.mkt-tk-item-ico { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; display: grid; place-items: center; background: rgba(245, 243, 247, 0.14); }
.mkt-tk-item-ico svg { width: 18px; height: 18px; color: var(--colors-loud-text); }
.mkt-tk-item-text { font-size: 14.5px; font-weight: 700; line-height: 1.3; color: var(--colors-loud-text); }
.mkt-tk-bar { height: 4px; border-radius: 999px; background: rgba(245, 243, 247, 0.16); overflow: hidden; }
.mkt-tk-bar i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--sl-cyan-400); transition: width 0.55s var(--ease-out); }

@media (max-width: 820px) {
  .mkt-hiw-grid { grid-template-columns: 1fr; gap: 28px; }
  .mkt-hiw-step { max-width: 440px; margin-inline: auto; width: 100%; }
}

.mkt-feat-runway { height: calc(100vh + var(--feat-morph, 0px)); }

.mkt-feat-sticky { position: sticky; top: 0; height: 100vh; }

.mkt-feat {
  position: relative; overflow: hidden; isolation: isolate; background: #A0B6DC;
  padding-top: clamp(84px, 9vh, 120px); padding-bottom: clamp(28px, 4vh, 52px);
  height: 100%; min-height: 0; display: flex; flex-direction: column; justify-content: center;
}
.mkt-feat-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.mkt-feat-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.mkt-feat-bg picture { display: contents; }
.mkt-feat-fade-top { position: absolute; top: 0; left: 0; right: 0; height: 30%; z-index: 1; background: linear-gradient(180deg, var(--colors-bg-page), transparent); }

.mkt-feat-head {
  position: relative; z-index: 2; width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; flex-direction: column; align-items: flex-start; gap: clamp(6px, 0.8vw, 10px); margin-bottom: clamp(12px, 1.6vw, 20px);
}
.mkt-feat-title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1; letter-spacing: var(--track-display); color: var(--sl-ink); max-width: 18ch;
}

.mkt-feat-intro {
  max-width: 60ch; font-family: var(--font-body); font-size: clamp(15px, 1.1vw, 17.5px); line-height: 1.5;
  color: var(--colors-text-subtle); padding-top: 2px;
}
.mkt-feat-intro em { font-style: normal; font-weight: 700; color: var(--sl-violet-600); }

.mkt-feat-tabs {
  position: relative; z-index: 2; width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter);
  margin-bottom: clamp(12px, 1.5vw, 18px); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.mkt-feat-nav { display: flex; gap: 10px; }

@media (max-width: 900px) { .mkt-feat-nav { display: none; } }

.mkt-navbtn {
  width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid rgba(0, 202, 224, 0.7); background: rgba(255, 255, 255, 0.55);
  color: var(--sl-ink); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform 0.16s var(--ease-out), background 0.18s, color 0.18s, border-color 0.18s;
}
.mkt-navbtn:hover { background: var(--sl-cyan-400); color: var(--sl-ink); border-color: var(--sl-cyan-400); }
.mkt-navbtn svg { width: 18px; height: 18px; }
.mkt-feat-tabs:has(.mkt-seg[data-active="sellers"]) .mkt-navbtn { border-color: rgba(123, 63, 242, 0.5); background: rgba(123, 63, 242, 0.1); }
.mkt-feat-tabs:has(.mkt-seg[data-active="sellers"]) .mkt-navbtn:hover { background: var(--sl-violet-500); color: #fff; border-color: var(--sl-violet-500); }

.mkt-seg { position: relative; display: inline-flex; padding: 5px; background: var(--colors-bg-container); border-radius: 999px; }
.mkt-seg-thumb { position: absolute; top: 5px; left: 5px; width: calc(50% - 5px); height: calc(100% - 10px); background: var(--sl-cyan-400); border-radius: 999px; transition: transform 0.34s var(--ease-out), background 0.34s var(--ease-out); }
.mkt-seg[data-active="sellers"] .mkt-seg-thumb { transform: translateX(100%); background: var(--sl-violet-500); }
.mkt-seg-btn { position: relative; z-index: 1; flex: 1; min-width: 128px; border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-size: 14.5px; font-weight: 700; color: var(--colors-text-subtle); padding: 11px 22px; border-radius: 999px; transition: color 0.22s; }
.mkt-seg-btn.on { color: var(--sl-ink); }

.mkt-feat-rail { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px;
  flex: 1 1 auto; min-height: 0;
  overflow-x: auto; overflow-y: hidden;
  padding-block: 18px 8px;
  padding-inline: max(var(--gutter), calc((100% - var(--container-max)) / 2 + var(--gutter)));
  scrollbar-width: none; }
.mkt-feat-rail::-webkit-scrollbar { display: none; }

.mkt-feat-card {
  flex: 0 0 auto;
  
  height: min(60vh, 100%);
  max-height: 620px;
  width: auto; aspect-ratio: 5 / 7;
  
  scroll-snap-align: start; position: relative;
  display: flex; flex-direction: column; border-radius: 22px; overflow: hidden; padding: clamp(24px, 2.2vw, 34px);
  padding-bottom: clamp(28px, 2.6vw, 42px); color: var(--colors-loud-text);
  background: linear-gradient(180deg, rgba(11, 10, 16, 0.46) 0%, rgba(11, 10, 16, 0.62) 62%, rgba(11, 10, 16, 0.74) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(1.2); backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--glass-border);
  transition: transform 0.22s var(--ease-out);
}
.mkt-feat-card:hover { transform: translateY(-5px); }

.mkt-feat-card--found { border-color: rgba(0, 202, 224, 0.5); }
.mkt-feat-card--earned { border-color: rgba(123, 63, 242, 0.5); }
.mkt-feat-card h3 { font-family: var(--font-display); font-size: clamp(18px, 1.5vw, 21px); font-weight: 700; letter-spacing: var(--track-display); }
.mkt-feat-card p { margin-top: 8px; font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--colors-loud-text-subtle); }
.mkt-feat-card-foot { margin-top: auto; }
.mkt-feat-visual { flex: 1; display: flex; align-items: center; }
.mkt-feat-visual svg { width: 100%; height: auto; }

.mkt-feat-graph { flex: 1; }
.mkt-feat-graph-svg { width: 100%; height: auto; display: block; }
.mkt-feat-graph-tabs { display: flex; gap: 6px; margin-top: 12px; }
.mkt-feat-graph-tabs button {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--colors-loud-text-subtle);
  background: none; border: 1px solid var(--colors-border-default); border-radius: 999px; padding: 4px 10px; cursor: pointer;
}
.mkt-feat-graph-tabs button.on { color: var(--sl-ink); background: var(--sl-cyan-400); border-color: var(--sl-cyan-400); }

@media (max-width: 900px) {
  .mkt-feat-head { flex-direction: column; }
  
  .mkt-feat-runway { height: auto; }
  .mkt-feat-sticky { position: static; height: auto; }
  
  .mkt-feat-rail { scroll-snap-type: x proximity; flex: 0 0 auto; }
  
  .mkt-feat-card {
    height: auto;
    width: min(74vw, 330px);
    aspect-ratio: 5 / 7;
    min-width: 0;
  }
  .mkt-feat { min-height: 0; }
  .mkt-feat-rail { padding-block: 12px 6px; }
}

.mkt-games { position: relative; overflow: hidden; padding: clamp(56px, 7vw, 104px) 0 clamp(48px, 6vw, 88px); }
.mkt-games-sky { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.mkt-games-veil {
  position: absolute; inset: 0;
  
  background: linear-gradient(180deg, rgba(245, 243, 247, 0) 0%, rgba(245, 243, 247, 0) 74%, var(--colors-bg-page) 100%);
}

.mkt-games-head { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto clamp(16px, 2.2vw, 28px); padding-inline: var(--gutter); text-align: center; }
.mkt-games-head .mkt-h2 { max-width: none; margin-inline: auto; }
.mkt-games-head .mkt-lead { margin-inline: auto; max-width: 48ch; }

.mkt-games-row { position: relative; z-index: 2; width: 80%; margin-inline: auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.8vw, 30px); list-style: none; padding: 0; }
.mkt-gitem-link { display: block; }

.mkt-gitem { display: block; }

.mkt-gcase {
  --pad: clamp(6px, 0.72vw, 11px); --thick: clamp(9px, 1vw, 16px);
  display: block; perspective: 900px;
  transition: filter 0.5s ease;
}
.mkt-gcase-body { display: block; position: relative; transform-style: preserve-3d; transition: transform 0.5s cubic-bezier(0.25, 0.7, 0.25, 1); }

.mkt-gcase-front {
  display: block; padding: var(--pad); border-radius: calc(var(--pad) + 7px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0.10) 62%, rgba(255, 255, 255, 0.44) 100%),
    rgba(233, 241, 250, 0.30);
  -webkit-backdrop-filter: blur(2px) saturate(1.15); backdrop-filter: blur(2px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}
.mkt-gcase-front img { display: block; width: 100%; height: auto; border-radius: 4px; }

.mkt-gcase-edge {
  position: absolute; top: 0; left: 100%; width: var(--thick); height: 100%;
  transform-origin: left center; transform: rotateY(90deg);
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(214, 228, 242, 0.72) 18%, rgba(236, 244, 252, 0.85) 50%, rgba(206, 222, 238, 0.7) 82%, rgba(255, 255, 255, 0.9) 100%);
}

.mkt-gitem-link:hover .mkt-gcase-body,
.mkt-gitem-link:focus-visible .mkt-gcase-body { transform: rotateY(-15deg); }

.mkt-gitem-link:focus-visible { outline: 2px solid var(--sl-cyan-700); outline-offset: 8px; border-radius: 10px; }

@media (prefers-reduced-motion: reduce) {
  .mkt-gcase-body { transition: none; }
  .mkt-gitem-link:hover .mkt-gcase-body, .mkt-gitem-link:focus-visible .mkt-gcase-body { transform: none; }
}

.mkt-gitem-meta { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: clamp(14px, 1.6vw, 22px); text-align: center; }
.mkt-gitem-logo { display: block; width: 100%; height: auto; }
.mkt-gitem-count { font-family: var(--font-body); font-size: clamp(12px, 1vw, 15px); color: var(--colors-text-subtle); }
.mkt-games-more { position: relative; z-index: 2; margin-top: clamp(24px, 3vw, 40px); text-align: center; font-family: var(--font-body); font-size: clamp(15px, 1.1vw, 17px); color: var(--colors-text-muted); }

@media (max-width: 980px) { .mkt-games-row { width: 90%; grid-template-columns: repeat(3, 1fr); row-gap: clamp(26px, 4vw, 40px); } }
@media (max-width: 560px) { .mkt-games-row { width: 92%; grid-template-columns: repeat(2, 1fr); } }

.mkt-reviews { max-width: var(--container-max); margin-inline: auto; padding: clamp(48px, 7vw, 96px) var(--gutter); }
.mkt-rev-stage { position: relative; overflow: hidden; border-radius: clamp(20px, 2.4vw, 30px); height: clamp(400px, 44vw, 500px); background: var(--colors-bg-container); }
.mkt-rev-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 44%; z-index: 0; background-size: cover; background-position: center 26%; }
.mkt-rev-panel {
  position: absolute; left: 0; top: 0; bottom: 0; width: 62%; z-index: 1; background: var(--sl-cyan-400); color: var(--sl-ink);
  border-radius: 0 clamp(40px, 6vw, 100px) clamp(40px, 6vw, 100px) 0; padding: clamp(30px, 4.2vw, 56px) clamp(30px, 4.2vw, 58px);
}
.mkt-rev-quote { font-family: var(--font-display); font-weight: 800; letter-spacing: var(--track-display); font-size: clamp(20px, 2.6vw, 36px); line-height: 1.1; color: var(--sl-ink); max-width: min(84%, 44ch); margin: 0; }
.mkt-rev-cite { margin-top: clamp(18px, 2.2vw, 28px); font-family: var(--font-body); }
.mkt-rev-name { font-weight: 700; font-size: clamp(15px, 1.2vw, 17px); color: var(--sl-ink); }
.mkt-rev-role { margin-top: 4px; font-size: clamp(13px, 1vw, 15px); color: rgba(11, 10, 16, 0.62); }
.mkt-rev-nav { position: absolute; left: clamp(30px, 4.2vw, 58px); bottom: clamp(26px, 3vw, 42px); display: flex; gap: 10px; }
.mkt-rev-arrow { position: relative; width: 44px; height: 44px; border-radius: 999px; border: 0; background: transparent; color: var(--sl-ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.18s var(--ease-out), color 0.18s; }
.mkt-rev-arrow:hover { background: var(--sl-ink); color: var(--sl-cyan-400); }
.mkt-rev-arrow-ico { position: relative; z-index: 1; width: 18px; height: 18px; }
.mkt-rev-ring { position: absolute; inset: 0; width: 44px; height: 44px; transform: rotate(-90deg); }
.mkt-rev-ring circle { fill: none; }
.mkt-rev-ring-track { stroke: rgba(11, 10, 16, 0.28); stroke-width: 1.6; }
.mkt-rev-ring-prog { stroke: var(--sl-ink); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 126; stroke-dashoffset: 126; }
.mkt-rev-ring-prog.running { animation: mkt-rev-ring 7000ms linear both; }
@keyframes mkt-rev-ring { to { stroke-dashoffset: 0; } }
.mkt-rev-mark { position: absolute; right: clamp(26px, 3vw, 46px); bottom: -4px; font-family: var(--font-display); font-weight: 800; line-height: 1; color: var(--sl-ink); font-size: clamp(60px, 8vw, 116px); user-select: none; pointer-events: none; }

@media (max-width: 760px) {
  .mkt-rev-stage { height: auto; min-height: 0; display: flex; flex-direction: column; }
  .mkt-rev-photo {
    display: block; position: relative; inset: auto;
    width: 100%; aspect-ratio: 4 / 3; background-position: center 22%;
  }
  .mkt-rev-panel { position: relative; width: 100%; border-radius: 0; padding-bottom: clamp(90px, 20vw, 110px); }
}

.mkt-cta-row {
  max-width: var(--container-max); margin-inline: auto;
  padding: 0 var(--gutter) clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(12px, 1.6vw, 18px); text-align: center;
}
.mkt-cta-row-line {
  margin: 0; font-family: var(--font-body); font-size: clamp(14px, 1.1vw, 16px);
  color: var(--colors-text-subtle); text-align: center;
}
.mkt-cta-row .mkt-btn-go {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  background: var(--sl-violet-600); color: var(--sl-paper);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  white-space: nowrap;
  transition: transform 0.16s var(--ease-out), filter 0.2s var(--ease-out);
}
.mkt-cta-row .mkt-btn-go:hover { transform: translateY(-1px); filter: brightness(1.08); }
.mkt-cta-row .mkt-btn-go:focus-visible { outline: 2px solid var(--sl-ink); outline-offset: 3px; }

@media (max-width: 640px) {
  
  .mkt-cta-row { align-items: stretch; }
  .mkt-cta-row .mkt-btn-go { width: 100%; padding-block: 15px; }
}

.mkt-faq {
  background: var(--colors-quiet-bg); color: var(--colors-quiet-text);
  max-width: none; margin: 0; padding: clamp(64px, 9vw, 120px) 0;
}
.mkt-faq-inner {
  max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 6vw, 88px); align-items: start;
}
.mkt-faq-head h2 { font-family: var(--font-body); font-weight: 800; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.01em; color: var(--colors-quiet-text); }
.mkt-faq-head p { margin-top: 18px; font-family: var(--font-body); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.5; color: var(--colors-quiet-text-subtle); }
.mkt-faq-head a { color: var(--colors-quiet-link); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.mkt-faq-list { border-top: 1px solid var(--colors-quiet-border); }
.mkt-faq-item { border-bottom: 1px solid var(--colors-quiet-border); }
.mkt-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: none; border: 0; cursor: pointer; font-family: var(--font-body); text-align: left; padding: clamp(18px, 2vw, 24px) 0; color: var(--colors-quiet-text); font-size: clamp(16px, 1.4vw, 19px); font-weight: 700; line-height: 1.3; }
.mkt-faq-chev { width: 20px; height: 20px; flex: 0 0 auto; color: var(--colors-quiet-link); transition: transform 0.34s var(--ease-out); }
.mkt-faq-item.open .mkt-faq-chev { transform: rotate(180deg); }
.mkt-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease-out); }
.mkt-faq-item.open .mkt-faq-a { grid-template-rows: 1fr; }
.mkt-faq-a > div { overflow: hidden; }

.mkt-faq-a p {
  padding-bottom: clamp(18px, 2vw, 24px); max-width: 56ch; font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.6; color: var(--colors-quiet-text-subtle);
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.32s var(--ease-out) 0.04s, transform 0.32s var(--ease-out) 0.04s;
}
.mkt-faq-item.open .mkt-faq-a p { opacity: 1; transform: none; }

@media (max-width: 820px) { .mkt-faq-inner { grid-template-columns: 1fr; gap: 6px; } }

.mkt-finalcta { max-width: var(--container-max); margin-inline: auto; padding: clamp(64px, 9vw, 110px) var(--gutter) clamp(64px, 9vw, 110px); background: var(--colors-bg-page); }

.mkt-finalcta-panel {
  position: relative; overflow: hidden; border-radius: 24px;
  background: var(--sl-violet-950);
}

.mkt-finalcta-shape {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: var(--sl-violet-800); display: block;
}

.mkt-finalcta .mkt-finalcta-panel {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mkt-finalcta .mkt-finalcta-panel:hover {
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -24px rgba(11, 10, 16, 0.45);
}

.mkt-finalcta .mkt-finalcta-panel .mkt-finalcta-shape { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.mkt-finalcta .mkt-finalcta-panel:hover .mkt-finalcta-shape {
  transition: transform 0.6s var(--ease-out);
  transform: scale(1.05) translateY(-2.5%);
}

.mkt-finalcta-shape[data-reveal] path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.mkt-finalcta-shape[data-reveal].is-in path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-finalcta .mkt-finalcta-panel, .mkt-finalcta .mkt-finalcta-shape { transition: none; }
  .mkt-finalcta .mkt-finalcta-panel:hover { transform: none; }
  .mkt-finalcta .mkt-finalcta-panel:hover .mkt-finalcta-shape { transform: none; }
  .mkt-finalcta-shape[data-reveal] path { stroke-dashoffset: 0; }
}

.mkt-finalcta-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 5vw, 72px); padding: clamp(32px, 4.4vw, 50px) clamp(28px, 4.6vw, 56px); }
.mkt-finalcta-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.02; letter-spacing: var(--track-display); color: var(--colors-loud-text); max-width: 20ch; }

.mkt-finalcta-lead { margin-top: 14px; max-width: 54ch; font-family: var(--font-body); font-size: clamp(14px, 1.05vw, 16px); line-height: 1.5; color: var(--sl-neutral-300); }
.mkt-finalcta-actions { flex: 0 0 auto; display: flex; gap: 12px; }
.mkt-finalcta-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 176px; font-family: var(--font-body); font-size: 15px; font-weight: 700; padding: 13px 24px; border-radius: var(--radius-pill); white-space: nowrap; transition: transform 0.14s var(--ease-out), filter 0.2s var(--ease-out); }

.mkt-finalcta-btn--primary { color: var(--sl-ink); background: var(--sl-paper); }
.mkt-finalcta-btn--primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.mkt-finalcta-btn--secondary { color: var(--colors-loud-text); background: rgba(245, 243, 247, 0.1); border: 1px solid rgba(245, 243, 247, 0.3); }
.mkt-finalcta-btn--secondary:hover { background: rgba(245, 243, 247, 0.16); }

@media (max-width: 760px) {
  .mkt-finalcta-content { flex-direction: column; align-items: flex-start; gap: 22px; }
  .mkt-finalcta-actions { width: 100%; }
  
  .mkt-finalcta-btn { flex: 1 1 0; min-width: 0; }
}

.mkt-footer {
  position: relative; overflow: hidden; background: var(--sl-butter-50); color: var(--sl-ink);
  padding: clamp(56px, 7vw, 90px) 0 0; border-top: 1px solid rgba(11, 10, 16, 0.08);
}
.mkt-footer-inner { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.mkt-footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 0.85fr 0.85fr 1fr; gap: clamp(24px, 3vw, 44px); }
.mkt-footer-brand { max-width: 320px; }
.mkt-footer-logo { height: 22px; width: auto; display: block; margin-bottom: 22px; color: var(--sl-ink); }
.mkt-footer-tag { font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 26px); font-weight: 700; line-height: 1.15; letter-spacing: var(--track-display); color: var(--sl-ink); }
.mkt-footer-col h4 { font-family: var(--font-body); font-size: 14.5px; font-weight: 700; color: var(--sl-ink); margin-bottom: 18px; }
.mkt-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }
.mkt-footer-col li { display: flex; align-items: center; flex-wrap: wrap; gap: 5px 8px; }
.mkt-footer-col a { font-family: var(--font-body); font-size: 14.5px; color: rgba(11, 10, 16, 0.64); transition: color 0.18s var(--ease-out); }
.mkt-footer-col a:hover { color: var(--sl-ink); }

.mkt-footer-static { font-family: var(--font-body); font-size: 14.5px; color: rgba(11, 10, 16, 0.64); }
.mkt-footer-badge { flex: 0 0 auto; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 7px; border-radius: 999px; color: var(--sl-violet-800); background: rgba(123, 63, 242, 0.14); border: 1px solid rgba(123, 63, 242, 0.3); }
.mkt-footer-social a { display: inline-flex; align-items: center; gap: 10px; }
.mkt-footer-social svg { width: 17px; height: 17px; flex: 0 0 auto; }
.mkt-footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  padding: 18px 0 22px; border-top: 1px solid rgba(11, 10, 16, 0.1);
  font-family: var(--font-body); font-size: 13px; color: rgba(11, 10, 16, 0.5);
}

.mkt-footer-mark {
  position: relative; z-index: 1;
  margin-top: clamp(48px, 6vw, 80px);
  padding-inline: var(--gutter);
  color: var(--sl-butter-100);
  user-select: none; pointer-events: none;
}
.mkt-footer-mark svg { display: block; width: 100%; height: auto; }

@media (max-width: 960px) {
  .mkt-footer-top { grid-template-columns: 1.25fr 0.75fr; gap: 34px 20px; }
  .mkt-footer-brand { grid-column: 1 / -1; max-width: none; }
  .mkt-footer-mark { padding-inline: calc(var(--gutter) * 0.5); }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-shift, 22px), 0);
  transition:
    opacity 0.62s var(--ease-out) var(--reveal-delay, 0ms),
    transform 0.62s var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal].is-done { will-change: auto; transition: none; }

[data-reveal="fade"]  { --reveal-shift: 0px; }
[data-reveal="rise"]  { --reveal-shift: 26px; }

[data-reveal="mark"]  { --reveal-shift: 56px; }
[data-reveal="card"]  { --reveal-shift: 32px; }

.no-js [data-reveal],
[data-reveal].reveal-off { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 901px) {
  .mkt-feat { padding-top: clamp(76px, 10vh, 92px); padding-bottom: 18px; }
  .mkt-feat-title { font-size: clamp(1.5rem, 2.6vw, 2.125rem); max-width: 24ch; }
  
  .mkt-feat-intro { font-size: 15.5px; max-width: 58ch; padding-top: 0; }
  .mkt-feat-head { margin-bottom: 10px; gap: 2px; }
  .mkt-feat-tabs { margin-bottom: 10px; }
  .mkt-feat-rail { padding-block: 10px 4px; }
}
