@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   OZARK SCRIPTS — Shared Styles
   White / Purple (#7c5cfc) design language
   ============================================ */

/* GLOBAL ICON GUARD — inline SVG icons must never fill the page.
   Any <svg> inside these small UI contexts is capped to icon size,
   regardless of CSS load order or caching. */
.trust-item svg,
.review-source svg,
.acc-chevron svg,
.acc-eyebrow svg,
.menu-toggle svg,
.nav svg { width: 18px; height: 18px; flex-shrink: 0; }

:root {
  --purple: #7c5cfc;
  --purple-dark: #5a3fd6;
  --purple-light: #9d84ff;
  --purple-glow: rgba(124, 92, 252, 0.35);
  --bg: #ffffff;
  --bg-soft: #f7f6fc;
  --bg-card: #ffffff;
  --ink: #14101f;
  --ink-soft: #4a4458;
  --ink-faint: #8c8699;
  --line: #ece9f5;
  --green: #2bd576;
  --star: #ffb020;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(20, 16, 31, 0.04);
  --shadow: 0 12px 40px rgba(20, 16, 31, 0.08);
  --shadow-purple: 0 18px 50px var(--purple-glow);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --motion-fast: 160ms;
  --motion-base: 280ms;
  --motion-slow: 620ms;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.16, 1.3, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px var(--purple-glow); }
.btn-ghost {
  background: var(--bg-soft);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--purple-light); transform: translateY(-2px); }
.btn-lg { font-size: 16px; padding: 17px 34px; }
.btn-block { width: 100%; }
/* native <button> reset so Komerza buttons match anchor buttons exactly */
button.btn { font-family: inherit; line-height: 1; appearance: none; -webkit-appearance: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.logo img { width: 34px; height: 34px; border-radius: 9px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--purple); }
.nav .nav-cart {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft); padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink); font-weight: 700;
}
.nav .nav-cart:hover { border-color: var(--purple-light); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ---------- Topbar / ticker ---------- */
.topbar {
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff; text-align: center; font-size: 13px; font-weight: 600;
  padding: 8px 16px; letter-spacing: .01em;
}
.topbar b { font-weight: 800; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 50px; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 60%);
  filter: blur(20px); z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(43,213,118,.18); }
.stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
h1.hero-title {
  font-size: clamp(38px, 6vw, 68px); line-height: 1.04;
  letter-spacing: -.03em; font-weight: 850; margin: 0 auto 20px; max-width: 880px;
}
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--ink-soft); max-width: 620px; margin: 0 auto 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 16px; border-radius: 999px;
}
.pill .check { color: var(--green); font-weight: 900; }

/* ---------- Section heads ---------- */
.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head .kicker { color: var(--purple); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.02em; margin: 12px 0; line-height: 1.1; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* ---------- Product grid (home) ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
  position: relative; background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--purple-light); }
.pcard.featured { border: 2px solid var(--purple); box-shadow: var(--shadow-purple); }
.pcard .ribbon {
  position: absolute; top: 16px; right: 16px;
  background: var(--purple); color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
}
.pcard .sold-tag { font-size: 12px; color: var(--purple); font-weight: 700; margin-bottom: 8px; }
.pcard .pimg {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain;
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at 50% 40%, #1a1330 0%, #0c0917 100%);
  margin-bottom: 18px; padding: 8px;
}
.pcard h3 { font-size: 22px; letter-spacing: -.01em; margin-bottom: 4px; }
.pcard .users { font-size: 13px; color: var(--ink-faint); font-weight: 600; margin-bottom: 12px; }
.pcard .users b { color: var(--purple); }
.pcard .desc { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.pcard ul { list-style: none; margin: 0 0 18px; display: flex; flex-direction: column; gap: 9px; }
.pcard ul li { font-size: 14px; color: var(--ink-soft); padding-left: 24px; position: relative; }
.pcard ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.pcard ul li b { color: var(--ink); }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; margin-bottom: 6px; }
.price-now { font-size: 30px; font-weight: 850; letter-spacing: -.02em; }
.price-was { font-size: 17px; color: var(--ink-faint); text-decoration: line-through; }
.price-save { font-size: 12px; font-weight: 800; color: var(--green); background: rgba(43,213,118,.12); padding: 3px 9px; border-radius: 999px; }
.price-note { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 16px; }
.gen-badge {
  display: flex; align-items: center; gap: 10px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 16px;
}
.gen-badge img { width: 30px; height: 30px; border-radius: 8px; }
.gen-badge .gt { font-size: 13px; line-height: 1.3; }
.gen-badge .gt b { display: block; font-size: 13.5px; }
.gen-badge .gt span { color: var(--ink-faint); }
.gen-badge .gfree { margin-left: auto; font-size: 12px; font-weight: 800; color: var(--purple); }

