@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&display=swap');

:root {
  --bg: #020403;
  --card: rgba(0, 9, 5, .88);
  --green: #00f078;
  --green2: #00b45a;
  --yellow: #ffe600;
  --white: #fff;
  --muted: #d7ded9;
  --border: rgba(0, 240, 120, .42);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 240, 120, .22), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(255, 230, 0, .15), transparent 25%),
    linear-gradient(180deg, #000 0%, #031008 52%, #000 100%);
  overflow-x: hidden;
}

.page {
  width: 100%;
}

.hero {
  width: min(1180px, 100%);
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: 18px 14px 18px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 13px;
}

.top-tag {
  justify-self: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 120, .28);
  background: rgba(0, 240, 120, .1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
}

.hero-photo-wrap {
  position: relative;
  height: 315px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0, 240, 120, .22);
  background: #000;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .48), 0 0 32px rgba(0, 240, 120, .13);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
  filter: saturate(1.13) contrast(1.08) brightness(.92);
  transform: scale(1.02);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 50% 70%, rgba(0, 240, 120, .14), transparent 42%);
  pointer-events: none;
}

.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, #20ff92, #00aa55);
  color: #00190c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  box-shadow: 0 12px 26px rgba(0, 240, 120, .26);
}

.copy-card {
  width: 100%;
  padding: 24px 17px 17px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0, 240, 120, .08), rgba(0,0,0,.38)),
    var(--card);
  box-shadow: 0 0 42px rgba(0, 240, 120, .12);
  text-align: center;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(33px, 10vw, 54px);
  line-height: .92;
  letter-spacing: -2.3px;
  font-weight: 900;
}

h1 span {
  display: block;
  color: var(--green);
}

.lead {
  max-width: 360px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 700;
}

.cta {
  position: sticky;
  top: 10px;
  z-index: 10;
  width: 100%;
  min-height: 58px;
  margin: 20px auto 17px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  color: #031008;
  background: linear-gradient(180deg, #18ff8f, var(--green2));
  box-shadow: 0 16px 38px rgba(0, 240, 120, .28);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.2px;
  animation: pulse 1.25s infinite;
}

.cta span {
  font-size: 19px;
}

h2 {
  font-size: clamp(25px, 7.2vw, 38px);
  line-height: .98;
  letter-spacing: -1.5px;
  font-weight: 900;
}

h2 strong {
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(255, 230, 0, .18);
}

.timer-box {
  margin: 18px auto 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0, 240, 120, .08);
  border: 1px solid rgba(0, 240, 120, .22);
  max-width: 240px;
}

.timer-box small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

#timer {
  margin-top: 3px;
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 17px 0 0;
  display: grid;
  gap: 8px;
  text-align: left;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

footer {
  padding: 18px 16px 26px;
  text-align: center;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
}

footer p + p {
  margin-top: 8px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@media (min-width: 820px) {
  .hero {
    min-height: calc(100vh - 96px);
    padding: 58px 70px 26px;
    grid-template-columns: 460px 1fr;
    align-items: center;
    gap: 44px;
  }

  .top-tag {
    grid-column: 1 / -1;
  }

  .hero-photo-wrap {
    order: 2;
    height: 620px;
  }

  .hero-photo {
    object-position: center center;
  }

  .copy-card {
    order: 1;
    padding: 34px 30px 28px;
  }

  .cta {
    position: relative;
    top: auto;
    max-width: 390px;
    font-size: 15px;
  }

  .benefits {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-left: 11px;
    padding-right: 11px;
  }

  .hero-photo-wrap {
    height: 286px;
  }

  .copy-card {
    padding: 21px 14px 16px;
  }

  .cta {
    font-size: 12px;
  }

  .benefits {
    font-size: 12px;
  }
}
