:root {
  --green: #22c986;
  --green-deep: #17b978;
  --ink: #050505;
  --muted: #536377;
  --gold: #ffb01f;
  --blue: #1618a8;
  --pill: #e6fff5;
  --stat: rgba(242, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.45), transparent 10%),
    radial-gradient(circle at 92% 15%, rgba(255, 255, 255, 0.35), transparent 12%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.32), transparent 11%),
    linear-gradient(135deg, #fff3a7 0%, #ffd9bf 44%, #ff9eef 100%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 10px 12px;
  overflow: hidden auto;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.38);
  pointer-events: none;
  animation: bubble-rain 9s linear infinite;
}

.bubble-one {
  width: 86px;
  height: 86px;
  top: -16%;
  left: 7%;
  animation-duration: 10s;
}

.bubble-two {
  width: 58px;
  height: 58px;
  top: -10%;
  right: 8%;
  animation-delay: -3s;
  animation-duration: 8s;
}

.bubble-three {
  width: 104px;
  height: 104px;
  top: -22%;
  left: 11%;
  animation-delay: -6s;
  animation-duration: 12s;
}

.bubble-four {
  width: 42px;
  height: 42px;
  top: -8%;
  right: 13%;
  animation-delay: -1s;
  animation-duration: 7s;
}

.bubble-five {
  width: 66px;
  height: 66px;
  top: -14%;
  left: 34%;
  animation-delay: -4.5s;
  animation-duration: 9.5s;
}

.bubble-six {
  width: 34px;
  height: 34px;
  top: -7%;
  left: 53%;
  animation-delay: -2.2s;
  animation-duration: 6.8s;
}

.bubble-seven {
  width: 78px;
  height: 78px;
  top: -18%;
  left: 75%;
  animation-delay: -7.4s;
  animation-duration: 11s;
}

.bubble-eight {
  width: 48px;
  height: 48px;
  top: -12%;
  left: 22%;
  animation-delay: -5.8s;
  animation-duration: 8.6s;
}

.bubble-nine {
  width: 92px;
  height: 92px;
  top: -20%;
  left: 62%;
  animation-delay: -8.6s;
  animation-duration: 13s;
}

.bubble-ten {
  width: 38px;
  height: 38px;
  top: -9%;
  left: 88%;
  animation-delay: -3.8s;
  animation-duration: 7.6s;
}

@keyframes bubble-rain {
  0% {
    transform: translate3d(0, -12vh, 0) scale(0.92);
    opacity: 0;
  }

  12% {
    opacity: 0.72;
  }

  100% {
    transform: translate3d(18px, 125vh, 0) scale(1.08);
    opacity: 0;
  }
}

.landing-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 0;
  text-align: center;
}

.cta-button {
  width: min(410px, 94vw);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 15px;
  color: #ffffff;
  font-size: clamp(17px, 5.8vw, 26px);
  font-weight: 1000;
  -webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.7);
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    1px 0 2px rgba(0, 0, 0, 0.34),
    -1px 0 2px rgba(0, 0, 0, 0.34),
    0 1px 2px rgba(0, 0, 0, 0.34),
    0 -1px 2px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, #2ad994, var(--green));
  box-shadow: 0 10px 22px rgba(16, 174, 112, 0.24);
}

.cta-top {
  margin-bottom: 18px;
}

.logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border: 7px solid var(--green);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(16, 174, 112, 0.24);
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 10.8vw, 50px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 3px;
}

.headline {
  max-width: 410px;
  margin: 12px auto 0;
  color: #070707;
  font-size: clamp(17px, 4.8vw, 21px);
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.intro {
  display: none;
}

.proof-grid {
  width: min(350px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px auto 16px;
}

.proof-grid div {
  min-height: 69px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(85, 181, 184, 0.18);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(241, 255, 255, 0.96), rgba(232, 254, 254, 0.86));
  box-shadow: 0 8px 22px rgba(31, 125, 138, 0.08);
}

.proof-grid strong {
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.subscriber-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  min-height: 41px;
  margin: 0 auto 16px;
  padding: 0 22px;
  border-radius: 999px;
  color: #153247;
  font-size: 16px;
  font-weight: 950;
  background: var(--pill);
  box-shadow: 0 7px 18px rgba(14, 150, 104, 0.12);
}

.subscriber-pill span {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(34, 201, 134, 0.14);
}

.cta-bottom {
  margin-top: 0;
}

@media (max-width: 470px) {
  .page-shell {
    padding: 8px 10px 10px;
  }

  .landing-card {
    width: 100%;
  }

  .logo {
    width: 140px;
    height: 140px;
    border-width: 7px;
  }

  .cta-button {
    width: 100%;
    min-height: 46px;
    border-radius: 15px;
    font-size: clamp(16px, 5.8vw, 24px);
  }

  .proof-grid {
    width: min(350px, 92vw);
  }
}
