/* ═══════════════════════════════════════════════════════════
   SNAPTACT — For Events Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ── HERO — Pain First ─────────────────────────────────── */
.hero {
  padding: 140px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dim); border: 1px solid var(--green-glow);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--green);
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2.5s ease infinite; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2.5px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 em { font-style: italic; color: var(--green); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-warm); line-height: 1.6; margin-bottom: 32px;
  max-width: 520px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

/* Hero visual — booth scene */
.hero-visual {
  animation: fadeUp 0.7s ease 0.25s both;
}
.booth-card {
  background: var(--white);
  border: 1px solid var(--gray-whisper);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}
.booth-scene {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booth-qr {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}
.booth-qr .qr-grid {
  width: 80px; height: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 3px;
}
.booth-qr .qr-grid span {
  border-radius: 2px;
  background: var(--green-bright);
  opacity: 0.8;
}
.booth-qr .qr-grid span:nth-child(2n) { opacity: 0.3; background: var(--dark-text-muted); }
.booth-qr .qr-grid span:nth-child(3n) { opacity: 0.6; }
.booth-qr .qr-label {
  font-size: 12px;
  color: var(--dark-text-dim);
  font-weight: 500;
}
.booth-qr .qr-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-bright);
}

.booth-captures {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booth-capture-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(4px);
}
.booth-capture-item .bci-left {
  display: flex; align-items: center; gap: 10px;
}
.booth-capture-item .bci-avatar {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--green-wash); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; font-family: var(--font-mono);
}
.booth-capture-item .bci-name { font-weight: 600; color: var(--ink); }
.booth-capture-item .bci-co { color: var(--gray-warm); font-size: 12px; }
.booth-capture-item .bci-badge {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  background: var(--green-wash); color: var(--green);
}
.booth-card-badge {
  position: absolute;
  top: -10px; right: 24px;
  background: var(--green);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 16px; }
}

/* ── SECTION 2: THREE PAINS ────────────────────────────── */
.pains-section {
  padding: 0 0 var(--section-pad);
}
.pains-label {
  text-align: center;
  margin-bottom: 48px;
}
.pains-label .overline {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.pains-label h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-whisper);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.pain-front {
  padding: 32px 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.pain-stat {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.pain-headline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.pain-detail {
  font-size: 14px;
  color: var(--gray-warm);
  line-height: 1.6;
  flex: 1;
}
.pain-source {
  margin-top: 16px;
  font-size: 11px;
  color: var(--gray-mid);
  font-style: italic;
}

.pain-advantage {
  padding: 20px 28px;
  background: var(--green-dim);
  border-top: 1px solid var(--green-glow);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pain-advantage .adv-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.pain-advantage p {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ── SECTION 3: THE PLAN ───────────────────────────────── */
.plan-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}
.plan-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(22,163,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.plan-label {
  text-align: center;
  margin-bottom: 56px;
}
.plan-label .overline {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.plan-label h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700; color: var(--dark-text); letter-spacing: -2px; line-height: 1.1;
  margin-bottom: 8px;
}
.plan-label p {
  font-size: 16px; color: var(--dark-text-dim);
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.plan-step {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s;
}
.plan-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.plan-step-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: rgba(22,163,74,0.15); line-height: 1; margin-bottom: 16px;
}
.plan-step h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--dark-text); letter-spacing: -0.5px; margin-bottom: 10px;
}
.plan-step p {
  font-size: 14px; color: var(--dark-text-dim); line-height: 1.65;
}
.plan-step .step-visual {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--dark-surface-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.plan-step .step-visual .sv-icon { font-size: 14px; }
.plan-step .step-visual .sv-text { color: var(--green-bright); }
.plan-step .step-visual .sv-dim { color: var(--dark-text-muted); }

.plan-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--dark-text-muted);
  z-index: 1;
}
.plan-step:last-child::after { display: none; }

.plan-aha {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark-surface);
  border: 1px solid rgba(22,163,74,0.15);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.plan-aha .aha-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
.plan-aha h4 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--dark-text); letter-spacing: -0.3px; margin-bottom: 8px;
}
.plan-aha h4 em { font-style: italic; color: var(--green-bright); }
.plan-aha p {
  font-size: 14px; color: var(--dark-text-dim); line-height: 1.65;
}

@media (max-width: 768px) {
  .plan-steps { grid-template-columns: 1fr; }
  .plan-step::after { display: none; }
  .plan-aha { flex-direction: column; padding: 28px; }
}

