/* ==========================================================================
   ÉXITO PRO ANUAL — LANDING PAGE DESIGN SYSTEM (DEKO OS STANDARDS)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #040d1e;
  --bg-secondary: #08162e;
  --bg-card: rgba(10, 24, 51, 0.75);
  --bg-card-hover: rgba(15, 34, 71, 0.90);
  
  --blue-primary: #0a84ff;
  --blue-glow: rgba(10, 132, 255, 0.35);
  
  --gold-primary: #ffb703;
  --gold-bright: #ffe600;
  --gold-dark: #d49500;
  --gold-glow: rgba(255, 183, 3, 0.35);
  --gold-gradient: linear-gradient(135deg, #ffb703 0%, #ffe600 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(10, 132, 255, 0.3);
  --border-gold: rgba(255, 183, 3, 0.5);

  /* Fonts */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Barlow Condensed', 'Inter', sans-serif;

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.center { text-align: center; }

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #07152b 0%, #0d2854 50%, #07152b 100%);
  border-bottom: 1px solid rgba(255, 183, 3, 0.2);
  padding: 8px 16px;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.top-link {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.top-link:hover { text-decoration: underline; }

/* Header & Nav */
.pde-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 13, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-center-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.league-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.league-badge img {
  height: 18px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.yt-live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.yt-dot {
  width: 7px;
  height: 7px;
  background-color: #ff4757;
  border-radius: 50%;
}

.btn-nav-cta {
  background: var(--blue-primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn-nav-cta:hover {
  background: #0072e5;
  box-shadow: 0 0 15px var(--blue-glow);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-bg-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 132, 255, 0.15);
  border: 1px solid var(--border-blue);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.pill-badge-tag {
  background: var(--blue-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 600px;
}

/* Offer Highlight Card */
.offer-highlight-card {
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 0 30px rgba(255, 183, 3, 0.15);
  margin-bottom: 30px;
  backdrop-filter: blur(12px);
}

.offer-badge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.star-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.saving-chip {
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-comparison {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.savings-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2ed573;
}

.btn-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--gold-gradient);
  color: #000;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--gold-glow);
}

.gold-pulse {
  animation: gold-pulse-anim 2s infinite;
}

@keyframes gold-pulse-anim {
  0%, 100% { box-shadow: 0 0 15px var(--gold-glow); }
  50% { box-shadow: 0 0 30px rgba(255, 230, 0, 0.5); }
}

.guarantee-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.shield-badge {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-primary);
}

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

/* Hero Visual Preview Card with Media Cover */
.card-glass-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.preview-media-banner {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.preview-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(4, 13, 30, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #2ed573;
  border-radius: 50%;
  box-shadow: 0 0 8px #2ed573;
}

.margin-top-sm { margin-top: 8px; }

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.preview-logo {
  height: 48px;
  width: auto;
}

.preview-tier {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.preview-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.preview-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.preview-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  background: rgba(10, 132, 255, 0.15);
  color: var(--blue-primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.preview-checklist p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.card-footer-offer {
  background: rgba(255, 183, 3, 0.08);
  border: 1px dashed var(--border-gold);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.timer-box {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
}

/* Adrenaline Showcase Gallery */
.adrenaline-gallery-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
}

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

.adrenaline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.adrenaline-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-img-holder {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.adrenaline-card:hover .card-img-holder img {
  transform: scale(1.05);
}

/* Rudy Real Portrait Card Styling */
.rudy-featured-card {
  border: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(10, 24, 51, 0.85) 0%, rgba(14, 40, 85, 0.95) 100%);
}

.rudy-portrait-holder {
  background: radial-gradient(circle, rgba(10, 132, 255, 0.25) 0%, rgba(4, 13, 30, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.rudy-portrait-img {
  height: 100% !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.6));
}

.card-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(4, 13, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.card-chip.gold {
  background: var(--gold-gradient);
  color: #000;
}

.card-chip.blue {
  background: var(--blue-primary);
  color: #fff;
}

.card-chip.red {
  background: #ff4757;
  color: #fff;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Authority Section with Real Rudy Photo */
.authority-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.authority-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

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

.authority-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.authority-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: center;
}

.authority-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.analyst-avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 20px var(--gold-glow);
}

.rudy-official-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: #08162e;
}

.analyst-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.authority-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.authority-bio {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.media-trust-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.media-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* Calculator Section */
.calculator-section {
  padding: 80px 0;
}

.section-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.calc-label {
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.period-toggle-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.btn-calc-toggle {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-calc-toggle.active, .btn-calc-toggle:hover {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
}

.slider-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: block;
}

.bar-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bar-tag {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.bar-fill {
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: width 0.5s ease;
}

.monthly-fill {
  background: rgba(255, 71, 87, 0.2);
  border: 1px solid #ff4757;
  color: #ff4757;
  width: 100%;
}

.annual-fill {
  background: rgba(46, 213, 115, 0.2);
  border: 1px solid #2ed573;
  color: #2ed573;
  width: 83%;
}

.calc-result-box {
  background: rgba(10, 132, 255, 0.06);
  border: 1px solid var(--border-blue);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
}

.result-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: 1px;
}

.result-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin: 10px 0;
}

.result-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.btn-calc-cta {
  display: inline-block;
  width: 100%;
  background: var(--blue-primary);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-calc-cta:hover {
  background: #0072e5;
}

/* Features Grid (100% Dedicated Unique Graphic UI Headers) */
.features-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.feature-media-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-media-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Dedicated Graphic UI Header Blocks */
.feature-header-block {
  position: relative;
  width: 100%;
  height: 160px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-subtle);
}

.picks-ui-header {
  background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.25), rgba(7, 23, 53, 0.95));
  border-top: 3px solid var(--blue-primary);
}

.rankings-ui-header {
  background: radial-gradient(circle at top right, rgba(255, 183, 3, 0.25), rgba(7, 23, 53, 0.95));
  border-top: 3px solid var(--gold-primary);
}

.courses-ui-header {
  background: radial-gradient(circle at top right, rgba(155, 89, 182, 0.25), rgba(7, 23, 53, 0.95));
  border-top: 3px solid #9b59b6;
}

.chat-ui-header {
  background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.25), rgba(7, 23, 53, 0.95));
  border-top: 3px solid #2ecc71;
}

.discord-ui-header {
  background: radial-gradient(circle at top right, rgba(88, 101, 242, 0.3), rgba(7, 23, 53, 0.95));
  border-top: 3px solid #5865F2;
}

.edge-ui-header {
  background: radial-gradient(circle at top right, rgba(230, 126, 34, 0.25), rgba(7, 23, 53, 0.95));
  border-top: 3px solid #e67e22;
}

.brand-crest-wrap {
  height: 54px;
  display: flex;
  align-items: center;
}

.crest-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.crest-img-sm {
  height: 32px;
  width: auto;
}

.masterclass-badge-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.masterclass-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.chat-advisor-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.advisor-status {
  width: 8px;
  height: 8px;
  background-color: #2ed573;
  border-radius: 50%;
  box-shadow: 0 0 8px #2ed573;
}

.advisor-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.discord-server-badge {
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.discord-tag-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #7289da;
  letter-spacing: 1px;
}

.edge-metrics-box {
  background: rgba(230, 126, 34, 0.15);
  border: 1px solid rgba(230, 126, 34, 0.4);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.edge-node-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #f39c12;
  letter-spacing: 1px;
}

.header-ticker-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.ticker-badge-gold {
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.ticker-badge-blue {
  background: rgba(10, 132, 255, 0.2);
  border: 1px solid var(--border-blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.feature-content-body {
  padding: 24px;
  flex: 1;
}

.feature-content-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-content-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.featured-card {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(10, 24, 51, 0.95) 0%, rgba(15, 34, 71, 0.95) 100%);
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.2);
  transform: scale(1.03);
}

.featured-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.plan-tag.gold {
  color: var(--gold-bright);
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 6px 0 14px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price-row .currency {
  font-size: 1.4rem;
  font-weight: 800;
}

.plan-price-row .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.plan-price-row .amount.gold {
  color: var(--gold-bright);
}

.plan-price-row .period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-savings-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2ed573;
  margin-top: 6px;
}

.list-price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.plan-features {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features .chk {
  color: var(--blue-primary);
  font-weight: 800;
}

.plan-features .chk.gold {
  color: var(--gold-bright);
}

.plan-features .disabled {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.btn-plan.outline {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-plan.outline:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}

.btn-plan.featured-btn {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-subnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  text-align: center;
  margin-top: 10px;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  border-radius: var(--radius-md);
}

.stars {
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}

.author-plan {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--blue-primary);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

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

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-subtle);
}

.final-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 12px;
}

.final-cta-section p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.btn-hero-cta.large {
  max-width: 500px;
  margin: 0 auto;
}

.guarantee-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 16px;
}

/* Footer */
.pde-footer {
  background: #020712;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 14px;
}

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

.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}

/* AGENTIC LIVE CHAT WIDGET STYLES (TOKEN ECONOMY MODEL) */
.agent-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.agent-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.35);
  position: relative;
  transition: var(--transition-fast);
}

