@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #05080d;
  --bg-deep: #02050a;
  --surface: #0b1119;
  --surface-raised: #111b28;
  --surface-soft: #172436;
  --line: rgba(110, 151, 201, 0.2);
  --line-strong: rgba(94, 173, 255, 0.55);
  --text: #eff5ff;
  --muted: #9cafc6;
  --accent: #4fa7ff;
  --accent-strong: #1e8cff;
  --success: #42e3a1;
  --warning: #f2c56b;
  --danger: #ff7d96;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --wrap: min(1180px, calc(100vw - 40px));
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 167, 255, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(66, 227, 161, 0.08), transparent 20%),
    linear-gradient(180deg, #09111a 0%, var(--bg) 38%, var(--bg-deep) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 13, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(79, 167, 255, 0.26), rgba(79, 167, 255, 0.08)),
    rgba(9, 17, 26, 0.92);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(79, 167, 255, 0.08);
}

.brand-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.brand-bars i {
  display: block;
  width: 5px;
  background: linear-gradient(180deg, #73bcff, #298dff);
  border-radius: 2px;
}

.brand-bars i:nth-child(1) {
  height: 7px;
}

.brand-bars i:nth-child(2) {
  height: 12px;
}

.brand-bars i:nth-child(3) {
  height: 16px;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #62b6ff, #1f8dff);
  color: #021120;
  box-shadow: 0 20px 40px rgba(31, 141, 255, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.hero,
.page-hero {
  padding: 56px 0 34px;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.price-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 32px;
}

.hero-grid,
.split-grid,
.price-grid,
.faq-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy h1,
.page-hero-copy h1,
.section-title h2,
.cta-panel h2,
.legal-card h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.02em;
  line-height: 0.94;
}

.hero-copy h1 {
  font-size: clamp(3.9rem, 9vw, 6.8rem);
  max-width: 11ch;
}

.page-hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  max-width: 10ch;
}

.hero-copy p,
.page-hero-copy p,
.section-title p,
.feature-card p,
.mode-card p,
.metric-card p,
.copy-card p,
.faq-card p,
.legal-card p,
.pricing-card p,
.comparison-row p,
.footer-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.lead-line {
  margin: 0 0 16px;
  color: #d7e4f6;
  font-size: 0.96rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-badges,
.micro-stats,
.trust-row,
.price-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges,
.micro-stats {
  margin-top: 24px;
}

.badge,
.micro-stat {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}

.hero-panel,
.page-panel,
.feature-card,
.mode-card,
.metric-card,
.copy-card,
.faq-card,
.pricing-card,
.comparison-card,
.cta-panel,
.legal-card,
.footer-panel,
.timeline-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel,
.page-panel {
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.page-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 182, 255, 0.7), transparent);
}

.hero-panel img,
.page-panel img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-chip,
.floating-chip.secondary {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(6, 12, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.floating-chip {
  top: 26px;
  right: 26px;
}

.floating-chip.secondary {
  left: 26px;
  bottom: 26px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 16px rgba(66, 227, 161, 0.8);
}

.risk-banner,
.risk-strip {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 197, 107, 0.35);
  background: linear-gradient(90deg, rgba(242, 197, 107, 0.14), rgba(242, 197, 107, 0.04));
}

.risk-banner strong,
.risk-strip strong,
.pricing-card .price-note strong,
.footer-disclaimer strong {
  color: #ffe2a0;
}

.section {
  padding: 34px 0;
}

.section-title {
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-title p {
  max-width: 60ch;
}

.feature-grid,
.mode-grid,
.metric-grid,
.timeline-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.feature-grid,
.mode-grid,
.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid,
.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.mode-card,
.metric-card,
.copy-card,
.faq-card,
.pricing-card,
.comparison-card,
.timeline-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card h3,
.mode-card h3,
.pricing-card h3,
.comparison-card h3,
.faq-card h3,
.timeline-card h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
}

.feature-icon,
.timeline-step {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(79, 167, 255, 0.12);
  border: 1px solid rgba(79, 167, 255, 0.2);
  color: #85c6ff;
  font-weight: 700;
}

.metric-card strong,
.pricing-amount,
.big-number {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.03em;
}

.metric-card strong {
  font-size: 2.2rem;
}

.metric-card p {
  margin-bottom: 0;
}

.accent {
  color: var(--accent);
}

.success {
  color: var(--success);
}

.warning {
  color: var(--warning);
}

.price-band {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(79, 167, 255, 0.14), rgba(79, 167, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(79, 167, 255, 0.22);
}

.price-band strong {
  font-size: 1.05rem;
}

.page-hero-copy .price-points {
  margin-top: 26px;
}

.price-point {
  min-width: 220px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-point span,
.comparison-row span,
.timeline-card span,
.faq-card span,
.mini-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-point strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 0.94;
}

.copy-card,
.cta-panel,
.legal-card,
.footer-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.list,
.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.check-list li::marker {
  color: var(--success);
}

.comparison-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.pricing-card.featured {
  position: relative;
  border-color: rgba(98, 182, 255, 0.34);
}

.pricing-card.featured::after {
  content: "Mejor entrada";
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(79, 167, 255, 0.14);
  color: #abd8ff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-amount {
  margin-top: 10px;
  font-size: 4rem;
  line-height: 0.9;
}

.pricing-card .price-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-card {
  position: relative;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 47px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(79, 167, 255, 0.3), transparent);
}

.timeline-card:last-child::before {
  display: none;
}

.timeline-step {
  margin-bottom: 14px;
}

.faq-card details {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0 0;
}

.faq-card details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card details p {
  margin: 12px 0 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 10ch;
}

.footer {
  padding: 24px 0 44px;
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.footer-copy p,
.footer-disclaimer,
.footer-links {
  color: var(--muted);
}

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

.footer-disclaimer {
  margin: 0;
  line-height: 1.7;
}

.contact-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.notification-stack {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 29;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 36px));
  pointer-events: none;
}

.notification-toast {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(9, 16, 25, 0.94);
  border: 1px solid rgba(79, 167, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
  transform: translateY(18px);
  opacity: 0;
  animation: toast-in 380ms ease forwards;
}

.notification-toast strong,
.notification-toast b {
  display: block;
}

.notification-toast strong {
  font-size: 1rem;
}

.notification-toast span,
.notification-toast small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.notification-toast b {
  margin-top: 10px;
  color: var(--success);
  font-size: 1.1rem;
}

.notification-toast.is-leaving {
  animation: toast-out 320ms ease forwards;
}

@keyframes toast-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes toast-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(18px);
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .price-grid,
  .faq-grid,
  .contact-grid,
  .footer-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .mode-grid,
  .comparison-grid,
  .metric-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-header .button.small {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .hero,
  .page-hero,
  .section {
    padding: 24px 0;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .price-grid,
  .faq-grid,
  .contact-grid {
    gap: 22px;
  }

  .feature-grid,
  .mode-grid,
  .comparison-grid,
  .metric-grid,
  .timeline-grid,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .page-panel,
  .copy-card,
  .cta-panel,
  .legal-card,
  .footer-panel,
  .feature-card,
  .mode-card,
  .metric-card,
  .faq-card,
  .pricing-card,
  .comparison-card,
  .timeline-card {
    border-radius: 22px;
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .page-hero-copy h1,
  .section-title h2,
  .cta-panel h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .floating-chip,
  .floating-chip.secondary {
    position: static;
    margin-bottom: 14px;
  }

  .contact-float {
    display: none;
  }

  .notification-stack {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