/* ── SECTION 4: LIVE FEED ──────────────────────────────── */
.feed-section {
  padding: var(--section-pad) 0;
}
.feed-section .feed-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.feed-text .overline {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.feed-text h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 16px;
}
.feed-text p {
  font-size: 16px; color: var(--gray-warm); line-height: 1.65;
  margin-bottom: 16px;
}
.feed-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.feed-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
}
.feed-feature .ff-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-wash); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* The TV-mode feed mockup */
.tv-feed {
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.06);
}
.tv-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--dark-surface);
  border-bottom: 1px solid var(--dark-border);
}
.tv-topbar .tv-left {
  display: flex; align-items: center; gap: 10px;
}
.tv-topbar .tv-left .live-dot {
  width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; animation: pulse 1.5s ease infinite;
}
.tv-topbar .tv-left span {
  font-size: 13px; font-weight: 600; color: var(--dark-text);
}
.tv-topbar .tv-stats {
  display: flex; gap: 20px;
}
.tv-topbar .tv-stat {
  text-align: right;
}
.tv-topbar .tv-stat .ts-num {
  font-family: var(--font-mono); font-size: 16px; font-weight: 600;
  color: var(--green-bright);
}
.tv-topbar .tv-stat .ts-label {
  font-size: 10px; color: var(--dark-text-muted);
}

.tv-items { padding: 8px 0; min-height: 280px; position: relative; }
.tv-items::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, var(--dark));
  pointer-events: none;
}
.tv-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
}
.tv-item .tv-item-left { display: flex; align-items: center; gap: 12px; }
.tv-item .tv-avatar {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(22,163,74,0.1); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
}
.tv-item .tv-name { font-size: 14px; font-weight: 600; color: var(--dark-text); }
.tv-item .tv-email {
  font-family: var(--font-mono); font-size: 11px; color: var(--dark-text-dim);
}
.tv-item .tv-item-right { display: flex; align-items: center; gap: 8px; }
.tv-item .tv-badge {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
  background: rgba(22,163,74,0.1); color: var(--green-bright);
}
.tv-item .tv-time {
  font-size: 11px; color: var(--dark-text-muted);
}

@media (max-width: 768px) {
  .feed-section .feed-layout { grid-template-columns: 1fr; }
}

/* ── SECTION 5: PRICE ANCHOR ──────────────────────────── */
.price-anchor {
  background: var(--ink);
  padding: 56px 0;
}
.price-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  text-align: center;
}
.price-old {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-old .old-label {
  font-size: 13px;
  color: var(--dark-text-muted);
  margin-bottom: 4px;
}
.price-old .old-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  letter-spacing: -2px;
}
.price-old .old-per {
  font-size: 14px;
  color: var(--dark-text-dim);
}
.price-arrow {
  font-size: 32px;
  color: var(--dark-text-muted);
}
.price-new {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-new .new-label {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 4px;
}
.price-new .new-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--green-bright);
  letter-spacing: -2px;
}
.price-new .new-per {
  font-size: 14px;
  color: var(--dark-text-dim);
}

/* ── SECTION 6: TESTIMONIALS ──────────────────────────── */
.testimonials-section {
  padding: var(--section-pad) 0;
}
.test-label {
  text-align: center;
  margin-bottom: 48px;
}
.test-label .overline {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.test-label h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.1;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.test-card {
  background: var(--white);
  border: 1px solid var(--gray-whisper);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.05);
}
.test-card .test-metric {
  display: inline-block;
  background: var(--green-wash);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.test-card blockquote {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}
.test-author {
  display: flex; align-items: center; gap: 12px;
}
.test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--gray-warm);
}
.test-name { font-size: 14px; font-weight: 600; }
.test-role { font-size: 12px; color: var(--gray-mid); }

@media (max-width: 768px) { .test-grid { grid-template-columns: 1fr; } }

/* ── SECTION 7: FAILURE STAKES ─────────────────────────── */
.stakes-section {
  background: var(--cream-deep);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--gray-whisper);
  border-bottom: 1px solid var(--gray-whisper);
}
.stakes-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.stakes-inner .overline {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.stakes-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.stakes-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  max-width: 580px;
  margin: 0 auto 40px;
}
.stake-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-whisper);
}
.stake-step:last-child { border-bottom: none; }
.stake-step .ss-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  margin-top: 2px;
}
.stake-step .ss-dot.bad { background: var(--red-dim); color: var(--red); }
.stake-step .ss-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.stake-step .ss-text span {
  font-size: 14px;
  color: var(--gray-warm);
}

.stakes-contrast {
  background: var(--white);
  border: 2px solid var(--green-glow);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.stakes-contrast .sc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.stakes-contrast p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.stakes-contrast strong { color: var(--green); }

/* ── SECTION 8: FINAL CTA (overrides) ─────────────────── */
.final-cta h2 {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}
.final-cta .cta-sub {
  font-size: 17px; color: var(--gray-warm); margin-bottom: 40px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
