* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
}

/* Layout */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  padding-top: 100px;
}

.container {
  max-width: 720px;
  text-align: center;
}

/* Headline */
.headline {
  color: #a78bfa;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

/* Profit text */
.profit {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.profit span {
  color: #34d399;
  font-weight: 800;
}

/* Divider */
.divider {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #34d399);
  margin: 22px auto;
  border-radius: 10px;
}

/* Logic text */
.logic {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px;
  color: #c7d2fe;
}

/* Offer Box */
.box {
  border: 2px solid #a78bfa;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  background: rgba(167,139,250,0.08);
  backdrop-filter: blur(6px);
}

.box h3 {
  color: #a78bfa;
  font-size: 18px;
  margin-bottom: 6px;
}

/* Benefits */
.benefits {
  list-style: none;
  margin-bottom: 22px;
}

.benefits li {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Urgency */
.urgency {
  color: #f87171;
  font-weight: 800;
  margin-bottom: 12px;
}

/* Arrows */
.arrows {
  font-size: 26px;
  margin: 12px 0 22px;
}

/* CTA Button */
.cta {
  display: inline-block;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #022c22;
  padding: 18px 28px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 45px rgba(16,185,129,0.55);
}

.cta span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

/* Bounce Animation */
.bounce {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

/* Footer note */
.footnote {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 14px;
}

/* Top Countdown Bar */
.top-timer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #a78bfa, #34d399);
  color: #020617;
  text-align: center;
  padding: 12px 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(167,139,250,0.5);
}

.top-timer span {
  font-size: 23px;
}

/* Mobile */
@media (max-width: 480px) {
  .headline { font-size: 26px; }
  .profit { font-size: 16px; }
}
