/* --------------------------------------------------
 * Global CSS & Variables (AI Buddies Light Theme)
 * -------------------------------------------------- */
:root {
  --bg-color: #f2f4f6; /* Light gray matching the logo */
  --bg-gradient-top: #f8fafc;
  --surface-color: #ffffff;
  --surface-border: rgba(15, 23, 42, 0.08);
  --surface-border-gold: rgba(0, 114, 255, 0.18); /* Cyan/blue theme border */
  
  --primary-gold: #0072ff; /* Deep blue from logo */
  --secondary-orange: #00c6ff; /* Cyan from logo */
  --gold-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); /* Brand Gradient */
  --gold-glow: 0 4px 15px rgba(0, 114, 255, 0.15);
  --gold-glow-hover: 0 8px 30px rgba(0, 114, 255, 0.35);
  
  --text-main: #1e293b;
  --text-muted: #57657a;
  --text-dark: #ffffff; /* White text for buttons/badges on dark backgrounds */
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at 50% 0%, #e0e6ed 0%, var(--bg-color) 70%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------
 * Typography Utilities
 * -------------------------------------------------- */
.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-red {
  color: #d62828;
  text-shadow: 0 0 10px rgba(214, 40, 40, 0.05);
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-tag.gold {
  color: var(--primary-gold);
  border-color: var(--surface-border-gold);
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

/* --------------------------------------------------
 * Logo Layout
 * -------------------------------------------------- */
.brand-logo-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 114, 255, 0.1));
}

/* --------------------------------------------------
 * Button & CTA Styles
 * -------------------------------------------------- */
.primary-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 8px;
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--gold-glow);
  text-decoration: none;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-hover);
  filter: brightness(1.04);
}

.primary-btn:active {
  transform: translateY(1px);
}

.btn-text {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.btn-subtext {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 3px;
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: none;
}

.secondary-btn:hover {
  background: rgba(0, 114, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 114, 255, 0.1);
}

/* Pulsing glow animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.15);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.35);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.15);
  }
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

/* --------------------------------------------------
 * Sticky Announcement Bar
 * -------------------------------------------------- */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  padding: 8px 0;
  transition: all 0.3s ease;
}

.bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #ff3333;
  background: rgba(255, 51, 51, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.live-indicator .dot {
  width: 5px;
  height: 5px;
  background: #ff3333;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.bar-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  flex-grow: 1;
  margin: 0 15px;
}

.bar-btn {
  background: var(--gold-gradient);
  border: none;
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 114, 255, 0.2);
  transition: all 0.2s ease;
}

.bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 114, 255, 0.35);
}

/* --------------------------------------------------
 * Hero Section
 * -------------------------------------------------- */
.hero-section {
  padding: 30px 0 50px;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 800px;
  font-weight: 800;
}

.hero-subhead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-vsl-container {
  width: 100%;
  max-width: 720px;
  margin: 25px auto 35px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 3px solid #ffd8be; /* Light orange border */
  background: #000000;
}

.hero-vsl-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
}

.hero-cta-wrapper {
  width: 100%;
  max-width: 380px;
  margin-bottom: 30px;
}

