/* ==========================================================================
   SKOOL DOWNLOADER — LANZAMIENTO V2 DESIGN SYSTEM
   Dark Glassmorphism · Premium Emerald & Cyan Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #050907;
  --bg-surface: #0a110e;
  --bg-surface-elevated: #111a16;
  --bg-glass: rgba(13, 22, 18, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(16, 185, 129, 0.3);

  --primary: #10b981;
  --primary-hover: #059669;
  --primary-glow: rgba(16, 185, 129, 0.25);
  --accent-cyan: #06b6d4;
  --accent-gold: #f59e0b;

  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background ambient glow effect */
body::before {
  content: '';
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(6, 182, 212, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--primary);
  color: #000;
  padding: 8px 16px;
  font-weight: 700;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 10px;
}

/* Layout Shell */
.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Launch Strip Header Bar */
.launch-strip {
  background: linear-gradient(90deg, #059669, #10b981, #06b6d4);
  color: #04120c;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #000;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  animation: pulse-ring 1.6s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 0, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 9, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
  transition: var(--transition);
}

.site-header .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  color: #04120c;
  font-weight: 900;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.brand b {
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.desktop-nav a:hover {
  color: var(--text-main);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  color: #03140d;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  color: #03140d;
}

.button-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.button-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Eyebrows & Section Headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 1.15rem;
}

/* Hero Section */
.hero {
  padding: 64px 0 80px;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.hero-copy h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-copy h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

.video-shell-large {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-width: 2px;
}

.hero-actions-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.button-large {
  font-size: 1.2rem;
  padding: 18px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.hero-proof {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-proof li span {
  color: var(--primary);
}

/* Video Stage / Chrome Shell */
.video-shell {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}

.video-chrome {
  background: #090e0c;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
}

.video-chrome-dots {
  display: flex;
  gap: 7px;
}

.video-chrome-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2a3430;
  display: inline-block;
}

.video-chrome-dots i:nth-child(1) { background: #ef4444; }
.video-chrome-dots i:nth-child(2) { background: #f59e0b; }
.video-chrome-dots i:nth-child(3) { background: #10b981; }

.video-chrome-title {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020504;
  display: grid;
  place-items: center;
}

.play-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, rgba(5, 9, 7, 0.95) 80%);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-main);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.play-placeholder:hover {
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.25) 0%, rgba(5, 9, 7, 0.95) 80%);
}

.play-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #03140d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 0 30px var(--primary-glow);
  transition: var(--transition);
}

.play-placeholder:hover .play-icon {
  transform: scale(1.1);
}

#youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

/* Registration Form Band */
.registration-band {
  background: var(--bg-surface);
  border-y: 1px solid var(--border-glass);
  padding: 64px 0;
  position: relative;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.form-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.expectation-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.expectation-box span {
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.expectation-box p {
  color: #fef08a;
  font-size: 0.9rem;
}

/* Lead Form */
.lead-form {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input, .field select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.field input:focus, .field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.phone-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
}

/* Custom Country Dropdown with Flags */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.custom-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.custom-select-trigger:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
}

.custom-select-trigger .flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.custom-select-trigger .chevron {
  margin-left: auto;
  color: var(--text-dim);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.custom-select.open .chevron {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 260px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: none;
  animation: dropdown-in 0.2s ease;
}

@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-options li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}

.custom-select-options li:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--text-main);
}

.custom-select-options li.selected {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  font-weight: 600;
}

.custom-select-options li img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

/* Scrollbar for dropdown */
.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 3px;
}

.phone-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.dial-code-badge {
  position: absolute;
  left: 14px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}

.phone-input-wrapper input {
  padding-left: 54px !important;
  width: 100%;
}

.field-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 16px;
}

.check-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 3px;
}

.check-field span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hp-field {
  display: none !important;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  color: var(--primary);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
}

/* Pain Points Section */
.pain-section {
  padding: 96px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pain-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
}

.pain-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ef4444;
  margin-bottom: 16px;
  display: block;
}

.pain-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* How it works */
.solution-section {
  background: var(--bg-surface);
  border-y: 1px solid var(--border-glass);
  padding: 96px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.step-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.cap-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cap-tag {
  background: var(--primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.cap-item b {
  display: block;
  font-size: 0.95rem;
}

.cap-item small {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* Pricing Offer Section */
.offer-section {
  padding: 96px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.offer-ticket {
  background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
  position: relative;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-glass);
}

.ticket-badge {
  background: var(--primary);
  color: #03140d;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.price-display {
  margin-bottom: 24px;
}

.price-main {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1;
}

.price-main span {
  font-size: 2rem;
  color: var(--primary);
}

.price-cop {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
}

.price-regular {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 4px;
  text-decoration: line-through;
}

.offer-features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.offer-features li span {
  color: var(--primary);
  font-weight: 800;
}

/* Super Bono Secreto — Sección Hero Independiente */
.bonus-hero-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.bonus-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bonus-grid-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .bonus-grid-wrapper, .bonus-grid-three {
    grid-template-columns: 1fr;
  }
}

.bonus-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(16, 185, 129, 0.06) 50%, rgba(6, 182, 212, 0.04) 100%);
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.12), var(--shadow-card);
  overflow: hidden;
}

