/* RewardsPro — landing page styles
   Production CSS — no framework, no preprocessor.
   Mobile-first; widens at 720 / 1024 / 1280px. */

/* ---------- Design tokens ---------- */
:root {
  --primary: #6938ef;
  --primary-dark: #4f1fc4;
  --primary-soft: #ede5ff;
  --ink: #180a3d;
  --ink-soft: #2a1764;
  --tint: #faf7ff;
  --accent: #f5b942;
  --accent-deep: #c98a1e;
  --muted: #475066;
  --muted-2: #64708a;
  --border: rgba(24, 10, 61, 0.10);
  --border-soft: rgba(24, 10, 61, 0.08);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(20, 14, 40, 0.06);
  --shadow: 0 12px 28px rgba(20, 14, 40, 0.08);
  --shadow-lg: 0 22px 50px rgba(20, 14, 40, 0.12);
  --container: 1180px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: 64px 0; }
@media (min-width: 720px) { .section { padding: 88px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
h2.section-title {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  max-width: 760px;
}
h2.section-title .accent { color: var(--primary); }
p.section-lede {
  margin-top: 12px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 10, 61, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(24, 10, 61, 0.34); }
.btn-secondary {
  background: #fff;
  border-color: rgba(24, 10, 61, 0.14);
  color: var(--ink);
}
.btn-secondary:hover { border-color: rgba(24, 10, 61, 0.28); }
.btn-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(245, 185, 66, 0.45);
}
.btn-accent:hover { box-shadow: 0 14px 36px rgba(245, 185, 66, 0.55); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-pill { border-radius: 999px; padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 22px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.brand .logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(105, 56, 239, 0.34);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}
.brand .accent { color: var(--primary); }

.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.8;
  transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta .login {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.85;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta .login { display: inline; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tint) 0%, #fff 100%);
  padding: 56px 0 72px;
}
@media (min-width: 720px) { .hero { padding: 80px 0 96px; } }
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}
.hero::before {
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(105, 56, 239, 0.12), transparent 60%);
}
.hero::after {
  bottom: -160px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.14), transparent 60%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
  }
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(105, 56, 239, 0.22);
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(105, 56, 239, 0.10);
}
.badge-pill .star {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 900;
}
.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--ink);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hindi-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--primary);
}
.hero-lede {
  margin-top: 14px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-row {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted-2);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 500;
}
.trust-row .tick { color: #16a34a; margin-right: 4px; }

/* Hero Demo */
.hero-demo {
  position: relative;
  background: linear-gradient(145deg, var(--ink), var(--ink-soft));
  color: #fff;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 32px 80px rgba(24, 10, 61, 0.34), 0 0 0 1px rgba(245, 185, 66, 0.20);
  overflow: hidden;
}
.hero-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(245, 185, 66, 0.9) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}
.demo-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.demo-shop {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.demo-title {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.demo-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.live-pill {
  background: rgba(22, 163, 74, 0.18);
  color: #86efac;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
}
.wheel-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.wheel-frame {
  position: relative;
  width: 280px;
  height: 280px;
}
.wheel-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.32) 0%, transparent 62%);
  animation: rp-pulse 2.6s ease-in-out infinite;
}
.wheel-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.40), 0 0 24px rgba(245, 185, 66, 0.55);
  pointer-events: none;
}
.wheel-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid var(--accent);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
  z-index: 3;
}
.wheel-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-deep));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.6px;
  z-index: 4;
  border: none;
}
.wheel-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
  border-radius: 50%;
  transition: transform 4s cubic-bezier(.16, .7, .16, 1);
}
.prize-chips {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.prize-chips::-webkit-scrollbar { display: none; }
.prize-chips { scrollbar-width: none; }
.prize-chip {
  flex-shrink: 0;
  background: rgba(245, 185, 66, 0.15);
  color: var(--accent);
  border: 1px solid rgba(245, 185, 66, 0.34);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* Logo bar */
.logo-bar {
  background: var(--ink);
  color: #fff;
  padding: 36px 0;
}
.logo-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 720px) {
  .logo-bar-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.logo-bar-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cities {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 185, 66, 0.22);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}
.stat-card .n {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.8px;
}
.stat-card .l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 2px;
}

