body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at top, rgba(255, 255, 255, 0.04) 0, transparent 55%);
  pointer-events: none;
  z-index: -2;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a,
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(5, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .btn {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: calc(var(--nav-height) + 2rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(2, 255, 157, 0.08);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 700px;
  height: 700px;
  background: rgba(0, 120, 255, 0.06);
  top: -200px;
  left: -200px;
  animation: floatReverse 10s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(2, 255, 157, 0.04);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 12s ease-in-out infinite 2s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-accent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-primary);
  font-size: 0.85rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.1;
  max-width: 10ch;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 100px;
}

.trust-stat > :first-child,
.trust-stat > span:nth-child(2) {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-num {
  display: inline-block;
}

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

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.stats-bar {
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(2, 255, 157, 0.04);
  border-top: 1px solid var(--glass-border-accent);
  border-bottom: 1px solid var(--glass-border-accent);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.8rem;
}

.ticker-sep {
  color: var(--text-muted);
}

.results-wrapper {
  position: relative;
  overflow-x: auto;
  padding: 2rem;
}

.win-rate-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border-accent);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.wr-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.wr-label {
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.results-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.results-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.results-table td {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.results-table tbody tr:hover {
  background: rgba(2, 255, 157, 0.03);
}

.pair-cell {
  font-weight: 600;
}

.coin-icon {
  color: var(--text-secondary);
  margin-right: 0.5rem;
}

.dir-badge,
.result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dir-badge.long {
  background: rgba(2, 255, 157, 0.1);
  color: var(--accent);
}

.dir-badge.short {
  background: rgba(0, 120, 255, 0.1);
  color: var(--status-short);
}

.result-badge.win {
  background: var(--status-win-bg);
  color: var(--status-win);
}

.result-badge.loss {
  background: var(--status-loss-bg);
  color: var(--status-loss);
}

.results-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.indicator-grid,
.premium-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.indicator-content .section-label,
.premium-content .section-label,
.contact-info .section-label {
  margin-bottom: 1.25rem;
}

.indicator-content .section-desc,
.premium-content .section-desc,
.contact-info .section-desc {
  margin: 0;
}

.accuracy-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}

.acc-icon {
  font-size: 2rem;
}

.acc-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.acc-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.indicator-visual {
  position: relative;
}

.screenshot-frame {
  position: relative;
  padding: 1rem;
  overflow: hidden;
  z-index: 1;
}

.frame-dots {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.frame-dots span:nth-child(1) {
  background: var(--window-red);
}

.frame-dots span:nth-child(2) {
  background: var(--window-yellow);
}

.frame-dots span:nth-child(3) {
  background: var(--window-green);
}

.indicator-img {
  width: 100%;
  border-radius: 8px;
}

.screenshot-glow {
  position: absolute;
  inset: 10% -5% -5%;
  background: radial-gradient(ellipse, rgba(2, 255, 157, 0.15), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.features-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card,
.testimonial-card {
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card.featured,
.testimonial-card.featured {
  border-color: var(--glass-border-accent);
  background: var(--grad-card);
}

.feat-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.pricing-header h3,
.contact-form-wrap h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.card-accent-line {
  height: 2px;
  background: var(--grad-text);
  border-radius: 2px;
  margin-top: 1.5rem;
}

.premium-section {
  position: relative;
  overflow: hidden;
}

.premium-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(2, 255, 157, 0.06), transparent);
  pointer-events: none;
}

.premium-content,
.contact-info {
  position: relative;
  z-index: 1;
}

.premium-benefits {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.benefit-icon {
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.benefit-item span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.cc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cc-body {
  flex: 1;
}

.cc-platform {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cc-link {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.success-callout {
  text-align: center;
  padding: 2rem;
}

.sc-num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.sc-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 0.35rem;
}

.sc-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.stars {
  color: var(--rating-star);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--bg-base);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.9rem;
}

.t-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem;
  position: relative;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--grad-text);
  color: var(--bg-base);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 99px;
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 1.25rem 0 0.5rem;
}

.currency {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-note,
.pricing-disclaimer,
.form-note {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.pricing-features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features li span {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-methods {
  margin-top: 2rem;
}

.method-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.method-item:hover {
  background: var(--accent-dim);
  border-color: var(--glass-border-accent);
}

.method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.method-value {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form-wrap {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--glass-border-accent);
  box-shadow: 0 0 0 3px rgba(2, 255, 157, 0.08);
}

.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(2, 255, 157, 0.04), transparent);
  pointer-events: none;
}
.footer-top,
.disclaimer {
  margin-bottom: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2.2;
  transition: color 0.2s ease;
}

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

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-socials a {
  font-size: 1.25rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 1;
}

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

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

.footer-disclaimer,
.disclaimer :is(h3, p) {
  font-size: 0.75rem;
}

.disclaimer :is(h3, p) {
  margin-bottom: 0.75rem;
}

.whatsapp-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.audio-fab {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(320px, calc(100vw - 5rem));
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(8, 15, 24, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--shadow-card);
  z-index: 998;
}

.audio-fab.is-playing {
  border-color: var(--glass-border-accent);
  box-shadow: var(--shadow-card), var(--shadow-accent);
}

.audio-fab-toggle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--glass-border-accent);
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-base);
  box-shadow: 0 0 20px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audio-fab-toggle:hover,
.audio-fab-toggle:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(2, 255, 157, 0.35);
}

.audio-fab-toggle svg {
  width: 18px;
  height: 18px;
}

.audio-icon[hidden] {
  display: none;
}

.audio-fab-meta {
  min-width: 0;
  flex: 1;
}

.audio-fab-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.audio-fab-marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.audio-fab-track {
  display: flex;
  width: max-content;
  animation: marquee 12s linear infinite;
}

.audio-fab-track span {
  padding-right: 1.75rem;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1024px) {
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .indicator-grid,
  .premium-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .testimonials-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-ctas,
  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .audio-fab {
    left: 1rem;
    bottom: 5.75rem;
    width: calc(100vw - 2rem);
  }

  .results-wrapper,
  .pricing-card,
  .contact-form-wrap {
    padding: 1.5rem;
  }

  .win-rate-badge,
  .pricing-badge {
    position: static;
    margin-bottom: 1rem;
    width: fit-content;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
