/* ==========================================================================
   Slotswinner — 2026 design system
   Loaded after the page's inline <style>, so it wins on equal specificity.
   Every colour lives in a custom property: re-theme the whole site by
   editing the :root block below and nothing else.
   ========================================================================== */

:root {
  /* brand ------------------------------------------------------------ */
  --primary:              #0f8f63;
  --primary-dark:         #0a6b4a;
  --primary-darker:       #054e36;
  --primary-light:        #e6f6ef;
  --primary-rgb:          15, 143, 99;
  --primary-transparent:  rgba(15, 143, 99, .10);

  --accent:               #e8b923;
  --accent-dark:          #b8901a;
  --accent-light:         #fff6dd;
  --accent-rgb:           232, 185, 35;

  --secondary:            #3b82f6;
  --success:              #16a34a;

  /* neutrals --------------------------------------------------------- */
  --ink:                  #0a2a20;
  --dark:                 #0a2a20;
  --dark-gray:            #38504a;
  --gray:                 #5d7069;
  --muted:                #7d918a;
  --white:                #ffffff;
  --surface:              #ffffff;
  --light:                #f4faf7;
  --light-gray:           #e8f2ed;
  --border:               #dcebe4;
  --border-strong:        #c6ddd2;

  /* shape ------------------------------------------------------------ */
  --radius-xs:  8px;
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* elevation -------------------------------------------------------- */
  --shadow-xs:    0 1px 2px rgba(10, 42, 32, .06);
  --shadow:       0 4px 14px -4px rgba(10, 42, 32, .08), 0 2px 6px -3px rgba(10, 42, 32, .06);
  --shadow-md:    0 14px 30px -12px rgba(10, 42, 32, .16);
  --shadow-hover: 0 24px 50px -18px rgba(10, 42, 32, .26);
  --ring:         0 0 0 3px rgba(var(--primary-rgb), .28);

  /* gradients -------------------------------------------------------- */
  --grad:        linear-gradient(135deg, #14a273 0%, #0c7d57 52%, #054e36 100%);
  --grad-accent: linear-gradient(135deg, #ffd75e 0%, #e8b923 55%, #b8901a 100%);
  --grad-mesh:   radial-gradient(900px 460px at 12% -10%, rgba(var(--primary-rgb), .16), transparent 62%),
                 radial-gradient(760px 420px at 92% 6%,  rgba(var(--accent-rgb),  .16), transparent 60%);

  --transition: all .25s cubic-bezier(.4, 0, .2, 1);
  --font-head: 'Plus Jakarta Sans', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;

  color-scheme: light;
}

/* --------------------------------------------------------------------------
   1. Base typography
   -------------------------------------------------------------------------- */
html { scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -.005em;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.logo-text, .stat-val, .btn, .section-title h2 {
  font-family: var(--font-head);
  color: var(--ink);
  letter-spacing: -.022em;
}

h1 { font-weight: 800; line-height: 1.1; }
h2 { font-weight: 800; line-height: 1.18; }
h3 { font-weight: 700; line-height: 1.28; }

p { color: var(--gray); }
strong, b { color: var(--dark-gray); font-weight: 700; }
::selection { background: rgba(var(--primary-rgb), .16); color: var(--ink); }

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-xs);
}

/* --------------------------------------------------------------------------
   2. Brand mark (replaces the old bitmap logo everywhere)
   -------------------------------------------------------------------------- */
.sw-mark {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  flex: 0 0 var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 13px;
  background: var(--grad);
  box-shadow: 0 6px 16px -6px rgba(var(--primary-rgb), .7),
              inset 0 1px 0 rgba(255, 255, 255, .35);
  position: relative;
  overflow: hidden;
}
.sw-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .28);
}
.sw-mark > b {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: calc(var(--size) * .5);
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
  position: relative;
  z-index: 1;
}
.sw-mark-sm { --size: 34px; border-radius: 11px; margin-right: 10px; }
.sw-mark-lg { --size: 64px; border-radius: 20px; margin: 0 auto 18px; }
.sw-mark-lg::after { inset: 5px; border-radius: 15px; }

.logo { gap: 0; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.42rem;
  color: var(--ink);
  letter-spacing: -.03em;
}
.logo-text span { color: var(--primary); }
.logo-text span::after { display: none; }

.footer-brand-logo { display: flex; align-items: center; gap: 0; }
.footer-brand-logo span { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; }

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
header {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  height: 72px;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px -20px rgba(10, 42, 32, .5);
}
.nav-links li { margin-left: 4px; }
.nav-links a {
  color: var(--dark-gray);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .875rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: var(--transition);
}
.nav-links a::after { display: none; }
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-links a.active { color: var(--primary); background: var(--primary-light); }

.mobile-menu-btn { color: var(--ink); border-radius: 12px; }
.mobile-menu-btn:hover { background: var(--light-gray); }
.mobile-menu {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-top: none;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn, .btn-white, .popup-dl-btn, .popup-copy-btn, .pb-redeem {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -.01em;
  border-radius: 999px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--grad);
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(var(--primary-rgb), .85);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(var(--primary-rgb), .9);
  filter: brightness(1.04);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  color: var(--dark-gray);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary-darker);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .5);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(0, 0, 0, .55); }

/* --------------------------------------------------------------------------
   5. Section rhythm & titles
   -------------------------------------------------------------------------- */
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }

.section-title { margin-bottom: 44px; text-align: center; }
.section-title h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  margin-bottom: 12px;
}
.section-title p {
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    var(--grad-mesh),
    linear-gradient(180deg, #f7fcf9 0%, #ffffff 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero h1 { font-size: clamp(2rem, 5.4vw, 3.35rem); margin-bottom: 18px; }
.hero h1 span {
  background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead { font-size: 1.02rem; max-width: 560px; margin: 0 auto 22px; color: var(--gray); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--border);
  color: var(--dark-gray);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(6px);
  margin-bottom: 20px;
}
.hero-badge i { color: var(--primary); }
.hero-checks { gap: 8px; }
.hero-check {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-gray);
}
.hero-check i { color: var(--success); }
.hero-meta { color: var(--muted); font-size: .78rem; }

/* CSS phone mock-up -------------------------------------------------- */
.sw-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 20px 0;
}
.sw-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .30) 0%, transparent 68%);
  filter: blur(12px);
}
.sw-phone {
  position: relative;
  width: 236px;
  height: 468px;
  border-radius: 34px;
  padding: 9px;
  background: linear-gradient(160deg, #0d4d3c 0%, #0a2a20 60%, #00140e 100%);
  box-shadow: 0 40px 70px -30px rgba(10, 42, 32, .6),
              0 0 0 1px rgba(255, 255, 255, .07) inset,
              0 2px 0 rgba(255, 255, 255, .12) inset;
  transform: rotate(-4deg);
  transition: var(--transition);
}
.sw-phone:hover { transform: rotate(-1deg) translateY(-6px); }
.sw-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 17px;
  border-radius: 0 0 12px 12px;
  background: #00140e;
  z-index: 3;
}
.sw-screen {
  position: relative;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(var(--primary-rgb), .55) 0%, transparent 62%),
    linear-gradient(180deg, #0b483a 0%, #02271d 100%);
  display: flex;
  flex-direction: column;
  padding: 30px 14px 12px;
  gap: 12px;
}
.sw-topbar { display: flex; align-items: center; justify-content: space-between; }
.sw-balance {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #ffdf7a;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  border-radius: 999px;
  padding: 5px 11px;
}
.sw-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .18);
}
.sw-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  padding: 10px;
}
.sw-reels > span {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
}
.sw-reels .r-a { color: #ffdf7a; background: rgba(var(--accent-rgb), .16); border-color: rgba(var(--accent-rgb), .3); }
.sw-reels .r-b { color: #7fdcb8; background: rgba(var(--primary-rgb), .3); border-color: rgba(var(--primary-rgb), .5); }
.sw-reels .r-c { color: #7ee0c0; background: rgba(34, 197, 148, .18); border-color: rgba(34, 197, 148, .32); }
.sw-reels .sw-win {
  aspect-ratio: auto;
  padding: 6px 0;
  font-size: 11px;
  letter-spacing: .12em;
  color: #00140e;
  background: var(--grad-accent);
  border: none;
  border-radius: 999px;
}
.sw-spin {
  border: none;
  border-radius: 999px;
  padding: 11px 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  color: #fff;
  background: linear-gradient(135deg, #1cb381, #0f8f63);
  box-shadow: 0 8px 18px -8px rgba(var(--primary-rgb), .95);
  cursor: default;
}
.sw-dock {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 10px 4px 4px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}
.sw-dock i:first-child { color: #ffdf7a; }

.sw-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.sw-float i { color: var(--primary); }
.sw-float-1 { top: 12%;  left: -2%;  animation: swFloat 6s ease-in-out infinite; }
.sw-float-2 { top: 44%;  right: -4%; animation: swFloat 6s ease-in-out .8s infinite; }
.sw-float-3 { bottom: 12%; left: 2%;  animation: swFloat 6s ease-in-out 1.6s infinite; }
@keyframes swFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 767px) {
  .sw-hero-visual { min-height: 360px; }
  .sw-phone { width: 196px; height: 390px; }
  .sw-float { font-size: .68rem; padding: 6px 11px; }
  .sw-float-1 { left: -4px; }
  .sw-float-2 { right: -4px; }
}
@media (prefers-reduced-motion: reduce) {
  .sw-float { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   7. Stats bar
   -------------------------------------------------------------------------- */
.stats-bar { background: transparent; padding: 0; margin: -34px 0 0; position: relative; z-index: 2; }
.stats-bar .container { }
.stats-grid {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 18px;
  gap: 0;
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 12%;
  height: 76%;
  width: 1px;
  background: var(--border);
}
.stat-val {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--muted); font-size: .78rem; font-weight: 500; }
@media (max-width: 576px) {
  .stat-item + .stat-item::before { display: none; }
}

/* --------------------------------------------------------------------------
   8. Payment chips
   -------------------------------------------------------------------------- */
.payment-section { padding: 40px 0 8px; }
.payment-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.payment-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.sw-pay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.sw-pay i { color: var(--primary); }
.sw-pay:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-1px); }
.sw-pay-ghost { background: var(--light); color: var(--muted); font-weight: 600; }
.sw-pay-ghost i { color: var(--muted); }

/* --------------------------------------------------------------------------
   9. Feature tiles (replaces the old screenshot carousel)
   -------------------------------------------------------------------------- */
.screenshots-section { background: var(--light); padding: 76px 0; }
.scroll-track { gap: 16px; padding: 4px 20px 8px; }
.shot-card { width: 214px; flex: 0 0 214px; }
.sw-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  min-height: 186px;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.sw-tile::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  opacity: .9;
}
.sw-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.sw-tile-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-size: 19px;
  color: var(--primary);
  background: var(--primary-light);
  margin-bottom: 8px;
}
.sw-tile-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .98rem;
  color: var(--ink);
  line-height: 1.3;
}
.sw-tile-sub { font-size: .8rem; color: var(--muted); line-height: 1.5; }