.agent-toggle-btn:hover {
  transform: scale(1.05);
}

.agent-btn-badge {
  background: #000;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.agent-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4757;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-main);
}

.agent-chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: rgba(8, 22, 46, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: linear-gradient(90deg, #07152b 0%, #0d2854 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-avatar-sm {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  overflow: hidden;
}

.agent-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.online-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background-color: #2ed573;
  border-radius: 50%;
  border: 2px solid #07152b;
}

.agent-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.agent-subtitle {
  font-size: 0.7rem;
  color: var(--gold-bright);
  display: block;
}

.chat-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.chat-close-btn:hover {
  color: #fff;
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(4, 13, 30, 0.5);
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.chat-msg.agent-msg {
  align-self: flex-start;
}

.chat-msg.user-msg {
  align-self: flex-end;
}

.msg-bubble {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.agent-msg .msg-bubble {
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid var(--border-blue);
  color: var(--text-secondary);
  border-top-left-radius: 4px;
}

.user-msg .msg-bubble {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 600;
  border-top-right-radius: 4px;
}

.msg-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.user-msg .msg-time {
  align-self: flex-end;
}

.chat-quick-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.quick-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.quick-chip:hover {
  background: rgba(10, 132, 255, 0.2);
  border-color: var(--blue-primary);
  color: #fff;
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #07152b;
  border-top: 1px solid var(--border-subtle);
}

.chat-input-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  outline: none;
}

.chat-input-bar input:focus {
  border-color: var(--blue-primary);
}

.chat-send-btn {
  background: var(--blue-primary);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-send-btn:hover {
  background: #0072e5;
}

.chat-footer-badge {
  background: #040d1e;
  padding: 6px 12px;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Typing Indicator Animation */
.typing-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
}

.typing-bubble span {
  width: 6px;
  height: 6px;
  background-color: var(--blue-primary);
  border-radius: 50%;
  animation: typing-anim 1.4s infinite ease-in-out both;
}

.typing-bubble span:nth-child(1) { animation-delay: -0.32s; }
.typing-bubble span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-anim {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .featured-card { transform: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .adrenaline-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  .price-value { font-size: 2.8rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .authority-grid { grid-template-columns: 1fr; text-align: center; }
  .media-trust-strip { justify-content: center; }
  .nav-center-badges, .yt-live-indicator { display: none; }
  .features-grid, .adrenaline-grid { grid-template-columns: 1fr; }
  .agent-widget-container { bottom: 16px; right: 16px; }
  .agent-chat-window { width: calc(100vw - 32px); right: 0; }
}