.hero-bullets {
  width: 100%;
  max-width: 600px;
  margin: 10px 0 35px;
  text-align: left;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.bullet-item .icon {
  margin-right: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bullet-item .text {
  font-size: 0.9rem;
  color: var(--text-main);
}

.logistics-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 12px 20px;
  width: 100%;
  max-width: 680px;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.log-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.red-dot {
  width: 6px;
  height: 6px;
  background: #ff3333;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

/* --------------------------------------------------
 * Trust Bar Section
 * -------------------------------------------------- */
.trust-bar-section {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.stat-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  padding: 16px 12px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.stat-card:hover {
  border-color: var(--surface-border-gold);
}

.stat-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.brand-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 18px;
  opacity: 0.85;
}

.brand-logos span {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------
 * Problem Section
 * -------------------------------------------------- */
.problem-section {
  padding: 60px 0;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 35px 0;
  text-align: left;
}

.problem-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.problem-card:hover {
  border-color: rgba(0, 198, 255, 0.25);
  transform: translateY(-2px);
}

.prob-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(0, 114, 255, 0.08);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.problem-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pull-quote {
  background: linear-gradient(90deg, rgba(0, 198, 255, 0.04) 0%, rgba(0, 198, 255, 0) 100%);
  border-left: 3px solid #00c6ff;
  padding: 20px;
  margin-top: 40px;
  border-radius: 0 8px 8px 0;
  text-align: left;
}

.pull-quote blockquote {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

/* --------------------------------------------------
 * The Hero Moment (Live AI Call)
 * -------------------------------------------------- */
.hero-moment-section {
  padding: 60px 0;
  background: radial-gradient(circle at 100% 50%, rgba(0, 198, 255, 0.04) 0%, rgba(242, 244, 246, 0) 60%);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.hero-moment-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 30px;
}

.hero-moment-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-moment-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-moment-text .highlight-p {
  color: #0f172a;
  font-size: 1.05rem;
}

.hero-moment-text .cta-mini-text {
  font-weight: 700;
  color: var(--primary-gold);
  margin-top: 5px;
}

/* Waveform Visual Container */
.waveform-container {
  background: #ffffff;
  border: 1px solid var(--surface-border-gold);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.waveform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.call-status {
  display: inline-flex;
  align-items: center;
  color: var(--primary-gold);
}

.green-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.green-dot.animate-pulse {
  animation: pulseDot 1s infinite alternate;
}

.call-time {
  color: var(--text-muted);
}

.waveform-visual-wrapper {
  position: relative;
  background: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
}

.waveform-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.waveform-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 250, 252, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.waveform-play-overlay:hover {
  background: rgba(248, 250, 252, 0.2);
}

.play-icon-shape {
  width: 54px;
  height: 54px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  transition: all 0.2s ease;
  position: relative;
}

/* Play arrow using pure CSS */
.play-icon-shape::before {
  content: '';
  position: absolute;
  left: 22px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
  transition: all 0.2s ease;
}

/* Playing state styles */
.waveform-play-overlay.playing .play-icon-shape::before {
  border-left: none;
  border-top: none;
  border-bottom: none;
  width: 14px;
  height: 16px;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  left: 20px;
}

.waveform-play-overlay:hover .play-icon-shape {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(0, 114, 255, 0.5);
}

.waveform-playback-glowing-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: rgba(0, 198, 255, 0.08);
  border-right: 2px solid var(--primary-gold);
  pointer-events: none;
  transition: width 0.1s linear;
}

.waveform-footer {
  margin-top: 12px;
}

.wave-prompt-box {
  background: rgba(15, 23, 42, 0.03);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.75rem;
  display: flex;
  gap: 8px;
}

.wave-prompt-box .label {
  color: var(--primary-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.wave-prompt-box .val {
  color: var(--text-main);
  font-style: italic;
}

/* --------------------------------------------------
 * What You Walk Away With
 * -------------------------------------------------- */
.walk-away-section {
  padding: 60px 0;
  background: #ffffff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
}

.deliverable-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.deliverable-card:hover {
  border-color: var(--surface-border-gold);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.deliverable-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.deliverable-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.deliverables-footer {
  text-align: center;
  background: rgba(0, 198, 255, 0.03);
  border: 1px solid rgba(0, 198, 255, 0.08);
  padding: 24px;
  border-radius: 8px;
  margin-top: 30px;
}

.deliverables-footer p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.deliverables-footer .sub-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* --------------------------------------------------
 * The 7 Modules Section
 * -------------------------------------------------- */
.modules-section {
  padding: 60px 0;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 35px;
}

.module-item {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.module-item:hover {
  border-color: var(--surface-border-gold);
  transform: translateY(-2px);
}

.module-header {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.module-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  background: rgba(0, 114, 255, 0.08);
  padding: 6px 10px;
  border-radius: 6px;
}

.module-title-box h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.module-title-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.preview-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  color: #0f172a;
}

/* --------------------------------------------------
 * The Agenda Timeline
 * -------------------------------------------------- */
.agenda-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.agenda-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.agenda-card:hover {
  border-color: var(--surface-border-gold);
}

.agenda-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.act-tag {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.7rem;
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 3px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.agenda-header h3 {
  font-size: 1.15rem;
  flex-grow: 1;
}

.time-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(15, 23, 42, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}

.agenda-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------
 * Who This Is For / Not For
 * -------------------------------------------------- */
.who-is-it-for-section {
  padding: 60px 0;
}

.audience-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.for-column h3, .not-for-column h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.audience-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.audience-card:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.audience-card h4 {
  font-size: 1.05rem;
  color: var(--primary-gold);
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Not For list styling */
.not-for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.not-for-list li {
  display: flex;
  align-items: flex-start;
  background: rgba(239, 68, 68, 0.02);
  border: 1px solid rgba(239, 68, 68, 0.06);
  padding: 16px;
  border-radius: 8px;
}

.bullet-x {
  margin-right: 12px;
  flex-shrink: 0;
}

.not-for-list li p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------
 * Price Framing Section
 * -------------------------------------------------- */
.price-framing-section {
  padding: 60px 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 198, 255, 0.04) 0%, rgba(242, 244, 246, 0) 70%);
}

.price-box {
  background: #ffffff;
  border: 1px solid var(--surface-border-gold);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  max-width: 680px;
  margin: 0 auto;
}

.price-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-accent {
  background: rgba(0, 198, 255, 0.03);
  border: 1px dashed var(--surface-border-gold);
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0 30px;
}

.price-value {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 700;
  max-width: 320px;
  margin: 0 auto;
}

.price-cta {
  max-width: 320px;
  margin: 0 auto;
}

/* --------------------------------------------------
 * Comparison Section
 * -------------------------------------------------- */
.difference-section {
  padding: 60px 0;
}

.comparison-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.comparison-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.comparison-card h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--surface-border);
}

.comparison-card.typical h3 {
  color: var(--text-muted);
}

.comparison-card.summit h3 {
  color: var(--primary-gold);
}

.comparison-card.active-card {
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.08);
}

.summit-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 114, 255, 0.2);
}

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-card li {
  font-size: 0.85rem;
  position: relative;
  padding-left: 20px;
}

.comparison-card.typical li::before {
  content: '✕';
  color: #ef4444;
  position: absolute;
  left: 0;
}

.comparison-card.summit li::before {
  content: '✓';
  color: #10b981;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --------------------------------------------------
 * Meet the Host Section
 * -------------------------------------------------- */
.host-section {
  padding: 60px 0;
  background: #f8fafc;
}

.host-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.host-image-wrapper {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--surface-border-gold);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.host-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.host-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.host-title {
  font-size: 1.6rem;
  line-height: 1.3;
}

.host-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.host-designation {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -10px;
  font-weight: 600;
}

.host-bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.host-bio p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.host-stats {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.host-stat-item {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  padding: 10px 15px;
  border-radius: 6px;
  flex-grow: 1;
  text-align: center;
}

.host-stat-item strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: #0f172a;
}

.host-stat-item span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.host-badge {
  background: rgba(0, 114, 255, 0.06);
  border: 1px solid var(--surface-border-gold);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  display: inline-block;
  align-self: flex-start;
}

.host-clients-list {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.host-clients-list strong {
  color: #0f172a;
}

/* --------------------------------------------------
 * Proof Section (Confidential Account Mockups)
 * -------------------------------------------------- */
.proof-section {
  padding: 60px 0;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 35px;
}

.proof-item {
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
}

.proof-item-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Do not crop the image, maintain original aspect */
}

/* For images without pre-drawn borders (n8n canvases & voice transcripts) */
.proof-item-with-css-border {
  border: 2.5px solid #ffd8be; /* Light orange outline matching the pre-drawn one */
  border-radius: 24px;       /* Rounded corners matching the other images */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.03);
}

/* For sales images to clip excess white margin outside the pre-drawn border */
.proof-item-clipped {
  border-radius: 24px;
  overflow: hidden;
}

.proof-item-clipped .proof-item-img {
  transform: scale(1.13);
  transform-origin: center center;
}

.proof-item:hover {
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .proof-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* --------------------------------------------------
 * Testimonials Section (WhatsApp styling)
 * -------------------------------------------------- */
.testimonials-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.testimonials-tabs {
  display: flex;
  gap: 10px;
  margin: 25px 0;
  justify-content: center;
}

.tab-btn {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(0, 114, 255, 0.2);
}

.testimonials-wrapper {
  display: none;
}

.testimonials-wrapper.active-tab {
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.testimonial-card:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
}

.user-avatar-placeholder.bg-gold {
  background: rgba(0, 198, 255, 0.1);
  color: var(--primary-gold);
  border: 1px solid var(--surface-border-gold);
}

.testimonial-header h3 {
  font-size: 0.95rem;
}

.testimonial-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* WhatsApp bubble styling */
.whatsapp-bubble-sim {
  background: #e7f5ed;
  border-radius: 0 12px 12px 12px;
  padding: 12px;
  position: relative;
  border-left: 3px solid #25d366;
}

.whatsapp-bubble-sim .msg {
  font-size: 0.82rem;
  color: #1e293b;
  line-height: 1.45;
}

.whatsapp-bubble-sim .time-stamp {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 5px;
}

/* Results test card styling */
.result-badge {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 12px;
}

.testimonial-card.results .quote {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-style: italic;
}

/* --------------------------------------------------
 * Bonuses Section
 * -------------------------------------------------- */
.bonuses-section {
  padding: 60px 0;
}

.bonuses-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 30px 0;
}

.bonus-row {
  display: flex;
  gap: 15px;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.bonus-row:hover {
  border-color: var(--surface-border-gold);
}

.bonus-icon {
  font-size: 1.4rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.bonus-details h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bonus-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bonus-compliance-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* --------------------------------------------------
 * Scarcity Banner Section
 * -------------------------------------------------- */
.scarcity-banner {
  padding: 25px 0;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.1) 0%, rgba(37, 99, 235, 0.04) 100%);
  border-top: 1px solid var(--surface-border-gold);
  border-bottom: 1px solid var(--surface-border-gold);
}

.scarcity-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.seats-counter-badge {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: #ef4444;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.scarcity-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
 * FAQ Accordion Section
 * -------------------------------------------------- */
.faq-section {
  padding: 60px 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.01);
}

.faq-item:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #0f172a;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-toggle-icon {
  font-size: 1.1rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-bottom: 18px;
}

/* Active state for accordion */
.faq-item.active-faq .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active-faq .faq-answer {
  max-height: 200px; /* Arbitrary enough height to show text */
}

/* --------------------------------------------------
 * Final Close Section
 * -------------------------------------------------- */
.final-close-section {
  padding: 60px 0;
}

.final-box {
  background: radial-gradient(circle at 0% 100%, rgba(0, 198, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.final-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.date-rem {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin: 20px 0 25px;
}

/* --------------------------------------------------
 * Footer Section (Contrasting deep slate/navy footer)
 * -------------------------------------------------- */
.footer-section {
  padding: 40px 0;
  background: #0f172a;
  border-top: 1px solid var(--surface-border);
  text-align: center;
}

.facebook-disclaimer {
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 15px;
}

.earnings-disclaimer {
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.75rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--secondary-orange);
}

.copy-text {
  font-size: 0.7rem;
  color: #64748b;
}

/* --------------------------------------------------
 * Interactive Modals (Registration & Exit-Intent)
 * -------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 15px;
}

.modal-overlay.active-modal {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--surface-border-gold);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active-modal .modal-card {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #0f172a;
}

.modal-header {
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--primary-gold);
}

.modal-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

#lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-group input, .form-group select {
  background: #f8fafc;
  border: 1px solid var(--surface-border);
  color: #0f172a;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary-gold);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  overflow: hidden;
}

.phone-input-wrapper input {
  border: none;
  background: transparent;
}

.phone-input-wrapper input:focus {
  border: none;
}

.country-code {
  padding: 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  border-right: 1px solid var(--surface-border);
}

.commitment-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
  background: rgba(239, 68, 68, 0.02);
  border: 1px solid rgba(239, 68, 68, 0.06);
  padding: 12px;
  border-radius: 6px;
}

.commitment-wrapper input[type="checkbox"] {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: var(--primary-gold);
}

.commitment-wrapper label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.commitment-wrapper input[type="checkbox"]:checked + label {
  color: #0f172a;
}

.submit-btn {
  margin-top: 10px;
  color: #ffffff;
}

/* Exit-Intent Modal Specifics */
.exit-modal-card {
  max-width: 420px;
  text-align: center;
  border-color: #ef4444;
}

.exit-modal-content {
  padding: 10px 0 0;
}

.exit-alert-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 8px;
  animation: pulseIcon 1.5s infinite alternate;
}

@keyframes pulseIcon {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

.exit-modal-content h3 {
  font-size: 1.4rem;
  color: #ef4444;
  margin-bottom: 8px;
}

.exit-text {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 12px;
}

.highlight-seats {
  color: #ef4444;
  font-weight: 700;
}

.exit-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.exit-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exit-decline {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

.exit-decline:hover {
  color: #0f172a;
}


/* --------------------------------------------------
 * Media Queries for Desktop layout (768px+)
 * -------------------------------------------------- */
@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .hero-section {
    padding: 60px 0 90px;
  }
  
  .hero-title {
    font-size: 3.6rem;
  }
  
  .hero-subhead {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    max-width: 840px;
  }
  
  .bullet-item .text {
    font-size: 0.95rem;
  }
  
  /* Trust Bar grid */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stat-num {
    font-size: 2.1rem;
  }
  
  /* Problem Grid */
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  /* Live AI Call Split */
  .hero-moment-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-moment-text, .hero-moment-visual {
    flex: 1;
  }
  
  /* Deliverables Grid */
  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .deliverable-card:nth-child(7) {
    grid-column: span 3;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Curriculum Modules Layout */
  .modules-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .module-item {
    height: 100%;
  }

  .module-item:nth-child(7) {
    grid-column: span 3;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .module-header {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
  }
  
  /* Agenda Grid */
  .agenda-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  /* Audience Columns split */
  .audience-wrapper {
    flex-direction: row;
  }
  
  .for-column {
    flex: 1.7;
  }
  
  .for-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .not-for-column {
    flex: 1.3;
    border-left: 1px solid var(--surface-border);
    padding-left: 30px;
  }
  
  /* Comparison Grid split */
  .comparison-container {
    flex-direction: row;
    align-items: stretch;
  }
  
  .comparison-card {
    flex: 1;
    padding: 35px 30px;
  }
  
  /* Host Split layout */
  .host-container {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .host-image-wrapper {
    flex: 1.1;
    max-width: none;
  }
  
  .host-info {
    flex: 1.9;
  }
  
  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  /* Bonuses Grid */
  .bonuses-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Scarcity Banner Row style */
  .scarcity-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .scarcity-banner .primary-btn {
    width: auto;
    min-width: 250px;
  }
}


/* ==================================================
 * ENHANCEMENT LAYER
 * Everything below was added for the funnel / motion /
 * accessibility pass. Kept at the end of the file so the
 * original cascade above is untouched.
 * ================================================== */

/* --------------------------------------------------
 * Scroll reveal
 * The .js-reveal guard is set by an inline script in <head>,
 * so if JS never runs the content simply stays visible.
 * -------------------------------------------------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* --------------------------------------------------
 * Hero — animated brand mesh + headline shimmer
 * -------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

.hero-section::before {
  width: 520px;
  height: 520px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.28) 0%, rgba(0, 198, 255, 0) 70%);
  animation: meshDriftA 18s ease-in-out infinite alternate;
}

.hero-section::after {
  width: 460px;
  height: 460px;
  top: -140px;
  right: -180px;
  background: radial-gradient(circle, rgba(0, 114, 255, 0.22) 0%, rgba(0, 114, 255, 0) 70%);
  animation: meshDriftB 22s ease-in-out infinite alternate;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes meshDriftA {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(70px, 50px, 0) scale(1.12); }
}

@keyframes meshDriftB {
  0%   { transform: translate3d(0, 0, 0) scale(1.08); }
  100% { transform: translate3d(-60px, 60px, 0) scale(1); }
}

/* Slow light sweep across the gradient headline text */
.hero-title .gold-gradient {
  background: linear-gradient(100deg,
              #00c6ff 0%, #0072ff 35%, #7fd8ff 50%, #0072ff 65%, #00c6ff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 6s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-tag {
  animation: tagDrop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes tagDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------
 * Hero VSL — click-to-play facade
 * -------------------------------------------------- */
.hero-vsl-container {
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-vsl-container:hover {
  box-shadow: 0 18px 50px rgba(0, 114, 255, 0.22);
}

.vsl-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.vsl-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.vsl-facade:hover .vsl-poster {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.vsl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

/* Expanding ring, so the play target reads as live rather than static */
.vsl-play-btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: playRing 2.4s ease-out infinite;
}

@keyframes playRing {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.vsl-facade:hover .vsl-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.vsl-play-triangle {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid var(--primary-gold);
}

.vsl-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}

.vsl-facade.is-loading .vsl-play-btn {
  opacity: 0.45;
  animation: pulseDot 0.9s infinite;
}

.vsl-unavailable {
  padding: 26px 20px;
  background: var(--surface-color);
  text-align: center;
}

.vsl-unavailable p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.vsl-fallback-cta {
  max-width: 320px;
  margin: 0 auto;
}

.vsl-failed {
  border-color: var(--surface-border);
  background: var(--surface-color);
}

/* --------------------------------------------------
 * Inline section CTAs (the new conversion points)
 * -------------------------------------------------- */
.section-cta {
  padding: 4px 0 44px;
}

.section-cta .container {
  display: flex;
  justify-content: center;
}

.section-cta-btn {
  max-width: 380px;
  position: relative;
  overflow: hidden;
}

/* Light sweep on hover, shared by every primary button */
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%,
              rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.primary-btn {
  position: relative;
  overflow: hidden;
}

.primary-btn:hover::after {
  left: 125%;
}

.secondary-btn::after {
  display: none;
}

/* --------------------------------------------------
 * Announcement bar — hides on the way down, returns on the way up
 * -------------------------------------------------- */
.announcement-bar {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.announcement-bar.bar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* --------------------------------------------------
 * Sticky mobile CTA
 * -------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--surface-border);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.1);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(115%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.sticky-cta-seats {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 800;
  color: #d62828;
  white-space: nowrap;
}

.sticky-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d62828;
  margin-right: 6px;
  animation: pulseDot 1.5s infinite;
}

/* inline-flex collapses the whitespace text node, so the label
   carries its own spacing instead of relying on a literal space */
.sticky-seats-label {
  margin-left: 4px;
}

.sticky-cta-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.sticky-cta-btn {
  flex-shrink: 0;
  background: var(--gold-gradient);
  border: none;
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 114, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-btn:active {
  transform: scale(0.97);
}

/* Desktop keeps the top bar; the bottom bar is a mobile affordance */
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* The seats number flashes when it drops, so the change is noticed */
.seat-tick {
  display: inline-block;
  animation: seatTick 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes seatTick {
  0%   { transform: translateY(-8px) scale(1.35); opacity: 0; color: #ff3333; }
  40%  { transform: translateY(0) scale(1.2); opacity: 1; color: #ff3333; }
  100% { transform: none; opacity: 1; }
}

/* --------------------------------------------------
 * Card depth system — consistent lift across every grid
 * -------------------------------------------------- */
.stat-card,
.problem-card,
.deliverable-card,
.agenda-card,
.audience-card,
.module-item,
.bonus-row,
.testimonial-card,
.proof-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.stat-card:hover,
.problem-card:hover,
.deliverable-card:hover,
.agenda-card:hover,
.audience-card:hover,
.bonus-row:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  border-color: var(--surface-border-gold);
}

.proof-item:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
}

/* --------------------------------------------------
 * Modules — numbered timeline with a connecting spine
 * -------------------------------------------------- */
.modules-list {
  position: relative;
}

/* Spine only makes sense while the modules stack in one column.
   From 768px up the list becomes a 3-column grid, so it is dropped. */
@media (max-width: 767px) {
  .modules-list::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg,
                var(--primary-gold) 0%,
                rgba(0, 114, 255, 0.35) 60%,
                rgba(0, 114, 255, 0) 100%);
    opacity: 0.35;
  }
}

.module-item {
  position: relative;
}

.module-item .module-num {
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}

@media (max-width: 767px) {
  .module-item:hover {
    transform: translateX(5px);
  }
}

@media (min-width: 768px) {
  .module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
    border-color: var(--surface-border-gold);
  }
}

.module-item:hover .module-num {
  transform: scale(1.09);
  box-shadow: 0 6px 18px rgba(0, 114, 255, 0.3);
}

/* --------------------------------------------------
 * Agenda — act cards read as a progression
 * -------------------------------------------------- */
.agenda-card {
  position: relative;
  overflow: hidden;
}

.agenda-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.agenda-card.is-revealed::before,
.agenda-card:hover::before {
  transform: scaleX(1);
}

/* --------------------------------------------------
 * Testimonial tabs — crossfade instead of an instant jump
 * -------------------------------------------------- */
.testimonials-wrapper {
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-wrapper:not(.active-tab) {
  opacity: 0;
  transform: translateY(10px);
}

.testimonials-wrapper.active-tab {
  opacity: 1;
  transform: none;
}

/* The active tab is already a filled pill, so it needs no underline;
   the inactive one just gets a clearer hover. */
.tab-btn:not(.active):hover {
  border-color: var(--surface-border-gold);
  color: var(--primary-gold);
}

/* --------------------------------------------------
 * FAQ — height is measured in JS so long answers never clip
 * -------------------------------------------------- */
.faq-item.active-faq {
  border-color: var(--surface-border-gold);
  box-shadow: 0 8px 24px rgba(0, 114, 255, 0.07);
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-toggle-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

/* --------------------------------------------------
 * Modal — entrance, progress, steps, inline errors
 * -------------------------------------------------- */
.modal-card {
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-overlay.active-modal .modal-card {
  transform: translateY(0) scale(1);
}

.modal-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin-bottom: 6px;
}

.modal-progress-fill {
  height: 100%;
  width: 50%;
  border-radius: 999px;
  background: var(--gold-gradient);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.form-step.active-step {
  display: flex;
  animation: stepIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}

.field-error {
  font-size: 0.72rem;
  font-weight: 600;
  color: #d62828;
  min-height: 0;
  line-height: 1.35;
}

.field-error:not(:empty) {
  margin-top: -2px;
  animation: errorIn 0.25s ease;
}

@keyframes errorIn {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: none; }
}

.form-group input.has-error,
.form-group select.has-error,
.phone-input-wrapper:has(input.has-error) {
  border-color: #d62828;
  background: rgba(214, 40, 40, 0.03);
}

.form-back-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px;
  align-self: center;
  transition: color 0.2s ease;
}

.form-back-btn:hover {
  color: var(--primary-gold);
}

/* Submitting state — stops double submits and shows the click landed */
.primary-btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.primary-btn.is-loading .btn-text {
  visibility: hidden;
}

.primary-btn.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------
 * Section rhythm — alternating tints so 20 sections
 * do not read as one continuous wall
 * -------------------------------------------------- */
.walk-away-section,
.agenda-section,
.difference-section,
.bonuses-section {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

/* --------------------------------------------------
 * Accessibility — a visible keyboard focus ring everywhere
 * -------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.close-btn:focus-visible,
.faq-question:focus-visible {
  outline-offset: -2px;
}

/* --------------------------------------------------
 * Reduced motion — keep the layout, drop the movement
 * -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* ==================================================
 * DEPTH PASS
 * The page read washed out: background, cards and borders
 * all sat within a few percent of each other. This raises
 * contrast and introduces a light/dark section rhythm.
 * ================================================== */

:root {
  --surface-border: rgba(15, 23, 42, 0.11);
  --surface-border-gold: rgba(0, 114, 255, 0.28);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 2px 4px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 4px 8px rgba(15, 23, 42, 0.06), 0 24px 56px rgba(15, 23, 42, 0.13);
  --ink: #0b1220;
  --ink-soft: #131c2e;
}

body {
  background-color: #eaeef3;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(0, 198, 255, 0.10) 0%, rgba(0, 198, 255, 0) 45%),
    radial-gradient(circle at 85% 12%, rgba(0, 114, 255, 0.08) 0%, rgba(0, 114, 255, 0) 40%),
    linear-gradient(180deg, #f4f7fa 0%, #eaeef3 55%, #e4e9f0 100%);
  background-attachment: fixed;
}

/* Cards now sit clearly above the page instead of blending into it */
.stat-card,
.problem-card,
.deliverable-card,
.agenda-card,
.audience-card,
.module-item,
.bonus-row,
.testimonial-card,
.faq-item,
.comparison-card,
.price-box {
  box-shadow: var(--shadow-sm);
  border-color: var(--surface-border);
}

.stat-card:hover,
.problem-card:hover,
.deliverable-card:hover,
.agenda-card:hover,
.audience-card:hover,
.bonus-row:hover,
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.price-box {
  box-shadow: var(--shadow-lg);
}

.text-muted,
.stat-label,
.problem-card p,
.deliverable-card p,
.agenda-card p,
.audience-card p,
.module-title-box p {
  color: #4a5769;
}

/* Numbers are the proof on this page — let them carry weight */
.stat-num {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* --------------------------------------------------
 * Dark punch sections
 * Light -> dark -> light gives the page rhythm, and a CTA
 * on a dark ground carries far more weight than on white.
 * -------------------------------------------------- */
.dark-section {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 55%, #0a1a33 100%);
  border-top: 1px solid rgba(0, 198, 255, 0.22);
  border-bottom: 1px solid rgba(0, 198, 255, 0.22);
  overflow: hidden;
  isolation: isolate;
}

/* Brand glow bleeding in from the edges */
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 198, 255, 0.20) 0%, rgba(0, 198, 255, 0) 45%),
    radial-gradient(circle at 88% 82%, rgba(0, 114, 255, 0.22) 0%, rgba(0, 114, 255, 0) 50%);
  pointer-events: none;
}

/* Fine grid, so the dark ground has texture instead of flat black */
.dark-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 78%);
  pointer-events: none;
}

.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section .section-title,
.dark-section .price-value {
  color: #ffffff;
}

.dark-section p,
.dark-section li,
.dark-section .price-label,
.dark-section .final-desc,
.dark-section .hero-moment-text p {
  color: #b8c6da;
}

.dark-section strong {
  color: #ffffff;
}

.dark-section .section-tag {
  color: #7fd8ff;
  border-color: rgba(127, 216, 255, 0.35);
  background: rgba(0, 198, 255, 0.08);
}

.dark-section .highlight-red {
  color: #ff7a7a;
}

.dark-section .date-rem {
  color: #7fd8ff;
}

/* Boxes inside a dark section become translucent glass */
.dark-section .price-box,
.dark-section .final-box,
.dark-section .waveform-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.dark-section .wave-prompt-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-section .wave-prompt-box .label {
  color: #7fd8ff;
}

.dark-section .wave-prompt-box .val,
.dark-section .call-time {
  color: #d3dced;
}

/* Outline button needs to read against dark, not against white */
.dark-section .secondary-btn {
  border-color: #7fd8ff;
  color: #7fd8ff;
  background: rgba(0, 198, 255, 0.06);
}

.dark-section .secondary-btn:hover {
  background: rgba(0, 198, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 0 26px rgba(0, 198, 255, 0.3);
}

.dark-section .seats-counter-badge {
  background: rgba(255, 51, 51, 0.16);
  border: 1px solid rgba(255, 122, 122, 0.45);
  color: #ff9d9d;
}

/* The scarcity CTA is the loudest moment on the page */
.dark-section .primary-btn {
  box-shadow: 0 8px 34px rgba(0, 168, 255, 0.5);
}

.dark-section .primary-btn:hover {
  box-shadow: 0 12px 44px rgba(0, 168, 255, 0.68);
}

.scarcity-banner.dark-section {
  padding: 40px 0;
}

/* The trust bar sits directly under the hero and should feel joined to it */
.trust-bar-section {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Slightly stronger separation for the tinted sections */
.walk-away-section,
.agenda-section,
.difference-section,
.bonuses-section {
  background: rgba(255, 255, 255, 0.62);
}


/* ==================================================
 * COUNTDOWN + FLOATING UI
 * ================================================== */

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto 26px;
  padding: 14px 18px;
  max-width: 380px;
  width: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--surface-border-gold);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.countdown-label {
  font-family: var(--font-title);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d62828;
}

.countdown-units {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
}

.cd-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  /* tabular figures alone still jitter on some faces at this size */
  font-feature-settings: "tnum";
}

.cd-cap {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

.cd-sep {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-gold);
  opacity: 0.4;
  padding-top: 1px;
}

.countdown.countdown-ended {
  display: none;
}

/* Compact variant sitting inside the dark scarcity banner */
.countdown.compact {
  margin: 14px 0 0;
  padding: 10px 14px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.dark-section .countdown.compact .cd-num {
  color: #ffffff;
}

.dark-section .countdown.compact .cd-cap {
  color: #9fb2cc;
}

.dark-section .countdown.compact .cd-sep {
  color: #7fd8ff;
  opacity: 0.6;
}

/* --------------------------------------------------
 * Floating seats badge (desktop only — mobile already
 * carries the seat count in the sticky bar)
 * -------------------------------------------------- */
.floating-seats {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 8500;
  display: none;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.92);
  border: 1px solid rgba(255, 122, 122, 0.4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-seats.is-visible {
  opacity: 1;
  transform: none;
}

.fs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5a5a;
  box-shadow: 0 0 10px rgba(255, 90, 90, 0.9);
  animation: pulseDot 1.5s infinite;
}

.fs-num {
  color: #ff9d9d;
}

.fs-label {
  font-weight: 600;
  color: #b8c6da;
}

@media (min-width: 768px) {
  .floating-seats {
    display: flex;
  }
}

/* --------------------------------------------------
 * WhatsApp shortcut — some visitors will never fill a
 * form but will happily send a message
 * -------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 92px; /* clears the mobile sticky CTA bar */
  z-index: 8600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease;
  pointer-events: none;
  text-decoration: none;
}

.whatsapp-fab.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.whatsapp-fab:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  transform: scale(1.07);
}

/* Soft outward pulse so it is noticed without demanding attention */
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: playRing 2.8s ease-out infinite;
  pointer-events: none;
}

@media (min-width: 768px) {
  .whatsapp-fab {
    right: 24px;
    bottom: 24px; /* no sticky bar on desktop */
    width: 58px;
    height: 58px;
  }
}


/* ==================================================
 * DARK HERO
 * The whole page read washed out because it opened on a
 * pale field. A dark hero gives the first screen contrast,
 * makes the video thumbnail and the CTA the brightest
 * things on it, and matches the subject matter.
 * ================================================== */

.announcement-bar {
  background: rgba(9, 15, 26, 0.88);
  border-bottom: 1px solid rgba(0, 198, 255, 0.22);
}

.bar-text {
  color: #dbe5f2;
}

.live-indicator {
  color: #ff8080;
  background: rgba(255, 51, 51, 0.16);
}

.hero-section {
  background: linear-gradient(170deg, #070d18 0%, var(--ink) 45%, #0a1a33 100%);
  border-bottom: 1px solid rgba(0, 198, 255, 0.22);
  padding: 40px 0 60px;
}

/* Stronger, more visible mesh than the light version carried */
.hero-section::before {
  background: radial-gradient(circle, rgba(0, 198, 255, 0.5) 0%, rgba(0, 198, 255, 0) 70%);
}

.hero-section::after {
  background: radial-gradient(circle, rgba(0, 114, 255, 0.45) 0%, rgba(0, 114, 255, 0) 70%);
}

/* Same faint grid as the other dark sections, for continuity */
.hero-section > .container::before {
  content: "";
  position: absolute;
  inset: -40px -50vw;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 15%, transparent 72%);
  pointer-events: none;
}

.hero-title {
  color: #ffffff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-tag {
  color: #7fd8ff;
}

.hero-subhead {
  color: #b8c6da;
}

.bullet-item .text {
  color: #cbd7e8;
}

.bullet-item .text strong {
  color: #ffffff;
}

/* Glass treatment for the blocks sitting on the dark hero */
.logistics-strip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.log-item {
  color: #cbd7e8;
}

.hero-section .countdown {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-section .countdown-label {
  color: #ff8080;
}

.hero-section .cd-num {
  color: #ffffff;
}

.hero-section .cd-cap {
  color: #9fb2cc;
}

.hero-section .cd-sep {
  color: #7fd8ff;
  opacity: 0.55;
}

/* The hero CTA should be the brightest object on the first screen */
.hero-cta-wrapper .primary-btn {
  box-shadow: 0 8px 38px rgba(0, 168, 255, 0.55);
}

.hero-cta-wrapper .primary-btn:hover {
  box-shadow: 0 14px 50px rgba(0, 168, 255, 0.75);
}

/* Video frame: the warm border clashed against the dark ground */
.hero-vsl-container {
  border-color: rgba(0, 198, 255, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 198, 255, 0.12);
}

.hero-vsl-container:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 198, 255, 0.28);
}

/* The trust bar now bridges a dark hero into the light body */
.trust-bar-section {
  background: linear-gradient(180deg, rgba(226, 233, 242, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-top: none;
}


/* Proof cards carried a leftover warm outline that clashed with the
   blue brand palette now running through the page. */
.proof-item-with-css-border {
  border-color: rgba(0, 114, 255, 0.22);
  box-shadow: var(--shadow-sm);
}

.proof-item-with-css-border:hover {
  border-color: var(--surface-border-gold);
}


/* ==================================================
 * THANK-YOU / CONFIRMATION PAGE
 * Reuses the landing page tokens, dark-section treatment
 * and countdown so both pages read as one product.
 * ================================================== */

.ty-page {
  background-attachment: fixed;
}

/* --------------------------------------------------
 * Confirmation hero
 * -------------------------------------------------- */
.ty-hero {
  padding: 50px 0 60px;
  border-top: none;
}

.ty-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ty-check {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 198, 255, 0.12);
  border: 1px solid rgba(127, 216, 255, 0.4);
  margin-bottom: 20px;
  color: #7fd8ff;
}

.ty-check-circle {
  stroke: rgba(127, 216, 255, 0.45);
  stroke-dasharray: 152;
  stroke-dashoffset: 152;
  animation: tyCircle 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ty-check-mark {
  stroke: #7fd8ff;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: tyMark 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes tyCircle { to { stroke-dashoffset: 0; } }
@keyframes tyMark   { to { stroke-dashoffset: 0; } }

.ty-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7fd8ff;
  background: rgba(0, 198, 255, 0.1);
  border: 1px solid rgba(127, 216, 255, 0.35);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.ty-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 14px;
  max-width: 760px;
}

.ty-subhead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #b8c6da;
  max-width: 620px;
  margin-bottom: 28px;
}

/* Session facts, in a glass card on the dark ground */
.ty-session-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 6px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  margin-bottom: 26px;
}

.ty-session-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.ty-session-row:last-child {
  border-bottom: none;
}

.ty-k {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8ea3bf;
}

.ty-v {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

.ty-hero .countdown {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}

.ty-hero .countdown-label { color: #ff8080; }
.ty-hero .cd-num { color: #ffffff; }
.ty-hero .cd-cap { color: #9fb2cc; }
.ty-hero .cd-sep { color: #7fd8ff; opacity: 0.55; }

/* --------------------------------------------------
 * The three steps
 * -------------------------------------------------- */
.ty-steps-section {
  padding: 50px 0;
}

.ty-step {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

/* Step 1 is the action that actually matters — give it the brand frame */
.ty-step-primary {
  border-color: var(--surface-border-gold);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(0, 114, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.ty-step-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.ty-step-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.ty-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--gold-gradient);
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.28);
}

.ty-step-head h2 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.ty-step-why {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4a5769;
}

.ty-group-box {
  margin-top: 4px;
}

.ty-group-btn {
  text-decoration: none;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 168, 255, 0.4);
}

.ty-group-btn:hover {
  box-shadow: 0 12px 40px rgba(0, 168, 255, 0.6);
}

/* Inert state while no group link is configured */
.ty-group-btn.is-disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  filter: none;
}

.ty-group-btn.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.ty-group-btn.is-disabled::after {
  display: none;
}

.ty-group-pending {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 176, 32, 0.08);
  border: 1px solid rgba(255, 176, 32, 0.3);
}

.ty-pending-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulseDot 1.5s infinite;
}

.ty-group-pending p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #7a5a12;
}

.ty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ty-secondary-action {
  flex: 1 1 200px;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--surface-border-gold);
  background: rgba(0, 114, 255, 0.04);
  color: var(--primary-gold);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ty-secondary-action:hover {
  background: rgba(0, 114, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.16);
}

.ty-prep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ty-prep-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #4a5769;
}

.ty-tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--gold-gradient);
}

/* --------------------------------------------------
 * What you walk away with
 * -------------------------------------------------- */
.ty-next-section {
  padding: 55px 0;
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  text-align: center;
}

.ty-deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 28px 0 22px;
}

