/* ============================================
   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;
}

* { 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; }

/* purchase popup */
.purchase-popup { position: fixed; bottom: 20px; left: 20px; z-index: 100; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; box-shadow: 0 8px 30px rgba(0,0,0,.1); display: flex; align-items: center; gap: 10px; font-size: 13px; max-width: 300px; transform: translateX(-120%); transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
.purchase-popup.show { transform: translateX(0); }
.purchase-popup .pp-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--green); color:#fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.purchase-popup .pp-text { line-height: 1.4; }
.purchase-popup .pp-name { font-weight: 700; }
.purchase-popup .pp-time { font-size: 11px; color: var(--ink-faint); }

/* 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; }
  .purchase-popup { display: none; }
  .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)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

.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; }
}
