:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #4c1d95;
  --yellow: #ffff00;
  --pink: #ec1e8f;
  --bg: #160d27;
  --panel-border: rgba(255, 255, 255, 0.1);
  --panel-border-hover: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.11) 1px, transparent 1px);
  background-size: 46px 46px;
  background-position: center top;
  animation: grid-drift 8s linear infinite;
}

@keyframes grid-drift {
  from { background-position: center 0; }
  to { background-position: calc(50% + 46px) 46px; }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 48%, rgba(124, 58, 237, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  body, .offer-card, .offer-card::after, h1 .hl, .price-amount,
  .hero-benefits li::before, .btn-primary, .development-notice, .trial-status {
    animation: none !important;
  }
}

.tusker,
h1,
h2,
.badge-v1 span {
  font-family: 'Anton', 'Poppins', sans-serif;
  font-style: italic;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

nav .back {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--panel-border);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--glass);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

nav .back:hover {
  color: #fff;
  border-color: var(--panel-border-hover);
  background: var(--glass-strong);
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 61px);
  display: grid;
  align-items: center;
  padding: 22px 24px 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid var(--panel-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

h1 {
  font-size: clamp(2.8rem, 4.35vw, 4.15rem);
  line-height: 1;
  font-weight: 400;
  max-width: 680px;
  margin: 0;
}

h1 .hl {
  color: var(--yellow);
  animation: yellow-pulse 2.4s ease-in-out infinite;
}

.hero p.sub {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: .95rem;
  line-height: 1.5;
}

.future-line {
  max-width: 570px;
  margin-top: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--yellow);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  list-style: none;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

.hero-benefits li::before {
  content: '✓';
  margin-right: 7px;
  color: var(--yellow);
  font-weight: 800;
  display: inline-block;
  animation: check-pop 1.8s ease-in-out infinite;
}

.hero-benefits li:nth-child(2)::before { animation-delay: .3s; }
.hero-benefits li:nth-child(3)::before { animation-delay: .6s; }

@keyframes check-pop {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,0,0)); }
  50% { transform: scale(1.22); filter: drop-shadow(0 0 6px rgba(255,255,0,.55)); }
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(167, 139, 250, .32);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(35, 19, 62, .92), rgba(14, 8, 25, .94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34), 0 0 45px rgba(124, 58, 237, .13);
  text-align: center;
  backdrop-filter: blur(24px);
  animation: offer-float 4s ease-in-out infinite;
}

@keyframes offer-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 28px 70px rgba(0, 0, 0, .34), 0 0 35px rgba(124, 58, 237, .12); }
  50% { transform: translateY(-9px); box-shadow: 0 36px 78px rgba(0, 0, 0, .38), 0 0 55px rgba(124, 58, 237, .26); }
}

@keyframes yellow-pulse {
  0%, 100% { color: var(--yellow); text-shadow: 0 0 0 rgba(255, 255, 0, 0); }
  50% { color: #ffff7a; text-shadow: 0 0 18px rgba(255, 255, 0, .28); }
}

.offer-card::before {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  top: -110px;
  right: -70px;
  border-radius: 50%;
  background: rgba(124, 58, 237, .34);
  filter: blur(25px);
  pointer-events: none;
}

.offer-card::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: -35%;
  left: -55%;
  width: 34%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: rotate(15deg);
  animation: card-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.offer-card > * { position: relative; z-index: 1; }

@keyframes card-sheen {
  0%, 18% { left: -55%; opacity: 0; }
  28% { opacity: 1; }
  62%, 100% { left: 125%; opacity: 0; }
}

.offer-kicker {
  display: inline-block;
  color: var(--purple-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #9333ea);
  background-size: 180% 100%;
  color: #fff;
  animation: button-flow 2.8s ease-in-out infinite;
}

@keyframes button-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-trial {
  background: var(--yellow);
  color: #12091f;
  cursor: pointer;
  font-weight: 800;
  flex-direction: column;
  gap: 1px;
}
.btn-trial small { font-size: .68rem; font-weight: 600; opacity: .68; }
.btn-trial:disabled { cursor: wait; opacity: .7; }
.trial-question { display: block; margin: 0 0 14px; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 600; }
.trial-note { margin: 10px 0 0; color: rgba(255,255,255,.48); font-size: .7rem; line-height: 1.5; }
.offer-card > .btn { display: flex; justify-content: center; width: 100%; margin-top: 10px; }
.offer-card > .btn[hidden] { display: none; }
.offer-divider { height: 1px; margin: 15px 0 13px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.development-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 13px 0 0;
  padding: 9px 11px;
  text-align: left;
  color: rgba(255, 255, 255, .72);
  background: rgba(250, 204, 21, .06);
  border: 1px solid rgba(250, 204, 21, .24);
  border-radius: 14px;
  animation: notice-border 2.6s ease-in-out infinite;
}

@keyframes notice-border {
  0%, 100% { border-color: rgba(250,204,21,.24); }
  50% { border-color: rgba(250,204,21,.62); box-shadow: 0 0 16px rgba(250,204,21,.1); }
}
.development-notice-icon {
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  color: #12091f;
  background: var(--yellow);
  font-size: .8rem;
  font-weight: 800;
}
.development-notice strong { display: block; color: var(--yellow); font-size: .84rem; }
.development-notice p { margin: 2px 0 0; font-size: .7rem; line-height: 1.4; }
.trial-status { margin: 13px 0 0; padding: 12px 14px; border: 1px solid var(--panel-border); border-radius: 14px; background: var(--glass-strong); backdrop-filter: blur(20px); animation: status-breathe 3s ease-in-out infinite; }
@keyframes status-breathe {
  0%, 100% { border-color: var(--panel-border); background: var(--glass-strong); }
  50% { border-color: rgba(167,139,250,.48); background: rgba(167,139,250,.09); }
}
.trial-status-title { font-weight: 700; }
.trial-status-meta { margin-top: 4px; color: rgba(255,255,255,.65); font-size: .76rem; }
.trial-license { margin-top: 7px; color: var(--purple-light); font-family: Consolas, monospace; font-size: .82rem; font-weight: 700; }
.trial-status .btn { margin-top: 8px; padding: 9px 20px; }
.purchase-highlight { box-shadow: 0 0 0 2px var(--yellow); }

.btn-ghost {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--panel-border);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--panel-border-hover);
  background: var(--glass-strong);
}