.ty-deliverable {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.ty-deliverable:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ty-d-icon {
  font-size: 1.15rem;
}

.ty-note {
  font-size: 0.85rem;
  color: #4a5769;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

/* --------------------------------------------------
 * No-recording reminder
 * -------------------------------------------------- */
.ty-warning-section {
  padding: 40px 0;
}

.ty-warning {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.ty-warning-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.ty-warning h2 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 7px;
}

.ty-warning p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #b8c6da;
}

/* --------------------------------------------------
 * Help
 * -------------------------------------------------- */
.ty-help-section {
  padding: 50px 0 60px;
  text-align: center;
}

.ty-help-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.ty-help-text {
  font-size: 0.88rem;
  color: #4a5769;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

.ty-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 8px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.ty-help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.48);
}

.ty-back {
  margin-top: 24px;
  font-size: 0.82rem;
}

.ty-back a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ty-back a:hover {
  color: var(--primary-gold);
}

/* --------------------------------------------------
 * Desktop
 * -------------------------------------------------- */
@media (min-width: 768px) {
  .ty-hero {
    padding: 70px 0 80px;
  }

  .ty-title {
    font-size: 3rem;
  }

  .ty-subhead {
    font-size: 1.05rem;
  }

  .ty-step {
    padding: 30px 28px;
  }

  .ty-step-head h2 {
    font-size: 1.35rem;
  }

  .ty-deliverables {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .ty-warning h2 {
    font-size: 1.35rem;
  }
}

.ty-confirm-fallback {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.ty-confirm-fallback a {
  color: var(--primary-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* The HTML hidden attribute is applied by the UA stylesheet, so any
   component rule that sets display (e.g. .ty-group-pending) silently
   overrides it and the element stays on screen. Make hidden authoritative. */
[hidden] {
  display: none !important;
}


/* ==================================================
 * IMAGE + SECTION FIXES
 * ================================================== */

/* Explicit width/height attributes were added to every image to stop layout
   shift, but an element with `width: 100%` and no height rule then takes the
   HTML height attribute as its used height. That forced the host portrait to
   370x972 and cover-cropped it hard. Pin height so the attributes only ever
   reserve space, never dictate the rendered box. */
.host-img,
.proof-item-img {
  height: auto;
}

/* --------------------------------------------------
 * Host portrait — sized to sit beside its own copy
 * -------------------------------------------------- */
.host-image-wrapper {
  max-width: 300px;
  box-shadow: var(--shadow-md);
}

.host-img {
  aspect-ratio: 660 / 855;
  object-fit: cover;
  object-position: 50% 15%;
}

@media (min-width: 768px) {
  .host-image-wrapper {
    flex: 0 0 340px;
    max-width: 340px;
    align-self: center;
  }
}

/* --------------------------------------------------
 * Proof gallery
 * The 1.13 upscale was meant to hide white margins on the
 * source PNGs, but those were re-exported tight — so it now
 * just chops content off all four edges (amounts and axis
 * labels were being cut). Show the screenshots whole.
 * -------------------------------------------------- */
.proof-item-clipped .proof-item-img {
  transform: none;
}

/* Seven chips in a three-column grid leaves the last one alone on its row;
   centring it reads as intentional rather than as a layout accident. */
@media (min-width: 768px) {
  .ty-deliverable:nth-child(7):last-child {
    grid-column: 2;
  }
}


/* ==================================================
 * THANK-YOU — GROUP JOIN POPUP
 * ================================================== */

.ty-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 13, 24, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: tyPopupFade 0.3s ease;
}

@keyframes tyPopupFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ty-popup-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 30px 24px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--surface-border-gold);
  box-shadow: 0 30px 70px rgba(7, 13, 24, 0.45);
  text-align: center;
  animation: tyPopupIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tyPopupIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

.ty-popup-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
}

.ty-popup-card h2 {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.ty-popup-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4a5769;
  margin-bottom: 12px;
}

.ty-popup-text strong {
  color: #0f172a;
}

/* The consequence of skipping, stated plainly */
.ty-popup-warn {
  font-size: 0.83rem;
  font-weight: 700;
  color: #d62828;
  background: rgba(214, 40, 40, 0.06);
  border: 1px solid rgba(214, 40, 40, 0.2);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 20px;
}

.ty-popup-btn {
  text-decoration: none;
  background: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
}

.ty-popup-btn:hover {
  background: #21c05c;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.ty-popup-later {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 6px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.ty-popup-later:hover {
  color: #0f172a;
}

@media (min-width: 768px) {
  .ty-popup-card {
    padding: 36px 32px 28px;
  }

  .ty-popup-card h2 {
    font-size: 1.5rem;
  }
}

/* The card takes focus when the dialog opens; it is a container, not a
   control, so it should not paint a focus ring. */
.ty-popup-card:focus {
  outline: none;
}
