:root{
  --text:#EAF0FF;
  --muted:#AAB4D6;
  --stroke:rgba(255,255,255,.12);
  --accent:#7C5CFF;
  --accent2:#00E6FF;
  --green:#00B85A;
  --warn:#FFCF5A;
  --bg1:#050714;
  --bg2:#070A12;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(124,92,255,.28), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(0,230,255,.18), transparent 55%),
    linear-gradient(180deg,var(--bg1),var(--bg2) 60%,var(--bg1));
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px 150px;
}

.card{
  border:1px solid var(--stroke);
  border-radius:22px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
}

/* Risk bar */
.riskbar{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  margin-bottom:12px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(10,14,30,.78);
  backdrop-filter: blur(10px);
  border-radius:16px;
}
.riskicon{
  width:18px;height:18px;
  border-radius:6px;
  display:grid;place-items:center;
  background: rgba(255,207,90,.18);
  border:1px solid rgba(255,207,90,.35);
  flex: 0 0 auto;
  margin-top:1px;
}
.risktext{ font-size:12px; line-height:1.5; color: rgba(234,240,255,.85); }
.risktext b{ color: var(--warn); font-weight: 900; }

/* Banner: show full image on desktop */
.banner{
  position:relative;
  width:100%;
  background:
    radial-gradient(800px 320px at 15% 10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(800px 320px at 85% 10%, rgba(0,230,255,.18), transparent 55%),
    #0b1025;
  /* Responsive height: avoids "cut off" on desktop */
  height: clamp(260px, 32vw, 380px);
  overflow:hidden;
}

/* IMPORTANT: contain = no cropping */
.bannerImg{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
  display:block;
  /* optional: slightly enhance readability */
  filter: saturate(1.02) contrast(1.03);
}

/* Dark overlay for readability */
.bannerOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(7,10,18,.05), rgba(7,10,18,.55) 70%, rgba(7,10,18,.92));
  pointer-events:none;
}

/* Banner tag */
.bannerTag{
  position:absolute;
  left:16px;
  bottom:16px;
  z-index:2;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(10,14,30,.60);
  backdrop-filter: blur(10px);
}
.bannerTagTitle{
  font-size:20px;
  font-weight:950;
  letter-spacing:-.2px;
}
.bannerTagSub{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

/* Content */
.content{ padding: 18px; }
.section{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.sectionTight{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.h1{
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -.4px;
}
.h2{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.1px;
}
.lead{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bullets{
  margin-top: 14px;
  display:grid;
  gap:12px;
}
.pill{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,14,30,.45);
  font-weight: 850;
  font-size: 15px;
}
.hl{ color:#fff; font-weight: 900; }
.muted{ color: rgba(234,240,255,.72); }
.hl-accent{
  font-weight: 950;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Bio */
.bio{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,14,30,.40);
}
.bio b{ color:#fff; font-weight: 950; }

/* Reviews */
.reviewsNote{
  font-size:12px;
  color: rgba(234,240,255,.70);
  margin-bottom: 10px;
}
.reviews{ display:grid; gap:10px; }
.review{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.stars{
  color: var(--green);
  font-weight: 950;
  letter-spacing: 1px;
  font-size: 13px;
}
.review b{ display:block; margin-top:6px; font-weight: 950; }
.review small{ color: var(--muted); display:block; margin-top:4px; line-height:1.55; }

.footnote{
  font-size:12px;
  color:#B8C2E6;
  line-height:1.7;
  margin:0;
}

/* Floating CTA */
.floatCta{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:18px;
  z-index:50;
  width:min(560px, calc(100% - 24px));
  pointer-events:none;
}

.btn{
  pointer-events:auto;
  width:100%;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,92,255,.98), rgba(0,230,255,.70));
  color:#fff;
  font-weight: 950;
  font-size: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
  position:relative;
  overflow:hidden;
  box-shadow: 0 26px 90px rgba(124,92,255,.45);
  animation: pulse 1.4s ease-in-out infinite;
  transform: translateZ(0);
}

@keyframes pulse{
  0%,100%{ transform: translateZ(0) scale(1); }
  50%{ transform: translateZ(0) scale(1.03); }
}

.btn::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: rotate(18deg);
  animation: shine 2.8s linear infinite;
}
@keyframes shine{
  0%{ left:-70%; }
  100%{ left:120%; }
}

.spark{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#37F29E;
  box-shadow: 0 0 20px rgba(55,242,158,.90);
}