/* GLASS PANEL */
.panel {
  position: relative;
  z-index: 1;
  background: var(--glass-strong);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  padding: 14px;
  margin: 60px 0;
}

.panel-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.panel-label i {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.panel img,
.panel video {
  width: 100%;
  border-radius: 14px;
  display: block;
  border: 1px solid var(--panel-border);
}

/* SECTION HEADINGS */
.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
}

.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color .25s ease, background .25s ease;
}

.feature-card:hover {
  border-color: var(--panel-border-hover);
  background: var(--glass-strong);
}

.feature-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--purple-light);
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* MACRO SHOWCASE */
.macro-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 70px 0;
}

.macro-showcase img {
  border-radius: 18px;
  border: 1px solid var(--panel-border);
}

@media (max-width: 860px) {
  .hero { min-height: 0; padding-top: 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .macro-showcase {
    grid-template-columns: 1fr;
  }
}

/* CLOSING CTA */
.closing {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 24px 40px;
}

.badge-v1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #a21caf);
  transform: rotate(-8deg);
  margin-bottom: 26px;
}

.badge-v1 span {
  font-size: 1.4rem;
  color: #fff;
}

.closing h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 30px;
}

.tags-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-light);
}

.tags-row span:not(:last-child)::after {
  content: '•';
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.25);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 24px 50px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .hero { padding: 32px 18px 56px; }
  .hero-copy { text-align: center; }
  .eyebrow { margin-bottom: 22px; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.6rem); }
  .hero p.sub { margin-left: auto; margin-right: auto; font-size: .94rem; }
  .future-line { margin-left: auto; margin-right: auto; padding-left: 0; border-left: 0; }
  .hero-benefits { justify-content: center; }
  .offer-card { padding: 25px 20px; }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero .cta-row .btn-trial { order: 1; }
  .hero .cta-row .btn-primary { order: 2; }
  .hero .cta-row .btn-ghost { order: 3; }
}

/* PRECIO */
.price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.price-label { color: rgba(255,255,255,.56); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; }

.price-amount {
  display: inline-block;
  font-family: 'Anton', 'Poppins', sans-serif;
  /* Sin font-style:italic a propósito: Google Fonts solo carga Anton en
     regular, así que el navegador simulaba una itálica sintética que,
     combinada con el degradado de texto, recortaba las letras. */
  letter-spacing: 0.5px;
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  padding: 0.08em 0.1em;
  background: linear-gradient(135deg, #fff 10%, var(--yellow) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: price-pulse 2s ease-in-out infinite;
}

@keyframes price-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255,255,0,0)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 12px rgba(255,255,0,.28)); transform: scale(1.035); }
}

.price-amount small { font-size: .38em; vertical-align: .55em; }
.price-amount span { font-size: .45em; }

.price-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (min-width: 861px) and (max-height: 800px) {
  nav { padding-top: 10px; padding-bottom: 10px; }
  .hero { min-height: calc(100vh - 53px); padding-top: 14px; padding-bottom: 22px; }
  h1 { font-size: clamp(2.65rem, 4vw, 3.7rem); }
  .hero p.sub { margin-top: 13px; }
  .future-line { margin-top: 12px; }
  .hero-benefits { margin-top: 13px; }
  .offer-card { padding: 18px 22px; }
  .price-amount { font-size: 3.5rem; }
  .development-notice { margin-top: 10px; }
  .trial-status { margin-top: 10px; }
}