/* ---------- Feature row (single product page) ---------- */
.feat-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative;
}
.step .num { font-size: 12px; font-weight: 800; color: var(--purple); letter-spacing: .08em; }
.step h4 { font-size: 19px; margin: 10px 0 8px; }
.step p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat .big { font-size: clamp(28px, 4vw, 40px); font-weight: 850; color: var(--purple); letter-spacing: -.02em; }
.stat .lbl { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Compare table (GPC) ---------- */
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; max-width: 860px; margin: 0 auto; }
.compare-col { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.compare-col.win { border: 2px solid var(--purple); box-shadow: var(--shadow-purple); }
.compare-col h4 { font-size: 16px; margin-bottom: 18px; color: var(--ink-soft); }
.compare-col.win h4 { color: var(--purple); }
.compare-line { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.compare-line:last-of-type { border-bottom: none; }
.compare-line .v { font-weight: 700; }
.compare-total { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--line); font-size: 18px; font-weight: 850; }
.compare-vs { font-weight: 850; color: var(--ink-faint); font-size: 18px; }
.compare-sub { font-size: 12.5px; color: var(--ink-faint); margin-top: 8px; }
.win-tag { display: inline-block; font-size: 11px; font-weight: 800; color: var(--green); background: rgba(43,213,118,.12); padding: 3px 9px; border-radius: 999px; margin-top: 10px; }

/* ---------- Unlock cards (GPC) ---------- */
.unlock-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ucard { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; box-shadow: var(--shadow-sm); }
.ucard .tag { display: inline-block; font-size: 11px; font-weight: 800; color: var(--purple); background: var(--bg-soft); padding: 4px 10px; border-radius: 6px; letter-spacing: .05em; margin-bottom: 12px; }
.ucard h4 { font-size: 16px; margin-bottom: 6px; }
.ucard p { font-size: 13px; color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.review-head { text-align: center; margin-bottom: 36px; }
.review-head .score { font-size: 56px; font-weight: 850; color: var(--purple); line-height: 1; }
.review-head .stars { font-size: 22px; display: block; margin: 8px 0; }
.review-head .based { color: var(--ink-soft); font-size: 15px; }
.review-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); max-width: 640px; margin: 0 auto; }
.review-card .rhead { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.review-card .rname { font-weight: 800; font-size: 15px; }
.review-card .rmeta { font-size: 12.5px; color: var(--ink-faint); }
.review-card .rprod { font-size: 12.5px; color: var(--purple); font-weight: 700; margin: 6px 0; }
.review-card .rtext { font-size: 15px; color: var(--ink-soft); font-style: italic; }
.review-foot { text-align: center; font-size: 13px; color: var(--ink-faint); margin-top: 20px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 70px 22px; background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%); color: #fff; border-radius: var(--radius); margin: 40px auto; max-width: var(--maxw); }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -.02em; margin-bottom: 14px; }
.cta-band p { font-size: 17px; opacity: .92; margin-bottom: 28px; }
.cta-band .btn-primary { background: #fff; color: var(--purple-dark); box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.cta-band .cta-pills { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 24px; font-size: 13.5px; opacity: .92; }
.cta-band .cta-pills span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Toast / purchase notification ---------- */
.toast {
  position: fixed; bottom: 22px; left: 22px; z-index: 200;
  background: var(--bg-card); border: 1px solid var(--line); box-shadow: var(--shadow);
  border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  max-width: 320px; transform: translateY(140%); transition: transform .45s cubic-bezier(.2,.9,.3,1); opacity: 0;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast img { width: 32px; height: 32px; border-radius: 8px; }
.toast .ttext { font-size: 13px; line-height: 1.35; }
.toast .ttext b { display: block; }
.toast .ttext span { color: var(--ink-faint); font-size: 12px; }
.toast .tcheck { color: var(--green); font-size: 18px; font-weight: 900; }

/* ---------- Single product hero layout ---------- */
.pdp-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 56px 0; }
.pdp-media { position: relative; }
.pdp-media img {
  width: 100%; border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, rgba(124,92,252,.10) 0%, transparent 62%), linear-gradient(180deg,#faf7ff 0%, #ebe2ff 100%);
  object-fit: contain; padding: 28px;
  filter: drop-shadow(0 16px 32px rgba(15,15,20,.18));
}
.pdp-media .float-badge {
  position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px); border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 700;
}
.pdp-info .breadcrumb { font-size: 13px; color: var(--ink-faint); margin-bottom: 14px; }
.pdp-info .breadcrumb a:hover { color: var(--purple); }
.pdp-info .tagline { color: var(--purple); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.pdp-info h1 { font-size: clamp(34px, 5vw, 52px); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 16px; }
.pdp-info .lead { font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; }
.pdp-rating { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; flex-wrap: wrap; }
.pdp-rating .stars { font-size: 16px; }
.pdp-rating b { color: var(--ink); }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-price .now { font-size: 38px; font-weight: 850; letter-spacing: -.02em; }
.pdp-price .was { font-size: 20px; color: var(--ink-faint); text-decoration: line-through; }
.pdp-price .save { font-size: 13px; font-weight: 800; color: var(--green); background: rgba(43,213,118,.12); padding: 4px 11px; border-radius: 999px; }
.pdp-info .price-note { margin-bottom: 22px; }
.pdp-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.pdp-feats { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 50px 0 30px; margin-top: 20px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 9px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.footer-links a:hover { color: var(--purple); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 13px; color: var(--ink-faint); }
.footer-social a:hover { color: var(--purple); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 22px; font-size: 12.5px; color: var(--ink-faint); }
.footer-legal .copy { margin-bottom: 12px; }
.footer-legal .copy a { color: var(--ink-soft); }
.footer-legal .copy a:hover { color: var(--purple); }
.footer-legal .disclaimer { line-height: 1.6; }
.footer-legal .disclaimer a { color: var(--purple); text-decoration: underline; }

/* ---------- Generic content pages (policies / how-it-works) ---------- */
.content-page { max-width: 760px; margin: 0 auto; padding: 56px 22px; }
.content-page h1 { font-size: clamp(30px, 5vw, 44px); letter-spacing: -.02em; margin-bottom: 10px; }
.content-page .updated { color: var(--ink-faint); font-size: 13px; margin-bottom: 32px; }
.content-page h2 { font-size: 22px; margin: 32px 0 12px; letter-spacing: -.01em; }
.content-page h3 { font-size: 17px; margin: 22px 0 8px; }
.content-page p { color: var(--ink-soft); margin-bottom: 14px; font-size: 15.5px; }
.content-page ul { margin: 0 0 16px 20px; color: var(--ink-soft); font-size: 15.5px; }
.content-page ul li { margin-bottom: 8px; }
.content-page a { color: var(--purple); text-decoration: underline; }
.content-page .callout { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--purple); border-radius: var(--radius-sm); padding: 18px 20px; margin: 20px 0; }
.content-page .callout p { margin: 0; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 100px 22px; }
.notfound h1 { font-size: 90px; color: var(--purple); letter-spacing: -.04em; }
.notfound p { color: var(--ink-soft); font-size: 18px; margin: 10px 0 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .product-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pdp-hero { grid-template-columns: 1fr; gap: 30px; }
  .pdp-media { order: -1; }
  .unlock-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .compare-vs { text-align: center; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
    position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 20px 22px; box-shadow: var(--shadow);
  }
  .menu-toggle { display: block; }
  .steps, .stats { grid-template-columns: 1fr; }
  .unlock-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PDP SLIDESHOW (image carousel, GPC-style)
   ============================================ */
.slideshow {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 35%, #1a1330 0%, #0c0917 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.slideshow .slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .6s ease; padding: 16px;
}
.slideshow .slide.active { opacity: 1; }
.slideshow .slide img { width: 100%; height: 100%; object-fit: contain; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); color: #fff;
  font-size: 20px; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.slide-arrow:hover { background: rgba(255,255,255,.22); }
.slide-arrow.prev { left: 14px; }
.slide-arrow.next { right: 14px; }
.slide-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.slide-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; border: none;
  transition: background .2s ease, transform .2s ease;
}
.slide-dot.active { background: #fff; transform: scale(1.25); }
.slide-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 700;
}

/* ============================================
   PREMIUM DARK BLOCK (GPC-style, reused on all PDPs)
   ============================================ */
.dark-block {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a1f5e 0%, #1a1238 60%, #0e0a22 100%);
  border-radius: var(--radius);
  padding: 60px 40px; text-align: center; color: #fff;
  margin: 0 auto;
}
.dark-block::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 60%);
  filter: blur(10px); z-index: 0;
}
.dark-block > * { position: relative; z-index: 1; }
.dark-block .kicker { color: var(--purple-light); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.dark-block h2 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -.02em; line-height: 1.08; margin: 14px 0; }
.dark-block h2 .accent { background: linear-gradient(90deg, var(--purple-light), #d9c9ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dark-block p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }
.dark-stats {
  display: inline-flex; gap: 0; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px; overflow: hidden;
}
.dark-stats .ds { padding: 18px 34px; border-right: 1px solid rgba(255,255,255,.12); }
.dark-stats .ds:last-child { border-right: none; }
.dark-stats .ds b { display: block; font-size: 26px; font-weight: 850; letter-spacing: -.02em; }
.dark-stats .ds span { font-size: 13px; color: rgba(255,255,255,.7); }

/* dark CTA band variant (matches GPC dark hero) */
.cta-dark {
  background: linear-gradient(135deg, #2a1f5e 0%, #1a1238 60%, #0e0a22 100%);
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ""; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 60%);
  filter: blur(12px);
}
.cta-dark > * { position: relative; z-index: 1; }
.cta-dark .btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff; box-shadow: 0 18px 50px var(--purple-glow);
}

@media (max-width: 680px) {
  .dark-stats { flex-direction: column; }
  .dark-stats .ds { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .dark-stats .ds:last-child { border-bottom: none; }
  .dark-block { padding: 44px 22px; }
}

/* ============================================
   HOMEPAGE (ported from single-file design)
   Colorful per-product cards, ticker, accordion,
   review carousel, purchase popup
   ============================================ */
:root {
  --accent-nba: #eab308;
  --accent-cod: #16a34a;
  --accent-fn: #a855f7;
  --accent-plus: var(--purple);
  --gold: #f59e0b;
}

/* social ticker */
.social-ticker {
  background: #f0fdf4; border-bottom: 1px solid #dcfce7;
  padding: 10px 16px; text-align: center;
  font-size: 13px; color: var(--green); font-weight: 600;
}
.social-ticker .tdot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%; margin-right: 6px;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* hero (homepage variant) */
.home-hero { text-align: center; padding: 52px 24px 12px; }
.home-hero .trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,92,252,.06); border: 1px solid rgba(124,92,252,.2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--purple); margin-bottom: 18px;
}
.home-hero .trust-badge .stars { color: var(--gold); margin-right: 2px; }
.home-hero h1 {
  font-size: 48px; font-weight: 900; letter-spacing: -2px; line-height: 1.05;
  margin: 0 auto 14px; max-width: 780px;
}
.home-hero h1 .accent {
  background: linear-gradient(135deg, var(--purple), #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.home-hero p { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin: 0 auto; line-height: 1.55; }

.trust-strip {
  max-width: 860px; margin: 32px auto 0; display: flex; justify-content: center;
  gap: 28px; padding: 16px 24px; background: var(--bg-soft);
  border-radius: 12px; border: 1px solid var(--line); flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.trust-item svg { width: 18px; height: 18px; color: var(--green); }

/* product cards */
.home-products {
  max-width: 1140px; margin: 0 auto; padding: 40px 24px 32px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch;
}
.pc {
  --accent: var(--purple);
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px;
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
}
.pc.nba { --accent: var(--accent-nba); }
.pc.cod { --accent: var(--accent-cod); }
.pc.plus { --accent: var(--purple); border-color: rgba(124,92,252,.3); }
.pc:hover { transform: translateY(-4px); border-color: var(--border-strong, #dcdce3); box-shadow: 0 18px 40px rgba(15,15,20,.08), 0 4px 12px rgba(15,15,20,.04); }
.pc::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--accent); opacity:0; transition: opacity .25s; z-index: 4; }
.pc:hover::before { opacity:1; }

.pc-featured-tag {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  background: var(--purple); color:#fff; font-size:10px; font-weight:800; letter-spacing:.04em;
  padding: 5px 11px; border-radius: 100px; text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(124,92,252,.35);
}
.pc-link-overlay { position:absolute; inset:0; z-index:2; border-radius:18px; }
.pc .pc-btn, .pc .promo-strip { position: relative; z-index: 3; }

.pc-media {
  position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(124,92,252,.08) 0%, transparent 60%), linear-gradient(180deg,#fafaff 0%, #f3f0fc 100%);
}
.pc.nba .pc-media { background: radial-gradient(circle at 50% 40%, rgba(234,179,8,.12) 0%, transparent 60%), linear-gradient(180deg,#fffdf5 0%, #fef6dc 100%); }
.pc.cod .pc-media { background: radial-gradient(circle at 50% 40%, rgba(22,163,74,.1) 0%, transparent 60%), linear-gradient(180deg,#f5fdf8 0%, #dcfce7 100%); }
.pc.plus .pc-media { background: radial-gradient(circle at 50% 40%, rgba(124,92,252,.12) 0%, transparent 60%), linear-gradient(180deg,#faf7ff 0%, #ebe2ff 100%); }
.pc-media img { width: 92%; height: 92%; object-fit: contain; transition: transform .5s cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 12px 24px rgba(15,15,20,.18)); }
.pc:hover .pc-media img { transform: scale(1.04); }

.pc-pill {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15,15,20,.85); backdrop-filter: blur(8px); color:#fff;
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px;
}
.pc-pill .pdot {
  width: 6px; height: 6px; border-radius: 50%; background:#ff6b6b;
  animation: pillPulse 1.8s infinite;
}
@keyframes pillPulse {
  0%{box-shadow:0 0 0 0 rgba(255,107,107,.7);}
  70%{box-shadow:0 0 0 6px rgba(255,107,107,0);}
  100%{box-shadow:0 0 0 0 rgba(255,107,107,0);}
}

.pc-body { padding: 22px 22px 0; display: flex; flex-direction: column; flex: 1; }
.pc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.pc-title { font-size: 22px; font-weight: 800; letter-spacing: -.5px; line-height: 1.15; }
.pc-users {
  font-size: 11.5px; color: var(--ink-faint); font-weight: 600;
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.pc-users strong { color: var(--ink); font-weight: 700; }
.pc-sub { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 18px; }
.pc-features { list-style: none; margin: 0 0 18px; flex: 1; }
.pc-features li { font-size: 13.5px; color: var(--ink-soft); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; font-weight: 500; }
.pc-features li::before {
  content:''; flex-shrink:0; width:16px; height:16px; margin-top:2px; border-radius:50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.5L7 11.5L12 5.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100%; background-position: center;
}
.pc-features li strong { color: var(--ink); font-weight: 700; }

.pc-price-block { margin: 0 22px; padding: 18px 0 22px; border-top: 1px solid var(--line); }
.pc-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.pc-price .old { font-size: 16px; color: var(--ink-faint); text-decoration: line-through; text-decoration-thickness: 1.5px; font-weight: 600; }
.pc-price .amount { font-size: 36px; font-weight: 900; letter-spacing: -1.2px; line-height: 1; }
.pc-price .save { font-size: 11px; font-weight: 800; color: var(--green); background: #f0fdf4; padding: 3px 8px; border-radius: 6px; letter-spacing: .02em; text-transform: uppercase; }
.pc-note { font-size: 12px; color: var(--ink-faint); margin-bottom: 14px; font-weight: 500; }
.pc-value-line {
  font-size: 12px; font-weight: 700; color: var(--purple);
  background: rgba(124,92,252,.07); border: 1px solid rgba(124,92,252,.18);
  padding: 7px 11px; border-radius: 8px; margin-bottom: 12px; line-height: 1.4;
}
.pc-value-line .strike { color: var(--ink-faint); text-decoration: line-through; font-weight: 600; }

.pc-btn {
  width: 100%; padding: 14px 18px; border: none; border-radius: 11px;
  font-size: 14.5px; font-weight: 700; font-family: inherit; cursor: pointer;
  text-align: center; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: transform .1s, box-shadow .25s, filter .2s;
}
.pc-btn .arrow { transition: transform .2s; }
.pc-btn:hover .arrow { transform: translateX(3px); }
.pc.nba .pc-btn { background: linear-gradient(135deg,#f0d234,#eec825); color:#111; }
.pc.nba .pc-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(238,200,37,.4); filter: brightness(1.03); }
.pc.cod .pc-btn { background: linear-gradient(135deg,#22c55e,#16a34a); color:#fff; }
.pc.cod .pc-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(22,163,74,.35); filter: brightness(1.05); }
.pc.plus .pc-btn { background: linear-gradient(135deg,#7c5cfc,#6a48e8); color:#fff; }
.pc.plus .pc-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(124,92,252,.4); filter: brightness(1.05); }

.promo-strip {
  display: flex; align-items: center; gap: 10px;
  background: rgba(124,92,252,.06); border: 1px solid rgba(124,92,252,.2);
  border-radius: 10px; padding: 10px 12px; margin: 0 22px 18px; min-width: 0;
}
.promo-strip img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; border-radius: 7px; }
.promo-text { flex: 1; min-width: 0; }
.promo-title { font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.promo-sub { font-size: 11px; color: var(--ink-faint); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.promo-free { background: var(--purple); color:#fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; letter-spacing: .3px; }

/* Also-available accordion */
.acc-wrap { max-width: 1140px; margin: 0 auto; padding: 16px 24px 48px; }
.acc-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.acc-label .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.acc-label .lbl { font-size: 11px; font-weight: 800; letter-spacing: .15em; color: var(--ink-faint); text-transform: uppercase; }

.acc { position: relative; background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.acc:hover { border-color: var(--border-strong,#dcdce3); box-shadow: 0 10px 30px rgba(168,85,247,.08); }
.acc[open] { border-color: rgba(168,85,247,.3); box-shadow: 0 18px 40px rgba(168,85,247,.1); }
.acc::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg,#c084fc,var(--accent-fn),#c084fc); background-size:200% 100%; animation: shimmer 6s linear infinite; z-index:3; pointer-events:none; }
@keyframes shimmer { 0%{background-position:0 0;} 100%{background-position:200% 0;} }

.acc-summary { display: flex; align-items: center; gap: 18px; padding: 18px 22px; cursor: pointer; list-style: none; user-select: none; transition: background .2s; }
.acc-summary::-webkit-details-marker { display: none; }
.acc-summary:hover { background: rgba(168,85,247,.03); }
.acc-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(168,85,247,.15), rgba(192,132,252,.08)); border: 1px solid rgba(168,85,247,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acc-icon::before { content:'AIM'; font-size:17px; font-weight:900; letter-spacing:-.5px; background: linear-gradient(135deg,var(--accent-fn),#c084fc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.acc-text { flex: 1; min-width: 0; }
.acc-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 3px; }
.acc-title { font-size: 16px; font-weight: 800; letter-spacing: -.3px; color: var(--ink); }
.acc-new { display: inline-flex; align-items: center; background: var(--accent-fn); color:#fff; font-size: 9.5px; font-weight: 800; letter-spacing: .1em; padding: 3px 8px; border-radius: 100px; text-transform: uppercase; box-shadow: 0 3px 10px rgba(168,85,247,.3); }
.acc-sub { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; line-height: 1.4; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acc-sub .sold { display: inline-flex; align-items: center; gap: 5px; color: var(--ink-soft); font-weight: 600; }
.acc-sub .sold .dot { width: 5px; height: 5px; border-radius: 50%; background:#ff6b6b; animation: pillPulse 1.8s infinite; }
.acc-sub .divider { color: var(--border-strong,#dcdce3); }
.acc-price { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.acc-price .old { font-size: 13px; color: var(--ink-faint); text-decoration: line-through; text-decoration-thickness: 1.5px; font-weight: 600; }
.acc-price .now { font-size: 20px; font-weight: 900; letter-spacing: -.5px; color: var(--ink); line-height: 1; }
.acc-chevron { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ink-soft); transition: transform .3s cubic-bezier(.2,.8,.2,1), background .2s, border-color .2s, color .2s; }
.acc-summary:hover .acc-chevron { background: rgba(168,85,247,.08); border-color: rgba(168,85,247,.25); color: var(--accent-fn); }
.acc[open] .acc-chevron { transform: rotate(180deg); background: var(--accent-fn); border-color: var(--accent-fn); color:#fff; }
.acc-chevron svg { width: 16px; height: 16px; }

.acc-panel { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.acc-media { position: relative; min-height: 320px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 45%, rgba(168,85,247,.18) 0%, transparent 65%), linear-gradient(180deg,#faf7ff 0%, #ebe2ff 100%); }
.acc-media img { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(168,85,247,.25)); }
.acc-media img { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 16px 32px rgba(168,85,247,.25)); }
.acc-media-pill { position: absolute; top: 14px; left: 14px; background: rgba(15,15,20,.85); backdrop-filter: blur(8px); color:#fff; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; display: inline-flex; align-items: center; gap: 5px; }
.acc-media-pill .pdot { width: 6px; height: 6px; border-radius: 50%; background:#ff6b6b; animation: pillPulse 1.8s infinite; }
.acc-bodyp { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.acc-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--accent-fn); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.acc-eyebrow::before { content:''; width: 14px; height: 1.5px; background: var(--accent-fn); border-radius: 2px; }
.acc-h { font-size: 26px; font-weight: 900; letter-spacing: -.8px; line-height: 1.1; margin-bottom: 8px; }
.acc-h .gradient { background: linear-gradient(135deg,var(--accent-fn),#c084fc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.acc-p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 18px; }
.acc-features { list-style: none; margin: 0 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; }
.acc-features li { font-size: 12.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; line-height: 1.4; font-weight: 500; }
.acc-features li::before { content:''; flex-shrink:0; width:15px; height:15px; border-radius:50%; background: var(--accent-fn); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.5L7 11.5L12 5.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 100%; background-position: center; }
.acc-features li strong { color: var(--ink); font-weight: 700; }
.acc-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.acc-price-full { display: flex; align-items: baseline; gap: 8px; }
.acc-price-full .old { font-size: 14px; color: var(--ink-faint); text-decoration: line-through; text-decoration-thickness: 1.5px; font-weight: 600; }
.acc-price-full .now { font-size: 28px; font-weight: 900; letter-spacing: -.8px; line-height: 1; }
.acc-price-full .save { font-size: 10.5px; font-weight: 800; color: var(--green); background: #f0fdf4; padding: 3px 7px; border-radius: 6px; text-transform: uppercase; }
.acc-btn { padding: 12px 20px; border: none; border-radius: 11px; font-size: 13.5px; font-weight: 700; font-family: inherit; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#c084fc,var(--accent-fn)); color:#fff; transition: transform .1s, box-shadow .25s, filter .2s; margin-left: auto; }
.acc-btn .arrow { transition: transform .2s; }
.acc-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(168,85,247,.4); filter: brightness(1.05); }
.acc-btn:hover .arrow { transform: translateX(3px); }

/* review carousel */
.review-section { padding: 16px 24px 72px; display: flex; flex-direction: column; align-items: center; }
.review-aggregate { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding: 14px 22px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 100px; box-shadow: 0 2px 12px rgba(15,15,20,.04); }
.agg-score { font-size: 28px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.agg-divider { width: 1px; height: 32px; background: var(--line); }
.agg-stars-block { display: flex; flex-direction: column; gap: 3px; }
.agg-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; line-height: 1; }
.agg-count { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; }
.agg-count strong { color: var(--ink); font-weight: 700; }
.review-bar { max-width: 600px; width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px 22px; background: var(--bg-card); box-shadow: 0 8px 28px rgba(15,15,20,.05); position: relative; overflow: hidden; transition: opacity .3s ease; }
.review-bar::after { content:''; position: absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg,var(--purple),#a78bfa,var(--purple)); background-size: 200% 100%; animation: shimmer 6s linear infinite; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-left { display: flex; align-items: center; gap: 13px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),#a78bfa); color:#fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; letter-spacing: -.5px; box-shadow: 0 3px 10px rgba(124,92,252,.3); flex-shrink: 0; }
.review-name-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.review-name { font-size: 14.5px; font-weight: 700; }
.review-verified { display: inline-flex; align-items: center; gap: 4px; background: #eff6ff; color: #2563eb; border: 1px solid #dbeafe; padding: 2px 7px; border-radius: 100px; font-size: 10px; font-weight: 700; }
.review-verified::before { content:'✓'; font-size: 9px; font-weight: 900; }
.review-game { font-size: 12px; color: var(--purple); font-weight: 600; margin-top: 2px; }
.review-stars-block { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; line-height: 1; }
.review-date { font-size: 11px; color: var(--ink-faint); font-weight: 500; }
.review-text { font-size: 14.5px; color: var(--ink); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); line-height: 1.6; font-weight: 500; }
.review-dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; flex-wrap: wrap; }
.review-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-strong,#dcdce3); transition: all .3s ease; }
.review-dot.active { background: var(--purple); width: 20px; border-radius: 100px; }
.review-source { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 11px; color: var(--ink-faint); font-weight: 500; }
.review-source svg { width: 13px; height: 13px; color: #5865F2; }
.review-source strong { color: var(--ink-soft); font-weight: 600; }

/* homepage responsive */
@media (max-width: 900px) {
  .home-products { grid-template-columns: 1fr; max-width: 440px; padding: 32px 20px 24px; gap: 16px; }
  .home-hero { padding: 36px 20px 8px; }
  .home-hero h1 { font-size: 32px; letter-spacing: -1px; }
  .home-hero p { font-size: 15px; }
  .trust-strip { gap: 10px 20px; padding: 14px 16px; margin: 24px 20px 0; }
  .trust-item { font-size: 12px; }
  .acc-wrap { padding: 8px 20px 40px; max-width: 440px; }
  .acc-summary { padding: 14px 16px; gap: 12px; }
  .acc-icon { width: 44px; height: 44px; }
  .acc-price .old { display: none; }
  .acc-panel { grid-template-columns: 1fr; }
  .acc-media { min-height: 240px; }
  .acc-bodyp { padding: 22px 20px; }
  .acc-features { grid-template-columns: 1fr; }
  .acc-btn { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .home-hero h1 { font-size: 28px; }
  .pc-title { font-size: 20px; }
  .pc-price .amount { font-size: 32px; }
}

/* ============================================
   REAL PDP — exact match to ozarkgpc.com
   (Chakra Petch hero + Outfit plug&play card)
   ============================================ */
.hero {
  max-width: 1180px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start;
}
.hero-media {
  background: radial-gradient(circle at 50% 40%, rgba(234,179,8,.12) 0%, transparent 60%), linear-gradient(180deg,#fffdf5 0%, #fef6dc 100%);
  border: 1px solid var(--line); border-radius: 24px; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}
.hero.cod .hero-media  { background: radial-gradient(circle at 50% 40%, rgba(22,163,74,.12) 0%, transparent 60%), linear-gradient(180deg,#f5fdf8 0%, #dcfce7 100%); }
.hero.fn .hero-media   { background: radial-gradient(circle at 50% 40%, rgba(168,85,247,.14) 0%, transparent 60%), linear-gradient(180deg,#faf7ff 0%, #ece1ff 100%); }
.hero.plus .hero-media { background: radial-gradient(circle at 50% 40%, rgba(124,92,255,.14) 0%, transparent 60%), linear-gradient(180deg,#faf7ff 0%, #ebe2ff 100%); }
.hero-media img { width: 92%; height: 92%; object-fit: contain; object-position: center; filter: drop-shadow(0 16px 32px rgba(15,15,20,.2)); }
.hero-badge-tl {
  position: absolute; top: 18px; left: 18px; background: rgba(15,15,20,.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px; z-index: 2;
}
.hero-badge-tl .pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #ff6b6b; animation: pillPulse 1.8s infinite; }

.hero-info { padding-top: 8px; }
.hero-breadcrumb { font-size: 12px; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.hero-breadcrumb a:hover { color: var(--purple); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,108,42,.08); border: 1px solid rgba(232,108,42,.2); color: #e86c2a;
  padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 14px;
}
.hero-tag::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.hero.cod .hero-tag  { background: rgba(22,163,74,.08); border-color: rgba(22,163,74,.25); color: #16a34a; }
.hero.fn .hero-tag   { background: rgba(168,85,247,.08); border-color: rgba(168,85,247,.25); color: #a855f7; }
.hero.plus .hero-tag { background: rgba(124,92,255,.08); border-color: rgba(124,92,255,.25); color: #7c5cff; }

.hero-title { font-family: 'Chakra Petch', sans-serif; font-size: 46px; font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 14px; }
.hero-title .gradient { background: linear-gradient(135deg, var(--purple), #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 16px; color: var(--ink-soft); line-height: 1.6; font-weight: 500; margin-bottom: 20px; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.hero-rating .stars { color: var(--gold); font-size: 16px; letter-spacing: 1.5px; }
.hero-rating .rating-text { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.hero-rating .rating-text strong { color: var(--ink); font-weight: 700; }
.hero-rating .divider { width: 1px; height: 14px; background: var(--line); }
.hero-rating .members { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: #16a34a; font-weight: 700; }
.hero-rating .members::before { content:''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: greenPulse 2s ease-in-out infinite; }
@keyframes greenPulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.price-block { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; margin-bottom: 16px; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.price-old { font-family: 'Chakra Petch', sans-serif; font-size: 22px; color: var(--ink-faint); text-decoration: line-through; text-decoration-thickness: 1.5px; font-weight: 600; }
.price-now { font-family: 'Chakra Petch', sans-serif; font-size: 42px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.price-save { background: #f0fdf4; color: #16a34a; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.price-note { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

.hero-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  padding: 18px 28px; background: linear-gradient(135deg, var(--purple), #a78bfa); color: #fff;
  font-family: 'Chakra Petch', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 12px; cursor: pointer; transition: transform .2s, box-shadow .25s, filter .2s;
  box-shadow: 0 4px 20px rgba(124,92,255,.3), inset 0 1px 0 rgba(255,255,255,.2); position: relative; overflow: hidden;
}
.hero.cod .btn-primary  { background: linear-gradient(135deg,#16a34a,#22c55e); box-shadow: 0 4px 20px rgba(22,163,74,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.hero.fn .btn-primary   { background: linear-gradient(135deg,#a855f7,#c084fc); box-shadow: 0 4px 20px rgba(168,85,247,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.hero.plus .btn-primary { background: linear-gradient(135deg,#7c5cff,#a78bfa); box-shadow: 0 4px 20px rgba(124,92,255,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.btn-primary::before { content:''; position: absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transition: left .6s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(124,92,255,.4); filter: brightness(1.05); }
.btn-primary .arrow { transition: transform .2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 14px 20px; background: transparent; color: var(--ink); font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--border-strong,#dcdce3); border-radius: 12px; cursor: pointer; transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--purple-light); }
.btn-secondary svg { width: 16px; height: 16px; color: #5865F2; }

.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.hero-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.hero-check svg { width: 16px; height: 16px; color: #16a34a; flex-shrink: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .hero-media { max-width: 420px; margin: 0 auto; aspect-ratio: 16/12; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .price-now { font-size: 36px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .price-now { font-size: 32px; }
  .price-old { font-size: 18px; }
  .hero-checks { grid-template-columns: 1fr; }
}

/* Plug & play 3-step card (Outfit font) */
.pnp { font-family: 'Outfit', sans-serif; max-width: 1180px; margin: 32px auto; padding: 0 24px; }
.pnp-hero { background: #fff; border: 1.5px solid #e9e5f5; border-radius: 16px; padding: 40px 40px 36px; position: relative; overflow: hidden; }
.pnp-hero::before { content:''; position: absolute; top:-60%; left:-20%; width:140%; height:140%; background: radial-gradient(circle at 30% 20%, rgba(124,58,237,.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(124,58,237,.03) 0%, transparent 40%); pointer-events: none; }
.pnp-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.2); border-radius: 100px; font-size: 11px; font-weight: 600; color: #7c3aed; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px; position: relative; }
.pnp-badge-dot { width: 6px; height: 6px; background: #7c3aed; border-radius: 50%; animation: pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
.pnp-title { font-size: 28px; font-weight: 800; color: #1a1a2e; margin: 0 0 6px; line-height: 1.15; position: relative; }
.pnp-title span { color: #7c3aed; }
.pnp-sub { font-size: 14px; color: #999; margin: 0 0 28px; position: relative; }
.pnp-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; position: relative; }
.pnp-step { background: #faf8ff; border: 1px solid #ede9f6; border-radius: 12px; padding: 24px 20px; text-align: center; transition: border-color .3s, background .3s; }
.pnp-step:hover { border-color: rgba(124,58,237,.35); background: #f3f0ff; }
.pnp-step-num { font-size: 11px; font-weight: 700; color: #7c3aed; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.pnp-step-icon { width: 44px; height: 44px; margin: 0 auto 12px; background: rgba(124,58,237,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.pnp-step h4 { margin: 0 0 4px; font-size: 14px; font-weight: 700; color: #1a1a2e; }
.pnp-step p { margin: 0; font-size: 12px; color: #999; line-height: 1.4; }
.pnp-promo { display: flex; align-items: center; gap: 10px; background: rgba(124,58,237,.06); border: 1px solid rgba(124,58,237,.2); border-radius: 10px; padding: 10px 14px; margin-top: 16px; position: relative; }
.pnp-promo-text { flex: 1; min-width: 0; }
.pnp-promo-title { font-size: 13px; font-weight: 700; color: #1a1a2e; }
.pnp-promo-sub { font-size: 12px; color: #999; margin-top: 1px; }
.pnp-promo-badge { background: #7c3aed; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.pnp-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #f0ecf5; position: relative; }
.pnp-stat { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #999; }
.pnp-stat-icon { width: 18px; height: 18px; flex-shrink: 0; }
.pnp-stat strong { color: #555; font-weight: 600; }
@media (max-width: 520px) {
  .pnp-steps { grid-template-columns: 1fr; gap: 8px; }
  .pnp-step { text-align: left; display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
  .pnp-step-icon { margin: 0; flex-shrink: 0; }
  .pnp-step-num { margin-bottom: 0; }
  .pnp-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pnp-title { font-size: 22px; }
}

/* ============================================
   COMPAT LINE (PDP hero)
   ============================================ */
.compat-line { display: flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.compat-line svg { width: 16px; height: 16px; color: var(--purple); flex-shrink: 0; }
.compat-line a { color: var(--purple); font-weight: 700; text-decoration: none; }
.compat-line a:hover { text-decoration: underline; }

/* ============================================
   PDP STATIC REVIEWS
   ============================================ */
.review-static { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 960px; width: 100%; }
.review-static .review-card { max-width: none; margin: 0; padding: 22px; }
.review-static .rtext { font-size: 14px; color: var(--ink-soft); font-style: italic; margin-top: 10px; line-height: 1.55; }

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 720px; margin: 0 auto; padding: 24px 24px 80px; }
.faq-title { text-align: center; font-size: 26px; font-weight: 850; letter-spacing: -0.5px; margin-bottom: 24px; }
.faq { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--purple); transition: transform .2s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 20px 16px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.faq-a a { color: var(--purple); font-weight: 700; }

/* Discord ticker: hidden until real data loads */
.social-ticker#discordTicker { display: none; }
.social-ticker#discordTicker.show { display: flex; }

/* ============================================
   GAME PICKER (homepage hero)
   ============================================ */
.game-picker { margin-top: 26px; }
.gp-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.gp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.gp-chip { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 100px; background: var(--bg-card); border: 1px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--ink); text-decoration: none; transition: all .15s ease; }
.gp-chip:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(124,92,252,.15); }
.gp-chip.gp-all { background: var(--purple); border-color: var(--purple); color: #fff; }
.gp-chip.gp-all:hover { background: var(--purple-dark, #6a4be0); color: #fff; }

/* ============================================
   GREENING DEMO (basketball PDP)
   ============================================ */
.gd-wrap { max-width: 640px; margin: 0 auto; padding: 56px 24px; text-align: center; }
.gd-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 100px; background: var(--bg-card); border: 1px solid var(--line); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; }
.gd-title { font-size: 30px; font-weight: 850; letter-spacing: -0.8px; margin: 0 0 8px; }
.gd-title span { color: #16a34a; }
.gd-sub { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; max-width: 480px; margin: 0 auto 26px; }
.gd-meter { position: relative; height: 34px; border-radius: 100px; background: #ececf2; border: 1px solid var(--line); overflow: hidden; }
.gd-window { position: absolute; top: 0; bottom: 0; background: rgba(22,163,74,.28); border-left: 2px solid #16a34a; border-right: 2px solid #16a34a; z-index: 1; left: 62%; width: 7%; }
.gd-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 0%; background: linear-gradient(90deg, var(--purple), #a78bfa); z-index: 2; opacity: .85; border-radius: 100px 0 0 100px; }
.gd-result { height: 26px; margin: 12px 0 4px; font-size: 15px; font-weight: 800; }
.gd-result.green { color: #16a34a; }
.gd-result.miss { color: #dc2626; }
.gd-controls { display: flex; justify-content: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.gd-shoot { padding: 15px 34px; border-radius: 100px; border: none; background: var(--ink, #17171c); color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .5px; cursor: pointer; user-select: none; -webkit-user-select: none; touch-action: none; transition: transform .1s ease; }
.gd-shoot:active { transform: scale(.96); }
.ozark-on .gd-shoot { background: var(--purple); box-shadow: 0 6px 20px rgba(124,92,252,.35); }
.gd-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 100px; background: var(--bg-card); border: 1.5px solid var(--line); font-size: 14px; font-weight: 800; cursor: pointer; color: var(--ink); transition: all .15s ease; }
.gd-toggle-dot { width: 9px; height: 9px; border-radius: 50%; background: #c4c4cf; transition: background .15s ease; }
.gd-toggle.on { border-color: var(--purple); color: var(--purple); }
.gd-toggle.on .gd-toggle-dot { background: #16a34a; box-shadow: 0 0 8px rgba(22,163,74,.6); }
.gd-scores { display: flex; justify-content: center; gap: 14px; margin-top: 22px; }
.gd-score { padding: 10px 22px; border-radius: 14px; background: var(--bg-card); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; min-width: 110px; }
.gd-score-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-faint); }
.gd-score strong { font-size: 20px; font-weight: 850; }
.gd-score.oz strong { color: var(--purple); }
.gd-note { margin-top: 20px; font-size: 13px; color: var(--ink-soft); }
.gd-note strong { color: var(--purple); }

/* Fifth-green discount reward */
body.gdm-open { overflow: hidden; }
.green-discount-modal { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
.green-discount-modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
.gdm-backdrop { position: absolute; inset: 0; background: rgba(20,18,28,.66); backdrop-filter: blur(4px); }
.gdm-card { position: relative; width: min(100%, 420px); overflow: hidden; padding: 32px; border: 1px solid rgba(124,92,252,.25); border-radius: 8px; background: #fff; box-shadow: 0 24px 70px rgba(20,18,28,.28); text-align: center; transform: translateY(14px) scale(.98); transition: transform .24s ease; }
.green-discount-modal.show .gdm-card { transform: translateY(0) scale(1); }
.gdm-close { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #f2f1f6; color: var(--ink-soft); font: 500 25px/1 Arial, sans-serif; cursor: pointer; }
.gdm-close:hover { background: #e9e7ef; color: var(--ink); }
.gdm-close:focus-visible, .gdm-copy-button:focus-visible, .gdm-checkout:focus-visible { outline: 3px solid rgba(124,92,252,.35); outline-offset: 2px; }
.gdm-mark { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 50%; background: #eafbf1; border: 1px solid rgba(22,163,74,.25); color: #15803d; font-size: 24px; font-weight: 900; }
.gdm-kicker { color: #15803d; font-size: 11px; font-weight: 850; letter-spacing: 1.4px; text-transform: uppercase; }
.gdm-card h2 { margin: 8px 0 8px; color: var(--ink); font-size: 27px; line-height: 1.14; letter-spacing: 0; }
.gdm-copy { margin: 0 auto 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.gdm-code-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 8px; border: 1px dashed rgba(124,92,252,.48); border-radius: 8px; background: #f8f7fc; }
.gdm-code-row code { overflow: hidden; padding-left: 10px; color: var(--purple); font: 850 18px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 1px; text-align: left; text-overflow: ellipsis; }
.gdm-copy-button { min-height: 40px; padding: 0 15px; border: 0; border-radius: 6px; background: var(--purple); color: #fff; font-size: 12px; font-weight: 800; cursor: pointer; }
.gdm-copy-button.copied { background: #15803d; }
.gdm-checkout { width: 100%; min-height: 48px; margin-top: 12px; padding: 0 18px; border: 0; border-radius: 6px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 850; cursor: pointer; }
.gdm-checkout:hover { background: #29272f; }
.gdm-fine { margin: 11px 0 0; color: var(--ink-faint); font-size: 11px; }

@media (max-width: 520px) {
  .gdm-card { padding: 28px 18px 22px; }
  .gdm-card h2 { font-size: 23px; }
  .gdm-code-row { grid-template-columns: 1fr; }
  .gdm-code-row code { padding: 8px 4px 4px; text-align: center; }
  .gdm-copy-button { width: 100%; }
}

/* ============================================
   RECOIL DEMO (shooters PDP)
   ============================================ */
.rd-range { position: relative; height: 300px; border-radius: 18px; background: radial-gradient(circle at 50% 55%, #f2f0f8 0%, #e8e6f0 100%); border: 1px solid var(--line); overflow: hidden; cursor: crosshair; user-select: none; -webkit-user-select: none; touch-action: none; }
.rd-target { position: absolute; left: 50%; top: 55%; width: 68px; height: 68px; transform: translate(-50%,-50%); border-radius: 50%; border: 2px solid rgba(22,163,74,.55); background: radial-gradient(circle, rgba(22,163,74,.18) 0%, rgba(22,163,74,.06) 70%); }
.rd-target::after { content:''; position: absolute; inset: 22px; border-radius: 50%; border: 1.5px solid rgba(22,163,74,.5); }
.rd-cross { position: absolute; left: 50%; top: 55%; width: 14px; height: 14px; transform: translate(-50%,-50%); pointer-events: none; }
.rd-cross::before, .rd-cross::after { content:''; position: absolute; background: var(--ink-faint); }
.rd-cross::before { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.rd-cross::after { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.rd-hint { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; color: var(--ink-faint); pointer-events: none; }
.rd-shot { position: absolute; left: 50%; top: 55%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: #dc2626; box-shadow: 0 0 6px rgba(220,38,38,.4); pointer-events: none; }
.rd-shot.hit { background: #16a34a; box-shadow: 0 0 6px rgba(22,163,74,.5); }
.ozark-on .rd-range { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,92,252,.12); }

/* ============================================
   CARD CTA ROW (direct buy + details)
   ============================================ */
.pc-cta-row { display: flex; align-items: center; gap: 12px; position: relative; z-index: 3; }
.pc-cta-row .pc-btn { flex: 1; border: none; cursor: pointer; font: inherit; font-weight: 800; }
.pc-details-link { position: relative; z-index: 3; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
.pc-details-link:hover { color: var(--purple); }
.acc-cta-row .acc-btn { border: none; cursor: pointer; font: inherit; font-weight: 800; }

/* ============================================
   DEMO TEASER (homepage)
   ============================================ */
.demo-teaser { max-width: 860px; margin: 0 auto; padding: 40px 24px 8px; text-align: center; }
.dt-title { font-size: 28px; font-weight: 850; letter-spacing: -0.7px; margin: 18px 0 6px; }
.dt-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; }
.dt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.dt-card { display: block; text-align: left; padding: 22px; border-radius: 18px; background: var(--bg-card); border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: all .18s ease; }
.dt-card:hover { border-color: var(--purple); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(124,92,252,.14); }
.dt-visual { height: 70px; border-radius: 12px; background: #f2f0f8; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.dt-meter { position: relative; width: 80%; height: 16px; border-radius: 100px; background: #e4e2ec; overflow: hidden; }
.dt-meter-win { position: absolute; top: 0; bottom: 0; left: 66%; width: 9%; background: rgba(22,163,74,.35); border-left: 1.5px solid #16a34a; border-right: 1.5px solid #16a34a; }
.dt-meter-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 0; background: linear-gradient(90deg, var(--purple), #a78bfa); animation: dtFill 2.2s ease-in-out infinite; }
@keyframes dtFill { 0% { width: 0; } 65% { width: 70%; } 80%, 100% { width: 70%; opacity: 0; } }
.dt-ring { position: relative; width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(22,163,74,.5); }
.dt-ring::after { content: ''; position: absolute; inset: 16px; border-radius: 50%; border: 1.5px solid rgba(22,163,74,.45); }
.dt-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; }
.dt-dot.d1 { left: 20px; top: 22px; }
.dt-dot.d2 { left: 27px; top: 18px; }
.dt-dot.d3 { left: 23px; top: 28px; background: #dc2626; top: 6px; left: 30px; }
.dt-name { font-size: 16.5px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 4px; }
.dt-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 12px; }
.dt-link { font-size: 13.5px; font-weight: 800; color: var(--purple); }

/* ============================================
   MOTION & REWARD SYSTEM
   ============================================ */

/* Global page feedback */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), #16a34a);
  box-shadow: 0 1px 8px rgba(124,92,252,.3);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.motion-ready .motion-hero,
.motion-ready .motion-reveal {
  opacity: 0;
  translate: 0 18px;
}
.motion-ready .motion-hero {
  transition: opacity var(--motion-slow) var(--ease-out), translate var(--motion-slow) var(--ease-out);
  transition-delay: calc(var(--motion-order, 0) * 75ms);
}
.motion-ready.motion-loaded .motion-hero {
  opacity: 1;
  translate: 0 0;
}
.motion-ready .motion-reveal {
  transition: opacity 540ms var(--ease-out), translate 540ms var(--ease-out);
  transition-delay: calc(var(--motion-order, 0) * 55ms);
}
.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.motion-tactile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition-duration: var(--motion-fast);
}
.motion-tactile.is-pressing { scale: .975; }
.motion-ripple {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  pointer-events: none;
  transform: scale(0);
  animation: motionRipple 560ms var(--ease-out) forwards;
}
.btn-secondary .motion-ripple,
.gd-toggle .motion-ripple { background: rgba(124,92,252,.15); }
@keyframes motionRipple {
  0% { opacity: .8; transform: scale(0); }
  100% { opacity: 0; transform: scale(1); }
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.pc-btn:focus-visible,
.acc-btn:focus-visible,
.gd-shoot:focus-visible,
.gd-toggle:focus-visible,
.nav-cart:focus-visible,
.review-dot:focus-visible,
.rd-range:focus-visible {
  outline: 3px solid rgba(124,92,252,.35);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .nav.open { animation: navMenuIn var(--motion-base) var(--ease-out) both; }
}
@keyframes navMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Product, slideshow, and content polish */
.pc,
.dt-card,
.pnp-step,
.faq,
.gp-chip { transition-timing-function: var(--ease-out); }
.pc-media img,
.hero-media img { will-change: transform; }
@media (hover: hover) {
  .hero-media:not(.slideshow):hover > img { transform: scale(1.015); }
  .pnp-step:hover .pnp-step-icon { transform: translateY(-2px) scale(1.04); }
}
.pnp-step-icon {
  transition: transform var(--motion-base) var(--ease-spring), background var(--motion-base) ease;
}
.motion-ready .pc.is-visible .pc-features li::before {
  animation: checkSettle 440ms var(--ease-spring) both;
}
.motion-ready .pc.is-visible .pc-features li:nth-child(2)::before { animation-delay: 70ms; }
.motion-ready .pc.is-visible .pc-features li:nth-child(3)::before { animation-delay: 140ms; }
.motion-ready .pc.is-visible .pc-features li:nth-child(4)::before { animation-delay: 210ms; }
@keyframes checkSettle {
  from { opacity: 0; transform: scale(.45) rotate(-12deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.slideshow .slide {
  scale: 1.025;
  transition: opacity 520ms var(--ease-out), scale 700ms var(--ease-out);
}
.slideshow .slide.active { scale: 1; }
.slide-arrow:active { scale: .93; }
.motion-loaded .hero .btn-primary::before {
  animation: ctaSweep 760ms var(--ease-out) 650ms 1;
}
@keyframes ctaSweep {
  from { left: -100%; }
  to { left: 100%; }
}

.faq.just-opened .faq-a,
.acc.just-opened .acc-panel { animation: answerIn 340ms var(--ease-out) both; }
@keyframes answerIn {
  from { opacity: 0; translate: 0 -6px; }
  to { opacity: 1; translate: 0 0; }
}

/* Review carousel and real Discord count entrance */
.review-bar {
  translate: 0 0;
  transition: opacity 220ms ease, translate 300ms var(--ease-out), box-shadow var(--motion-base) ease;
  will-change: opacity, translate;
}
.review-bar.review-changing {
  opacity: 0;
  translate: 0 8px;
}
.review-dot {
  min-width: 6px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.review-dot:hover { background: var(--purple-light); }
.review-avatar { transition: transform var(--motion-base) var(--ease-spring); }
.review-bar:not(.review-changing):hover .review-avatar { transform: scale(1.05); }
.social-ticker#discordTicker.show { animation: tickerIn 420ms var(--ease-out) both; }
.social-ticker #liveCount { margin-right: 3px; }
.social-ticker #memberCount { margin: 0 3px; }
@keyframes tickerIn {
  from { opacity: 0; translate: 0 -8px; }
  to { opacity: 1; translate: 0 0; }
}

/* Basketball demo */
.gd-wrap { position: relative; isolation: isolate; }
.gd-meter {
  box-shadow: inset 0 1px 2px rgba(20,16,31,.06);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}
.gd-window {
  transition: left var(--motion-base) var(--ease-out), width var(--motion-base) var(--ease-out), background var(--motion-fast) ease;
}
.gd-fill {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.gd-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: rgba(255,255,255,.7);
  box-shadow: 0 0 10px rgba(255,255,255,.7);
}
.ozark-on .gd-fill { background: linear-gradient(90deg, var(--purple), #2bd576); }
.gd-meter.is-green { animation: meterGreen 520ms var(--ease-spring); }
.gd-meter.is-miss { animation: meterMiss 280ms ease; }
@keyframes meterGreen {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  45% { box-shadow: 0 0 0 5px rgba(22,163,74,.17), 0 0 24px rgba(22,163,74,.22); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
@keyframes meterMiss {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-3px); }
  65% { transform: translateX(3px); }
}

.gd-result.is-pop { animation: resultPop 420ms var(--ease-spring); }
@keyframes resultPop {
  0% { opacity: 0; scale: .88; translate: 0 4px; }
  100% { opacity: 1; scale: 1; translate: 0 0; }
}
.gd-score strong.is-updated { animation: scorePop 440ms var(--ease-spring); }
@keyframes scorePop {
  0% { color: #16a34a; scale: .72; }
  100% { scale: 1; }
}
.gd-shoot {
  min-width: 190px;
  min-height: 51px;
  transition: scale var(--motion-fast) ease, transform var(--motion-fast) ease, box-shadow var(--motion-base) ease, background var(--motion-base) ease;
}
.gd-shoot.is-charging {
  box-shadow: 0 0 0 5px rgba(124,92,252,.1), 0 10px 28px rgba(20,16,31,.18);
  animation: chargeGlow 900ms ease-in-out infinite alternate;
}
@keyframes chargeGlow {
  from { filter: brightness(1); }
  to { filter: brightness(1.12); }
}
.gd-toggle-dot {
  transition: background var(--motion-fast) ease, box-shadow var(--motion-base) ease, transform var(--motion-base) var(--ease-spring);
}
.gd-toggle.on .gd-toggle-dot { transform: scale(1.22); }

.gd-reward-progress {
  width: min(100%, 430px);
  margin: 18px auto 0;
  padding: 0 4px;
  text-align: left;
}
.gd-reward-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.gd-reward-head strong {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0;
}
.gd-reward-dots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}
.gd-reward-dots span {
  height: 8px;
  border-radius: 5px;
  background: #e6e3ed;
  box-shadow: inset 0 1px 2px rgba(20,16,31,.07);
  transform-origin: center;
  transition: background var(--motion-base) ease, transform var(--motion-base) var(--ease-spring), box-shadow var(--motion-base) ease;
}
.gd-reward-dots span.next { animation: rewardNext 1.5s ease-in-out infinite; }
.gd-reward-dots span.filled {
  background: #16a34a;
  box-shadow: 0 2px 8px rgba(22,163,74,.25);
  transform: scaleY(1.18);
}
@keyframes rewardNext {
  0%, 100% { background: #e6e3ed; }
  50% { background: rgba(124,92,252,.34); }
}
.gd-reward-status {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}
.gd-reward-progress.complete .gd-reward-head strong,
.gd-reward-progress.complete .gd-reward-status { color: #15803d; }
.gd-reward-progress.is-updated { animation: rewardNudge 480ms var(--ease-spring); }
@keyframes rewardNudge {
  0% { scale: .985; }
  55% { scale: 1.018; }
  100% { scale: 1; }
}

.gd-celebration-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  overflow: visible;
  pointer-events: none;
}
.gd-particle {
  position: absolute;
  width: 7px;
  height: 7px;
  margin: -3px;
  border-radius: 2px;
  opacity: 0;
  animation: greenBurst 720ms var(--ease-out) var(--burst-delay, 0ms) forwards;
}
@keyframes greenBurst {
  0% { opacity: 1; transform: translate(0,0) rotate(0) scale(.6); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--burst-x), var(--burst-y)) rotate(var(--burst-r)) scale(1); }
}

/* Fifth-green reward */
.green-discount-modal {
  transition: opacity 240ms ease, visibility 240ms ease;
}
.gdm-backdrop { z-index: 0; }
.gdm-card {
  z-index: 2;
  opacity: 0;
  transform: translateY(22px) scale(.94);
  transition: opacity 280ms ease, transform 520ms var(--ease-spring);
}
.green-discount-modal.show .gdm-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gdm-card > *:not(.gdm-close) {
  opacity: 0;
  translate: 0 7px;
  transition: opacity 360ms ease, translate 420ms var(--ease-out);
}
.green-discount-modal.show .gdm-card > *:not(.gdm-close) {
  opacity: 1;
  translate: 0 0;
}
.green-discount-modal.show .gdm-kicker { transition-delay: 100ms; }
.green-discount-modal.show .gdm-card h2 { transition-delay: 140ms; }
.green-discount-modal.show .gdm-copy { transition-delay: 180ms; }
.green-discount-modal.show .gdm-code-row { transition-delay: 220ms; }
.green-discount-modal.show .gdm-checkout { transition-delay: 260ms; }
.green-discount-modal.show .gdm-fine { transition-delay: 300ms; }
.green-discount-modal.show .gdm-mark { animation: rewardMark 650ms var(--ease-spring) 80ms both; }
@keyframes rewardMark {
  0% { opacity: 0; transform: scale(.35) rotate(-14deg); }
  70% { transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.gdm-close,
.gdm-copy-button,
.gdm-checkout { transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, box-shadow var(--motion-base) ease; }
.gdm-close:hover { transform: rotate(5deg) scale(1.04); }
.gdm-copy-button:hover { box-shadow: 0 6px 16px rgba(124,92,252,.25); }
.gdm-checkout:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(20,16,31,.2); }
.gdm-code-row.is-copied { animation: copiedFlash 520ms var(--ease-out); }
@keyframes copiedFlash {
  0% { border-color: rgba(124,92,252,.48); }
  45% { border-color: #16a34a; background: #effcf4; }
  100% { border-color: rgba(124,92,252,.48); }
}
.gdm-confetti {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.gdm-confetti span {
  position: absolute;
  top: -18px;
  width: 7px;
  height: 13px;
  border-radius: 2px;
  opacity: 0;
}
.green-discount-modal.show .gdm-confetti span {
  animation: confettiFall var(--confetti-duration) cubic-bezier(.2,.7,.3,1) var(--confetti-delay) forwards;
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translate(0,-8px) rotate(0); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--confetti-x), 105vh) rotate(var(--confetti-r)); }
}

/* Recoil demo */
.rd-range {
  transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease, scale var(--motion-fast) ease;
}
.rd-range:active { scale: .996; }
.rd-range.is-firing { box-shadow: 0 0 0 4px rgba(124,92,252,.1), inset 0 0 35px rgba(124,92,252,.05); }
.rd-shot {
  transform: translate(var(--shot-x, 0), var(--shot-y, 0)) scale(1);
  animation: shotLand 220ms var(--ease-spring) both;
}
@keyframes shotLand {
  0% { opacity: 0; transform: translate(var(--shot-x, 0), var(--shot-y, 0)) scale(2.2); }
  100% { opacity: 1; transform: translate(var(--shot-x, 0), var(--shot-y, 0)) scale(1); }
}
.rd-shot.hit { animation-name: shotLand, hitGlow; animation-duration: 220ms, 500ms; }
@keyframes hitGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(22,163,74,.5); }
  45% { box-shadow: 0 0 13px rgba(22,163,74,.85); }
}
.rd-target.is-locked { animation: targetLock 620ms var(--ease-spring); }
@keyframes targetLock {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,.35); }
  55% { box-shadow: 0 0 0 12px rgba(22,163,74,0), 0 0 28px rgba(22,163,74,.3); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.ozark-on .rd-range.is-firing .rd-target { animation: ozarkTarget 900ms ease-in-out infinite alternate; }
@keyframes ozarkTarget {
  from { background-color: rgba(22,163,74,.08); }
  to { background-color: rgba(22,163,74,.18); box-shadow: 0 0 22px rgba(22,163,74,.16); }
}

@media (max-width: 520px) {
  .gd-reward-progress { padding: 0; }
  .gd-reward-head { font-size: 10px; }
  .gd-reward-dots { gap: 5px; }
  .gd-shoot { min-width: 178px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .motion-ready .motion-hero,
  .motion-ready .motion-reveal,
  .motion-ready.motion-loaded .motion-hero,
  .motion-ready .motion-reveal.is-visible {
    opacity: 1 !important;
    translate: 0 0 !important;
  }
  .gd-particle,
  .gdm-confetti,
  .motion-ripple { display: none !important; }
  .gd-reward-dots span.next { background: rgba(124,92,252,.22); }
}

/* ============================================
   PREMIUM VISUAL REFINEMENT
   Keeps the existing layout while tightening color,
   edges, depth, typography, and motion.
   ============================================ */
:root {
  --purple: #765fe8;
  --purple-dark: #5d46ca;
  --purple-light: #a093f2;
  --purple-glow: rgba(118, 95, 232, .18);
  --bg: #ffffff;
  --bg-soft: #f8f7fc;
  --bg-card: #ffffff;
  --ink: #211a2d;
  --ink-soft: #625a6f;
  --ink-faint: #91899f;
  --line: #e8e4f0;
  --green: #1e9b60;
  --star: #c38b18;
  --accent-nba: #b58a16;
  --accent-cod: #2d8b5d;
  --accent-fn: #9b61c6;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(53, 42, 70, .035), 0 5px 16px rgba(71, 53, 102, .035);
  --shadow: 0 2px 5px rgba(53, 42, 70, .045), 0 18px 42px rgba(71, 53, 102, .07);
  --shadow-purple: 0 3px 8px rgba(118, 95, 232, .1), 0 18px 42px rgba(118, 95, 232, .12);
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 580ms;
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-spring: cubic-bezier(.2, .82, .28, 1.04);
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}
button,
input,
select,
textarea { font-family: inherit; }
h1,
h2,
h3,
h4,
.home-hero h1,
.hero-title,
.pc-title,
.price-now,
.price-old,
.dt-title,
.faq-title,
.acc-h { letter-spacing: 0; }

/* Navigation and page chrome */
.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(89, 73, 112, .1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8), 0 8px 26px rgba(22, 19, 27, .035);
  backdrop-filter: saturate(125%) blur(18px);
}
.logo { letter-spacing: 0; }
.logo img { border-radius: 7px; }
.nav a { transition: color var(--motion-fast) ease; }
.nav .nav-cart {
  background: #fff;
  border-color: #e1dce8;
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
}
.social-ticker {
  min-height: 35px;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  background: #f3fbf6;
  border-bottom-color: #dceee4;
  color: #4d6658;
  font-size: 12.5px;
}
.social-ticker .tdot { background: #168a51; }

/* Homepage hero and selection controls */
.home-hero { padding-top: 58px; }
.home-hero .trust-badge,
.eyebrow {
  background: #fff;
  border-color: #e4deed;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.home-hero h1 .accent,
.hero-title .gradient,
.dark-block h2 .accent,
.acc-h .gradient {
  background: none;
  color: var(--purple);
  -webkit-text-fill-color: currentColor;
}
.trust-strip {
  background: #fff;
  border-color: #e5e0eb;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.gp-label { letter-spacing: 0; }
.gp-chip {
  border-color: #e5e0eb;
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(24, 21, 28, .025);
  transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease, background var(--motion-fast) ease, transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) ease;
}
.gp-chip:hover { box-shadow: var(--shadow-sm); }
.gp-chip.gp-all,
.gp-chip.gp-all:hover { background: var(--purple); border-color: var(--purple); }

/* Product cards: quieter surfaces and more precise edges */
.pc,
.pcard {
  border-color: #e4dfeb;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.pc:hover,
.pcard:hover {
  transform: translateY(-3px);
  border-color: #cec6dc;
  box-shadow: var(--shadow);
}
.pc::before {
  height: 2px;
  opacity: .72;
  transition: opacity var(--motion-fast) ease;
}
.pc:hover::before { opacity: 1; }
.pc-link-overlay { border-radius: 8px; }
.pc-featured-tag,
.pc-pill,
.pc-users,
.pc-price .save,
.promo-free,
.pcard .ribbon,
.price-save {
  border-radius: 5px;
  box-shadow: none;
}
.pc-featured-tag { background: var(--purple); }
.pc-pill,
.hero-badge-tl,
.acc-media-pill {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(100, 82, 128, .15);
  color: #44394f;
  box-shadow: 0 4px 14px rgba(70, 54, 94, .08);
}
.pc-media,
.pc.nba .pc-media,
.hero-media {
  background: #fff9e9;
}
.pc.cod .pc-media,
.hero.cod .hero-media { background: #effaf4; }
.pc.plus .pc-media,
.hero.plus .hero-media { background: #f7f3ff; }
.hero.fn .hero-media,
.acc-media { background: #fbf5ff; }
.pc-media img,
.hero-media img,
.acc-media img { filter: drop-shadow(0 14px 22px rgba(29, 25, 34, .14)); }
.pc:hover .pc-media img { transform: scale(1.025); }
.pc-price-block { border-top-color: #e5e2e8; }
.pc-value-line,
.promo-strip,
.gen-badge {
  background: #faf8fd;
  border-color: #e5dfec;
  border-radius: 7px;
}
.pc-btn {
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 5px 14px rgba(25, 22, 29, .12);
  transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) ease, background var(--motion-fast) ease;
}
.pc.nba .pc-btn { background: #c7a437; color: #17151b; }
.pc.cod .pc-btn { background: #2d8b5d; color: #fff; }
.pc.plus .pc-btn { background: #765fe8; color: #fff; }
.pc.nba .pc-btn:hover,
.pc.cod .pc-btn:hover,
.pc.plus .pc-btn:hover {
  transform: translateY(-1px);
  filter: none;
  box-shadow: 0 8px 20px rgba(25, 22, 29, .16);
}

/* Product pages and primary actions */
.hero { gap: 54px; }
body .hero::before { content: none; display: none; }
.hero-media,
.slideshow {
  border-color: #e2dce9;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-tl,
.hero-tag,
.pnp-badge,
.pnp-promo-badge,
.win-tag,
.gd-badge {
  border-radius: 5px;
  box-shadow: none;
}
.hero-title { font-family: var(--font); font-weight: 800; }
.price-block {
  background: #faf9fd;
  border-color: #e5e0eb;
  border-radius: 8px;
}
.price-now,
.price-old,
.btn-primary { font-family: var(--font); }
.btn-primary {
  border: 1px solid rgba(29, 24, 36, .18);
  border-radius: 7px;
  background: #765fe8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 7px 18px rgba(118, 95, 232, .22);
  letter-spacing: 0;
  transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) ease, background var(--motion-fast) ease;
}
.hero.cod .btn-primary { background: #2d8b5d; box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 7px 18px rgba(45,139,93,.2); }
.hero.fn .btn-primary { background: #9b61c6; box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 7px 18px rgba(155,97,198,.2); }
.hero.plus .btn-primary { background: #765fe8; box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 7px 18px rgba(118,95,232,.22); }
.btn-primary::before { display: none; }
.btn-primary:hover {
  transform: translateY(-1px);
  filter: none;
  background: var(--purple-dark);
  box-shadow: 0 10px 24px rgba(52, 43, 83, .2);
}
.hero.cod .btn-primary:hover { background: #1d6642; }
.hero.fn .btn-primary:hover { background: #754394; }
.btn-secondary {
  background: #fff;
  border-color: #e0dae7;
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(24,21,28,.025);
  transition: background var(--motion-fast) ease, border-color var(--motion-fast) ease, transform var(--motion-base) var(--ease-out);
}
.btn-secondary:hover { background: #f7f6f8; border-color: #bdb7c5; transform: translateY(-1px); }

/* Setup, proof, demos, and FAQ surfaces */
.pnp-hero {
  border: 1px solid #e4dfeb;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.pnp-hero::before { display: none; }
.pnp-step {
  background: #fbf9fe;
  border-color: #e8e2ef;
  border-radius: 7px;
}
.pnp-step:hover { background: #f4f2f6; border-color: #cfc9d5; }
.pnp-step-icon { border-radius: 7px; background: #f0ecfb; }
.pnp-title,
.pnp-step h4,
.pnp-promo-title { color: var(--ink); }
.pnp-sub,
.pnp-step p,
.pnp-promo-sub,
.pnp-stat { color: var(--ink-faint); }
.pnp-title span,
.pnp-step-num { color: var(--purple); }
.pnp-promo { background: #f8f5fd; border-color: #e3ddec; border-radius: 7px; }
.step,
.review-card,
.ucard,
.compare-col,
.dt-card,
.review-bar,
.review-aggregate,
.acc,
.faq {
  border-color: #e4dfeb;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.dt-card:hover,
.faq[open],
.acc[open] {
  border-color: #c9c4ce;
  box-shadow: var(--shadow);
}
.dt-card:hover { transform: translateY(-2px); }
.dt-visual { border-radius: 6px; background: #f5f2fa; }
.review-bar::after,
.acc::before {
  height: 2px;
  background: var(--purple);
  animation: none;
}
.review-avatar,
.review-card .avatar { background: #5f4bc0; box-shadow: none; }
.review-verified { border-radius: 5px; background: #f1f5f4; border-color: #dce8e4; color: #276a51; }
.faq summary { transition: background var(--motion-fast) ease; }
.faq[open] summary { background: #f8f7f9; }

.gd-meter,
.dt-meter { border-radius: 6px; }
.gd-fill { border-radius: 6px 0 0 6px; }
.gd-shoot,
.gd-toggle {
  border-radius: 7px;
  letter-spacing: 0;
}
.gd-shoot { background: #6c6078; }
.ozark-on .gd-shoot { background: #765fe8; box-shadow: 0 7px 18px rgba(118,95,232,.2); }
.gd-score { border-color: #dedbe2; border-radius: 7px; box-shadow: var(--shadow-sm); }
.rd-range {
  border-color: #e4dfeb;
  border-radius: 8px;
  background: #f5f2f9;
  box-shadow: inset 0 1px 2px rgba(24,21,28,.04);
}
.gd-reward-dots span { border-radius: 3px; }
.gdm-backdrop { background: rgba(18, 16, 21, .72); backdrop-filter: blur(8px); }
.gdm-card { border-color: #d8d2df; box-shadow: 0 28px 80px rgba(15, 13, 18, .3); }
.gdm-mark { border-radius: 7px; }
.gdm-checkout { background: #765fe8; }
.gdm-checkout:hover { background: #654fd4; }

/* Bright conversion bands keep the premium finish without feeling heavy */
.dark-block,
.cta-dark,
.cta-band {
  background: linear-gradient(135deg, #7d68e9 0%, #654fd4 100%);
  border: 1px solid #5e49ca;
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(95, 71, 190, .16);
}
.dark-block::before,
.cta-dark::before { display: none; }
.dark-stats { border-radius: 7px; background: rgba(255,255,255,.045); }
.dark-block h2 .accent { color: #eeeaff; -webkit-text-fill-color: currentColor; }
.cta-band .btn-primary,
.cta-dark .btn-primary { background: #fff; color: #211d28; border-color: rgba(255,255,255,.55); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover,
.cta-dark .btn-primary:hover { background: #f1eff4; color: #17151b; }

.site-footer { background: #f8f7fc; border-top-color: #e5e0eb; }
.content-card { border-radius: 8px; border-color: #dfdce2; box-shadow: var(--shadow-sm); }

/* Controlled motion: smooth and confident, without rubbery overshoot */
.pc,
.dt-card,
.pnp-step,
.faq,
.gp-chip,
.review-bar,
.hero-media img,
.pc-media img {
  transition-duration: var(--motion-base);
  transition-timing-function: var(--ease-out);
}
.slide-arrow,
.slide-badge { border-radius: 7px; }
.slide-dot { width: 18px; height: 3px; border-radius: 2px; }
.slide-dot.active { transform: none; }

@media (max-width: 620px) {
  .home-hero { padding-top: 42px; }
  .hero { gap: 28px; }
  .pnp-hero { padding: 28px 20px 24px; }
}

/* Homepage purchase path: a compact, visual bridge from selection to setup. */
.ownership-path {
  max-width: 1140px;
  margin: 0 auto;
  padding: 26px 24px 66px;
}
.op-heading {
  max-width: 660px;
  margin: 0 auto 28px;
  text-align: center;
}
.op-kicker {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.op-heading h2 {
  margin: 0 0 9px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.op-heading p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.op-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto 18px;
}
.op-track::before,
.op-track::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 16.66%;
  width: 66.68%;
  height: 1px;
  transform-origin: left center;
}
.op-track::before { background: #ddd8e4; }
.op-track::after {
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 900ms var(--ease-out) 180ms;
}
.ownership-path.is-visible .op-track::after { transform: scaleX(1); }
.op-track span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.op-track i {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid #d9d4df;
  border-radius: 7px;
  background: #fff;
  color: var(--ink-soft);
  box-shadow: 0 1px 4px rgba(45, 37, 56, .06);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.op-track span:nth-child(1) i { border-color: #dfca8e; color: #8b6810; }
.op-track span:nth-child(2) i { border-color: #b7ddca; color: #24714e; }
.op-track span:nth-child(3) i { border-color: #c9c0ef; color: var(--purple); }
.op-track small {
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 700;
}
.op-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.path-step {
  --path-accent: var(--purple);
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e3dee9;
  border-top: 2px solid var(--path-accent);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: translate var(--motion-base) var(--ease-out), border-color var(--motion-fast) ease, box-shadow var(--motion-base) ease;
}
.path-step:hover {
  translate: 0 -3px;
  border-color: #cbc4d4;
  box-shadow: var(--shadow);
}
.op-choose { --path-accent: #b58a16; }
.op-checkout { --path-accent: #2d8b5d; }
.op-load { --path-accent: #765fe8; }
.op-visual {
  display: flex;
  height: 166px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.op-choose .op-visual { background: #fff9e9; }
.op-checkout .op-visual { background: #effaf4; }
.op-load .op-visual { background: #f7f3ff; }
.op-game-options {
  display: grid;
  width: 100%;
  max-width: 286px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.op-game-options a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid #e5dcc2;
  border-radius: 6px;
  background: rgba(255, 255, 255, .86);
  color: #493f2a;
  font-size: 11px;
  font-weight: 700;
  transition: transform var(--motion-fast) ease, border-color var(--motion-fast) ease, background var(--motion-fast) ease;
}
.op-game-options a:hover,
.op-game-options a:focus-visible {
  transform: translateY(-1px);
  border-color: #b58a16;
  background: #fff;
}
.op-game-options a:focus-visible,
.op-footer a:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }
.op-game-options b {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 5px;
  background: #f4e8bd;
  color: #75580e;
  font-size: 9px;
  letter-spacing: 0;
}
.op-game-options .op-all { border-color: #d4c9f4; color: #433570; }
.op-game-options .op-all b { background: #e9e3fb; color: var(--purple-dark); }
.op-pay-state {
  display: flex;
  align-items: center;
  gap: 13px;
}
.op-pay-state > span:last-child { display: flex; flex-direction: column; }
.op-pay-state small {
  color: #4f7461;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.op-pay-state strong { color: #1f4f39; font-size: 18px; line-height: 1.25; }
.op-pay-check {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: #2d8b5d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(45, 139, 93, .18);
  font-size: 24px;
  font-weight: 800;
}
.op-pay-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 12px;
  margin-top: 17px;
}
.op-pay-perks span {
  position: relative;
  padding-left: 13px;
  color: #4f6a5c;
  font-size: 10px;
  font-weight: 700;
}
.op-pay-perks span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #2d8b5d;
  transform: translateY(-50%);
}
.op-load-flow {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.op-load-node {
  display: flex;
  width: 112px;
  min-width: 0;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #d9d0ee;
  border-radius: 7px;
  background: rgba(255, 255, 255, .86);
}
.op-load-node small {
  color: #877b99;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.op-load-node strong {
  overflow: hidden;
  color: #4f3c91;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.op-flow-arrow {
  color: var(--purple);
  font-size: 17px;
  font-style: normal;
}
.op-ready {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #4f3c91;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.op-ready span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 5px;
  background: var(--purple);
  color: #fff;
  font-size: 10px;
}
.op-step-copy {
  min-height: 160px;
  padding: 20px 20px 22px;
  border-top: 1px solid #e9e5ed;
}
.op-step-label {
  margin-bottom: 5px;
  color: var(--path-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.op-step-copy h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}
.op-step-copy p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}
.op-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid #e6e1ea;
  color: var(--ink-soft);
  font-size: 12.5px;
}
.op-footer strong { color: var(--ink); }
.op-footer a {
  flex-shrink: 0;
  color: var(--purple-dark);
  font-weight: 800;
}
.op-footer a span { display: inline-block; transition: transform var(--motion-fast) ease; }
.op-footer a:hover span { transform: translateX(3px); }
.motion-ready .ownership-path .path-step {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out), translate var(--motion-base) var(--ease-out), border-color var(--motion-fast) ease, box-shadow var(--motion-base) ease;
}
.motion-ready .ownership-path.is-visible .path-step { opacity: 1; transform: translateY(0); }
.motion-ready .ownership-path.is-visible .path-step:nth-child(2) { transition-delay: 90ms; }
.motion-ready .ownership-path.is-visible .path-step:nth-child(3) { transition-delay: 180ms; }
.ownership-path.is-visible .op-pay-check { animation: opCheckSet 560ms var(--ease-out) 240ms both; }
.ownership-path.is-visible .op-flow-arrow { animation: opArrowSet 700ms var(--ease-out) 520ms both; }
@keyframes opCheckSet {
  0% { transform: scale(.72); opacity: .45; }
  70% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes opArrowSet {
  0% { opacity: .25; transform: translateX(-5px); }
  100% { opacity: 1; transform: translateX(0); }
}
@media (max-width: 900px) {
  .ownership-path { max-width: 480px; padding: 24px 20px 56px; }
  .op-grid { grid-template-columns: 1fr; gap: 14px; }
  .op-step-copy { min-height: 0; }
  .op-footer { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .op-heading h2 { font-size: 28px; }
  .op-heading p { font-size: 14px; }
  .op-track { margin-bottom: 15px; }
  .op-track small { font-size: 9px; }
  .op-visual { height: 154px; padding: 15px; }
  .op-step-copy { padding: 18px; }
  .op-load-node { width: 104px; }
}
@media (max-width: 360px) {
  .op-load-flow { gap: 7px; }
  .op-load-node { width: 96px; padding: 10px; }
  .op-flow-arrow { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .ownership-path .path-step { opacity: 1; transform: none; }
  .ownership-path .op-track::after { transform: scaleX(1); }
  .ownership-path.is-visible .op-pay-check,
  .ownership-path.is-visible .op-flow-arrow { animation: none; }
}

/* The homepage challenges use one consistent rounded geometry. */
.demo-teaser .dt-card {
  border-radius: 8px;
  overflow: hidden;
}
.demo-teaser .dt-visual,
.demo-teaser .dt-meter {
  border-radius: 8px;
}
.demo-teaser .dt-meter-win {
  border-radius: 5px;
}
.demo-teaser .dt-meter-fill {
  border-radius: 8px;
}

/* White-base palette: cobalt, teal, amber, and berry. */
:root {
  --purple: #415af4;
  --purple-dark: #263bb5;
  --purple-light: #8fa0ff;
  --purple-glow: rgba(65, 90, 244, .25);
  --bg: #ffffff;
  --bg-soft: #f6f8fd;
  --bg-card: #ffffff;
  --ink: #1d2230;
  --ink-soft: #535d70;
  --ink-faint: #7f899c;
  --line: #dfe5f0;
  --green: #007f61;
  --star: #e5a511;
  --accent-nba: #a36a00;
  --accent-cod: #007f61;
  --accent-fn: #b82f7e;
  --shadow-sm: 0 1px 2px rgba(29, 34, 48, .04), 0 5px 16px rgba(46, 63, 98, .055);
  --shadow: 0 2px 5px rgba(29, 34, 48, .05), 0 18px 42px rgba(46, 63, 98, .1);
  --shadow-purple: 0 3px 8px rgba(65, 90, 244, .14), 0 18px 42px rgba(65, 90, 244, .2);
}

body { background: #fff; }
.site-header { border-bottom-color: rgba(49, 61, 83, .1); }
.social-ticker {
  background: #e5faf3;
  border-bottom-color: #bfe9da;
  color: #23644f;
}
.social-ticker .tdot { background: var(--green); }
.home-hero .trust-badge,
.eyebrow,
.trust-strip,
.gp-chip,
.pc,
.pcard,
.acc,
.dt-card,
.review-bar,
.review-aggregate,
.faq { border-color: var(--line); }
.nav .nav-cart { border-color: #d7deea; }

.pc-media,
.pc.nba .pc-media,
.hero-media { background: #fff3cc; }
.pc.cod .pc-media,
.hero.cod .hero-media { background: #e2fbf2; }
.pc.plus .pc-media,
.hero.plus .hero-media { background: #edf1ff; }
.hero.fn .hero-media,
.acc-media { background: #ffebf6; }
.pc-value-line,
.promo-strip,
.gen-badge {
  background: #eef2ff;
  border-color: #cfd8f6;
}

.pc.nba .pc-btn,
.hero.nba .btn-primary { background: #e5a511; color: #191d27; }
.pc.cod .pc-btn,
.hero.cod .btn-primary { background: var(--accent-cod); color: #fff; }
.pc.plus .pc-btn,
.btn-primary,
.hero.plus .btn-primary,
.ozark-on .gd-shoot,
.gdm-checkout { background: var(--purple); color: #fff; }
.hero.fn .btn-primary { background: var(--accent-fn); color: #fff; }
.hero.nba .hero-title .gradient,
.hero.cod .hero-title .gradient,
.hero.fn .hero-title .gradient,
.hero.plus .hero-title .gradient {
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero.nba .hero-title .gradient { color: var(--accent-nba); }
.hero.cod .hero-title .gradient { color: var(--accent-cod); }
.hero.fn .hero-title .gradient { color: var(--accent-fn); }
.hero.plus .hero-title .gradient { color: var(--purple); }
.btn-primary,
.hero.plus .btn-primary,
.ozark-on .gd-shoot { box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 7px 18px rgba(65,90,244,.28); }
.hero.cod .btn-primary { box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 7px 18px rgba(0,127,97,.27); }
.hero.fn .btn-primary { box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 7px 18px rgba(184,47,126,.26); }
.hero.cod .btn-primary:hover { background: #00664d; }
.hero.nba .btn-primary:hover { background: #cb9005; color: #191d27; }
.hero.fn .btn-primary:hover { background: #932263; }
.gdm-checkout:hover { background: var(--purple-dark); }

.acc::before { background: var(--accent-fn); }
.acc-h .gradient {
  background: none;
  color: var(--accent-fn);
  -webkit-text-fill-color: currentColor;
}
.acc-new,
.acc[open] .acc-chevron,
.acc-features li::before,
.acc-btn { background: var(--accent-fn); }
.acc-summary:hover .acc-chevron {
  background: rgba(184,47,126,.1);
  border-color: rgba(184,47,126,.36);
  color: var(--accent-fn);
}

.demo-teaser .dt-card:first-child .dt-visual { background: #fff3cc; }
.demo-teaser .dt-card:last-child .dt-visual { background: #e2fbf2; }
.demo-teaser .dt-meter { background: #dfe5f0; }
.demo-teaser .dt-meter-fill { background: var(--purple); }
.demo-teaser .dt-meter-win {
  background: rgba(0,127,97,.34);
  border-color: var(--green);
}
.demo-teaser .dt-ring { border-color: rgba(0,127,97,.68); }
.demo-teaser .dt-ring::after { border-color: rgba(0,127,97,.62); }
.demo-teaser .dt-dot { background: var(--green); }
.demo-teaser .dt-dot.d3 { background: #e23d55; }

.review-avatar,
.review-card .avatar { background: var(--purple); }
.review-verified {
  background: #e5faf3;
  border-color: #bfe9da;
  color: #00664d;
}
.pnp-step { background: #f3f6ff; border-color: #d7e0f6; }
.pnp-step-icon { background: #e5eaff; }
.pnp-promo { background: #edf1ff; border-color: #cfd8f6; }
.rd-range { background: #f2f6fc; border-color: #d8e0ec; }
.gd-shoot { background: #566174; }

.dark-block,
.cta-dark,
.cta-band {
  background: linear-gradient(135deg, #526cf8 0%, #3047c7 100%);
  border-color: #263fb8;
  box-shadow: 0 20px 52px rgba(48, 71, 199, .23);
}
.dark-block h2 .accent { color: #f1f4ff; -webkit-text-fill-color: currentColor; }
.site-footer,
.confidence-finale { background: #f6f8fd; border-color: #dfe5f0; }

.op-choose { --path-accent: var(--accent-nba); }
.op-checkout { --path-accent: var(--accent-cod); }
.op-load { --path-accent: var(--purple); }
.op-choose .op-visual { background: #fff3cc; }
.op-checkout .op-visual { background: #e2fbf2; }
.op-load .op-visual { background: #edf1ff; }
.op-track span:nth-child(1) i { border-color: #e6bd50; color: #8c5b00; }
.op-track span:nth-child(2) i { border-color: #79d1b7; color: var(--accent-cod); }
.op-track span:nth-child(3) i { border-color: #aebdff; color: var(--purple); }
.op-game-options .op-all { border-color: #aebdf2; color: #263c8d; }
.op-game-options .op-all b { background: #dce4ff; color: var(--purple-dark); }
.op-pay-check,
.op-pay-perks span::before { background: var(--accent-cod); }
.op-load-node { border-color: #b6c4f1; }
.op-load-node strong,
.op-ready { color: var(--purple-dark); }
.op-footer a { color: var(--purple-dark); }

/* Programmer entry points */
.nav .nav-programmer { color: var(--purple-dark); font-weight: 750; }
.nav .nav-programmer:hover { color: var(--purple); }
.nav .nav-account { color: #007f59; font-weight: 750; }
.nav .nav-account:hover { color: #00a875; }
.promo-strip-link,
.pnp-promo-link { color: inherit; text-decoration: none; cursor: pointer; }
.promo-strip-link { transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.promo-strip-link:hover {
  color: inherit;
  border-color: #aebdf2;
  background: #e8edff;
  transform: translateY(-1px);
}
.pnp-promo-link { transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease; }
.pnp-promo-link:hover {
  color: inherit;
  border-color: #aebdf2;
  background: #e8edff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.content-page .programmer-inline-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--purple);
  border-radius: 7px;
  color: #fff;
  background: var(--purple);
  box-shadow: 0 7px 18px rgba(65, 90, 244, .2);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.content-page .programmer-inline-link:hover { color: #fff; background: var(--purple-dark); }

@media (max-width: 1040px) and (min-width: 821px) {
  .nav { gap: 14px; }
  .nav a { font-size: 13px; }
}
@media (max-width: 820px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .menu-toggle { display: block; }
}

/* Gaming loadout pipeline */
.ownership-path {
  max-width: 1180px;
  padding: 36px 24px 72px;
}
.op-heading {
  max-width: 720px;
  margin-bottom: 30px;
}
.op-kicker {
  color: #5b48d9;
  letter-spacing: .08em;
}
.op-heading h2 { font-size: 36px; }
.op-console {
  overflow: hidden;
  border: 1px solid #2f3850;
  border-radius: 8px;
  color: #f7f9ff;
  background: #111622;
  box-shadow: 0 26px 64px rgba(24, 31, 48, .18);
}
.op-console-bar {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid #2a3348;
  color: #7f8aa3;
  background: #171d2a;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.op-console-bar > strong {
  color: #dce3f4;
  font-size: 10px;
  letter-spacing: .08em;
}
.op-console-bar > span:last-child { justify-self: end; }
.op-console-status { display: inline-flex; align-items: center; gap: 8px; }
.op-console-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2de0a3;
  box-shadow: 0 0 0 4px rgba(45, 224, 163, .1);
}
.ownership-path .op-grid {
  display: grid;
  grid-template-columns: .95fr 1fr 1.25fr;
  gap: 0;
}
.ownership-path .path-step {
  --path-accent: #6f5cff;
  min-height: 430px;
  padding: 22px;
  border: 0;
  border-right: 1px solid #2a3348;
  border-radius: 0;
  color: #f7f9ff;
  background: #111622;
  box-shadow: none;
  translate: none;
}
.ownership-path .path-step:last-child { border-right: 0; }
.ownership-path .path-step:hover {
  border-color: #2a3348;
  box-shadow: none;
  translate: none;
}
.ownership-path .op-choose { --path-accent: #ffc431; }
.ownership-path .op-tune { --path-accent: #36d8ff; }
.ownership-path .op-flash { --path-accent: #2de0a3; }
.op-step-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}
.op-step-head span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--path-accent) 55%, #2a3348);
  border-radius: 6px;
  color: var(--path-accent);
  background: color-mix(in srgb, var(--path-accent) 10%, #171d2a);
  font-size: 9px;
  font-weight: 850;
}
.op-step-head small {
  color: #8e99af;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.op-script-select { display: grid; gap: 9px; }
.op-script-select a {
  min-height: 105px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 8px;
  border: 1px solid #313b52;
  border-radius: 7px;
  color: #f7f9ff;
  background: #1a2130;
  transition: transform var(--motion-fast) ease, border-color var(--motion-fast) ease, background var(--motion-fast) ease;
}
.op-script-select a:hover,
.op-script-select a:focus-visible {
  color: #fff;
  border-color: var(--path-accent);
  background: #202838;
  transform: translateX(3px);
}
.op-script-select a:focus-visible,
.op-footer a:focus-visible { outline: 2px solid #8f80ff; outline-offset: 3px; }
.op-script-select img {
  width: 58px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .28));
}
.op-script-select a > span { display: flex; min-width: 0; flex-direction: column; }
.op-script-select small { color: #8f9ab1; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.op-script-select strong { margin-top: 3px; color: #fff; font-size: 14px; }
.op-script-select a > i { color: var(--path-accent); font-size: 17px; font-style: normal; }
.op-tuning-visual {
  padding: 18px;
  border: 1px solid #303b52;
  border-radius: 7px;
  background: #181f2d;
}
.op-tune-row,
.op-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #a6b0c4;
  font-size: 10px;
  font-weight: 700;
}
.op-tune-row b { color: #ffc431; font-size: 10px; }
.op-slider {
  height: 5px;
  position: relative;
  margin: 10px 0 19px;
  border-radius: 5px;
  background: #30394c;
}
.op-slider > i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #ffc431;
}
.op-slider > b {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  border: 3px solid #111622;
  border-radius: 50%;
  background: #ffc431;
  transform: translate(-50%, -50%);
}
.op-slider-cyan > i,
.op-slider-cyan > b { background: #36d8ff; }
.op-tune-row-cyan b { color: #36d8ff; }
.op-toggle-row { justify-content: flex-start; margin-top: 4px; }
.op-toggle-row > i {
  width: 34px;
  height: 19px;
  position: relative;
  margin-left: auto;
  border-radius: 10px;
  background: #2de0a3;
}
.op-toggle-row > i b {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 3px;
  right: 3px;
  border-radius: 50%;
  background: #0f1722;
}
.op-toggle-row > strong { color: #2de0a3; font-size: 9px; }
.op-flash-flow {
  min-height: 156px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14px minmax(0, 1fr) 14px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid #303b52;
  border-radius: 7px;
  background: #181f2d;
}
.op-flash-flow > span {
  min-width: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 9px 6px;
  border: 1px solid #39455e;
  border-radius: 6px;
  background: #111622;
  text-align: center;
}
.op-flash-flow small { color: #7f8ba3; font-size: 7px; font-weight: 750; text-transform: uppercase; }
.op-flash-flow strong { margin-top: 5px; color: #f4f7ff; font-size: 9px; line-height: 1.25; }
.op-flash-flow > i { color: #6f5cff; font-size: 14px; font-style: normal; text-align: center; }
.op-flash-flow > span:nth-of-type(2) { border-color: #6354b7; }
.op-flash-flow > span:nth-of-type(3) { border-color: #238d70; }
.op-flash-ready {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #235b50;
  border-radius: 6px;
  background: #142a28;
}
.op-flash-ready > i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #2de0a3;
  box-shadow: 0 0 0 4px rgba(45, 224, 163, .1);
}
.op-flash-ready span { display: flex; min-width: 0; flex-direction: column; }
.op-flash-ready small { color: #58d7b2; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.op-flash-ready strong { margin-top: 2px; color: #dffcf4; font-size: 10px; }
.ownership-path .op-step-copy {
  min-height: 0;
  margin-top: auto;
  padding: 20px 0 0;
  border-top: 1px solid #2a3348;
}
.ownership-path .op-step-copy h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 17px;
}
.ownership-path .op-step-copy p {
  color: #8e99af;
  font-size: 11px;
  line-height: 1.55;
}
.ownership-path .op-footer {
  min-height: 58px;
  justify-content: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0 20px;
  border-top: 1px solid #2a3348;
  color: #8e99af;
  background: #171d2a;
  font-size: 10px;
}
.ownership-path .op-footer strong { color: #dce3f4; }
.ownership-path .op-footer a {
  color: #fff;
  font-size: 11px;
}
.ownership-path .op-footer a:hover { color: #36d8ff; }
.motion-ready .ownership-path .path-step {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
.motion-ready .ownership-path.is-visible .path-step { opacity: 1; transform: translateY(0); }
.motion-ready .ownership-path.is-visible .path-step:nth-child(2) { transition-delay: 90ms; }
.motion-ready .ownership-path.is-visible .path-step:nth-child(3) { transition-delay: 180ms; }

@media (max-width: 900px) {
  .ownership-path { max-width: 620px; }
  .op-console-bar { grid-template-columns: 1fr auto; }
  .op-console-bar > strong { display: none; }
  .ownership-path .op-grid { grid-template-columns: 1fr; }
  .ownership-path .path-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #2a3348;
  }
  .ownership-path .path-step:last-child { border-bottom: 0; }
  .op-step-copy { margin-top: 24px; }
}
@media (max-width: 520px) {
  .ownership-path { padding: 28px 14px 56px; }
  .op-heading h2 { font-size: 30px; }
  .op-console-bar { min-height: 48px; padding: 0 14px; }
  .op-console-bar > span:last-child { font-size: 8px; }
  .ownership-path .path-step { padding: 18px; }
  .op-flash-flow { min-height: 0; grid-template-columns: 1fr; gap: 7px; }
  .op-flash-flow > span { min-height: 58px; }
  .op-flash-flow > i { transform: rotate(90deg); }
  .ownership-path .op-footer { align-items: flex-start; flex-direction: column; padding: 16px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .ownership-path .path-step { opacity: 1; transform: none; transition: none; }
  .op-script-select a { transition: none; }
}

/* Technical three-step setup */
.ownership-path {
  --setup-violet: #6847ff;
  --setup-violet-dark: #5336e8;
  --setup-green: #00a875;
  --setup-yellow: #d8a400;
  position: relative;
  max-width: 1180px;
  padding: 68px 24px 96px;
  isolation: isolate;
  scroll-margin-top: 78px;
}
.ownership-path::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background-color: #fff;
  background-image:
    linear-gradient(#eef0f5 1px, transparent 1px),
    linear-gradient(90deg, #eef0f5 1px, transparent 1px);
  background-size: 46px 46px;
  transform: translateX(-50%);
}
.ownership-path .op-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.ownership-path .op-kicker {
  margin-bottom: 14px;
  color: var(--setup-violet);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.ownership-path .op-heading h2 {
  margin: 0 0 14px;
  color: #11121a;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}
.ownership-path .op-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: #625e70;
  font-size: 15px;
  line-height: 1.55;
}
.ownership-path .op-track {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: start;
  margin: 0 auto 52px;
}
.ownership-path .op-track::before,
.ownership-path .op-track::after {
  content: none;
}
.ownership-path .op-track > span {
  display: grid;
  grid-template-rows: 36px auto;
  place-items: center;
  gap: 7px;
}
.ownership-path .op-track > b {
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: #dcd7ec;
}
.ownership-path .op-track i,
.ownership-path .op-track .is-active i,
.ownership-path .op-track > span:nth-of-type(2) i,
.ownership-path .op-track > span:nth-of-type(3) i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--setup-violet);
  border-radius: 8px;
  color: var(--setup-violet);
  background: #f8f6ff;
  box-shadow: 0 5px 14px rgba(101, 71, 255, .09);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.ownership-path .op-track small {
  color: #5d5868;
  font-size: 10px;
  font-weight: 750;
}
.ownership-path .op-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ownership-path .path-step,
.ownership-path .path-step:last-child {
  --path-accent: var(--setup-violet);
  min-height: 394px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d8d2e4;
  border-top: 2px solid var(--setup-violet);
  border-radius: 8px;
  color: #171824;
  background: #fff;
  box-shadow: 0 5px 14px rgba(35, 28, 58, .05), 0 24px 58px rgba(72, 52, 145, .1);
  translate: none;
  transition: transform 240ms var(--ease-out), border-color 180ms ease, box-shadow 240ms ease;
}
.ownership-path .path-step.op-choose {
  border-color: #d8d2e4;
  border-top-color: var(--setup-violet);
}
.ownership-path .path-step:hover {
  border-color: var(--setup-violet);
  box-shadow: 0 6px 14px rgba(32, 26, 55, .05), 0 22px 48px rgba(70, 49, 155, .12);
  translate: none;
  transform: translateY(-2px);
}
.ownership-path .op-choose,
.ownership-path .op-tune,
.ownership-path .path-step.op-flash {
  --path-accent: var(--setup-violet);
}
.ownership-path .op-visual {
  height: 228px;
  display: flex;
  flex: 0 0 228px;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background-color: #fbfaff;
  background-image:
    linear-gradient(#f0edf7 1px, transparent 1px),
    linear-gradient(90deg, #f0edf7 1px, transparent 1px);
  background-size: 28px 28px;
}
.ownership-path .op-choose .op-visual,
.ownership-path .op-tune .op-visual,
.ownership-path .op-flash .op-visual {
  background-color: #fbfaff;
}
.ownership-path .op-choice-grid {
  width: min(100%, 242px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.ownership-path .op-choice-grid a {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;
  border: 1px solid #d8d2e4;
  border-radius: 8px;
  color: #222332;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 14px rgba(64, 51, 101, .04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.ownership-path .op-choice-grid a:hover,
.ownership-path .op-choice-grid a:focus-visible {
  border-color: var(--setup-violet);
  color: #171824;
  background: #fff;
  box-shadow: 0 8px 18px rgba(101, 71, 255, .1);
  transform: translateY(-2px);
}
.ownership-path .op-choice-grid a:focus-visible,
.ownership-path .op-program-card a:focus-visible {
  outline: 2px solid var(--setup-violet);
  outline-offset: 3px;
}
.ownership-path .op-choice-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #aa98ff;
  border-radius: 8px;
  color: var(--setup-violet);
  background: #eeeaff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}
.ownership-path .op-choice-grid a:first-child {
  border-color: #ead68a;
  background: #fffdf5;
}
.ownership-path .op-choice-grid a:first-child span {
  border-color: #ead68a;
  color: #8a6800;
  background: #fff4c7;
}
.ownership-path .op-choice-grid a:last-child {
  border-color: #a8dfc0;
  background: #f8fffb;
}
.ownership-path .op-choice-grid a:last-child span {
  border-color: #a8dfc0;
  color: #007c48;
  background: #e4f8ec;
}
.ownership-path .op-choice-grid a:first-child:hover,
.ownership-path .op-choice-grid a:first-child:focus-visible {
  border-color: var(--setup-yellow);
  box-shadow: 0 8px 18px rgba(216, 164, 0, .12);
}
.ownership-path .op-choice-grid a:last-child:hover,
.ownership-path .op-choice-grid a:last-child:focus-visible {
  border-color: var(--setup-green);
  box-shadow: 0 8px 18px rgba(0, 168, 117, .12);
}
.ownership-path .op-choice-grid strong {
  font-size: 12px;
  letter-spacing: 0;
}
.ownership-path .op-program-card {
  width: 226px;
  min-height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #9f8cff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(60, 47, 103, .09);
}
.ownership-path .op-program-card small {
  color: #716b7e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ownership-path .op-program-card strong {
  margin-top: 9px;
  color: #171824;
  font-size: 19px;
}
.ownership-path .op-program-card > span {
  margin: 4px 0 17px;
  color: var(--setup-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}
.ownership-path .op-program-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--setup-violet);
  box-shadow: 0 8px 18px rgba(101, 71, 255, .18);
  font-size: 11px;
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.ownership-path .op-program-card a:hover {
  color: #fff;
  background: var(--setup-violet-dark);
  box-shadow: 0 10px 22px rgba(101, 71, 255, .24);
  transform: translateY(-1px);
}
.ownership-path .op-flash-flow {
  width: min(100%, 310px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.ownership-path .op-flash-flow > span {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 11px;
  border: 1px solid #9edcc7;
  border-radius: 8px;
  background: #f5fcf9;
  box-shadow: 0 5px 14px rgba(64, 51, 101, .04);
  text-align: center;
}
.ownership-path .op-flash-flow > span:nth-of-type(2) {
  border-color: #9f8cff;
  background: #f4f1ff;
}
.ownership-path .op-flash-flow small {
  color: #716b7e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ownership-path .op-flash-flow strong {
  margin-top: 8px;
  color: #252432;
  font-size: 10px;
  line-height: 1.25;
}
.ownership-path .op-flash-flow > span:first-child strong {
  color: var(--setup-green);
}
.ownership-path .op-flash-flow > i {
  color: var(--setup-violet);
  font-size: 17px;
  font-style: normal;
  text-align: center;
}
.ownership-path .op-step-copy {
  min-height: 166px;
  display: block;
  margin-top: auto;
  padding: 26px 28px 28px;
  border-top: 1px solid #ded9e8;
  background: #fff;
}
.ownership-path .op-step-label {
  margin-bottom: 11px;
  color: var(--setup-violet);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ownership-path .op-step-copy h3 {
  margin: 0 0 9px;
  color: #171824;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
.ownership-path .op-step-copy p {
  margin: 0;
  color: #665f73;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .ownership-path { max-width: 540px; padding-top: 58px; }
  .ownership-path .op-heading h2 { font-size: 40px; }
  .ownership-path .op-grid { grid-template-columns: 1fr; gap: 16px; }
  .ownership-path .path-step,
  .ownership-path .path-step:last-child { min-height: 0; border-bottom: 1px solid #dfdbe9; }
}
@media (max-width: 520px) {
  .ownership-path { padding: 44px 14px 64px; }
  .ownership-path::before { background-size: 36px 36px; }
  .ownership-path .op-heading { margin-bottom: 26px; }
  .ownership-path .op-heading h2 { font-size: 31px; }
  .ownership-path .op-heading p { font-size: 13px; }
  .ownership-path .op-track { width: min(100%, 320px); margin-bottom: 34px; }
  .ownership-path .op-track small { font-size: 9px; }
  .ownership-path .op-visual { height: 212px; flex-basis: 212px; padding: 20px; }
  .ownership-path .op-step-copy { min-height: 142px; margin-top: 0; padding: 22px; }
  .ownership-path .op-flash-flow { grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr); gap: 5px; }
  .ownership-path .op-flash-flow > span { min-height: 94px; padding: 8px; }
  .ownership-path .op-flash-flow > i { transform: none; }
}
@media (max-width: 360px) {
  .ownership-path .op-choice-grid { gap: 8px; }
  .ownership-path .op-choice-grid a { min-height: 106px; }
  .ownership-path .op-flash-flow small { font-size: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .ownership-path .path-step,
  .ownership-path .op-choice-grid a,
  .ownership-path .op-program-card a { transition: none; }
}

/* Unified Ozark violet technical palette */
:root {
  --purple: #6847ff;
  --purple-dark: #5336e8;
  --purple-light: #a796ff;
  --purple-glow: rgba(104, 71, 255, .24);
  --bg: #ffffff;
  --bg-soft: #f8f6ff;
  --bg-card: #ffffff;
  --ink: #11121a;
  --ink-soft: #5f596b;
  --ink-faint: #817a8d;
  --line: #e1dce9;
  --green: #00a875;
  --star: #d8a400;
  --accent-nba: #6847ff;
  --accent-cod: #6847ff;
  --accent-fn: #6847ff;
  --shadow-sm: 0 2px 7px rgba(29, 23, 47, .045), 0 8px 20px rgba(68, 51, 118, .05);
  --shadow: 0 4px 12px rgba(29, 23, 47, .05), 0 20px 48px rgba(68, 51, 118, .1);
  --shadow-purple: 0 8px 22px rgba(104, 71, 255, .2);
}
body { background: #fff; }
.site-header {
  border-bottom-color: #e1dce9;
  background: rgba(255, 255, 255, .96);
}
.topbar { background: #6847ff; }
.social-ticker {
  border-bottom-color: #c9e8dc;
  color: #136548;
  background: #effaf6;
}
.social-ticker .tdot { background: #00a875; }
.home-hero,
.hero {
  background-color: #fff;
  background-image:
    linear-gradient(#eff0f5 1px, transparent 1px),
    linear-gradient(90deg, #eff0f5 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero::before { display: none; }
.home-hero .trust-badge,
.eyebrow,
.trust-strip,
.gp-chip,
.pc,
.pcard,
.acc,
.dt-card,
.review-bar,
.review-aggregate,
.faq,
.content-card { border-color: #e1dce9; }
.home-hero h1 .accent,
.dt-title .gradient,
.hero.nba .hero-title .gradient,
.hero.cod .hero-title .gradient,
.hero.fn .hero-title .gradient,
.hero.plus .hero-title .gradient,
.acc-h .gradient {
  color: #6847ff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.btn-primary,
.pc.nba .pc-btn,
.pc.cod .pc-btn,
.pc.plus .pc-btn,
.hero.nba .btn-primary,
.hero.cod .btn-primary,
.hero.fn .btn-primary,
.hero.plus .btn-primary,
.acc-btn,
.gdm-checkout,
.ozark-on .gd-shoot {
  color: #fff;
  border-color: #6847ff;
  background: #6847ff;
  box-shadow: 0 8px 20px rgba(104, 71, 255, .2);
}
.btn-primary:hover,
.pc.nba .pc-btn:hover,
.pc.cod .pc-btn:hover,
.pc.plus .pc-btn:hover,
.hero.nba .btn-primary:hover,
.hero.cod .btn-primary:hover,
.hero.fn .btn-primary:hover,
.hero.plus .btn-primary:hover,
.acc-btn:hover,
.gdm-checkout:hover {
  color: #fff;
  background: #5336e8;
}
.pc.nba,
.pc.cod,
.pc.plus { --accent: #6847ff; }
.pc.plus { border-color: #cfc5ff; }
.pc-media,
.pc.nba .pc-media,
.pc.cod .pc-media,
.pc.plus .pc-media,
.hero-media,
.hero.nba .hero-media,
.hero.cod .hero-media,
.hero.fn .hero-media,
.hero.plus .hero-media,
.acc-media {
  background: #f4f1ff;
}
.hero.nba .hero-tag,
.hero.cod .hero-tag,
.hero.fn .hero-tag,
.hero.plus .hero-tag {
  border-color: #cfc5ff;
  color: #5336e8;
  background: #f3f0ff;
}
.pc-value-line,
.promo-strip,
.gen-badge,
.pnp-step,
.pnp-promo {
  border-color: #d9d2ee;
  background: #f4f1ff;
}
.promo-strip-link:hover,
.pnp-promo-link:hover {
  border-color: #a99aff;
  background: #eee9ff;
}
.pc-featured-tag,
.acc-new,
.acc[open] .acc-chevron,
.acc-features li::before,
.pnp-promo-badge { background: #6847ff; }
.acc::before { background: #6847ff; }
.acc-summary:hover .acc-chevron {
  border-color: #b8aaff;
  color: #6847ff;
  background: #f1edff;
}
.demo-teaser .dt-card:first-child .dt-visual,
.demo-teaser .dt-card:last-child .dt-visual,
.rd-range { background: #f4f1ff; }
.demo-teaser .dt-meter { background: #ded9e8; }
.demo-teaser .dt-meter-fill { background: #6847ff; }
.demo-teaser .dt-meter-win {
  border-color: #00a875;
  background: rgba(0, 168, 117, .24);
}
.demo-teaser .dt-ring { border-color: rgba(0, 168, 117, .62); }
.demo-teaser .dt-ring::after { border-color: rgba(0, 168, 117, .55); }
.demo-teaser .dt-dot { background: #00a875; }
.review-avatar,
.review-card .avatar { background: #6847ff; }
.review-verified {
  border-color: #b7e2d3;
  color: #007f59;
  background: #effaf6;
}
.dark-block,
.cta-dark,
.cta-band {
  border-color: #2d2938;
  background: #14121c;
  box-shadow: 0 20px 52px rgba(20, 18, 28, .2);
}
.dark-block h2 .accent { color: #b7a9ff; -webkit-text-fill-color: currentColor; }
.site-footer,
.confidence-finale { border-color: #e1dce9; background: #f8f6ff; }
.content-page .programmer-inline-link {
  border-color: #6847ff;
  background: #6847ff;
  box-shadow: 0 8px 20px rgba(104, 71, 255, .18);
}
.content-page .programmer-inline-link:hover { background: #5336e8; }

@media (max-width: 620px) {
  .home-hero,
  .hero { background-size: 36px 36px; }
}

/* Product identity colors within the shared technical system. */
:root {
  --accent-nba: #d8a400;
  --accent-cod: #00a75f;
  --accent-fn: #c13b91;
}
.pc.nba { --accent: var(--accent-nba); border-color: #eadfae; }
.pc.cod { --accent: var(--accent-cod); border-color: #b9e4cc; }
.pc.plus { --accent: var(--purple); border-color: #cfc5ff; }
.pc.nba .pc-media,
.hero.nba .hero-media { background: #fff8df; }
.pc.cod .pc-media,
.hero.cod .hero-media { background: #eafaf1; }
.pc.plus .pc-media,
.hero.plus .hero-media { background: #f1edff; }
.hero.fn .hero-media,
.acc-media { background: #fff0f8; }
.pc.nba .pc-btn,
.hero.nba .btn-primary {
  border-color: #efc900;
  color: #17140a;
  background: #efc900;
  box-shadow: 0 8px 20px rgba(216, 164, 0, .2);
}
.pc.nba .pc-btn:hover,
.hero.nba .btn-primary:hover {
  color: #17140a;
  background: #dbb800;
}
.pc.cod .pc-btn,
.hero.cod .btn-primary {
  border-color: #00a75f;
  color: #fff;
  background: #00a75f;
  box-shadow: 0 8px 20px rgba(0, 167, 95, .2);
}
.pc.cod .pc-btn:hover,
.hero.cod .btn-primary:hover { background: #008d50; }
.pc.plus .pc-btn,
.hero.plus .btn-primary { border-color: #6847ff; background: #6847ff; }
.hero.fn .btn-primary,
.acc-btn {
  border-color: #c13b91;
  background: #c13b91;
  box-shadow: 0 8px 20px rgba(193, 59, 145, .2);
}
.hero.fn .btn-primary:hover,
.acc-btn:hover { background: #a82f7b; }
.hero.nba .hero-title .gradient { color: #a77f00; }
.hero.cod .hero-title .gradient { color: #008d50; }
.hero.fn .hero-title .gradient,
.acc-h .gradient { color: #b13283; }
.hero.plus .hero-title .gradient { color: #6847ff; }
.hero.nba .hero-tag {
  border-color: #ead68a;
  color: #846300;
  background: #fff8df;
}
.hero.cod .hero-tag {
  border-color: #a8dfc0;
  color: #007c48;
  background: #ecfbf2;
}
.hero.fn .hero-tag {
  border-color: #e6b3d1;
  color: #9f286f;
  background: #fff0f8;
}
.hero.plus .hero-tag {
  border-color: #cfc5ff;
  color: #5336e8;
  background: #f1edff;
}
.acc::before,
.acc-new,
.acc[open] .acc-chevron,
.acc-features li::before { background: #c13b91; }
.acc-summary:hover .acc-chevron {
  border-color: #e0a6c9;
  color: #b13283;
  background: #fff0f8;
}
.demo-teaser .dt-card:first-child .dt-visual { background: #fff8df; }
.demo-teaser .dt-card:last-child .dt-visual { background: #eafaf1; }
.gp-chips .gp-chip:nth-child(1) {
  border-color: #ead68a;
  color: #846300;
  background: #fff8df;
}
.gp-chips .gp-chip:nth-child(2) {
  border-color: #a8dfc0;
  color: #007c48;
  background: #ecfbf2;
}
.gp-chips .gp-chip:nth-child(3) {
  border-color: #e6b3d1;
  color: #9f286f;
  background: #fff0f8;
}
.gp-chips .gp-chip.gp-all {
  border-color: #6847ff;
  color: #fff;
  background: #6847ff;
}

/* Ozark support assistant. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.assistant-dialog-status > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #00a75f;
  box-shadow: 0 0 0 4px rgba(0, 167, 95, .12);
}
.assistant-composer button {
  border: 1px solid #6847ff;
  border-radius: 7px;
  color: #fff;
  background: #6847ff;
  font: 800 13px/1 inherit;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.assistant-composer button:hover {
  border-color: #5336e8;
  background: #5336e8;
  transform: translateY(-1px);
}

body.assistant-is-open { overflow: hidden; }
.assistant-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  background: rgba(20, 17, 28, .48);
  backdrop-filter: blur(7px);
  pointer-events: none;
  transition: opacity .18s ease;
}
.assistant-overlay[hidden] { display: none; }
.assistant-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.assistant-dialog {
  width: min(640px, 100%);
  height: min(720px, calc(100dvh - 40px));
  min-height: 520px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid #cec6df;
  border-top: 3px solid #6847ff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(18, 14, 29, .25);
  transform: translateY(14px) scale(.985);
  transition: transform .2s ease;
}
.assistant-overlay.is-open .assistant-dialog { transform: translateY(0) scale(1); }
.assistant-dialog-head {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #e2ddeb;
  background: #fff;
}
.assistant-dialog-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.assistant-dialog-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 7px 16px rgba(104, 71, 255, .2);
}
.assistant-dialog-brand small,
.assistant-dialog-brand strong { display: block; letter-spacing: 0; }
.assistant-dialog-brand small {
  margin-bottom: 3px;
  color: #6847ff;
  font-size: 9px;
  font-weight: 850;
}
.assistant-dialog-brand strong {
  overflow: hidden;
  color: #191620;
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.assistant-dialog-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #007e48;
  font-size: 11px;
  font-weight: 800;
}
.assistant-dialog-status b {
  color: inherit;
  font: inherit;
}
.assistant-dialog-status > span {
  width: 7px;
  height: 7px;
  box-shadow: none;
}
.assistant-dialog-status.is-checking,
.assistant-dialog-status.is-thinking { color: #5336e8; }
.assistant-dialog-status.is-checking > span,
.assistant-dialog-status.is-thinking > span {
  background: #6847ff;
  animation: assistantStatusPulse 1.15s ease-in-out infinite;
}
.assistant-dialog-status.is-guide { color: #756b36; }
.assistant-dialog-status.is-guide > span { background: #d8a400; }
.assistant-dialog-status.is-ready > span { background: #00a75f; }
.assistant-new-chat {
  min-width: 42px;
  height: 34px;
  padding: 0 9px;
  border: 1px solid #d8d1e4;
  border-radius: 6px;
  color: #514a5c;
  background: #fff;
  font: 800 10px/1 inherit;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.assistant-new-chat:hover {
  border-color: #bcaeff;
  color: #5336e8;
  background: #f7f4ff;
}
.assistant-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #ddd7e7;
  border-radius: 7px;
  color: #4e4859;
  background: #fff;
  font: 400 24px/1 inherit;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.assistant-close:hover {
  border-color: #bcaeff;
  color: #5336e8;
  background: #f7f4ff;
}
.assistant-messages {
  min-height: 0;
  overflow-y: auto;
  padding: 24px 20px 14px;
  scroll-behavior: smooth;
  background-color: #fbfaff;
  background-image:
    linear-gradient(rgba(104, 71, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 71, 255, .035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.assistant-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  animation: assistantMessageIn .22s ease both;
}
.assistant-message.is-user { justify-content: flex-end; }
.assistant-message > img,
.assistant-typing > img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
  box-shadow: 0 6px 14px rgba(104, 71, 255, .18);
}
.assistant-bubble {
  max-width: 82%;
  padding: 13px 14px;
  border: 1px solid #ddd7e7;
  border-radius: 8px;
  color: #37313f;
  background: #fff;
  box-shadow: 0 7px 20px rgba(31, 24, 47, .06);
}
.assistant-message.is-user .assistant-bubble {
  border-color: #6847ff;
  color: #fff;
  background: #6847ff;
  box-shadow: 0 8px 22px rgba(104, 71, 255, .18);
}
.assistant-user-reply-label {
  display: block;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .78);
  font: 750 9px/1.35 inherit;
}
.assistant-bubble p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.58;
}
.assistant-bubble p + p { margin-top: 9px; }
.assistant-answer-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #817a8b;
  font: 750 9px/1.3 inherit;
}
.assistant-answer-source::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #00a75f;
  content: "";
}
.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #ece8f1;
}
.assistant-action {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid #d8d1e4;
  border-radius: 6px;
  color: #514a5c;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.assistant-action:hover { background: #f7f5fa; }
.assistant-action.is-basketball { border-color: #e6c34b; color: #765900; background: #fff9e5; }
.assistant-action.is-shooters { border-color: #84d5a7; color: #007944; background: #effbf4; }
.assistant-action.is-aim { border-color: #e2a8ca; color: #9b276c; background: #fff2f9; }
.assistant-action.is-gpc { border-color: #b8aaff; color: #5336e8; background: #f3f0ff; }
.assistant-action.is-discord { border-color: #5865f2; color: #fff; background: #5865f2; }
.assistant-follow-ups {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.assistant-follow-ups button {
  width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid #ddd7e7;
  border-radius: 6px;
  color: #514a5c;
  background: #fbfaff;
  font: 750 11px/1.3 inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.assistant-follow-ups button:hover {
  border-color: #bcaeff;
  color: #5336e8;
  background: #f4f1ff;
}
.assistant-follow-ups button[data-assistant-question].is-selected {
  border-color: #8067ff;
  color: #3f25c7;
  background: #eeeaff;
  box-shadow: 0 0 0 2px rgba(104, 71, 255, .1);
}
.assistant-typing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 12px;
  background: #fbfaff;
}
.assistant-typing[hidden] { display: none; }
.assistant-typing > span {
  min-width: 54px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid #ddd7e7;
  border-radius: 8px;
  background: #fff;
}
.assistant-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8f879c;
  animation: assistantTyping 1s ease-in-out infinite;
}
.assistant-typing i:nth-child(2) { animation-delay: .12s; }
.assistant-typing i:nth-child(3) { animation-delay: .24s; }
.assistant-reply-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid #dcd4f5;
  background: #f5f2ff;
}
.assistant-reply-context[hidden] { display: none; }
.assistant-reply-context > div { min-width: 0; }
.assistant-reply-context small {
  display: block;
  margin-bottom: 3px;
  color: #6847ff;
  font: 850 8px/1.1 inherit;
  text-transform: uppercase;
}
.assistant-reply-context strong {
  display: block;
  overflow: hidden;
  color: #37313f;
  font: 750 11px/1.35 inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.assistant-reply-context button {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid #cfc5f5;
  border-radius: 6px;
  color: #5b43cc;
  background: #fff;
  font: 400 18px/1 inherit;
  cursor: pointer;
}
.assistant-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: end;
  padding: 13px 16px;
  border-top: 1px solid #e2ddeb;
  background: #fff;
}
.assistant-composer.is-answering {
  padding-top: 10px;
  border-top: 0;
}
.assistant-composer textarea {
  width: 100%;
  min-height: 44px;
  max-height: 112px;
  resize: none;
  padding: 11px 13px;
  border: 1px solid #cfc7df;
  border-radius: 7px;
  outline: 0;
  color: #17141f;
  background: #fff;
  font: 600 13.5px/1.45 inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.assistant-composer textarea:focus {
  border-color: #8067ff;
  box-shadow: 0 0 0 3px rgba(104, 71, 255, .12);
}
.assistant-composer textarea::placeholder { color: #8a8494; }
.assistant-composer button {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 18px;
}
.assistant-composer textarea:disabled,
.assistant-composer button:disabled,
.assistant-new-chat:disabled,
.assistant-welcome-prompts button:disabled,
.assistant-follow-ups button:disabled {
  cursor: wait;
  opacity: .58;
}
.assistant-dialog-foot {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 9px 16px;
  border-top: 1px solid #ece8f1;
  color: #817a8b;
  background: #faf9fc;
  font-size: 10.5px;
}
.assistant-dialog-foot a {
  flex: 0 0 auto;
  color: #5336e8;
  font-weight: 800;
  text-decoration: none;
}
.assistant-close:focus-visible,
.assistant-new-chat:focus-visible,
.assistant-composer button:focus-visible,
.assistant-reply-context button:focus-visible,
.assistant-action:focus-visible,
.assistant-follow-ups button:focus-visible {
  outline: 3px solid rgba(104, 71, 255, .25);
  outline-offset: 2px;
}

@keyframes assistantMessageIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes assistantTyping {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@keyframes assistantStatusPulse {
  0%, 100% { opacity: .45; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 620px) {
  .assistant-overlay { padding: 8px; }
  .assistant-dialog {
    width: 100%;
    height: calc(100dvh - 16px);
    min-height: 0;
  }
  .assistant-dialog-head { min-height: 66px; gap: 10px; padding: 11px 12px; }
  .assistant-dialog-brand img { width: 34px; height: 34px; }
  .assistant-dialog-brand small { font-size: 8px; }
  .assistant-dialog-brand strong { font-size: 14px; }
  .assistant-dialog-status { font-size: 10px; }
  .assistant-new-chat { min-width: 38px; height: 32px; padding: 0 7px; }
  .assistant-close { width: 34px; height: 34px; }
  .assistant-messages { padding: 18px 12px 10px; }
  .assistant-bubble { max-width: 88%; padding: 11px 12px; }
  .assistant-bubble p { font-size: 12.5px; }
  .assistant-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .assistant-action { justify-content: center; text-align: center; }
  .assistant-typing { padding: 0 12px 10px; }
  .assistant-composer { padding: 10px 12px; }
  .assistant-dialog-foot { padding: 8px 12px; }
  .assistant-dialog-foot span { display: none; }
  .assistant-dialog-foot { justify-content: flex-end; }
}

@media (max-width: 380px) {
  .assistant-dialog-head { gap: 7px; }
  .assistant-dialog-status b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-overlay,
  .assistant-dialog,
  .assistant-message,
  .assistant-typing i,
  .assistant-dialog-status > span { animation: none; transition: none; }
}

/* Persistent side launcher and non-blocking assistant panel. */
.assistant-side-launcher {
  position: fixed;
  top: 55%;
  right: 0;
  z-index: 2250;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 9px;
  border: 1px solid #bcaeff;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: #282330;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 24, 47, .16);
  font: 850 12px/1.2 inherit;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .18s ease, border-color .18s ease, color .18s ease;
}
.assistant-side-launcher::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 35px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #00a75f;
}
.assistant-side-launcher img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(104, 71, 255, .2);
}
.assistant-side-launcher:hover {
  border-color: #8067ff;
  color: #5336e8;
  transform: translate(-3px, -50%);
}
.assistant-side-launcher:focus-visible,
.assistant-welcome-prompts button:focus-visible {
  outline: 3px solid rgba(104, 71, 255, .25);
  outline-offset: 2px;
}
body.assistant-is-open {
  overflow-x: hidden;
  overflow-y: auto;
}
body.assistant-is-open .assistant-side-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, -50%);
}
.assistant-overlay {
  display: block;
  padding: 0;
  opacity: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}
.assistant-overlay.is-open {
  opacity: 1;
  pointer-events: none;
}
.assistant-dialog {
  position: absolute;
  top: 84px;
  right: 18px;
  width: min(440px, calc(100vw - 36px));
  height: min(700px, calc(100dvh - 104px));
  min-height: 0;
  pointer-events: none;
  transform: translateX(22px);
}
.assistant-overlay.is-open .assistant-dialog {
  pointer-events: auto;
  transform: translateX(0);
}
.assistant-welcome-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #ece8f1;
}
.assistant-welcome-prompts button {
  min-width: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 6px;
  border: 1px solid #ddd7e7;
  border-radius: 6px;
  color: #554f60;
  background: #fff;
  font: 800 10px/1.2 inherit;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.assistant-welcome-prompts button:hover {
  border-color: #bcaeff;
  color: #5336e8;
  background: #f4f1ff;
}
.assistant-welcome-prompts i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
}
.assistant-welcome-prompts .is-basketball { background: #d8a400; }
.assistant-welcome-prompts .is-shooters { background: #00a75f; }
.assistant-welcome-prompts .is-gpc { background: #6847ff; }

@media (max-width: 620px) {
  .assistant-side-launcher {
    top: auto;
    right: 0;
    bottom: 104px;
    min-height: 48px;
    padding-top: 7px;
    padding-bottom: 7px;
    transform: none;
  }
  .assistant-side-launcher img { width: 31px; height: 31px; }
  .assistant-side-launcher:hover { transform: translateX(-3px); }
  body.assistant-is-open .assistant-side-launcher { transform: translateX(100%); }
  .assistant-dialog {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    height: auto;
  }
  .assistant-welcome-prompts button { font-size: 9.5px; }
}

/* Product review reports. */
.product-reviews {
  --product-review-accent: #6847ff;
  --product-review-ink: #5336e8;
  --product-review-tint: #f3f0ff;
  position: relative;
  padding: 78px 24px 82px;
  overflow: hidden;
  border-top: 1px solid #e4e0ec;
  border-bottom: 1px solid #e4e0ec;
  background-color: #fbfaff;
  background-image:
    linear-gradient(rgba(104, 71, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 71, 255, .035) 1px, transparent 1px);
  background-size: 32px 32px;
}
.product-reviews.is-basketball {
  --product-review-accent: #d8a400;
  --product-review-ink: #765900;
  --product-review-tint: #fff8df;
}
.product-reviews.is-shooters {
  --product-review-accent: #00a75f;
  --product-review-ink: #007944;
  --product-review-tint: #effbf4;
}
.product-reviews.is-aim {
  --product-review-accent: #c13b91;
  --product-review-ink: #9b276c;
  --product-review-tint: #fff2f9;
}
.product-reviews.is-gpc {
  --product-review-accent: #6847ff;
  --product-review-ink: #5336e8;
  --product-review-tint: #f3f0ff;
}
.product-reviews-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
}
.product-reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: end;
  margin-bottom: 28px;
}
.product-reviews-copy { max-width: 590px; }
.product-reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--product-review-ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
}
.product-reviews-eyebrow > span {
  width: 23px;
  height: 3px;
  border-radius: 3px;
  background: var(--product-review-accent);
}
.product-reviews-copy h2 {
  margin: 0 0 10px;
  color: #191620;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}
.product-reviews-copy p {
  margin: 0;
  color: #655f70;
  font-size: 14.5px;
  line-height: 1.6;
}
.product-review-scoreboard {
  min-width: 440px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dcd6e5;
  border-top: 3px solid var(--product-review-accent);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 24, 47, .08);
}
.product-review-score,
.product-review-stars,
.product-review-users {
  min-width: 0;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 16px;
}
.product-review-stars,
.product-review-users { border-left: 1px solid #e8e4ed; }
.product-review-score strong {
  color: #191620;
  font-size: 36px;
  line-height: 1;
}
.product-review-score span,
.product-review-stars small,
.product-review-users span {
  margin-top: 5px;
  color: #817a8b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.product-review-stars > span {
  color: #e7ad00;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.product-review-users strong {
  color: var(--product-review-ink);
  font-size: 20px;
  line-height: 1;
}
.product-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-review-report {
  position: relative;
  min-width: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  border: 1px solid #ddd7e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 24, 47, .07);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.product-review-report::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--product-review-accent);
}
.product-review-report:hover {
  border-color: color-mix(in srgb, var(--product-review-accent) 44%, #ddd7e7);
  box-shadow: 0 16px 34px rgba(31, 24, 47, .1);
  transform: translateY(-2px);
}
.product-review-report > header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.product-review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--product-review-accent) 45%, #ddd7e7);
  border-radius: 7px;
  color: var(--product-review-ink);
  background: var(--product-review-tint);
  font-size: 12px;
  font-weight: 900;
}
.product-review-identity { min-width: 0; }
.product-review-identity strong {
  display: block;
  overflow: hidden;
  color: #24202b;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-review-identity span {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: #007e48;
  font-size: 9px;
  font-weight: 800;
}
.product-review-identity i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #00a75f;
}
.product-review-report > header > small {
  color: #9a93a3;
  font: 750 8px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: nowrap;
}
.product-review-rating {
  margin: 20px 0 10px;
  color: #e7ad00;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}
.product-review-report blockquote {
  flex: 1;
  margin: 0;
  color: #3e3847;
  font-size: 14px;
  font-style: normal;
  font-weight: 550;
  line-height: 1.62;
}
.product-review-report footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid #ece8f1;
  font-size: 9.5px;
  font-weight: 750;
}
.product-review-report footer span { color: var(--product-review-ink); }
.product-review-report footer time { color: #8a8392; }
.product-review-source {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  color: #777080;
  font-size: 10.5px;
  font-weight: 650;
  text-align: center;
}
.product-review-source > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00a75f;
}
.product-review-source a {
  color: var(--product-review-ink);
  font-weight: 850;
  text-decoration: none;
}
.product-review-source a:hover { text-decoration: underline; }
.product-review-report footer .review-product-link {
  color: var(--product-review-ink);
  font-weight: 850;
}
.product-review-decision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--product-review-accent) 24%, #dde9ee);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, color-mix(in srgb, var(--product-review-tint) 58%, #fff));
  box-shadow: inset 0 1px 0 #fff, 0 12px 28px rgba(29, 41, 48, .07);
}
.product-review-decision > div:first-child > span,
.product-review-decision > div:first-child > strong,
.product-review-decision > div:first-child > small { display: block; }
.product-review-decision > div:first-child > span {
  margin-bottom: 5px;
  color: var(--product-review-ink);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-review-decision > div:first-child > strong {
  color: #201d24;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}
.product-review-decision > div:first-child > small {
  margin-top: 4px;
  color: #78717d;
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.35;
}
.product-review-decision-actions {
  display: grid;
  min-width: 220px;
  gap: 6px;
}
.product-review-decision-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--product-review-accent) 82%, #111);
  border-radius: 9px;
  color: #fff;
  background: var(--product-review-accent);
  box-shadow: 0 9px 20px color-mix(in srgb, var(--product-review-accent) 22%, transparent), inset 0 1px 0 rgba(255, 255, 255, .28);
  font: 850 11px/1.2 inherit;
  cursor: pointer;
  touch-action: manipulation;
}
.product-review-decision-actions > a {
  color: var(--product-review-ink);
  font-size: 9.5px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.product-review-decision-actions :is(button, a):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--product-review-accent) 28%, transparent);
  outline-offset: 3px;
}

@media (max-width: 940px) {
  .product-reviews-head { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .product-review-scoreboard { width: 100%; min-width: 0; }
  .product-review-grid { grid-template-columns: minmax(0, 1fr); }
  .product-review-report { min-height: 0; }
}

@media (max-width: 620px) {
  .product-reviews { padding: 58px 16px 62px; }
  .product-reviews-copy h2 { font-size: 29px; }
  .product-reviews-copy p { font-size: 13.5px; }
  .product-review-score,
  .product-review-stars,
  .product-review-users {
    min-height: 72px;
    padding: 11px 10px;
  }
  .product-review-score strong { font-size: 30px; }
  .product-review-users strong { font-size: 17px; }
  .product-review-stars > span { font-size: 12px; }
  .product-review-score span,
  .product-review-stars small,
  .product-review-users span { font-size: 8.5px; }
  .product-review-report { padding: 18px; }
  .product-review-report blockquote { font-size: 13.5px; }
  .product-review-decision {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .product-review-decision-actions { min-width: 0; }
}

/* Product card visual refresh. The original three-card layout is unchanged. */
.home-products .pc {
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(32, 25, 43, .035), 0 14px 34px rgba(53, 41, 78, .065);
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .2s ease, box-shadow .24s ease;
}
.home-products .pc:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 5px 14px rgba(32, 25, 43, .06), 0 24px 50px rgba(53, 41, 78, .11);
}
.home-products .pc::before {
  height: 3px;
  opacity: 1;
  background: var(--accent);
}
.home-products .pc-link-overlay { border-radius: 8px; }
.home-products .pc-media,
.home-products .pc.nba .pc-media,
.home-products .pc.cod .pc-media,
.home-products .pc.plus .pc-media {
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 24%, #e9e5ed);
  background-image:
    linear-gradient(rgba(31, 27, 40, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 27, 40, .032) 1px, transparent 1px);
  background-size: 30px 30px;
}
.home-products .pc.nba .pc-media { background-color: #fff8df; }
.home-products .pc.cod .pc-media { background-color: #eafaf1; }
.home-products .pc.plus .pc-media { background-color: #f1edff; }

/* Keep Aura's dark packaging intact while letting the site surface show around it. */
img[src$="/assets/img/shooters.webp"] {
  -webkit-clip-path: polygon(24.72% 10.37%, 28.47% 8.53%, 34.13% 7.02%, 36.84% 7.02%, 81.98% 11.72%, 81.82% 86.04%, 35.73% 90.75%, 24.72% 87.4%);
  clip-path: polygon(24.72% 10.37%, 28.47% 8.53%, 34.13% 7.02%, 36.84% 7.02%, 81.98% 11.72%, 81.82% 86.04%, 35.73% 90.75%, 24.72% 87.4%);
}

.home-products .pc-media img {
  filter: drop-shadow(0 15px 25px rgba(18, 15, 24, .2));
}
.home-products .pc:hover .pc-media img { transform: translateY(-2px) scale(1.035); }
.home-products .pc-pill {
  padding: 6px 9px;
  border: 1px solid rgba(32, 26, 42, .12);
  border-radius: 5px;
  color: #3f3947;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 4px 14px rgba(35, 27, 51, .07);
  backdrop-filter: blur(8px);
}
.home-products .pc-pill .pdot {
  background: var(--accent);
  animation: none;
}
.home-products .pc-featured-tag {
  border-radius: 5px;
  background: #6847ff;
  box-shadow: 0 5px 14px rgba(104, 71, 255, .2);
}
.home-products .pc-title {
  color: #17131d;
  letter-spacing: 0;
}
.home-products .pc-users {
  border-color: color-mix(in srgb, var(--accent) 22%, #e4dfe9);
  border-radius: 5px;
  background: color-mix(in srgb, var(--accent) 6%, #fff);
}
.home-products .pc-features li {
  color: #5f5868;
}
.home-products .pc-features li::before {
  border-radius: 4px;
  background-color: var(--accent);
}
.home-products .promo-strip {
  border-color: #d3c9ff;
  border-radius: 7px;
  background: #f5f2ff;
}
.home-products .promo-strip-link:hover {
  border-color: #9d8bff;
  background: #f0ecff;
}
.home-products .promo-free {
  border-radius: 4px;
  background: #6847ff;
}
.home-products .pc-price-block { border-top-color: #e6e1e9; }
.home-products .pc-price .amount {
  color: #141018;
  letter-spacing: 0;
}
.home-products .pc-price .save {
  border: 1px solid #bce8d2;
  border-radius: 4px;
  color: #007c48;
  background: #effaf5;
  letter-spacing: 0;
}
.home-products .pc-value-line {
  border-color: #d7cff8;
  border-radius: 5px;
  background: #f4f1ff;
}
.home-products .pc-btn {
  border-radius: 6px;
  box-shadow: none;
}
.home-products .pc.nba .pc-btn {
  color: #17140a;
  background: #efc900;
}
.home-products .pc.nba .pc-btn:hover { background: #dbb800; }
.home-products .pc.cod .pc-btn {
  color: #fff;
  background: #00ad63;
}
.home-products .pc.cod .pc-btn:hover { background: #008d50; }
.home-products .pc.plus .pc-btn {
  color: #fff;
  background: #6847ff;
}
.home-products .pc.plus .pc-btn:hover { background: #5336e8; }
.home-products .pc-details-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border: 1px solid #ddd7e2;
  border-radius: 6px;
  color: #514a59;
  background: #fff;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.home-products .pc-details-link:hover {
  border-color: var(--accent);
  color: #2e2934;
  background: color-mix(in srgb, var(--accent) 5%, #fff);
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .home-products .pc-media { border-bottom-color: #ddd8e3; }
  .home-products .pc-users { border-color: #ddd8e3; background: #faf9fc; }
  .home-products .pc-details-link:hover { background: #faf9fc; }
}

/* Keep the three-product desktop layout in compact browser panels. */
@media (min-width: 760px) and (max-width: 900px) {
  .home-products {
    max-width: 900px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 32px 14px 24px;
  }
  .home-products .pc-body { padding: 17px 14px 0; }
  .home-products .pc-head { gap: 6px; }
  .home-products .pc-title { font-size: 18px; }
  .home-products .pc-users {
    padding: 3px 5px;
    font-size: 8.5px;
  }
  .home-products .pc-sub {
    margin-bottom: 12px;
    font-size: 11.5px;
  }
  .home-products .pc-features { margin-bottom: 14px; }
  .home-products .pc-features li {
    gap: 7px;
    padding: 4px 0;
    font-size: 11px;
  }
  .home-products .pc-features li::before {
    width: 14px;
    height: 14px;
  }
  .home-products .promo-strip {
    gap: 7px;
    margin: 0 14px 14px;
    padding: 8px;
  }
  .home-products .promo-strip img { width: 28px; height: 28px; }
  .home-products .promo-title { font-size: 10.5px; }
  .home-products .promo-sub { font-size: 9px; }
  .home-products .promo-free { padding: 4px 7px; font-size: 8px; }
  .home-products .pc-price-block {
    margin: 0 14px;
    padding: 14px 0 16px;
  }
  .home-products .pc-price { gap: 5px; }
  .home-products .pc-price .old { font-size: 11px; }
  .home-products .pc-price .amount { font-size: 28px; }
  .home-products .pc-price .save {
    padding: 2px 5px;
    font-size: 8px;
  }
  .home-products .pc-note {
    margin-bottom: 10px;
    font-size: 9.5px;
  }
  .home-products .pc-value-line {
    margin-bottom: 8px;
    padding: 6px 7px;
    font-size: 9px;
  }
  .home-products .pc-cta-row { gap: 6px; }
  .home-products .pc-btn {
    min-height: 43px;
    padding: 10px 8px;
    font-size: 12px;
  }
  .home-products .pc-details-link {
    min-height: 43px;
    padding: 8px 7px;
    font-size: 9.5px;
  }
}

/* ============================================
   HOMEPAGE VERIFIED REVIEW BOARD
   ============================================ */
.review-section {
  position: relative;
  display: block;
  scroll-margin-top: 76px;
  padding: 82px 24px 92px;
  border-top: 1px solid #ece9f2;
  border-bottom: 1px solid #ece9f2;
  background-color: #fff;
  background-image:
    linear-gradient(#f0eef5 1px, transparent 1px),
    linear-gradient(90deg, #f0eef5 1px, transparent 1px);
  background-size: 46px 46px;
}
.review-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.review-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}
.review-heading { max-width: 610px; }
.review-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: #6847ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.review-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #6847ff;
  box-shadow: 0 0 0 4px #eeeaff;
}
.review-heading h2 {
  margin: 0;
  color: #11121a;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}
.review-heading p {
  max-width: 570px;
  margin: 13px 0 0;
  color: #625b6d;
  font-size: 15px;
  line-height: 1.65;
}
.review-scoreboard {
  display: grid;
  grid-template-columns: auto minmax(128px, 1fr) 1px auto;
  align-items: center;
  gap: 16px;
  min-width: 445px;
  padding: 16px 18px;
  border: 1px solid #dcd6e7;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 26px rgba(43, 31, 72, .07);
}
.review-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.review-score strong {
  color: #11121a;
  font-size: 39px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.review-score > span {
  color: #8b8495;
  font-size: 12px;
  font-weight: 750;
}
.review-rating-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.review-rating-copy .review-stars {
  color: #efa900;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}
.review-rating-copy b {
  color: #504959;
  font-size: 11px;
  white-space: nowrap;
}
.review-score-divider {
  width: 1px;
  height: 36px;
  background: #e4dfeb;
}
.review-verified-total {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4f4858;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}
.review-verified-total span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #a9dbc9;
  border-radius: 6px;
  color: #007e59;
  background: #eaf9f3;
  font-size: 12px;
  font-weight: 900;
}
.review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.review-filters {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid #ddd8e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
}
.review-filter {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px;
  color: #645d6d;
  background: transparent;
  font: inherit;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.review-filter:hover { color: #11121a; background: #f4f2f7; }
.review-filter.is-active {
  color: #fff;
  background: #6847ff;
  box-shadow: 0 4px 12px rgba(104, 71, 255, .2);
}
.review-filter--basketball.is-active { color: #1a1708; background: #efc900; box-shadow: 0 4px 12px rgba(239, 201, 0, .18); }
.review-filter--shooters.is-active { color: #fff; background: #00a861; box-shadow: 0 4px 12px rgba(0, 168, 97, .18); }
.review-filter--multi.is-active { color: #fff; background: #6847ff; }
.review-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-controls button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid #d8d2e1;
  border-radius: 6px;
  color: #393340;
  background: rgba(255, 255, 255, .96);
  font: inherit;
  font-size: 17px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.review-controls button:hover:not(:disabled) {
  border-color: #6847ff;
  color: #6847ff;
  background: #f5f2ff;
}
.review-controls button:disabled { opacity: .4; cursor: default; }
.review-controls span {
  min-width: 72px;
  color: #756e7f;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 282px;
  opacity: 1;
  translate: 0 0;
  transition: opacity 180ms ease, translate 240ms cubic-bezier(.22, 1, .36, 1);
}
.review-grid.review-changing {
  opacity: 0;
  translate: 0 7px;
}
.review-item {
  --review-accent: #6847ff;
  --review-tint: #f1edff;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 282px;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #ddd8e5;
  border-top: 3px solid var(--review-accent);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(35, 27, 58, .065);
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
}
.review-item:hover {
  border-color: color-mix(in srgb, var(--review-accent) 38%, #ddd8e5);
  box-shadow: 0 15px 34px rgba(35, 27, 58, .1);
  transform: translateY(-2px);
}
.review-item--basketball { --review-accent: #d8a400; --review-tint: #fff6cf; }
.review-item--shooters { --review-accent: #00a861; --review-tint: #e9faf2; }
.review-item--multi { --review-accent: #6847ff; --review-tint: #f1edff; }
.review-item-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}
.review-item .review-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--review-accent) 32%, #fff);
  border-radius: 7px;
  color: var(--review-accent);
  background: var(--review-tint);
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
.review-person {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.review-person strong {
  max-width: 100%;
  overflow: hidden;
  color: #17131d;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-item .review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border: 1px solid #b7e2d3;
  border-radius: 4px;
  color: #007f59;
  background: #effaf6;
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.25;
}
.review-item .review-verified::before { content: '\2713'; font-size: 8px; }
.review-item time {
  align-self: start;
  color: #8b8495;
  font-size: 9.5px;
  font-weight: 650;
  white-space: nowrap;
}
.review-item-stars {
  margin-top: 20px;
  color: #efa900;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
}
.review-item blockquote {
  margin: 13px 0 22px;
  color: #29232f;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}
.review-item footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #ece8f0;
  color: #8a8393;
  font-size: 9.5px;
  font-weight: 700;
}
.review-item .review-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--review-accent);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}
.review-item .review-product::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--review-accent);
}
.review-product-link {
  color: var(--product-review-ink, var(--review-accent, #087ca7));
  text-decoration: none;
  text-underline-offset: 3px;
}
.review-product-link:hover { text-decoration: underline; }
.review-product-link:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(8, 124, 167, .22);
  outline-offset: 3px;
}
.review-progress {
  width: 100%;
  height: 3px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 2px;
  background: #e8e4ed;
}
.review-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: #6847ff;
  transition: width 260ms cubic-bezier(.22, 1, .36, 1);
}
.review-section .review-source {
  margin-top: 15px;
  color: #7c7587;
  font-size: 10.5px;
}
.review-section .review-source svg { width: 14px; height: 14px; color: #5865f2; }
.review-section .review-source strong { color: #4d4655; }
.review-decision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 124, 167, .18);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f2fbff);
  box-shadow: inset 0 1px 0 #fff, 0 10px 26px rgba(8, 88, 119, .07);
}
.review-decision-copy span,
.review-decision-copy strong { display: block; }
.review-decision-copy span {
  margin-bottom: 4px;
  color: #087ca7;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.review-decision-copy strong {
  color: #1d1a22;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
}
.review-decision-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.review-decision-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(8, 124, 167, .16);
  border-radius: 9px;
  color: #075e80;
  background: #fff;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
}
.review-decision-actions .review-decision-primary {
  border-color: #075e80;
  color: #fff;
  background: linear-gradient(180deg, #1497c2, #087ca7 52%, #075e80);
  box-shadow: 0 8px 18px rgba(8, 124, 167, .18), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.review-decision-actions a:focus-visible {
  outline: 3px solid rgba(8, 124, 167, .25);
  outline-offset: 3px;
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .review-item:hover { border-color: var(--review-accent); }
  .review-item .review-avatar { border-color: #d9d4e0; }
}

@media (max-width: 980px) {
  .review-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }
  .review-scoreboard { min-width: 0; width: 100%; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-decision {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 680px) {
  .review-section { padding: 82px 16px 70px; }
  .review-heading-row { margin-bottom: 24px; }
  .review-heading h2 { font-size: 30px; }
  .review-heading p { font-size: 14px; }
  .review-scoreboard {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    padding: 15px;
  }
  .review-score strong { font-size: 34px; }
  .review-score-divider { display: none; }
  .review-verified-total {
    grid-column: 1 / -1;
    padding-top: 11px;
    border-top: 1px solid #e8e3ed;
  }
  .review-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
  }
  .review-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-filter { width: 100%; padding: 0 8px; }
  .review-controls { justify-content: space-between; }
  .review-controls span { flex: 1; }
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 276px;
  }
  .review-item { min-height: 276px; }
  .review-decision { padding: 15px; }
  .review-decision-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-decision-actions .review-decision-primary { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .review-grid,
  .review-item,
  .review-progress span { transition: none; }
  .review-item:hover { transform: none; }
}

/* ============================================
   OZARK 360 BRAND + CONVERSION POLISH
   ============================================ */
.logo {
  gap: 9px;
  letter-spacing: 0;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(104, 71, 255, .18));
}
.footer-brand img {
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(104, 71, 255, .13));
}
.home-hero {
  padding-top: 38px;
}
.home-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 auto 14px;
  color: #11121a;
  text-align: left;
}
.home-brand-lockup img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 13px rgba(104, 71, 255, .22));
}
.home-brand-lockup span {
  display: grid;
  gap: 2px;
}
.home-brand-lockup strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.home-brand-lockup small {
  color: #746d80;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.home-hero .trust-badge { margin-bottom: 15px; }
.game-picker { margin-top: 24px; }
.gp-chips {
  max-width: 940px;
  margin: 0 auto;
  gap: 9px;
}
.gp-chips .gp-chip,
.gp-chips .gp-chip.gp-all {
  --gp-accent: #6847ff;
  --gp-tint: #f1edff;
  --gp-border: #cfc5ff;
  min-width: 194px;
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 15px;
  gap: 10px;
  padding: 8px 10px;
  border-color: var(--gp-border);
  border-radius: 8px;
  color: #26212d;
  background: #fff;
  box-shadow: 0 3px 9px rgba(34, 27, 50, .045);
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1), box-shadow 220ms ease;
}
.gp-chips .gp-basketball {
  --gp-accent: #a97900;
  --gp-tint: #fff6d6;
  --gp-border: #ead68a;
}
.gp-chips .gp-shooters {
  --gp-accent: #008c50;
  --gp-tint: #e7f9ef;
  --gp-border: #a8dfc0;
}
.gp-chips .gp-aim {
  --gp-accent: #aa2d7c;
  --gp-tint: #fff0f8;
  --gp-border: #e6b3d1;
}
.gp-chips .gp-all {
  --gp-accent: #6847ff;
  --gp-tint: #f0ecff;
  --gp-border: #c7bbff;
}
.gp-chips .gp-chip:hover,
.gp-chips .gp-chip.gp-all:hover,
.gp-chips .gp-chip:focus-visible {
  border-color: var(--gp-accent);
  color: #17131d;
  background: color-mix(in srgb, var(--gp-tint) 58%, #fff);
  box-shadow: 0 5px 13px rgba(34, 27, 50, .07), 0 15px 30px color-mix(in srgb, var(--gp-accent) 10%, transparent);
  transform: translateY(-2px);
}
.gp-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gp-border);
  border-radius: 6px;
  color: var(--gp-accent);
  background: var(--gp-tint);
  font-size: 9px;
  font-weight: 900;
}
.gp-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.gp-copy strong {
  color: #1b1720;
  font-size: 12px;
  line-height: 1.2;
}
.gp-copy small {
  overflow: hidden;
  color: #756e7f;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gp-arrow {
  color: var(--gp-accent);
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease;
}
.gp-chip:hover .gp-arrow,
.gp-chip:focus-visible .gp-arrow { transform: translateX(2px); }
.home-products { scroll-margin-top: 84px; }
.pc-fit {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -6px 0 12px;
  color: #615968;
  font-size: 10px;
  line-height: 1.25;
}
.pc-fit span {
  padding: 3px 5px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, #e2dce7);
  border-radius: 4px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, #fff);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.pc-fit strong {
  color: #39323f;
  font-size: 10.5px;
}
.home-products .pc:focus-within {
  border-color: var(--accent);
  box-shadow: 0 5px 14px rgba(32, 25, 43, .06), 0 24px 50px rgba(53, 41, 78, .11);
  transform: translateY(-3px);
}
.home-products .pc-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-products .pc-btn::after {
  content: '';
  position: absolute;
  inset: -80% auto -80% -45%;
  z-index: -1;
  width: 24%;
  opacity: 0;
  background: rgba(255, 255, 255, .48);
  transform: skewX(-18deg) translateX(0);
  pointer-events: none;
}
.motion-ready .home-products .pc.is-visible .pc-btn::after {
  animation: ozarkCtaSweep 760ms cubic-bezier(.22, 1, .36, 1) calc(380ms + var(--motion-order, 0) * 110ms) 1 both;
}
@keyframes ozarkCtaSweep {
  0% { opacity: 0; transform: skewX(-18deg) translateX(0); }
  24% { opacity: .72; }
  100% { opacity: 0; transform: skewX(-18deg) translateX(620%); }
}
.purchase-assurance {
  max-width: 1092px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: -14px auto 16px;
  padding: 0 24px;
}
.purchase-assurance > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-top: 1px solid #e7e2ec;
  border-bottom: 1px solid #e7e2ec;
}
.purchase-assurance > div + div { border-left: 1px solid #e7e2ec; }
.pa-mark {
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid #cfc5ff;
  border-radius: 6px;
  color: #6847ff;
  background: #f1edff;
  font-size: 9px;
  font-weight: 900;
}
.purchase-assurance > div > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.purchase-assurance strong {
  color: #211b27;
  font-size: 10.5px;
  line-height: 1.2;
}
.purchase-assurance small {
  overflow: hidden;
  color: #7b7385;
  font-size: 8.8px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .gp-chips .gp-chip:hover,
  .gp-chips .gp-chip.gp-all:hover,
  .gp-chips .gp-chip:focus-visible { background: #f8f6ff; }
  .pc-fit span { border-color: #dcd6e7; background: #faf9fc; }
}

@media (max-width: 900px) {
  .gp-chips { max-width: 760px; }
  .gp-chips .gp-chip,
  .gp-chips .gp-chip.gp-all { min-width: 175px; }
  .purchase-assurance { max-width: 850px; }
  .purchase-assurance > div { padding: 12px 10px; }
}

@media (max-width: 680px) {
  .home-hero { padding-top: 26px; }
  .home-brand-lockup { margin-bottom: 12px; }
  .home-brand-lockup img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .home-brand-lockup strong { font-size: 18px; }
  .gp-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .gp-chips .gp-chip,
  .gp-chips .gp-chip.gp-all {
    min-width: 0;
    min-height: 58px;
    grid-template-columns: 31px minmax(0, 1fr) 12px;
    gap: 7px;
    padding: 7px;
  }
  .gp-mark { width: 31px; height: 31px; }
  .gp-copy strong { font-size: 10.5px; }
  .gp-copy small { font-size: 8px; }
  .purchase-assurance {
    grid-template-columns: 1fr;
    margin-top: -6px;
    padding: 0 16px;
  }
  .purchase-assurance > div { padding: 11px 4px; }
  .purchase-assurance > div + div {
    border-top: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .home-products .pc.is-visible .pc-btn::after { animation: none; }
  .gp-chip:hover .gp-arrow,
  .gp-chip:focus-visible .gp-arrow,
  .home-products .pc:focus-within { transform: none; }
}

/* Shared responsive cleanup found during the main-page performance audit. */
html { overflow-x: clip; }
.steps.steps-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps > .step { min-width: 0; }

@supports not (overflow: clip) {
  html { overflow-x: hidden; }
}

@media (max-width: 900px) {
  .steps,
  .steps.steps-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps > .step { padding: 22px; }
}

@media (max-width: 560px) {
  .steps,
  .steps.steps-four { grid-template-columns: 1fr; gap: 10px; }
  .steps > .step { padding: 20px; }
}

.hero-promise {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 8px 10px;
  border: 1px solid #cfe8dd;
  border-radius: 7px;
  color: #52645c;
  background: #f3fbf7;
  font-size: 10px;
}

.hero-promise strong {
  flex: 0 0 auto;
  color: #087e5b;
}

.hero-promise a {
  flex: 0 0 auto;
  color: var(--purple-dark);
  font-weight: 800;
}

@media (max-width: 620px) {
  .hero-promise { align-items: flex-start; flex-direction: column; gap: 3px; }
}
