/* Standalone theme for /reviews/ pages.
   Palette mirrors the official AI Secrets Challenge page (Russell Brunson):
   light lavender background, strong violet accents, dark headline text,
   green CTA. Completely independent from the main site's dark/green theme. */

:root {
  --purple: #7d12ce;
  --purple-deep: #4a0a7e;
  --purple-soft: #f3e9fc;
  --purple-border: #e2cff5;
  --magenta: #c81e8e;
  --ink: #1c1530;
  --ink-dim: #4b4462;
  --ink-faint: #8a819e;
  --bg: #ffffff;
  --bg-tint: #f9f5fd;
  --green: #2ec95c;
  --green-dark: #1fa946;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink-dim);
  font-size: 1.06rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--purple-border);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--magenta);
}

h1,
h2,
h3 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

strong {
  color: var(--ink);
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 92%);
}

/* ---- top announcement bar ---- */

.review-topbar {
  background: var(--purple);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
}

.review-topbar .topbar-pill {
  display: inline-block;
  background: #fff;
  color: var(--purple);
  border-radius: 999px;
  padding: 0.05rem 0.7rem;
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

/* ---- hero ---- */

.page-hero {
  background: linear-gradient(180deg, #f4ecfb 0%, var(--bg) 100%);
  padding: 3.2rem 0 2.4rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple-soft);
  border: 1px solid var(--purple-border);
  color: var(--purple-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  margin-bottom: 1.3rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 201, 92, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(46, 201, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 201, 92, 0); }
}

.accent {
  color: var(--purple);
  font-style: italic;
}

.lead {
  font-size: 1.16rem;
  color: var(--ink-dim);
  margin-top: 1.2rem;
}

.disclosure {
  font-size: 0.86rem;
  color: var(--ink-faint);
  font-style: italic;
  margin-top: 1.2rem;
}

/* ---- CTA ---- */

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

/* "HIGH DEMAND · 2,745 registered" line above the button */

.cta-demand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.cta-demand strong {
  font-weight: 800;
}

.demand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fdeeee;
  border: 1.5px solid #f0433d;
  color: #e02b25;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
}

.demand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0433d;
  box-shadow: 0 0 0 3px rgba(240, 67, 61, 0.2);
  animation: pulse-red 1.6s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(240, 67, 61, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(240, 67, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 67, 61, 0); }
}

/* Big two-line gradient button */

.btn-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  width: min(560px, 100%);
  background: linear-gradient(135deg, #5fdd7f 0%, #2eb857 100%);
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 16px;
  padding: 1.15rem 2rem 1.05rem;
  box-shadow: 0 12px 28px rgba(46, 184, 87, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(46, 184, 87, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-cta-main {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.25;
}

.btn-cta-arrow {
  display: inline-block;
  opacity: 0.85;
  transition: transform 0.15s ease;
}

.btn-cta:hover .btn-cta-arrow {
  transform: translateX(5px);
}

.btn-cta-sub {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* "Available Seats · 100% Free · Virtual" line under the button */

.cta-under {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.cta-under-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--green);
  position: relative;
  flex-shrink: 0;
}

.cta-under-dot::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: var(--green);
}

/* ---- sections ---- */

.section {
  padding: 2.6rem 0;
}

.section-alt {
  background: var(--bg-tint);
  border-top: 1px solid var(--purple-border);
  border-bottom: 1px solid var(--purple-border);
}

.prose p + p,
.prose ul,
.prose ol {
  margin-top: 1.15rem;
}

.prose h2 {
  margin-top: 1rem;
  margin-bottom: 0.9rem;
}

.prose img + h2 {
  margin-top: 2rem;
}

.prose h3 {
  margin-top: 1.8rem;
  color: var(--purple);
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: 0.55rem;
}

.prose li::marker {
  color: var(--purple);
}

.prose img {
  margin: 1.6rem auto;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(74, 10, 126, 0.14);
}

.prose img.img-portrait {
  max-width: 420px;
  width: 100%;
}

/* ---- FAQ ---- */

.faq-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--purple);
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list summary h3 {
  color: var(--ink);
  font-size: 1.02rem;
}

.faq-list details[open] summary h3 {
  color: var(--purple);
}

.faq-list details p {
  margin-top: 0.8rem;
  font-size: 0.98rem;
}

#faq h2 {
  text-align: center;
}

/* ---- fineprint ---- */

.fineprint {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.8rem;
  text-align: center;
}

@media (max-width: 640px) {
  .page-hero {
    padding: 2.2rem 0 1.8rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
