/* ===================== BASE RESET ===================== */
*{
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body{
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(1000px 500px at 50% -10%, #0c1330, #02030a 70%);
  color: #eef1ff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ===================== LAYOUT ===================== */
.wrapper{
  width: 100%;
  max-width: 900px;
}
.card{
  width: 100%;
  padding: 72px 64px;
  border-radius: 50px;
  background: #060914;
  border: 1px solid rgba(140,160,255,.08);
  box-shadow:0 50px 120px rgba(80,100,255,.25);
  text-align: center;
}

/* ===================== TYPOGRAPHY ===================== */
.logo{
  font-size: 2.35rem;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.tagline{
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 48px;
}
h1{
  font-size: 2.0rem;
  line-height: 1.25;
  margin-bottom: 24px;
}
p{
  font-size: .98rem;
  line-height: 1.75;
  opacity: .85;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ===================== FEATURES GRID ===================== */
.features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.feature{
  padding: 26px 24px;
  border-radius: 32px;
  background: #0b1024;
  border: 1px solid rgba(120,150,255,.08);
  font-size: .9rem;
  line-height: 1.6;
}

/* ===================== CTA BUTTON ===================== */
.cta{
  display: inline-block;
  padding: 18px 52px;
  border-radius: 9999px;
  background: #8fa2ff;
  color: #05070f;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.cta:hover{
  opacity: .9;
}

/* ===================== POLICY / RULES LINKS ===================== */
.links{
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.links a{
  padding: 8px 14px;
  border-radius: 9999px;
  background: #0b1024;
  border: 1px solid rgba(140,160,255,.18);
  font-size: .76rem;
  color: #8fa2ff;
  text-decoration: none;
  opacity: .95;
}
.links a:hover{
  background: #10183a;
  opacity: 1;
}

/* ===================== FOOTER ===================== */
.footer{
  margin-top: 48px;
  font-size: .68rem;
  letter-spacing: .2em;
  opacity: .45;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:700px){
  .card{
    padding: 48px 28px;
  }
  h1{
    font-size: 1.8rem;
  }
}