.bonus-hero-secondary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(16, 185, 129, 0.06) 100%);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.12), var(--shadow-card);
}

.bonus-hero-tertiary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.15), var(--shadow-card);
}

.bonus-hero-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: bonus-pulse 4s ease-in-out infinite;
}

@keyframes bonus-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.bonus-hero-badge {
  font-size: 4rem;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
  animation: bonus-bounce 2.5s ease-in-out infinite;
}

@keyframes bonus-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bonus-hero h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent-gold), #fbbf24, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-hero-lead {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--text-muted);
}

.bonus-clues {
  list-style: none;
  text-align: left;
  max-width: 620px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bonus-clues li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.bonus-clues li span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Guarantee Section */
.guarantee-section {
  padding: 80px 0;
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.1), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-badge {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #03140d;
  font-family: var(--font-heading);
  text-align: center;
  box-shadow: 0 0 35px var(--primary-glow);
  padding: 12px;
}

.guarantee-badge span {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.guarantee-badge small {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.guarantee-content h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.guarantee-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.guarantee-highlights {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.guarantee-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Creator Story Section */
.creator-section {
  padding: 64px 0;
}

.creator-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  position: relative;
}

.creator-monogram {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  color: #03140d;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 25px var(--primary-glow);
}

.creator-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.creator-quote {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-main);
  font-style: italic;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 16px 0 20px;
}

.creator-sign {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .creator-card {
    flex-direction: column;
    padding: 32px 24px;
  }
}

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

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item button b {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.open button b {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #020504;
  border-t: 1px solid var(--border-glass);
  padding: 48px 0;
  font-size: 0.9rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-glass);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-legal {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Sticky Mobile CTA */
.mobile-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 99;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .form-layout, .offer-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 2.4rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
  .desktop-nav {
    display: none;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding: 0 16px;
  }

  .launch-strip {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .video-chrome-title {
    font-size: 0.65rem;
  }

  .play-placeholder strong {
    font-size: 1rem;
  }

  .play-placeholder small {
    font-size: 0.8rem;
  }

  .button-large {
    font-size: 1.05rem;
    padding: 16px 24px;
    width: 100%;
  }

  .registration-band {
    padding: 40px 0;
  }

  .lead-form {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .form-intro h2 {
    font-size: 1.75rem;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .pain-section, .solution-section, .bonus-hero-section, .offer-section, .guarantee-section, .creator-section, .faq-section {
    padding: 48px 0;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .offer-ticket {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .price-main {
    font-size: 3rem;
  }

  .price-cop {
    font-size: 1.1rem;
  }

  .bonus-hero {
    padding: 32px 20px;
  }

  .bonus-hero h2 {
    font-size: 1.75rem;
  }

  .bonus-clues li {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }

  .guarantee-badge {
    width: 100px;
    height: 100px;
  }

  .guarantee-badge span {
    font-size: 1.8rem;
  }

  .guarantee-content h2 {
    font-size: 1.6rem;
  }

  .guarantee-highlights {
    justify-content: center;
  }

  .creator-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 28px 20px;
  }

  .creator-quote {
    border-left: none;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 16px;
    font-size: 1rem;
  }

  .capabilities {
    grid-template-columns: 1fr;
  }

  .faq-item button {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }

  .mobile-cta {
    display: flex;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
}

/* ==========================================================================
   SOCIAL PROOF — NOTIFICACIONES DE PRUEBA SOCIAL DINÁMICA
   ========================================================================== */

.social-proof-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  width: calc(100vw - 48px);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 16px 18px 12px;
  z-index: 90;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: none;
  overflow: hidden;
}

.social-proof-popup.sp-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: spSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.social-proof-popup.sp-hiding {
  animation: spSlideOut 0.3s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

@keyframes spSlideIn {
  from { opacity: 0; transform: translateY(120%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(120%); }
}

.sp-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 0 12px var(--primary-glow);
  animation: spPulseIcon 2.5s ease-in-out infinite;
}

@keyframes spPulseIcon {
  0%, 100% { box-shadow: 0 0 8px var(--primary-glow); }
  50%      { box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(16, 185, 129, 0.1); }
}

.sp-body {
  flex: 1;
  min-width: 0;
}

.sp-text {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-main);
  font-weight: 500;
}

.sp-text strong {
  font-weight: 700;
  color: var(--text-main);
}

.sp-text .sp-highlight {
  color: var(--primary);
  font-weight: 600;
}

.sp-time {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sp-time-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: spDotPulse 1.8s ease-in-out infinite;
}

@keyframes spDotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

.sp-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: var(--transition);
}

.sp-close:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

/* Progress bar timer */
.sp-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  width: 100%;
  transform-origin: left;
  animation: spCountdown 4.5s linear forwards;
}

@keyframes spCountdown {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .social-proof-popup {
    left: 12px;
    bottom: 80px; /* Above the mobile CTA button */
    width: calc(100vw - 24px);
    max-width: none;
    padding: 14px 16px 10px;
    gap: 12px;
  }

  .sp-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 1rem;
  }

  .sp-text {
    font-size: 0.82rem;
  }
}

