:root {
  --bg: #0a0e1f;
  --panel: rgba(12, 18, 40, 0.92);
  --panel-2: rgba(18, 28, 60, 0.98);
  --text: #f0f5ff;
  --muted: #9fb3d5;
  --accent: #00ff9f;
  --accent-2: #00d9ff;
  --accent-3: #ff6b9f;
  --danger: #FF1744;
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(0, 255, 159, 0.06), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255, 23, 68, 0.04), transparent 35%),
    linear-gradient(135deg, #020408 0%, #030810 40%, #010305 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 255, 159, 0.12), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(0, 217, 255, 0.15), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(255, 23, 68, 0.08), transparent 30%),
    radial-gradient(circle at 10% 70%, rgba(255, 107, 159, 0.06), transparent 35%),
    linear-gradient(135deg, rgba(2, 4, 10, 0.99), rgba(3, 8, 18, 0.99));
}

.ambient-scene::before,
.ambient-scene::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.ambient-scene::before {
  background: 
    radial-gradient(circle at 25% 30%, rgba(0, 255, 159, 0.2), transparent 35%),
    radial-gradient(circle at 75% 25%, rgba(0, 217, 255, 0.18), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 23, 68, 0.15), transparent 38%);
  animation: pulseHalo 8s ease-in-out infinite alternate;
}

.ambient-scene::after {
  background-image: linear-gradient(rgba(0, 255, 159, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 159, 0.02) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.3;
  transform: perspective(900px) rotateX(60deg) translateY(-12%);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 159, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 159, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(900px) rotateX(66deg) translateY(-14%);
  opacity: 0.6;
  animation: driftGrid 16s linear infinite;
}

.pulse-core {
  position: absolute;
  inset: 18% 24% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 159, 0.35);
  box-shadow: 0 0 60px rgba(0, 255, 159, 0.25), 0 0 100px rgba(0, 217, 255, 0.15);
  animation: pulseCore 6s ease-in-out infinite;
}

.ambient-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
  mix-blend-mode: screen;
}

.halo-one {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 8%;
  background: #00ff9f;
  animation: drift 10s ease-in-out infinite;
}

.halo-two {
  width: 360px;
  height: 360px;
  right: -120px;
  top: 24%;
  background: #00d9ff;
  animation: drift 12s ease-in-out infinite;
}

.network-line {
  position: absolute;
  border: 1px solid rgba(0, 255, 159, 0.18);
  border-radius: 999px;
  transform: skewX(-12deg);
  box-shadow: 0 0 30px rgba(0, 255, 159, 0.12);
  animation: float 8s ease-in-out infinite;
}

.line-a {
  width: 420px;
  height: 420px;
  right: 8%;
  top: -8%;
}

.line-b {
  width: 300px;
  height: 300px;
  left: 6%;
  bottom: -12%;
}

.line-c {
  width: 180px;
  height: 180px;
  left: 40%;
  top: 16%;
}

.parallax-layer {
  display: none;
}


img {
  max-width: 100%;
  display: block;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  width: 280px;
  height: 280px;
  background: var(--accent);
  top: 80px;
  left: -80px;
  animation: drift 8s ease-in-out infinite alternate;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: var(--accent-2);
  right: -50px;
  top: 30%;
  animation: drift 10s ease-in-out infinite alternate-reverse;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero,
main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 24px 6vw 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--accent);
  font-size: 1.2rem;
}

.ghost-btn,
.secondary-btn,
.primary-btn,
.sticky-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghost-btn {
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 16px;
}

.primary-btn,
.sticky-cta {
  padding: 14px 22px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #021019;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 255, 159, 0.3);
  transition: all 0.3s ease;
}

.primary-btn:hover,
.sticky-cta:hover {
  box-shadow: 0 16px 40px rgba(255, 23, 68, 0.4), 0 0 20px rgba(0, 255, 159, 0.2);
}

.secondary-btn {
  padding: 14px 20px;
  color: var(--text);
  border: 1px solid rgba(96, 165, 250, 0.4);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover,
.sticky-cta:hover {
  transform: translateY(-3px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding-top: 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #ff6b9f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text,
.card p,
.why-box p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-actions .bonus-btn {
  min-width: 240px;
  border-color: rgba(255, 107, 159, 0.5);
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 107, 159, 0.95), rgba(255, 23, 68, 0.92));
}

.hero-actions .bonus-btn:hover {
  box-shadow: 0 18px 45px rgba(255, 107, 159, 0.3);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 107, 159, 0.95), rgba(255, 23, 68, 0.75));
  box-shadow: 0 12px 30px rgba(255, 107, 159, 0.18);
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.hero-tags li,
.pill {
  border: 1px solid rgba(0, 255, 159, 0.35);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.12), rgba(0, 217, 255, 0.08));
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pill:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.2), rgba(0, 217, 255, 0.15));
  box-shadow: 0 8px 20px rgba(0, 255, 159, 0.15);
}

.hero-visual {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  animation: float 5s ease-in-out infinite;
}

