* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #000814;
  color: #e6e6e6;
}

/* Layout */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
}

.container {
  max-width: 720px;
  text-align: center;
}

/* Headline */
.headline {
  color: #38bdf8;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

/* Profit text */
.profit {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.profit span {
  color: #22c55e;
  font-weight: 800;
}

/* Divider */
.divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  margin: 20px auto;
  border-radius: 10px;
}

/* Logic text */
.logic {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 26px;
  color: #cbd5e1;
}

/* Offer Box */
.box {
  border: 2px solid #38bdf8;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
  background: rgba(56,189,248,0.08);
}

.box h3 {
  color: #38bdf8;
  font-size: 18px;
  margin-bottom: 6px;
}

/* Benefits */
.benefits {
  list-style: none;
  margin-bottom: 20px;
}

.benefits li {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Urgency */
.urgency {
  color: #ef4444;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Arrows */
.arrows {
  font-size: 26px;
  margin: 10px 0 20px;
}

/* CTA Button */
.cta {
  display: inline-block;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #001219;
  padding: 18px 26px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(56,189,248,0.55);
}

.cta span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

/* Bounce Animation */
.bounce {
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(56,189,248,0.6);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 45px rgba(34,211,238,0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(56,189,248,0.6);
  }
}

/* Footer note */
.footnote {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 14px;
}

/* Mobile */
@media (max-width: 480px) {
  .headline {
    font-size: 26px;
  }
  .profit {
    font-size: 16px;
  }
}

/* Top Countdown Bar */
.top-timer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  color: #001219;
  text-align: center;
  padding: 12px 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(34,211,238,0.6);
}

.top-timer span {
  font-size: 23px;
}

/* Push content down so it doesn’t hide under timer */
.hero {
  padding-top: 90px;
}