.sw-tile-b::before { background: var(--grad-accent); }
.sw-tile-b .sw-tile-icon { color: var(--accent-dark); background: var(--accent-light); }
.sw-tile-c::before { background: linear-gradient(135deg, #34d399, #059669); }
.sw-tile-c .sw-tile-icon { color: #059669; background: #e7faf2; }
.sw-tile-d::before { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.sw-tile-d .sw-tile-icon { color: #2563eb; background: #e8f1ff; }
.sw-tile-e::before { background: linear-gradient(135deg, #f472b6, #db2777); }
.sw-tile-e .sw-tile-icon { color: #db2777; background: #fdeaf4; }
.sw-tile-f::before { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.sw-tile-f .sw-tile-icon { color: #0891b2; background: #e4f8fd; }

.shot-label { display: none; }
.scroll-fade-l, .scroll-fade-r { width: 56px; }

/* --------------------------------------------------------------------------
   10. Cards (features / partners / quick links / reviews / games)
   -------------------------------------------------------------------------- */
.feature-card,
.partner-card,
.quick-link-card,
.review-card,
.reason-card,
.step-card,
.quick-card,
.card,
.game-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover,
.partner-card:hover,
.quick-link-card:hover,
.review-card:hover,
.reason-card:hover,
.quick-card:hover,
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb), .3);
}

.feature-icon,
.category-icon-box,
.legal-icon,
.contact-icon,
.step-num,
.game-icon {
  border-radius: 14px;
}
.feature-icon {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .12);
}
.feature-title, .partner-card h3, .quick-link-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.feature-desc { color: var(--gray); font-size: .9rem; }

.features-section { background: #fff; }
.partner-section { background: var(--light); }
.partner-note { color: var(--muted); font-size: .82rem; }

.quick-link-card { padding: 24px; }
.quick-link-card p { font-size: .86rem; color: var(--muted); }

/* game grid ---------------------------------------------------------- */
.game-card { border-radius: var(--radius); overflow: hidden; }
.game-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-hover); }
.game-card img { transition: var(--transition); }
.game-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark-gray);
}
.game-badge {
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
}
.cat-tab {
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cat-tab.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 8px 18px -10px rgba(var(--primary-rgb), .9); }
.chip {
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  transition: var(--transition);
}
.chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* --------------------------------------------------------------------------
   11. Benefit panels (replace the old screenshot columns)
   -------------------------------------------------------------------------- */
.sw-panel {
  flex: 0 0 auto;
  width: 100%;
  max-width: 340px;
  padding: 26px 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #f7fcf9 0%, #ffffff 60%);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.sw-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--grad);
}
.sw-panel-icon {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 22px;
  color: var(--primary);
  background: var(--primary-light);
  margin-bottom: 14px;
}
.sw-panel-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.sw-panel-list { list-style: none; padding: 0; margin: 0; }
.sw-panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px dashed var(--border);
  font-size: .84rem;
}
.sw-panel-list li:first-child { border-top: none; }
.sw-panel-list span { color: var(--muted); }
.sw-panel-list b { font-family: var(--font-head); font-weight: 700; color: var(--ink); }

.sw-panel-b::before { background: var(--grad-accent); }
.sw-panel-b .sw-panel-icon { color: var(--accent-dark); background: var(--accent-light); }
.sw-panel-c::before { background: linear-gradient(135deg, #34d399, #059669); }
.sw-panel-c .sw-panel-icon { color: #059669; background: #e7faf2; }
.sw-panel-d::before { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.sw-panel-d .sw-panel-icon { color: #2563eb; background: #e8f1ff; }
.sw-panel-e::before { background: linear-gradient(135deg, #f472b6, #db2777); }
.sw-panel-e .sw-panel-icon { color: #db2777; background: #fdeaf4; }
.sw-panel-f::before { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.sw-panel-f .sw-panel-icon { color: #0891b2; background: #e4f8fd; }

/* --------------------------------------------------------------------------
   12. Step lists (replace promo-code & install screenshots)
   -------------------------------------------------------------------------- */
.sw-steps { display: flex; flex-direction: column; gap: 10px; }
.sw-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.sw-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-xs);
  text-align: left;
}
.sw-step p { margin: 0; font-size: .84rem; line-height: 1.55; color: var(--gray); }
.sw-step b { color: var(--ink); font-family: var(--font-head); }
.sw-step-n {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
  background: var(--grad);
}
.sw-steps-dark .sw-step {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}
.sw-steps-dark .sw-step p { color: rgba(255, 255, 255, .72); }
.sw-steps-dark .sw-step b { color: #fff; }

/* --------------------------------------------------------------------------
   13. Download CTA
   -------------------------------------------------------------------------- */
.download-cta { padding: 84px 0; }
.cta-box {
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: 54px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 64px -30px rgba(var(--primary-rgb), .85);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 260px at 15% 0%,  rgba(255, 255, 255, .22), transparent 62%),
    radial-gradient(480px 240px at 88% 100%, rgba(var(--accent-rgb), .3), transparent 60%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; font-size: clamp(1.5rem, 3.6vw, 2.15rem); }
.cta-box p { color: rgba(255, 255, 255, .8); max-width: 560px; margin: 0 auto 26px; }
.cta-meta { color: rgba(255, 255, 255, .6) !important; font-size: .76rem; margin-top: 16px !important; }
.cta-box .sw-mark-lg {
  background: rgba(255, 255, 255, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
}

/* --------------------------------------------------------------------------
   14. Accordions / FAQ
   -------------------------------------------------------------------------- */
.faq-section { background: #fff; }
.accordion-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover { border-color: rgba(var(--primary-rgb), .35); }
.accordion-trigger {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  padding: 18px 20px;
}
.accordion-trigger i { color: var(--primary); transition: var(--transition); }
.accordion-inner { color: var(--gray); font-size: .9rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   15. SEO copy block, keyword tags
   -------------------------------------------------------------------------- */
.seo-section { background: var(--light); }
.seo-lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
}
.seo-section h2 { font-size: clamp(1.4rem, 3.2vw, 2.05rem); }
.seo-section p { font-size: .95rem; line-height: 1.8; }

.kw-tags { padding: 26px 20px; }
.kw-tag {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .72rem;
}

/* --------------------------------------------------------------------------
   16. Promo banner & popup
   -------------------------------------------------------------------------- */
.promo-banner {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 20px -18px rgba(10, 42, 32, .8);
}
.pb-badge {
  background: var(--grad-accent);
  color: #12291f;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .04em;
}
.pb-code {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px dashed rgba(var(--primary-rgb), .45);
  border-radius: 8px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-weight: 700;
}
.pc-seg {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
}
.pb-redeem { background: var(--grad); border: none; color: #fff; }
.pb-redeem:hover { filter: brightness(1.06); }

.popup-box {
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #0c5241 0%, #053225 55%, #00160f 100%);
  box-shadow: 0 44px 90px -30px rgba(0, 0, 0, .7);
  border: 1px solid rgba(255, 255, 255, .09);
}
.popup-gift {
  background: var(--grad-accent);
  color: #12291f;
  border-radius: 20px;
  box-shadow: 0 14px 30px -14px rgba(var(--accent-rgb), .9);
}
.popup-badge { background: rgba(var(--accent-rgb), .2); color: #ffdf7a; border-radius: 999px; font-weight: 700; }
.popup-box h3 { color: #fff; font-size: 1.25rem; }
.popup-inner p { color: rgba(255, 255, 255, .68); }
.popup-code-box {
  background: rgba(255, 255, 255, .07);
  border: 1px dashed rgba(255, 255, 255, .28);
  border-radius: 12px;
}
.popup-code-box code { color: #ffdf7a; font-weight: 700; letter-spacing: .06em; }
.popup-copy-btn { background: var(--grad); border: none; color: #fff; }
.popup-dl-btn {
  background: var(--grad-accent);
  color: #12291f;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
}
.popup-never-btn { color: rgba(255, 255, 255, .4); }
.popup-close-btn { background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .7); border-radius: 50%; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
footer {
  background: linear-gradient(180deg, #053325 0%, #001a13 100%);
  color: rgba(255, 255, 255, .62);
  padding-top: 64px;
}
footer h2, footer h3 { color: #fff; font-family: var(--font-head); }
footer a { color: rgba(255, 255, 255, .62); transition: var(--transition); }
footer a:hover { color: #fff; }
.footer-brand p { color: rgba(255, 255, 255, .5); font-size: .86rem; }
.footer-brand-logo span { color: #fff; font-size: 1.15rem; }
.footer-col h3 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }
.footer-col a { font-size: .88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .38);
  font-size: .8rem;
}
.contact-grid { gap: 12px; }
.contact-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 16px 12px;
  transition: var(--transition);
}
.contact-item:hover { background: rgba(255, 255, 255, .13); transform: translateY(-3px); }
.contact-icon { background: rgba(255, 255, 255, .14); color: #fff; }
.contact-label { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .84rem; }
.contact-sub { color: rgba(255, 255, 255, .5); font-size: .72rem; }

/* responsible-play strip injected on every page */
.sw-responsible {
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin-top: 26px;
  padding: 22px 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  text-align: center;
}
.sw-responsible .sw-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .76rem;
  flex: 0 0 auto;
}
.sw-responsible p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: .76rem;
  line-height: 1.6;
  max-width: 760px;
}

/* --------------------------------------------------------------------------
   18. Floating buttons
   -------------------------------------------------------------------------- */
.float-button {
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.float-button:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   19. Page hero (inner pages) & misc
   -------------------------------------------------------------------------- */
.page-hero {
  background:
    var(--grad-mesh),
    linear-gradient(180deg, #f7fcf9 0%, #ffffff 100%);
  padding-top: 46px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.75rem, 4.4vw, 2.7rem); }
.breadcrumb, .breadcrumb-nav { color: var(--muted); font-size: .78rem; }
.breadcrumb a, .breadcrumb-nav a { color: var(--primary); }

.legal-section { border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.legal-body { color: var(--gray); line-height: 1.8; }
.legal-icon { background: var(--primary-light); color: var(--primary); }

.review-card { padding: 24px; }
.review-body { color: var(--gray); font-size: .9rem; line-height: 1.75; }
.stars { color: var(--accent); }
.verified-badge {
  background: #e7faf2;
  color: #047857;
  border-radius: 999px;
  font-weight: 700;
  font-size: .68rem;
}
.avatar { border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 800; }
.rating-bar-bg { background: var(--light-gray); border-radius: 999px; }
.rating-bar-fill { background: var(--grad-accent); border-radius: 999px; }

.error-code {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-head);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  header, .promo-banner, .float-buttons, .popup-overlay, .sw-hero-visual { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   21. Layout polish pass
   ========================================================================== */

/* hero: tighter top gap, text left on desktop ------------------------- */
.hero { padding-top: 40px; padding-bottom: 64px; }
.hero-grid { align-items: center; gap: 40px; }
@media (min-width: 992px) {
  .hero { padding-top: 48px; }
  .hero-text { text-align: left; }
  .hero-text .hero-lead { margin-left: 0; margin-right: 0; }
  .hero-text .hero-checks { justify-content: flex-start; }
  .hero-text .btn-group { justify-content: flex-start !important; }
  .hero-text .hero-meta { text-align: left !important; }
}
@media (max-width: 991px) {
  .hero { padding-top: 28px; }
  .hero-text { text-align: center; }
  .hero-text .hero-checks { justify-content: center; }
}

/* promo strip under the header --------------------------------------- */
.promo-banner {
  gap: 10px;
  padding: 9px 16px;
  font-size: .78rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #fbf9ff 0%, #fffaf0 100%);
}
.pb-label { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.pb-close { color: var(--muted); }
.pb-close:hover { color: var(--ink); }

/* stats grid ---------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  text-align: center;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; padding: 22px 12px; }
  .stat-item:nth-child(odd) + .stat-item::before { display: none; }
}

/* keyword tag row ----------------------------------------------------- */
.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

/* section backgrounds ------------------------------------------------- */
.download-cta { background: linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%); }
.cta-section  { background: linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%); }

/* footer contact block ------------------------------------------------ */
footer .container > div:first-child {
  background: var(--grad) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 28px 56px -28px rgba(var(--primary-rgb), .9);
  position: relative;
  overflow: hidden;
}
footer .container > div:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 240px at 12% 0%, rgba(255, 255, 255, .18), transparent 60%),
              radial-gradient(440px 220px at 90% 110%, rgba(var(--accent-rgb), .28), transparent 62%);
  pointer-events: none;
}
footer .container > div:first-child > * { position: relative; z-index: 1; }

/* 404 ------------------------------------------------------------------ */
.error-page { padding-top: 56px; padding-bottom: 96px; }
.error-icon {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 26px;
  background: var(--primary-light);
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .16);
}
.error-links a { border-radius: 999px; }
.error-links a:hover { background: var(--primary-light); }

/* accordion open state ------------------------------------------------- */
.accordion-item.open {
  border-color: rgba(var(--primary-rgb), .45);
  box-shadow: 0 10px 26px -14px rgba(var(--primary-rgb), .55);
}
.accordion-item.open .accordion-trigger { color: var(--primary-dark); }

/* misc badges / chips --------------------------------------------------- */
.badge, .cat-count, .gsh-count {
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
}
.game-section-header { border-bottom: 1px solid var(--border); }
.compare-row:nth-child(even) { background: var(--light); }

/* tighten card grids --------------------------------------------------- */
.features-grid, .partner-grid, .quick-links-grid, .reviews-grid { gap: 20px; }

/* selection + smoother images ------------------------------------------ */
img { border-radius: inherit; }
.game-card img { border-radius: 0; }

/* ==========================================================================
   22. Mobile pass
   ========================================================================== */
@media (max-width: 767px) {
  /* copy before the visual on small screens (beats the page's !important rule) */
  .hero-grid { display: flex !important; flex-direction: column !important; }
  .hero-text { order: 1 !important; }
  .hero-img-wrap { order: 2 !important; margin-bottom: 0 !important; }
}
@media (max-width: 991px) {
  .sw-hero-visual { min-height: 0; padding: 8px 0 0; }
}

@media (max-width: 640px) {
  .sw-hero-visual { transform: scale(.86); transform-origin: top center; margin-bottom: -34px; }
  .hero h1 { font-size: clamp(1.75rem, 8.2vw, 2.3rem); }
  .hero-lead { font-size: .94rem; }
  .hero-checks { gap: 6px; }
  .hero-check { font-size: .72rem; padding: 6px 11px; }
  .btn-group { width: 100%; }
  .hero-text .btn-group .btn { flex: 1 1 100%; justify-content: center; }

  /* promo strip: keep it on one line, drop the least useful bits */
  .promo-banner {
    gap: 6px;
    padding: 7px 34px 7px 10px;
    font-size: .68rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .promo-banner > i,
  .pb-label { display: none; }
  .pb-badge { font-size: .58rem; padding: 3px 8px; flex: 0 0 auto; }
  .pb-code { font-size: .66rem; padding: 3px 8px; white-space: nowrap; flex: 0 0 auto; }
  .pb-countdown { flex: 0 0 auto; }
  .pc-seg { font-size: .64rem; padding: 2px 5px; }
  .pb-redeem { font-size: .66rem; padding: 6px 12px; flex: 0 0 auto; }

  .section-title { margin-bottom: 30px; }
  .section-title h2 { font-size: clamp(1.35rem, 6vw, 1.7rem); }
  .cta-box { padding: 34px 20px; border-radius: var(--radius-lg); }
  .sw-mark { --size: 36px; border-radius: 12px; }
  .logo-text { font-size: 1.22rem; }
  .shot-card { width: 190px; flex: 0 0 190px; }
  .sw-panel { max-width: 100%; }
  .sw-responsible { flex-direction: column; gap: 12px; }
  footer { padding-top: 44px; }
}

@media (max-width: 460px) {
  .pb-badge { display: none; }
}
@media (max-width: 380px) {
  .pb-countdown, .pc-sep { display: none; }
}

/* keep the floating action buttons clear of body copy */
.float-buttons { bottom: 18px; right: 14px; gap: 10px; }
@media (max-width: 640px) {
  .float-buttons { bottom: 14px; right: 10px; }
  .float-button { width: 42px; height: 42px; font-size: .95rem; }
}

/* ==========================================================================
   23. Home page — dark hero band, richer texture, colour-coded cards
   Applies only to <body class="sw-home">, so inner pages stay light.
   ========================================================================== */

:root {
  --night-1: #0b4a38;
  --night-2: #053426;
  --night-3: #00150f;
  --night-rgb: 5, 52, 38;
  --on-night:        rgba(255, 255, 255, .74);
  --on-night-strong: #ffffff;
  --on-night-muted:  rgba(255, 255, 255, .48);
  --hairline-night:  rgba(255, 255, 255, .12);
  --grad-night: linear-gradient(175deg, #0c5040 0%, #063a2b 46%, #001710 100%);
  --grid-night:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
}

/* --- the dark band: banner + hero + stats + payments ------------------- */
.sw-home .sw-night {
  position: relative;
  isolation: isolate;
  background: var(--grad-night);
  overflow: hidden;
}
.sw-home .sw-night::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-night);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
  z-index: -2;
}
.sw-home .sw-night::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--primary-rgb), .0) 8%,
    rgba(45, 190, 140, .9) 32%,
    rgba(255, 216, 120, .9) 62%,
    rgba(var(--accent-rgb), 0) 92%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* aurora blobs */
.sw-aurora { position: absolute; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.sw-aurora i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.sw-aurora i:nth-child(1) {
  width: 620px; height: 620px; top: -240px; left: -140px;
  background: radial-gradient(circle, #14a273 0%, transparent 70%);
  animation: swDrift1 22s ease-in-out infinite;
}
.sw-aurora i:nth-child(2) {
  width: 540px; height: 540px; top: -120px; right: -160px;
  background: radial-gradient(circle, #e8b923 0%, transparent 70%);
  opacity: .34;
  animation: swDrift2 26s ease-in-out infinite;
}
.sw-aurora i:nth-child(3) {
  width: 700px; height: 480px; bottom: -260px; left: 26%;
  background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
  opacity: .22;
  animation: swDrift3 30s ease-in-out infinite;
}
@keyframes swDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, 50px) scale(1.12); } }
@keyframes swDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px, 40px) scale(1.08); } }
@keyframes swDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-40px) scale(1.14); } }
@media (prefers-reduced-motion: reduce) { .sw-aurora i { animation: none; } }

/* --- header floats over the dark band until you scroll ----------------- */
.sw-home header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.sw-home header:not(.scrolled) .logo-text { color: #fff; }
.sw-home header:not(.scrolled) .logo-text span { color: #8fe3c2; }
.sw-home header:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, .72); }
.sw-home header:not(.scrolled) .nav-links a:hover,
.sw-home header:not(.scrolled) .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}
.sw-home header:not(.scrolled) .mobile-menu-btn { color: #fff; }
.sw-home header:not(.scrolled) .mobile-menu-btn:hover { background: rgba(255, 255, 255, .14); }

/* --- promo strip on dark ------------------------------------------------ */
.sw-home .promo-banner {
  background: rgba(255, 255, 255, .06);
  border-bottom: 1px solid var(--hairline-night);
  box-shadow: none;
  color: var(--on-night);
  z-index: 1001;
}
.sw-home .promo-banner .pb-label { color: #fff; }
.sw-home .promo-banner > span:not([class]) { color: var(--on-night-muted); }
.sw-home .pb-code {
  background: rgba(255, 255, 255, .08);
  color: #ffdf7a;
  border-color: rgba(255, 212, 137, .45);
}
.sw-home .pc-seg { background: rgba(255, 255, 255, .14); color: #fff; }
.sw-home .pc-sep { color: rgba(255, 255, 255, .4); }
.sw-home .pb-close { color: rgba(255, 255, 255, .5); }
.sw-home .pb-close:hover { color: #fff; }

/* --- hero on dark ------------------------------------------------------- */
.sw-home .hero {
  background: transparent;
  padding-top: 46px;
  padding-bottom: 40px;
}
.sw-home .hero::after { display: none; }
.sw-home .hero h1 { color: #fff; }
.sw-home .hero h1 span {
  background: linear-gradient(100deg, #8fe3c2 0%, #ffdf7a 62%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sw-home .hero-lead { color: var(--on-night); }
.sw-home .hero-meta { color: var(--on-night-muted); }
.sw-home .hero-badge {
  background: rgba(255, 255, 255, .08);
  border-color: var(--hairline-night);
  color: #fff;
  box-shadow: none;
  animation: none;
}
.sw-home .hero-badge i { color: #ffdf7a; }
.sw-home .hero-check {
  background: rgba(255, 255, 255, .06);
  border-color: var(--hairline-night);
  color: var(--on-night);
}
.sw-home .hero-check i { color: #4ade80; }
.sw-home .sw-night .btn-outline {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .26);
  color: #fff;
  box-shadow: none;
}
.sw-home .hero .btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}
.sw-home .sw-float {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .8);
}
.sw-home .sw-float i { color: #ffdf7a; }
.sw-home .sw-glow {
  background: radial-gradient(circle, rgba(255, 212, 137, .26) 0%, transparent 66%);
  width: 400px; height: 400px;
}
.sw-home .sw-phone {
  box-shadow: 0 50px 90px -34px rgba(0, 0, 0, .85),
              0 0 0 1px rgba(255, 255, 255, .1) inset,
              0 2px 0 rgba(255, 255, 255, .16) inset;
}

/* --- stats on dark ------------------------------------------------------ */
.sw-home .stats-bar { margin: 0; padding: 8px 0 4px; }
.sw-home .stats-grid {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--hairline-night);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .9);
  backdrop-filter: blur(10px);
  padding: 24px 18px;
}
.sw-home .stat-val {
  background: linear-gradient(120deg, #ffffff 0%, #bff0dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sw-home .stat-label { color: var(--on-night-muted); }
.sw-home .stat-item + .stat-item::before { background: var(--hairline-night); }

/* --- payment chips on dark ---------------------------------------------- */
.sw-home .payment-section { padding: 26px 0 56px; }
.sw-home .payment-label { color: var(--on-night-muted); }
.sw-home .sw-pay {
  background: rgba(255, 255, 255, .07);
  border-color: var(--hairline-night);
  color: #fff;
  box-shadow: none;
}
.sw-home .sw-pay i { color: #8fe3c2; }
.sw-home .sw-pay:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }
.sw-home .sw-pay-ghost { background: transparent; color: var(--on-night-muted); }
.sw-home .sw-pay-ghost i { color: var(--on-night-muted); }

/* the dark band reaches up behind the fixed header + promo strip */
.sw-home .sw-night { margin-top: -70px; padding-top: 70px; }

/* sections that ship an opaque background of their own must go clear on the dark band */
.sw-home .sw-night .payment-section,
.sw-home .sw-night .stats-bar,
.sw-home .sw-night .hero,
.sw-home .sw-night section { background: transparent; }

/* ==========================================================================
   24. Light sections — colour, texture, hierarchy
   ========================================================================== */

/* softer hand-off from the dark band ----------------------------------- */
.sw-home .payment-section { padding: 26px 0 60px; }
/* light section picks up the glow spilling off the band edge */
.sw-home .screenshots-section { position: relative; }
.sw-home .screenshots-section::before {
  content: '';
  position: absolute;
  left: 50%; top: -1px;
  transform: translateX(-50%);
  width: min(900px, 84%);
  height: 180px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(var(--primary-rgb), .16), transparent 72%);
  pointer-events: none;
}

/* floating action buttons read on both light and dark ------------------- */
.float-button {
  background: var(--grad);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 14px 30px -12px rgba(var(--primary-rgb), .9);
}
.float-button:hover { filter: brightness(1.1); transform: translateY(-3px); }

/* section headings: gradient rule instead of the old flat dash ---------- */
.section-title h2:after {
  width: 64px;
  height: 4px;
  bottom: -12px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) !important;
  border-radius: 999px;
}

/* eyebrow label above section titles ------------------------------------ */
.sw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 15px 6px 8px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--primary-dark);
  box-shadow: var(--shadow-xs);
  margin-bottom: 16px;
}
.sw-eyebrow b {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 7px;
  background: var(--grad);
  color: #fff;
  font-size: .62rem;
}

/* alternating section backgrounds + a soft mesh ------------------------- */
.screenshots-section {
  background:
    radial-gradient(700px 300px at 8% 0%, rgba(var(--primary-rgb), .07), transparent 60%),
    radial-gradient(620px 280px at 94% 100%, rgba(var(--accent-rgb), .09), transparent 60%),
    var(--light);
}
.features-section { background: #fff; }
.partner-section {
  background:
    radial-gradient(640px 280px at 90% 0%, rgba(var(--primary-rgb), .07), transparent 62%),
    var(--light);
}
.seo-section {
  background:
    radial-gradient(760px 340px at 12% 100%, rgba(var(--accent-rgb), .1), transparent 62%),
    var(--light);
  border-top: 1px solid var(--border);
}
.quick-links-section { background: #fff; }

/* colour-coded feature cards -------------------------------------------- */
.features-grid .feature-card {
  position: relative;
  overflow: hidden;
  padding-top: 26px;
}
.features-grid .feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  opacity: 0;
  transition: var(--transition);
  background: var(--grad);
}
.features-grid .feature-card:hover::before { opacity: 1; }

.features-grid .feature-card:nth-child(1) .feature-icon { color: #0f8f63; background: #f1ebff; }
.features-grid .feature-card:nth-child(2) .feature-icon { color: #0891b2; background: #e4f8fd; }
.features-grid .feature-card:nth-child(3) .feature-icon { color: #059669; background: #e7faf2; }
.features-grid .feature-card:nth-child(4) .feature-icon { color: #b8901a; background: #fff6dd; }
.features-grid .feature-card:nth-child(5) .feature-icon { color: #db2777; background: #fdeaf4; }
.features-grid .feature-card:nth-child(6) .feature-icon { color: #2563eb; background: #e8f1ff; }

.features-grid .feature-card:nth-child(2)::before { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.features-grid .feature-card:nth-child(3)::before { background: linear-gradient(135deg, #34d399, #059669); }
.features-grid .feature-card:nth-child(4)::before { background: var(--grad-accent); }
.features-grid .feature-card:nth-child(5)::before { background: linear-gradient(135deg, #f472b6, #db2777); }
.features-grid .feature-card:nth-child(6)::before { background: linear-gradient(135deg, #60a5fa, #2563eb); }

/* partner cards ---------------------------------------------------------- */
.partner-card { position: relative; overflow: hidden; }
.partner-card::after {
  content: '';
  position: absolute;
  right: -46px; top: -46px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .12), transparent 68%);
  transition: var(--transition);
}
.partner-card:hover::after { transform: scale(1.35); }
.partner-card a { color: var(--primary); font-weight: 700; font-family: var(--font-head); }

/* quick links ------------------------------------------------------------ */
.quick-link-card {
  position: relative;
  padding-right: 46px;
  background: linear-gradient(160deg, #f7fcf9 0%, #ffffff 55%);
}
.quick-link-card::after {
  content: '\2192';
  position: absolute;
  right: 20px; top: 24px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}
.quick-link-card:hover::after { background: var(--grad); color: #fff; transform: translateX(3px); }

/* keyword tags ----------------------------------------------------------- */
.kw-tags { padding: 34px 20px 10px; }

/* ==========================================================================
   25. Download CTA — second dark moment
   ========================================================================== */
.download-cta {
  position: relative;
  background: var(--grad-night);
  padding: 92px 0;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-night);
  background-size: 58px 58px;
  mask-image: radial-gradient(90% 80% at 50% 50%, #000 10%, transparent 76%);
  -webkit-mask-image: radial-gradient(90% 80% at 50% 50%, #000 10%, transparent 76%);
}
.download-cta::after {
  content: '';
  position: absolute;
  width: 780px; height: 460px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 40%, rgba(20, 162, 115, .55), transparent 62%),
    radial-gradient(circle at 74% 62%, rgba(232, 185, 35, .34), transparent 60%);
  filter: blur(60px);
}
.download-cta .container { position: relative; z-index: 1; }
.download-cta .cta-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--hairline-night);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
  border-radius: var(--radius-xl);
}
.download-cta .cta-box::before {
  background: radial-gradient(520px 240px at 18% 0%, rgba(255, 255, 255, .1), transparent 62%);
}
.download-cta .cta-box h2 { color: #fff; }
.download-cta .cta-box p { color: var(--on-night); }
.download-cta .cta-meta { color: var(--on-night-muted) !important; }
.download-cta .sw-mark-lg {
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
}
.download-cta .btn-white {
  background: var(--grad-accent);
  color: #12291f;
  box-shadow: 0 16px 34px -14px rgba(var(--accent-rgb), .9);
}
.download-cta .btn-white:hover { filter: brightness(1.06); }

/* mobile trims ------------------------------------------------------------ */
@media (max-width: 640px) {
  .download-cta { padding: 60px 0; }
  .sw-home .payment-section { padding: 20px 0 46px; }
  .sw-aurora i { filter: blur(56px); }
}

/* entrance-animation safety: cards must never overlap the note if IO never fires */
.partner-card { transform: translateY(14px); }
.partner-note { margin-top: 34px !important; }

/* dark CTA gets the same lit edges as the hero band */
.download-cta { border-top: 1px solid rgba(var(--primary-rgb), .25); }
.download-cta .container::before,
.download-cta .container::after { content: none; }
.sw-edge-top, .sw-edge-bottom { position: absolute; left: 0; right: 0; height: 2px; z-index: 2; }
.download-cta > .sw-edge-top { top: 0; }
.download-cta > .sw-edge-bottom { bottom: 0; }
.sw-edge-top, .sw-edge-bottom {
  background: linear-gradient(90deg, transparent 0%, rgba(45, 190, 140, .8) 30%, rgba(255, 216, 120, .8) 64%, transparent 100%);
}

/* ==========================================================================
   26. Inner pages — same dark band across breadcrumb + page hero
   ========================================================================== */
.sw-inner .sw-night {
  position: relative;
  isolation: isolate;
  background: var(--grad-night);
  overflow: hidden;
  margin-top: -70px;
  padding-top: 70px;
}
.sw-inner .sw-night::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-night);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 92% at 50% 0%, #000 18%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 92% at 50% 0%, #000 18%, transparent 80%);
  z-index: -2;
}
.sw-inner .sw-night::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(45, 190, 140, .85) 32%, rgba(255, 216, 120, .85) 64%, transparent 100%);
}

.sw-inner header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.sw-inner header:not(.scrolled) .logo-text { color: #fff; }
.sw-inner header:not(.scrolled) .logo-text span { color: #8fe3c2; }
.sw-inner header:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, .72); }
.sw-inner header:not(.scrolled) .nav-links a:hover,
.sw-inner header:not(.scrolled) .nav-links a.active { color: #fff; background: rgba(255, 255, 255, .12); }
.sw-inner header:not(.scrolled) .mobile-menu-btn { color: #fff; }
.sw-inner header:not(.scrolled) .mobile-menu-btn:hover { background: rgba(255, 255, 255, .14); }

.sw-inner .sw-night .breadcrumb { background: transparent; padding: 10px 0 2px; }
.sw-inner .breadcrumb-nav { color: var(--on-night-muted); }
.sw-inner .breadcrumb-nav a { color: #8fe3c2; }
.sw-inner .breadcrumb-nav .sep { color: rgba(255, 255, 255, .3); }
.sw-inner .breadcrumb-nav .current { color: #fff; }

.sw-inner .page-hero {
  background: transparent;
  padding: 42px 0 62px;
  border-bottom: none;
}
.sw-inner .page-hero h1 { color: #fff; }
.sw-inner .page-hero p { color: var(--on-night); }
.sw-inner .page-hero .badge {
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--hairline-night);
  color: #ffdf7a;
}
.sw-inner .page-hero .chip,
.sw-inner .page-hero .chip-row .chip {
  background: rgba(255, 255, 255, .07);
  border-color: var(--hairline-night);
  color: rgba(255, 255, 255, .8);
}
.sw-inner .page-hero .chip:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}

/* 404 sits inside the band too */
.sw-inner .error-page { padding: 62px 0 96px; }
.sw-inner .error-page h1 { color: #fff; }
.sw-inner .error-page p { color: var(--on-night); }
.sw-inner .error-icon { background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px var(--hairline-night); }
.sw-inner .error-icon i { color: #ffdf7a !important; }
.sw-inner .error-code {
  background: linear-gradient(100deg, #8fe3c2, #ffdf7a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sw-inner .error-links a { color: rgba(255, 255, 255, .78); border-color: var(--hairline-night); }
.sw-inner .error-links a:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .34); }
.sw-inner .sw-night .btn-outline {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .26);
  color: #fff;
  box-shadow: none;
}
.sw-inner .sw-night .btn-outline:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .5); color: #fff; }

/* the section directly under the band catches the spill light */
.sw-inner .sw-night + section,
.sw-inner .sw-night + div { position: relative; }
.sw-inner .sw-night + section::before {
  content: '';
  position: absolute;
  left: 50%; top: -1px;
  transform: translateX(-50%);
  width: min(900px, 84%);
  height: 170px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(var(--primary-rgb), .14), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 640px) {
  .sw-inner .page-hero { padding: 30px 0 44px; }
}

/* ==========================================================================
   27. Footer hand-off + final polish
   ========================================================================== */
footer { position: relative; }
footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(45, 190, 140, .85) 32%, rgba(255, 216, 120, .85) 64%, transparent 100%);
}
footer::after {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: min(1000px, 88%);
  height: 220px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(var(--primary-rgb), .28), transparent 72%);
  pointer-events: none;
}
footer > .container { position: relative; z-index: 1; }

footer .container > div:first-child {
  background: linear-gradient(135deg, #0f9268 0%, #0a6a4b 55%, #064b35 100%) !important;
}

/* stat card sits on the band edge on inner pages too */
.sw-inner .sw-night + section > .container > .stats-grid,
.sw-inner .stats-bar { position: relative; z-index: 1; }

/* comparison table breathing room */
.compare-row { border-bottom: 1px solid var(--border); }

/* legal pages: give the long text blocks a card feel */
.sw-inner .legal-section { background: #fff; }

/* inline colour on the countdown label must yield on the dark strip */
.sw-home .promo-banner span[style*="color:var(--gray)"],
.sw-home .promo-banner span[style*="color: var(--gray)"] { color: rgba(255, 255, 255, .55) !important; }

@media (max-width: 640px) {
  .hero-text { gap: 12px !important; }
  .sw-home .hero { padding-top: 22px; padding-bottom: 24px; }
  .hero-lead { line-height: 1.55; }
  .hero-checks { margin-top: 2px; }
}

/* ==========================================================================
   28. Brand assets — supplied logo + hero artwork
   Swap these two files to re-skin the site; nothing else needs editing.
     im/logo.png     — square app icon, 512×512 PNG-24 (transparent ok)
     im/hero-bg.jpg  — hero backdrop, 1920×1000 JPG
     im/hero-app.png — hero showcase image, 960×1280 PNG-24 transparent
   ========================================================================== */

/* --- logo mark now renders the supplied artwork ------------------------ */
.sw-mark {
  background: url('../im/logo.png') center / cover no-repeat;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .45);
}
.sw-mark::after { display: none; }
.sw-mark > b { display: none; }
.sw-mark-lg { --size: 76px; border-radius: 22px; }
.cta-box .sw-mark-lg,
.download-cta .sw-mark-lg { background: url('../im/logo.png') center / cover no-repeat; box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .6); }

/* --- hero artwork behind the dark band --------------------------------- */
.sw-home .sw-night,
.sw-inner .sw-night {
  background-color: #053426;
  background-image:
    linear-gradient(180deg, rgba(0, 21, 15, .55) 0%, rgba(0, 21, 15, .18) 32%, rgba(0, 21, 15, .62) 100%),
    url('../im/hero-bg.jpg');
  background-size: auto, cover;
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
}
/* the artwork already carries texture — dial the generated overlays back */
.sw-home .sw-night::before,
.sw-inner .sw-night::before { opacity: .35; }
.sw-home .sw-aurora i,
.sw-inner .sw-aurora i { opacity: .22; }
.sw-home .sw-aurora i:nth-child(2),
.sw-inner .sw-aurora i:nth-child(2) { opacity: .16; }
.sw-home .sw-aurora i:nth-child(3),
.sw-inner .sw-aurora i:nth-child(3) { opacity: .12; }

/* keep the headline legible over the artwork's bright centre */
.sw-home .hero-text,
.sw-inner .page-hero .container-md,
.sw-inner .error-inner { position: relative; z-index: 1; }
.sw-home .hero h1,
.sw-inner .page-hero h1 { text-shadow: 0 2px 18px rgba(0, 18, 13, .55); }
.sw-home .hero-lead,
.sw-inner .page-hero p { text-shadow: 0 1px 10px rgba(0, 18, 13, .45); }

@media (max-width: 767px) {
  .sw-home .sw-night,
  .sw-inner .sw-night { background-position: center, 62% top; }
}

/* --- swappable hero showcase image ------------------------------------- */
.sw-shot {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 34px 54px rgba(0, 16, 11, .55));
  z-index: 1;
}
@media (max-width: 767px) { .sw-shot { max-width: 320px; } }

/* ==========================================================================
   29. Artwork legibility tuning
   ========================================================================== */
.sw-home .sw-night,
.sw-inner .sw-night {
  background-image:
    /* left-weighted scrim so copy always has a dark bed */
    linear-gradient(102deg,
      rgba(0, 20, 14, .90) 0%,
      rgba(0, 20, 14, .74) 30%,
      rgba(0, 20, 14, .38) 54%,
      rgba(0, 20, 14, .30) 72%,
      rgba(0, 20, 14, .60) 100%),
    /* vertical scrim: dark under the header, dark again at the hand-off */
    linear-gradient(180deg,
      rgba(0, 18, 13, .74) 0%,
      rgba(0, 18, 13, .20) 22%,
      rgba(0, 18, 13, .22) 58%,
      rgba(2, 34, 25, .88) 100%),
    url('../im/hero-bg.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center 22%;
}
@media (max-width: 767px) {
  .sw-home .sw-night,
  .sw-inner .sw-night {
    background-image:
      linear-gradient(180deg,
        rgba(0, 18, 13, .80) 0%,
        rgba(0, 18, 13, .46) 26%,
        rgba(0, 18, 13, .44) 62%,
        rgba(2, 34, 25, .90) 100%),
      url('../im/hero-bg.jpg');
    background-size: auto, cover;
    background-position: center, 58% top;
  }
}

/* headline highlight: pure gold reads best on the artwork */
.sw-home .hero h1 span {
  background: linear-gradient(100deg, #ffeaa3 0%, #ffd75e 46%, #e8b923 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* logo mark: a hairline gold ring lifts the square icon off the artwork */
.sw-mark {
  --size: 42px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(232, 185, 35, .55), 0 8px 18px -8px rgba(0, 0, 0, .7);
}
.sw-mark-sm { --size: 36px; border-radius: 10px; }
.sw-mark-lg { --size: 78px; border-radius: 22px; }

/* the band edge and the stats card need more presence over the artwork */
.sw-home .stats-grid {
  background: rgba(0, 22, 16, .52);
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px) saturate(120%);
}
.sw-home .sw-pay,
.sw-inner .sw-night .chip {
  background: rgba(0, 22, 16, .48);
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}
.sw-home .hero-badge,
.sw-home .hero-check {
  background: rgba(0, 22, 16, .48);
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
}
.sw-inner .page-hero .badge { backdrop-filter: blur(10px); }

/* ==========================================================================
   30. Prose sections (in-app benefits) — flowing copy instead of cards
   ========================================================================== */
.sw-prose-section { padding: 74px 0 88px; background: #fff; }
.sw-prose-section .container-md { max-width: 780px; }

.sw-prose {
  position: relative;
  padding: 0 0 48px 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.sw-prose:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.sw-prose-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 6px 15px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sw-prose-eyebrow i { color: var(--primary); font-size: .78rem; }

.sw-prose h2 {
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.sw-prose-lead {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.sw-prose p:not(.sw-prose-lead) {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 16px;
}
.sw-prose p:last-child { margin-bottom: 0; }
.sw-prose p b { color: var(--ink); font-weight: 700; }

/* first paragraph of each section gets a lifted opening */
.sw-prose > p:not(.sw-prose-lead):first-of-type { color: var(--dark-gray); }

/* a slim accent rule keeps the rhythm readable on long pages */
.sw-prose::before {
  content: '';
  position: absolute;
  left: -26px; top: 4px;
  width: 3px; height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}
@media (max-width: 900px) { .sw-prose::before { display: none; } }

@media (max-width: 640px) {
  .sw-prose-section { padding: 48px 0 60px; }
  .sw-prose { padding-bottom: 34px; margin-bottom: 34px; }
  .sw-prose p:not(.sw-prose-lead) { font-size: .95rem; line-height: 1.78; }
  .sw-prose-lead { font-size: .95rem; }
}

/* inner pages: the stats card straddles the band edge on a light section — keep it solid */
.sw-inner .stats-grid {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: none;
}
.sw-inner .stats-grid .stat-label { color: var(--muted); }
.sw-inner .stats-grid .stat-val {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   31. Game type cards (games page)
   ========================================================================== */
.sw-cats {
  background:
    radial-gradient(700px 320px at 6% 0%, rgba(var(--primary-rgb), .08), transparent 62%),
    radial-gradient(640px 300px at 96% 100%, rgba(var(--accent-rgb), .10), transparent 60%),
    var(--light);
  border-top: 1px solid var(--border);
}
.sw-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
  align-items: start;
}
.sw-cat {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.sw-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb), .32);
}
.sw-cat > img {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 16px -8px rgba(10, 42, 32, .55);
}
.sw-cat-body { flex: 1; min-width: 0; }
.sw-cat h3 {
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.sw-cat-short {
  font-size: .87rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 8px;
}
.sw-cat-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4, 0, .2, 1);
}
.sw-cat.open .sw-cat-more { max-height: 620px; }
.sw-cat-more p {
  font-size: .86rem;
  line-height: 1.75;
  color: var(--gray);
  margin: 0 0 10px;
  min-height: 0;
}
.sw-cat-more p b { color: var(--ink); }

.sw-cat-toggle {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.sw-cat-toggle:hover { color: var(--primary-dark); }
.sw-cat-toggle::after { content: ' \203A'; font-weight: 800; }
.sw-cat.open .sw-cat-toggle::after { content: ' \2039'; }

.sw-cat-note {
  margin-top: 26px;
  text-align: center;
  font-size: .8rem;
  color: var(--muted);
}

@media (max-width: 520px) {
  .sw-cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .sw-cat { padding: 15px; gap: 13px; }
  .sw-cat > img { flex: 0 0 68px; width: 68px; height: 68px; border-radius: 14px; }
  .sw-cat h3 { font-size: .98rem; }
  .sw-cat-short, .sw-cat-more p { font-size: .83rem; }
}

/* jump link from the filter row down to the game-type explainer */
.sw-filter-hint { text-align: center; margin-top: 10px; }
.sw-filter-hint a {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid rgba(var(--primary-rgb), .35);
  padding-bottom: 1px;
  transition: var(--transition);
}
.sw-filter-hint a:hover { color: var(--primary-dark); border-bottom-color: var(--primary-dark); }

/* game-type explainer now sits directly under the stats card */
.sw-cats { border-top: none; padding-top: 62px; }
.sw-cats + .games-filter { border-top: 1px solid var(--border); }

/* ==========================================================================
   32. Real app imagery
   ========================================================================== */

/* hero showcase: match the supplied phone render's own proportions */
.sw-shot {
  aspect-ratio: 511 / 1005;
  max-width: 330px;
  filter: drop-shadow(0 40px 60px rgba(0, 14, 10, .62));
}
@media (max-width: 767px) { .sw-shot { max-width: 250px; } }

/* --- homepage: app showcase band ---------------------------------------- */
.sw-showcase {
  background: #fff;
  padding: 78px 0;
  overflow: hidden;
}
.sw-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.sw-showcase-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: block;
}
.sw-showcase-copy h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  margin-bottom: 14px;
}
.sw-showcase-copy p {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 14px;
}
.sw-showcase-copy .btn-group { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.sw-showcase .sw-eyebrow b i { font-size: .7rem; }

@media (max-width: 900px) {
  .sw-showcase { padding: 56px 0; }
  .sw-showcase-grid { grid-template-columns: 1fr; gap: 30px; }
  .sw-showcase-copy { text-align: center; }
  .sw-showcase-copy .btn-group { justify-content: center; }
  .sw-showcase-media { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .sw-showcase-copy .btn-group .btn { flex: 1 1 100%; justify-content: center; }
}

/* --- install page: three real app screens -------------------------------- */
.sw-screens { margin: 0 auto; max-width: 880px; }
.sw-screens img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.sw-screens figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: .82rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* beat the page's own .hero-img-wrap img sizing rule */
.hero-img-wrap img.sw-shot { max-width: 340px; margin: 0 auto; }
@media (max-width: 767px) { .hero-img-wrap img.sw-shot { max-width: 240px; } }

/* mobile: lay the floating buttons out in one row so they cover a single
   line of copy at the bottom edge instead of a tall column down the side */
@media (max-width: 640px) {
  .float-buttons {
    flex-direction: row;
    align-items: center;
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }
  .float-button {
    width: 40px;
    height: 40px;
    font-size: .92rem;
    box-shadow: 0 8px 20px -8px rgba(0, 20, 14, .7);
  }
  .back-to-top { transform: translateX(10px); }
  .back-to-top.show { transform: translateX(0); }
}

/* ==========================================================================
   33. Benefit section artwork (in-app-benefits)
   Slot: im/benefits/*.jpg — 1600 × 900 px (16:9), JPG q86
   Rendered at the full 780px content width; cover-cropped, so a little
   deviation from 16:9 is safe.
   ========================================================================== */
.sw-prose-fig {
  margin: 0 0 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--light);
}
.sw-prose-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.sw-prose-fig:hover img { transform: scale(1.02); }
.sw-prose-fig figcaption {
  padding: 10px 16px 12px;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 640px) {
  .sw-prose-fig { margin-bottom: 18px; border-radius: var(--radius); }
}

/* ==========================================================================
   34. Hero stage — tilted, floating phone with orbiting labels
   ========================================================================== */
.sw-stage {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 0 14px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

/* soft light pool behind the device */
.sw-stage-glow {
  position: absolute;
  width: 150%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 216, 120, .26) 0%, transparent 58%),
    radial-gradient(circle at 50% 55%, rgba(28, 179, 129, .30) 0%, transparent 66%);
  filter: blur(26px);
  animation: swGlowPulse 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes swGlowPulse {
  0%, 100% { transform: scale(1);    opacity: .85; }
  50%      { transform: scale(1.09); opacity: 1; }
}

/* thin rotating accent ring for a bit of life */
.sw-stage-ring {
  position: absolute;
  width: 124%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 216, 120, .22);
  border-top-color: rgba(255, 216, 120, .55);
  border-right-color: rgba(28, 179, 129, .45);
  animation: swRingSpin 26s linear infinite;
  pointer-events: none;
}
@keyframes swRingSpin { to { transform: rotate(360deg); } }

/* the device itself: 3D tilt + slow drift */
.hero-img-wrap img.sw-shot {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0 auto;
  transform-origin: 55% 55%;
  animation: swPhoneDrift 9s ease-in-out infinite;
  filter: drop-shadow(-18px 42px 46px rgba(0, 14, 10, .68));
  transition: transform .6s cubic-bezier(.22, .8, .3, 1), filter .6s ease;
  will-change: transform;
}
@keyframes swPhoneDrift {
  0%, 100% { transform: perspective(1500px) rotateY(-15deg) rotateX(4deg) rotateZ(-2.5deg) translateY(0); }
  50%      { transform: perspective(1500px) rotateY(-10deg) rotateX(2deg) rotateZ(-1deg)  translateY(-18px); }
}
.sw-stage:hover img.sw-shot {
  animation-play-state: paused;
  transform: perspective(1500px) rotateY(-4deg) rotateX(1deg) rotateZ(0deg) translateY(-10px) scale(1.03);
  filter: drop-shadow(-10px 46px 52px rgba(0, 14, 10, .75));
}

/* orbiting feature labels */
.sw-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(2, 32, 24, .62);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .85);
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.sw-pill i { color: #ffd75e; font-size: .78rem; }
.sw-pill-1 { top: 9%;    left: -16%;  animation: swPillFloat 6.5s ease-in-out infinite; }
.sw-pill-2 { top: 46%;   right: -18%; animation: swPillFloat 6.5s ease-in-out .9s infinite; }
.sw-pill-3 { bottom: 12%; left: -10%;  animation: swPillFloat 6.5s ease-in-out 1.8s infinite; }
@keyframes swPillFloat {
  0%, 100% { transform: translateY(0)     translateX(0); }
  50%      { transform: translateY(-11px) translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img-wrap img.sw-shot,
  .sw-stage-glow, .sw-stage-ring, .sw-pill { animation: none !important; }
  .hero-img-wrap img.sw-shot {
    transform: perspective(1500px) rotateY(-12deg) rotateX(3deg) rotateZ(-2deg);
  }
}

/* --------------------------------------------------------------------------
   35. Mobile hero — artwork first, then the copy
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .hero-grid { display: flex !important; flex-direction: column !important; }
  .hero-img-wrap { order: 1 !important; margin-bottom: 4px !important; }
  .hero-text     { order: 2 !important; }

  .sw-home .hero { padding-top: 26px; padding-bottom: 26px; }
  .hero-grid { gap: 10px !important; }
  .sw-stage { padding: 10px 0 0; max-width: 230px; }
  .hero-img-wrap img.sw-shot { max-width: 208px; }
  .sw-stage-glow { max-width: 320px; filter: blur(20px); }
  .sw-stage-ring { max-width: 268px; }
  .sw-pill { font-size: .66rem; padding: 6px 11px; }
  .sw-pill-1 { left: -14%; top: 14%; }
  .sw-pill-2 { right: -16%; top: 49%; }
  .sw-pill-3 { left: -8%; bottom: 12%; }

  /* tighter, less top-heavy copy block */
  .hero-badge { font-size: .7rem !important; padding: 6px 13px; margin-bottom: 0; }
  .sw-home .hero h1 { font-size: clamp(1.7rem, 7.6vw, 2.2rem); margin-bottom: 4px; }
  .hero-lead { font-size: .92rem; line-height: 1.6; }
  .hero-checks { gap: 6px; }
  .hero-check { font-size: .7rem; padding: 6px 10px; }
}

@media (max-width: 767px) and (min-width: 380px) {
  /* two buttons side by side instead of two full-width slabs */
  .hero-text .btn-group { flex-wrap: nowrap; gap: 8px; }
  .hero-text .btn-group .btn { flex: 1 1 0; min-width: 0; padding-left: 12px; padding-right: 12px; font-size: .8rem; }
  .hero-text .btn-group .btn i { margin-right: 2px; }
}

/* ==========================================================================
   36. Feature tile marquee — richer cards, proper edge fades
   ========================================================================== */
.screenshots-section { padding: 70px 0 64px; }
.scroll-fade-l,
.scroll-fade-r {
  width: 110px;
  background: linear-gradient(to right, var(--light) 12%, rgba(244, 250, 247, .82) 46%, transparent);
}
.scroll-fade-r { background: linear-gradient(to left, var(--light) 12%, rgba(244, 250, 247, .82) 46%, transparent); }

.shot-card { width: 232px; flex: 0 0 232px; }
.sw-tile {
  min-height: 208px;
  padding: 24px 20px 22px;
  background: linear-gradient(165deg, #ffffff 0%, #f4faf7 100%);
  gap: 5px;
}
.sw-tile::before { height: 100%; width: 4px; inset: 0 auto 0 0; opacity: .9; }
.sw-tile-icon {
  width: 52px; height: 52px;
  font-size: 21px;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8), 0 8px 18px -12px rgba(10, 42, 32, .5);
}
.sw-tile-title { font-size: 1.02rem; }
.sw-tile-sub { font-size: .81rem; }

/* pause the marquee on hover anywhere in the strip, not just the track */
.scroll-wrap:hover .scroll-track { animation-play-state: paused; }

@media (max-width: 640px) {
  .scroll-fade-l, .scroll-fade-r { width: 48px; }
  .shot-card { width: 200px; flex: 0 0 200px; }
  .sw-tile { min-height: 186px; padding: 20px 17px; }
  .sw-tile-icon { width: 46px; height: 46px; font-size: 19px; }
}

/* ==========================================================================
   37. Hero artwork v2 — static composition, layered labels
   Overrides section 34/35. Motion removed on request.
   ========================================================================== */

/* --- layer order, explicitly ------------------------------------------- */
.sw-stage            { isolation: isolate; }
.sw-stage-glow       { z-index: 0; }          /* light pool, behind everything */
/* .sw-stage-ring retired together with the hero animation */
.hero-img-wrap img.sw-shot { z-index: 1; }     /* the artwork                  */
.sw-pill             { z-index: 3; }           /* labels always on top         */

/* --- the stage now frames a wider, squarer composition ------------------ */
.sw-stage {
  max-width: 430px;
  padding: 18px 0 10px;
  perspective: none;
  transform-style: flat;
}
.sw-stage-glow {
  width: 128%;
  max-width: 470px;
  aspect-ratio: 1;
  animation: none;
  transform: translateY(4%);
  opacity: .9;
  filter: blur(30px);
}

/* --- artwork: static, no tilt, no drift --------------------------------- */
.hero-img-wrap img.sw-shot {
  aspect-ratio: 317 / 368;
  max-width: 336px;
  animation: none !important;
  transform: none !important;
  filter: drop-shadow(0 26px 34px rgba(0, 14, 10, .55));
  transition: none;
}
.sw-stage:hover img.sw-shot { transform: none !important; filter: drop-shadow(0 26px 34px rgba(0, 14, 10, .55)); }

/* --- labels: static, tucked around the artwork -------------------------- */
.sw-pill {
  animation: none !important;
  background: rgba(2, 34, 25, .72);
  border-color: rgba(255, 255, 255, .2);
  padding: 8px 15px;
  font-size: .75rem;
}
/* placed into the artwork's own empty zones so nothing is covered:
   y 0-14% is clear across the top, and y 50-65% is clear either side of the logo */
.sw-pill-1 { top: 1%;   left: 3%;    right: auto; bottom: auto; }
.sw-pill-2 { top: 51%;  right: -13%; left: auto;  bottom: auto; }
.sw-pill-3 { top: 55%;  left: -13%;  right: auto; bottom: auto; }

@media (max-width: 991px) {
  .sw-stage { max-width: 380px; }
  .hero-img-wrap img.sw-shot { max-width: 300px; }
}
@media (max-width: 767px) {
  .sw-stage { max-width: 320px; padding: 6px 0 2px; }
  .hero-img-wrap img.sw-shot { max-width: 246px; }
  .sw-stage-glow { max-width: 330px; filter: blur(24px); }
  .sw-pill { font-size: .66rem; padding: 6px 11px; }
  .sw-pill-1 { top: 0;    left: 0; }
  .sw-pill-2 { top: 52%;  right: -19%; }
  .sw-pill-3 { top: 57%;  left: -19%; }
}

/* ==========================================================================
   38. Mobile backdrop — whole artwork, scaled proportionally (no side crop)
   Portrait source: im/hero-bg-mobile.jpg, 1080 x 1920
   ========================================================================== */
@media (max-width: 767px) {
  .sw-home .sw-night,
  .sw-inner .sw-night {
    background-color: #02201a;
    background-image:
      linear-gradient(180deg,
        rgba(0, 18, 13, .72) 0%,
        rgba(0, 18, 13, .34) 22%,
        rgba(0, 18, 13, .40) 58%,
        rgba(2, 32, 24, .92) 100%),
      url('../im/hero-bg-mobile.jpg');
    background-size: auto, 100% auto;   /* full width, proportional, never cropped sideways */
    background-position: center, center top;
    background-repeat: no-repeat, no-repeat;
  }
}

/* ==========================================================================
   39. Floating action buttons — vertical column, slightly larger
   Supersedes the horizontal mobile row from section 32.
   ========================================================================== */
.float-buttons {
  flex-direction: column !important;
  align-items: flex-end !important;
  right: 18px;
  bottom: 20px;
  gap: 12px;
}
.float-button {
  width: 56px;
  height: 56px;
  font-size: 1.32rem;
}

@media (max-width: 640px) {
  .float-buttons {
    flex-direction: column !important;
    align-items: flex-end !important;
    right: 12px;
    bottom: 14px;
    gap: 10px;
  }
  .float-button {
    width: 50px;
    height: 50px;
    font-size: 1.16rem;
    box-shadow: 0 10px 24px -8px rgba(0, 20, 14, .75);
  }
  /* restore the vertical slide-in for back-to-top */
  .back-to-top { transform: translateY(10px) !important; }
  .back-to-top.show { transform: translateY(0) !important; }
}

/* chip rows keep their natural two-line wrap; the button stack is a standard
   floating overlay and is allowed to sit above page content */

/* ==========================================================================
   40. Comfort pass — tighter, more even spacing across the site
   ========================================================================== */

/* section rhythm ------------------------------------------------------- */
.section              { padding: 64px 0; }
.section-sm           { padding: 44px 0; }
.screenshots-section  { padding: 56px 0 52px; }
.features-section     { padding: 60px 0; }
.faq-section          { padding: 56px 0; }
.quick-links-section  { padding: 56px 0; }
.seo-section          { padding: 52px 0; }
.download-cta         { padding: 72px 0; }
.sw-showcase          { padding: 64px 0; }
.sw-prose-section     { padding: 60px 0 68px; }
.partner-section      { padding: 56px 0; }
.sw-cats              { padding-top: 54px; padding-bottom: 58px; }

.section-title        { margin-bottom: 34px; }
.section-title h2     { margin-bottom: 10px; }
.section-title p      { font-size: .95rem; }

/* card grids: a touch more air between, a touch less inside ------------ */
.features-grid,
.partner-grid,
.quick-links-grid,
.reviews-grid         { gap: 18px; }
.sw-cat-grid          { gap: 16px; }

.feature-card         { padding: 22px; }
.quick-link-card      { padding: 20px 44px 20px 20px; }
.review-card          { padding: 22px; }
.sw-cat               { padding: 16px; gap: 14px; }
.legal-section        { padding: 24px; }

/* prose page: shorter gaps between sections ---------------------------- */
.sw-prose             { padding-bottom: 38px; margin-bottom: 38px; }
.sw-prose-fig         { margin-bottom: 18px; }
.sw-prose h2          { margin-bottom: 8px; }
.sw-prose-lead        { margin-bottom: 16px; }
.sw-prose p:not(.sw-prose-lead) { margin-bottom: 14px; }

@media (max-width: 768px) {
  .section             { padding: 44px 0; }
  .section-sm          { padding: 32px 0; }
  .screenshots-section { padding: 40px 0 38px; }
  .features-section    { padding: 42px 0; }
  .faq-section         { padding: 40px 0; }
  .quick-links-section { padding: 40px 0; }
  .seo-section         { padding: 38px 0; }
  .download-cta        { padding: 48px 0; }
  .sw-showcase         { padding: 42px 0; }
  .sw-prose-section    { padding: 40px 0 46px; }
  .partner-section     { padding: 40px 0; }
  .sw-cats             { padding-top: 38px; padding-bottom: 42px; }
  .section-title       { margin-bottom: 24px; }
  .features-grid, .partner-grid, .quick-links-grid, .reviews-grid { gap: 14px; }
  .feature-card, .review-card { padding: 18px; }
  .sw-prose            { padding-bottom: 28px; margin-bottom: 28px; }
  footer               { padding-top: 40px; }
}

/* ==========================================================================
   41. Mobile hero — two chips, tighter block
   ========================================================================== */
@media (max-width: 767px) {
  /* keep only the two strongest chips on small screens */
  .hero-text .hero-check:nth-child(n+3) { display: none; }

  .hero-text            { gap: 10px !important; }
  .sw-home .hero        { padding-top: 22px; padding-bottom: 22px; }
  .sw-home .hero h1     { font-size: clamp(1.6rem, 7.2vw, 2.05rem); line-height: 1.16; }
  .hero-lead            { font-size: .9rem; line-height: 1.58; margin-bottom: 2px; }
  .hero-badge           { font-size: .68rem !important; padding: 5px 12px; }
  .hero-check           { font-size: .72rem; padding: 6px 12px; }
  .hero-meta            { font-size: .72rem; }
  .hero-text .btn-group { margin-top: 2px; }
  .hero-text .btn       { padding-top: 12px; padding-bottom: 12px; }
  .sw-stage             { padding: 6px 0 0; }
}

/* ==========================================================================
   42. Download mirrors (replaces the partner-site cards)
   ========================================================================== */
.sw-mirrors .container-md { max-width: 780px; }
.sw-mirror-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-mirror {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.sw-mirror:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.sw-mirror-n {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
}
.sw-mirror-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sw-mirror-body b {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}
.sw-mirror-body em {
  font-style: normal;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}
.sw-mirror > i {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: .9rem;
  transition: var(--transition);
}
.sw-mirror:hover > i { transform: translateX(4px); }

.sw-mirrors .partner-note {
  margin-top: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
}
.sw-mirrors .partner-note i { color: var(--primary); }

@media (max-width: 520px) {
  .sw-mirror { padding: 13px 14px; gap: 11px; }
  .sw-mirror-n { flex-basis: 26px; width: 26px; height: 26px; border-radius: 9px; font-size: .74rem; }
  .sw-mirror-body b { font-size: .9rem; }
  .sw-mirror-body em { font-size: .74rem; }
  .sw-mirrors .partner-note { align-items: flex-start; text-align: left; font-size: .74rem; }
}

/* contact tiles: 5 across on wide screens, evenly filled ---------------- */
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(5, 1fr); } }

/* index.html only scopes .container-md inside .seo-section — give it a base rule */
.container-md {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.sw-mirrors .container-md { max-width: 760px; }
.sw-mirrors .section-title { text-align: center; }
@media (max-width: 576px) { .container-md { padding: 0 15px; } }

/* ==========================================================================
   43. Payment methods — real UPI + Bank IMPS marks, deliberately small
   ========================================================================== */
.payment-row { gap: 12px; flex-wrap: wrap; }
.sw-paylogo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, .8);
  transition: var(--transition);
}
.sw-paylogo img {
  display: block;
  width: auto;
  height: 17px;          /* keep the marks small — legibility over size */
  object-fit: contain;
}
.sw-paylogo:hover { transform: translateY(-1px); background: #fff; }

@media (max-width: 520px) {
  .payment-row { gap: 8px; }
  .payment-label { flex: 0 0 100%; text-align: center; margin: 0 0 2px; font-size: .64rem; }
  .sw-paylogo { height: 32px; padding: 0 12px; }
  .sw-paylogo img { height: 14px; }
  .sw-pay-ghost { font-size: .7rem; padding: 7px 12px; }
}

/* ==========================================================================
   44. How-to-install steps — separated cards, badge inside, no crowding
   ========================================================================== */
.step-card {
  padding: 18px 20px;
  align-items: flex-start;
  gap: 14px !important;
}
.step-card + .step-card { margin-top: 12px; }

/* the page draws a vertical connector between steps — redundant once the
   cards are spaced apart, and it breaks across the gaps */
.step-card div[style*="width:2px"] { display: none !important; }

/* the content column carried the old spacing; the card padding handles it now */
.step-card div[style*="padding-bottom:28px"] { padding-bottom: 0 !important; }

/* trim the oversized number badge */
.step-card div[style*="width:48px"] {
  width: 40px !important;
  height: 40px !important;
  border-radius: 13px !important;
  font-size: 15px !important;
  box-shadow: 0 8px 16px -10px rgba(var(--primary-rgb), .95);
}
.step-card h3 { margin-bottom: 6px !important; line-height: 1.3; }
.step-card p  { line-height: 1.72 !important; }

@media (max-width: 640px) {
  .step-card { padding: 15px 16px !important; gap: 12px !important; }
  .step-card + .step-card { margin-top: 10px; }
  .step-card div[style*="width:48px"] { width: 34px !important; height: 34px !important; border-radius: 11px !important; font-size: 13px !important; }
}

/* the same treatment for the four-up unlock steps on the games page */
.unlock-steps { gap: 14px; }
.unlock-step  { padding: 18px 16px; }

/* optical sizing: the IMPS lockup carries a tagline under the wordmark, so it
   needs a slightly taller box for its wordmark to match UPI's visual weight */
.sw-paylogo img[alt="Bank IMPS"] { height: 22px; }
@media (max-width: 520px) { .sw-paylogo img[alt="Bank IMPS"] { height: 18px; } }

/* games page: four unlock steps should sit 4-up, then 2x2, never 3+1 */
.unlock-steps { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .unlock-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .unlock-steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   45. Trademark mark on the wordmark
   ========================================================================== */
.logo-text .sw-tm {
  font-family: var(--font-head);
  font-size: .5em;
  font-weight: 700;
  line-height: 1;
  vertical-align: super;
  margin-left: 2px;
  letter-spacing: 0;
  color: var(--muted);
  top: 0;
}
.sw-home header:not(.scrolled) .logo-text .sw-tm,
.sw-inner header:not(.scrolled) .logo-text .sw-tm { color: rgba(255, 255, 255, .55); }
@media (max-width: 640px) { .logo-text .sw-tm { font-size: .46em; } }

/* ==========================================================================
   46. Floating buttons — four actions, clear hierarchy
   ========================================================================== */
.float-buttons { z-index: 9998; }

/* 2. Telegram channel */
.float-button.fb-telegram {
  background: linear-gradient(135deg, #37bbf0 0%, #229ed9 60%, #1b87ba 100%);
  box-shadow: 0 12px 26px -10px rgba(34, 158, 217, .85);
}
.float-button.fb-telegram:hover { filter: brightness(1.08); background: linear-gradient(135deg, #37bbf0 0%, #229ed9 60%, #1b87ba 100%); }

/* 4. download stays the loudest action */
.float-buttons > a:last-child {
  background: var(--grad-accent);
  color: #12291f;
  box-shadow: 0 12px 28px -10px rgba(var(--accent-rgb), .95);
}
.float-buttons > a:last-child:hover { filter: brightness(1.06); background: var(--grad-accent); color: #12291f; }

/* 1. back-to-top is secondary — keep it quiet */
.float-button.back-to-top {
  background: rgba(3, 40, 30, .82);
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .8);
}
.float-button.back-to-top:hover { background: rgba(3, 40, 30, .95); }

/* four buttons is a tall stack — trim a little on short screens */
@media (max-height: 700px) {
  .float-button { width: 46px; height: 46px; font-size: 1.05rem; }
  .float-buttons { gap: 9px; }
}

/* ==========================================================================
   47. Side rail — three actions joined into one strip, pinned mid-right
   Supersedes the stacked circles from section 46.
   ========================================================================== */
.float-buttons {
  top: 50%;
  right: 0;
  bottom: auto;
  transform: translateY(-50%);
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px -12px rgba(0, 16, 11, .75);
  z-index: 9997;
}
.float-buttons > a.float-button,
.float-buttons > button.float-button:not(.back-to-top) {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  font-size: 1.14rem;
  transform: none !important;
}
.float-buttons > a.float-button + a.float-button {
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.float-buttons > a.float-button:hover { filter: brightness(1.1); transform: none !important; }

/* back-to-top is a sibling of the rail, not a child: an ancestor with a
   transform would otherwise trap its position:fixed inside that element. */
.float-button.back-to-top {
  position: fixed;
  right: 14px;
  bottom: 96px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 9997;
  background: rgba(3, 40, 30, .85);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .8);
}
.float-button.back-to-top:hover { background: rgba(3, 40, 30, .96); transform: translateY(-2px) !important; }
.back-to-top { transform: translateX(10px) !important; }
.back-to-top.show { transform: translateX(0) !important; }

@media (max-width: 640px) {
  .float-buttons { border-radius: 12px 0 0 12px; }
  .float-buttons > a.float-button { width: 42px; height: 42px; font-size: 1rem; }
  .float-button.back-to-top { right: 10px; bottom: 92px; width: 40px; height: 40px; }
}
@media (max-height: 620px) {
  .float-buttons > a.float-button { width: 40px; height: 40px; font-size: .95rem; }
}

/* ==========================================================================
   48. Sticky download bar
   ========================================================================== */
.sw-dlbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9996;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(5, 52, 38, .96) 0%, rgba(0, 22, 15, .98) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 -14px 34px -18px rgba(0, 0, 0, .9);
  transform: translateY(115%);
  opacity: 0;
  visibility: hidden;
  transition: transform .34s cubic-bezier(.22, .8, .3, 1), opacity .28s ease, visibility .28s;
}
.sw-dlbar::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 190, 140, .85) 32%, rgba(255, 216, 120, .85) 64%, transparent);
}
.sw-dlbar.show { transform: translateY(0); opacity: 1; visibility: visible; }

.sw-dlbar-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sw-dlbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  box-shadow: 0 12px 26px -12px rgba(var(--primary-rgb), .95);
  transition: var(--transition);
}
.sw-dlbar-btn:hover { filter: brightness(1.07); transform: translateY(-1px); color: #fff; }
.sw-dlbar-btn i { font-size: 1.05rem; }

.sw-dlbar-note {
  margin: 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  line-height: 1.4;
}
.sw-dlbar-note i { color: #ffd75e; margin-right: 4px; }

/* the bar overlays the page bottom — give the footer room so nothing is hidden */
footer { padding-bottom: 92px; }

@media (min-width: 768px) {
  .sw-dlbar { padding: 12px 20px; }
  .sw-dlbar-inner { flex-direction: row; justify-content: center; gap: 18px; max-width: 900px; }
  .sw-dlbar-btn { width: auto; flex: 0 0 auto; }
  .sw-dlbar-note { text-align: left; font-size: .78rem; }
  footer { padding-bottom: 84px; }
}
@media (max-width: 400px) {
  .sw-dlbar-btn { font-size: .92rem; padding: 12px 16px; }
  .sw-dlbar-note { font-size: .66rem; }
}

/* ==========================================================================
   49. Hero headline — keep the tagline's two halves intact
   "Play the Slot," / "Be the Winner" must break between the halves, never
   inside one. On phones the gold half takes its own line so it can never
   run under the floating side rail.
   ========================================================================== */
.sw-home .hero h1 span { white-space: nowrap; }
@media (max-width: 900px) {
  .sw-home .hero h1 span { display: block; }
  .sw-home .hero h1 { text-wrap: balance; }
}