.hero-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.stats-section,
.section,
.cta-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 26px;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -8px;
}

.stat-card,
.card,
.why-box,
.cta-panel,
.roadmap details {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.25);
}

.stat-card {
  padding: 22px 18px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
  display: block;
}

.section {
  padding: 42px 24px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  margin: 4px 0 0;
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-box {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.12), rgba(0, 217, 255, 0.1));
  border: 2px solid rgba(0, 255, 159, 0.3);
  box-shadow: 0 24px 60px rgba(0, 255, 159, 0.18), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 20px rgba(255, 23, 68, 0.1);
}

.offer-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--danger);
  background: linear-gradient(90deg, rgba(255, 23, 68, 0.2), rgba(255, 23, 68, 0.15));
  border: 1px solid var(--danger);
  box-shadow: 0 0 12px rgba(255, 23, 68, 0.2);
}

.offer-price {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.offer-text {
  color: #dce8ff;
  margin-bottom: 18px;
}

.countdown {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.countdown div {
  min-width: 100px;
  padding: 12px 10px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.06), rgba(0, 217, 255, 0.04));
  border: 1px solid rgba(255, 23, 68, 0.3);
  box-shadow: 0 8px 20px rgba(255, 23, 68, 0.12);
}

.countdown span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.offer-bullets,
.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-bullets span,
.bonus-item {
  border: 1px solid rgba(0, 255, 159, 0.25);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.08), rgba(0, 217, 255, 0.06));
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.15), rgba(0, 217, 255, 0.12));
  box-shadow: 0 6px 16px rgba(0, 255, 159, 0.12);
}

.bonus-grid {
  gap: 12px;
}

.bonus-item {
  border-radius: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.06), rgba(0, 217, 255, 0.04));
  border: 1px solid rgba(0, 255, 159, 0.18);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.12), rgba(0, 217, 255, 0.08));
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 255, 159, 0.16);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card h3 {
  margin: 0 0 10px 0;
  color: var(--accent);
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.compare-table {
  overflow-x: auto;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 16, 33, 0.88);
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 20px;
  overflow: hidden;
}

.compare-table thead {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.14), rgba(96, 165, 250, 0.12));
  border-bottom: 2px solid rgba(45, 212, 191, 0.32);
}

.compare-table th {
  padding: 18px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.compare-table th.highlight {
  color: #ffffff;
  background: rgba(0, 255, 159, 0.18);
}

.compare-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.6;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td.highlight {
  background: rgba(0, 255, 159, 0.08);
  color: var(--accent);
  font-weight: 600;
}

.compare-table tbody tr:hover td {
  background-color: rgba(0, 255, 159, 0.04);
}

.compare-table tbody tr:hover td.highlight {
  background-color: rgba(0, 255, 159, 0.12);
}

.card,
.why-box {
  padding: 24px;
  transition: all 0.3s ease;
}

.card:hover,
.why-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 24px 50px rgba(0, 255, 159, 0.15);
}

.card h3,
.why-box h3 {
  margin-top: 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.roadmap {
  display: grid;
  gap: 12px;
}

.roadmap details {
  padding: 16px 18px;
}

.roadmap summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.roadmap summary::-webkit-details-marker {
  display: none;
}

.day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 6px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 255, 159, 0.3), rgba(0, 217, 255, 0.3));
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(0, 255, 159, 0.4);
}

.roadmap ul {
  margin: 10px 0 0 48px;
  padding: 0;
  color: var(--muted);
  line-height: 1.7;
}

.roadmap li + li {
  margin-top: 8px;
}

.cta-panel {
  padding: 30px 24px;
  text-align: center;
  margin-bottom: 70px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  animation: pulse 2s infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(20px, 30px, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 255, 159, 0.3);
  }
  50% {
    box-shadow: 0 16px 34px rgba(0, 217, 255, 0.5);
  }
}

@keyframes pulseHalo {
  0% {
    transform: scale(0.92) rotate(-2deg);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08) rotate(1deg);
    opacity: 0.9;
  }
  100% {
    transform: scale(0.96) rotate(2deg);
    opacity: 0.5;
  }
}

@keyframes driftGrid {
  0% {
    transform: perspective(900px) rotateX(66deg) translateY(-14%);
  }
  100% {
    transform: perspective(900px) rotateX(66deg) translateY(4%);
  }
}

@keyframes pulseCore {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.6;
    box-shadow: 0 0 60px rgba(0, 255, 159, 0.2), 0 0 100px rgba(0, 217, 255, 0.1);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
    box-shadow: 0 0 80px rgba(0, 255, 159, 0.35), 0 0 140px rgba(255, 23, 68, 0.15);
  }
}

@keyframes neonScan {
  0% {
    top: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .cards-grid,
  .why-now-grid,
  .stats-section,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .offer-box {
    padding: 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stats-section,
  .cards-grid,
  .why-now-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-tags {
    gap: 8px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 12px;
    justify-content: center;
  }
}