/* Problem cards */
.problem-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  padding: 24px 22px;
  background: var(--tint);
  border-radius: 18px;
  border: 1px solid rgba(105, 56, 239, 0.10);
}
.problem-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.problem-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-top: 16px;
  letter-spacing: -0.3px;
}
.problem-card p {
  font-size: 14px;
  color: var(--muted-2);
  margin-top: 6px;
  line-height: 1.5;
}

/* Games */
.games-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
.game-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.game-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.game-emoji { font-size: 26px; }
.game-title {
  flex: 1;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.game-tag {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.game-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.game-preview {
  background: var(--tint);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
}

/* mini spin */
.mini-spin {
  position: relative;
  width: 210px;
  height: 210px;
}
.mini-spin .wheel-pointer { top: -2px; border-top-width: 14px; }
.mini-spin .wheel-hub { width: 50px; height: 50px; font-size: 11px; }

/* scratch demo */
.scratch {
  position: relative;
  width: 220px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(20, 14, 40, 0.16);
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.scratch-prize {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}
.scratch-prize .emoji { font-size: 32px; }
.scratch-prize .name { font-size: 17px; font-weight: 800; letter-spacing: 0.4px; }
.scratch-prize .meta { font-size: 11px; opacity: 0.85; }
.scratch canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.scratch-hint {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 8px;
  border-radius: 999px;
  pointer-events: none;
}

/* lottery preview */
.lottery {
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(20, 14, 40, 0.16);
  background: #fff;
}
.lottery-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 16px;
}
.lottery-top .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.9;
}
.lottery-top .prize { font-size: 16px; font-weight: 800; margin-top: 4px; }
.lottery-balls {
  display: flex; gap: 5px; margin-top: 10px;
}
.lottery-balls span {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; color: var(--primary);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
}
.perf {
  position: relative; height: 1px;
}
.perf::before {
  content: '';
  position: absolute; inset: -5px 0 auto 0;
  height: 10px;
  background: radial-gradient(circle at 5px 5px, transparent 3.5px, #fff 3.5px) repeat-x;
  background-size: 10px 10px;
}
.lottery-bot { padding: 12px 16px; text-align: center; }
.lottery-bot .entry-label {
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lottery-bot .entry-num {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.lottery-bot .in-draw {
  margin-top: 8px;
  padding: 7px 0;
  border-radius: 9px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
}

/* How it works */
.steps-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(105, 56, 239, 0.34);
}
.step h3 {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.step p {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Dashboard section */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .dash-grid { grid-template-columns: 1fr 1.05fr; gap: 60px; } }
.feature-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.feature-list li .emoji { font-size: 18px; }
.dash-card {
  background: var(--tint);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(105, 56, 239, 0.14);
  box-shadow: 0 22px 50px rgba(105, 56, 239, 0.10);
}
.dash-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 2px;
}
.dash-chrome .left {
  display: flex; align-items: center; gap: 8px;
}
.dash-chrome .left .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}
.dash-chrome .live { font-size: 12px; font-weight: 700; color: var(--ink); }
.dash-chrome .updated { font-size: 11px; color: var(--muted-2); }
.dash-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-tile {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 22px rgba(20, 14, 40, 0.06);
}
.dash-tile .row {
  display: flex; align-items: center; gap: 8px;
}
.dash-tile .icon {
  width: 24px; height: 24px;
  border-radius: 7px;
  display: grid; place-items: center;
  font-size: 13px;
}
.dash-tile .label {
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.dash-tile .value {
  margin-top: 4px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  font-variant-numeric: tabular-nums;
}
.spark-card {
  margin-top: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
}
.spark-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.spark-head .l { font-size: 12px; font-weight: 700; color: var(--ink); }
.spark-head .r { font-size: 11px; font-weight: 700; color: var(--primary); }
.spark-card svg { width: 100%; height: 44px; }

/* Festivals */
.festivals {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (min-width: 720px) { .festivals { grid-template-columns: repeat(7, 1fr); } }
.festival {
  padding: 18px 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.festival .circle {
  width: 52px; height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px;
}
.festival .name {
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

/* Testimonials */
.testimonials {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.t-name {
  font-size: 14px;
  font-weight: 800;
}
.t-shop {
  font-size: 12px;
  color: var(--muted-2);
}
.t-stars {
  margin-left: auto;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
}
.t-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.t-meta {
  align-self: flex-start;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

/* You're in control section */
.control-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .control-grid { grid-template-columns: 1fr 1fr; }
}
.control-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.control-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ctrl-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ctrl-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.ctrl-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.55;
}

/* Mock settings panel */
.ctrl-mock {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 50px rgba(20, 14, 40, 0.10);
  overflow: hidden;
}
.ctrl-mock-header {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ctrl-mock-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.ctrl-mock-tag {
  background: rgba(245, 185, 66, 0.20);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.4px;
}
.ctrl-prize-row {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.ctrl-prize-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ctrl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ctrl-prize-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.ctrl-prize-sub {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 1px;
}
.ctrl-bar-wrap { padding-left: 20px; }
.ctrl-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(24, 10, 61, 0.07);
  overflow: hidden;
}
.ctrl-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .4s ease;
}
.ctrl-divider {
  height: 1px;
  background: var(--border);
  margin: 0 18px;
}
.ctrl-limits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.ctrl-limit-item {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border-soft);
}
.ctrl-limit-item:last-child { border-right: none; }
.ctrl-limit-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ctrl-limit-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 3px;
}
.ctrl-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}

/* Pricing */
.pricing-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.plan {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.plan.featured {
  background: linear-gradient(145deg, var(--ink), var(--ink-soft));
  color: #fff;
  border-color: rgba(245, 185, 66, 0.34);
  box-shadow: 0 24px 50px rgba(24, 10, 61, 0.34);
}
.plan-badge {
  position: absolute;
  top: -12px; right: 22px;
  background: var(--accent);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
.plan-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-top: 10px;
}
.plan-price .cur { font-size: 14px; opacity: 0.7; }
.plan-price .amt {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.4px;
}
.plan-price .per { font-size: 14px; opacity: 0.6; }
.plan-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.plan.featured .plan-features li { opacity: 0.95; }
.plan-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
}
.plan.featured .plan-features li::before { color: var(--accent); }
.plan .btn { margin-top: 24px; }

/* FAQ */
.faq {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q .icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform .2s, background .2s, color .2s;
}
.faq-item.open { background: var(--tint); }
.faq-item.open .icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}
.faq-item.open .faq-a { display: block; }

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 28px;
  padding: 48px 32px;
  box-shadow: 0 32px 80px rgba(105, 56, 239, 0.40);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .final-cta {
    grid-template-columns: 1.4fr 1fr;
    padding: 56px 48px;
  }
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(245, 185, 66, 0.9) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.final-cta h2 {
  margin: 12px 0;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.05;
  position: relative;
}
.final-cta h2 .accent { color: var(--accent); }
.final-cta .eyebrow {
  color: var(--accent);
  position: relative;
}
.final-cta .eyebrow::before { background: var(--accent); }
.final-cta p { position: relative; opacity: 0.9; max-width: 480px; line-height: 1.55; }
.final-cta .actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer */
.footer {
  padding: 64px 0 40px;
  color: var(--muted-2);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; }
}
.footer-about { grid-column: 1 / -1; }
@media (min-width: 720px) { .footer-about { grid-column: auto; } }
.footer-about p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  max-width: 280px;
}
.footer-col h4 {
  font-weight: 800;
  color: var(--ink);
  font-size: 12px;
  margin: 0 0 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* Animations */
@keyframes rp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.06); opacity: 0.85; }
}
@keyframes rp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
