:root {
      --primary: #5b3fff;
      --primary-dark: #4631d1;
      --primary-soft: #f2efff;
      --accent: #10b981;
      --bg: #0b1020;
      --bg-soft: #0f172a;
      --card-bg: #020617;
      --border-soft: rgba(148, 163, 184, 0.5);
      --text-main: #e5e7eb;
      --text-muted: #9ca3af;
      --radius-lg: 18px;
      --radius-pill: 999px;
      --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.55);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 42%, #020617 100%);
      color: var(--text-main);
      line-height: 1.7;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout base */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.2rem;
    }

    /* Header / Navbar */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(16px);
      background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.95),
        rgba(15, 23, 42, 0.8),
        transparent
      );
      border-bottom: 1px solid rgba(31, 41, 55, 0.7);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 0;
      gap: 1.2rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    .nav-text {
      display: flex;
      flex-direction: column;
    }

    .nav-text span:first-child {
      font-size: 1.05rem;
      font-weight: 700;
    }

    .nav-text span:last-child {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.18s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn,
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      padding: 0.45rem 0.95rem;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.15s ease;
      white-space: nowrap;
    }

    .btn {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #ffffff;
      box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
    }

    .btn:hover {
      filter: brightness(1.05);
      transform: translateY(-1px);
      box-shadow: 0 16px 35px rgba(79, 70, 229, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-muted);
      border-color: rgba(148, 163, 184, 0.6);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: #e5e7eb;
      background: rgba(79, 70, 229, 0.08);
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.18rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.65);
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .chip-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22);
    }

    .nav-toggle {
      display: none;
      border: none;
      background: transparent;
      color: var(--text-main);
      font-size: 1.25rem;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      padding: 3.5rem 0 3.2rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.4rem;
      align-items: center;
    }

    .hero-title {
      font-size: clamp(2rem, 3vw, 2.4rem);
      line-height: 1.2;
      margin: 0.7rem 0 0.6rem;
    }

    .hero-title span.highlight {
      background: linear-gradient(120deg, #a5b4fc, #22c55e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      color: var(--text-muted);
      font-size: 0.98rem;
      max-width: 32rem;
    }

    .hero-actions {
      margin-top: 1.1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .hero-meta {
      margin-top: 1.3rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .hero-meta span strong {
      display: block;
      font-size: 0.9rem;
      color: #e5e7eb;
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      border-radius: 24px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      padding: 1.5rem; /* Un poco más de padding interno */
      background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.22), #020617 55%);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .hero-card-title {
      font-size: 0.92rem;
      color: #e5e7eb;
    }

    .hero-card-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      border-radius: 999px;
      padding: 0.15rem 0.6rem;
      font-size: 0.74rem;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: #e5e7eb;
    }

    .pill-badge {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
      margin-top: 0.6rem;
    }

    .mini-card {
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      padding: 0.7rem 0.8rem;
      background: rgba(15, 23, 42, 0.92);
      font-size: 0.8rem;
    }

    .mini-label {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .mini-value {
      font-weight: 600;
      margin-top: 0.1rem;
      color: #e5e7eb;
    }

    /* CORRECCIÓN PRINCIPAL AQUÍ */
    .hero-float {
      /* Quitamos position: absolute para que no se encime */
      position: relative; 
      margin-top: 1.2rem;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: #020617; /* Fondo sólido para que destaque */
      padding: 1rem;
      font-size: 0.8rem;
      width: 100%; /* Ocupa el ancho disponible dentro de la tarjeta */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .hero-float strong {
      display: block;
      margin-bottom: 0.3rem;
      color: #e5e7eb;
      font-size: 0.9rem;
    }

    .hero-float span {
      color: var(--text-muted);
      font-size: 0.8rem;
      display: block;
      line-height: 1.5;
    }

    /* Sections */
    section {
      padding: 2.4rem 0;
    }

    .section-header {
      margin-bottom: 1.8rem;
      text-align: left;
    }

    .section-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }

    .section-title {
      font-size: 1.4rem;
      margin-bottom: 0.35rem;
    }

    .section-subtitle {
      font-size: 0.92rem;
      color: var(--text-muted);
      max-width: 34rem;
    }

    /* Features */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .feature-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.93),
        rgba(15, 23, 42, 0.98)
      );
      padding: 1.1rem 1rem 1.15rem;
      font-size: 0.9rem;
    }

    .feature-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.55rem;
      font-size: 1rem;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.4), transparent);
      border: 1px solid rgba(129, 140, 248, 0.6);
    }

    .feature-title {
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .feature-text {
      color: var(--text-muted);
    }

    /* Split section */
    .split {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.8rem;
      align-items: flex-start;
    }

    .list-check {
      list-style: none;
      margin-top: 0.6rem;
    }

    .list-check li {
      position: relative;
      padding-left: 1.3rem;
      margin-bottom: 0.45rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .list-check li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.78rem;
      color: var(--accent);
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.6rem;
    }

    .badge {
      font-size: 0.78rem;
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-muted);
      background: rgba(15, 23, 42, 0.85);
    }

    .card-soft {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top, rgba(79, 70, 229, 0.22), #020617 58%);
      padding: 1rem 0.95rem 1.05rem;
      font-size: 0.9rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      font-size: 0.9rem;
    }

    .step {
      border-radius: 1rem;
      border: 1px dashed rgba(148, 163, 184, 0.8);
      padding: 0.8rem 0.85rem;
      background: rgba(15, 23, 42, 0.9);
    }

    .step-num {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .step-title {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    /* Cards "para quién" */
    .for-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .for-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.96);
      padding: 1rem 0.9rem 1.1rem;
      font-size: 0.9rem;
    }

    .for-title {
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .for-tag {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 1.6rem;
    }

    .faq-list {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.95);
      padding: 1rem 1rem 1.1rem;
      font-size: 0.9rem;
    }

    .faq-item + .faq-item {
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      margin-top: 0.7rem;
      padding-top: 0.7rem;
    }

    .faq-q {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .faq-a {
      color: var(--text-muted);
    }

    /* CTA final */
    .cta {
      text-align: center;
      padding-bottom: 3.2rem;
    }

    .cta-box {
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: radial-gradient(circle at top, rgba(79, 70, 229, 0.3), #020617 70%);
      padding: 1.8rem 1rem 2.1rem;
      box-shadow: var(--shadow-soft);
    }

    .cta-title {
      font-size: 1.4rem;
      margin-bottom: 0.3rem;
    }

    .cta-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin: 0 auto 1.1rem;
    }

    .store-badges {
      display: flex;
      justify-content: center;
      gap: 0.7rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .badge-store {
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 0.4rem 0.9rem;
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: #e5e7eb;
      cursor: pointer;
      background: rgba(15, 23, 42, 0.9);
    }

    .contact-mini {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    footer {
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      padding: 0.9rem 0;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    footer .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 0.78rem;
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-right {
        order: -1;
      }

      .split {
        grid-template-columns: minmax(0, 1fr);
      }

      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .for-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 720px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: block;
      }

      .nav-open .nav-links,
      .nav-open .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.7rem;
      }

      .nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .features-grid,
      .for-grid,
      .steps {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2.4rem;
      }
    }