:root {
  --near-black: #0b0710;
  --panel: #1b0f30;
  --panel-border: #3a2a5c;
  --deep-violet: #241142;
  --deep-violet-soft: #2e1850;
  --electric-violet: #9645ff;
  --electric-violet-soft: rgba(150, 69, 255, 0.14);
  --highlight: #c9a6ff;
  --cream: #f5efe4;
  --cream-dim: #c9c0d6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--near-black);
  color: var(--cream);
  font-family: "Inter", sans-serif;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 8px;
  line-height: 1.15;
}

.sub {
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  flex: 1;
}

.field-row {
  display: flex;
  gap: 16px;
}

.field-row .field-group {
  min-width: 0;
}

label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-dim);
}

input, select, textarea {
  background: var(--near-black);
  border: 1px solid var(--panel-border);
  color: var(--cream);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--electric-violet);
}

textarea { resize: vertical; }

.toggle-group {
  display: flex;
  gap: 8px;
}

.toggle-option {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--panel-border);
  background: var(--deep-violet-soft);
  color: var(--cream-dim);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.toggle-option.active {
  background: var(--electric-violet);
  color: var(--near-black);
  border-color: var(--electric-violet);
}

.toggle-option.locked {
  cursor: default;
}

.btn-primary {
  width: 100%;
  background: var(--electric-violet);
  color: var(--near-black);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  margin-top: 4px;
}

.btn-primary:hover { opacity: 0.92; }

.hidden { display: none; }

.hero-band {
  background: var(--deep-violet);
  border: 1px solid var(--electric-violet);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--cream-dim);
  margin: 0;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin: 4px 0;
}

.stat-value--lg {
  font-size: 34px;
  color: var(--highlight);
}

.stat-note {
  font-size: 11px;
  color: var(--cream-dim);
  opacity: 0.8;
  margin: 0;
}

/* Flags an inferred (not yet DMA-verified) number, e.g. engagement time
   for a package category reasoned from general norms rather than
   measured. Distinct from the muted .stat-note default so it reads as a
   flag, not just another caption. */
.stat-note--flag {
  color: var(--highlight);
  opacity: 1;
  font-weight: 600;
  cursor: help;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 560px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-box {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 14px;
}

.lead-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  margin: 0 0 6px;
}

.form-status {
  font-size: 13px;
  color: var(--highlight);
  min-height: 18px;
  margin: 10px 0 0;
}

.disclaimer {
  font-size: 11px;
  color: var(--cream-dim);
  opacity: 0.7;
  line-height: 1.5;
  padding: 0 4px;
}

@media (max-width: 520px) {
  .field-row { flex-direction: column; gap: 0; }
  .hero-band { grid-template-columns: 1fr; }
  h1 { font-size: 26px; }
}

/* ------------------------------------------------------------------ */
/* /activations and /engage: two-column hero, below-the-fold content   */
/* ------------------------------------------------------------------ */

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 6px;
}

h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 4px;
}

/* Full-width white hero, breaks out of .wrap's narrow max-width so the
   two columns have room to breathe. Everything below the hero re-enters
   .wrap and keeps the site's existing dark theme, only the hero itself
   is white, per spec. */
.hero-split {
  background: #ffffff;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-split-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* .eyebrow's shared default is var(--highlight), a lighter shade meant
   for the dark theme, override to the literal brand purple here since
   this sits on the hero's white background. */
.hero-copy .eyebrow {
  color: #7b4ff5;
  display: block;
  margin: 0 0 12px;
}

.hero-copy h1 {
  color: #121212;
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-copy .hero-subheading {
  color: #4a4458;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.hero-form {
  display: flex;
  align-items: center;
}

.hero-form .card {
  width: 100%;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .hero-split { min-height: 0; }
  .hero-split-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .hero-copy h1 { font-size: 30px; }
}

/* Direct-answer paragraph, below the hero */
.direct-answer {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Wide section image (hero image, venue image), full width, capped
   height, no caption. */
.section-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 0 28px;
}

@media (min-width: 640px) {
  .section-image { max-height: 420px; }
}

/* Three-image grid with one-line captions */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 32px;
}

.image-grid figure {
  margin: 0;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.image-grid figcaption {
  font-size: 12px;
  color: var(--cream-dim);
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .image-grid { grid-template-columns: 1fr; }
}

/* Visible FAQ, H2 + H3 questions, matches the FAQPage JSON-LD content */
.faq-section {
  margin: 0 0 32px;
}

.faq-section > h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 15px;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
}

.faq-item a {
  color: var(--highlight);
}

/* Post-ROI CTA, shown once results render. Buttons use the exact
   #7b4ff5 brand purple (not var(--electric-violet), which is a
   different shade on these two pages), matching the brand color used
   on the "/" landing page rebrand. */
.cta-block {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 24px;
  margin: 0 0 24px;
  text-align: center;
}

.cta-block p {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cta-btn {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn--primary {
  background: #7b4ff5;
  color: #ffffff;
  border: 2px solid #7b4ff5;
}

.cta-btn--primary:hover { opacity: 0.92; }

.cta-btn--secondary {
  background: transparent;
  color: #7b4ff5;
  border: 2px solid #7b4ff5;
}

.cta-btn--secondary:hover { background: rgba(123, 79, 245, 0.1); }

@media (max-width: 520px) {
  .cta-buttons { flex-direction: column; }
  .cta-btn { max-width: none; }
}
