
  body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #ffffffff 0%, #d8ffdeff 100%);
    color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    font-size:18px;
  }
  /* Animated mesh bg */
body::before{
  content:"";
  position:fixed; inset:0;
  background:
    radial-gradient(35vw 35vw at 10% 10%, rgba(0,255,255,.10), transparent 60%),
    radial-gradient(40vw 40vw at 90% 20%, rgba(255,0,255,.10), transparent 65%),
    radial-gradient(45vw 45vw at 30% 90%, rgba(0,255,128,.10), transparent 60%),
    linear-gradient(180deg, #000 30%, #333 100%);

  filter: saturate(120%) blur(0px);
  animation: bgfloat 18s ease-in-out infinite alternate;
  z-index:-1;  /* behind everything */
  will-change: background-position, transform;
}
@keyframes bgfloat{
  0%   { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-12px) scale(1.02); }
}

/* Optional soft vignette for depth */
body::after{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  background: radial-gradient(120vw 120vw at 50% -10%, transparent 60%, rgba(255, 238, 0, 0.45) 100%);
  z-index:-1;
}

  .container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
  }
  h1 {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255,215,0,0.6);
  }
  h2 {
    color: #ddd;
    margin-bottom: 35px;
    font-weight: normal;
    font-size: 2em;
  }
  /* Hero section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* vertical centering */
  text-align: center;
  min-height: 100vh;         /* full viewport height */
  padding: 4rem 2rem;
  box-sizing: border-box;
}

  .steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .step {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    transition: transform 0.2s ease;
  }
  .step:hover { transform: scale(1.03); box-shadow: 0 0 25px rgba(255, 215, 0, 0.3); }
  .step h3 { color: #FFD700; margin-bottom: 10px; }

  .btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.3em;
    background: linear-gradient(45deg, #FFD700, #ff8c00);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255,215,0,0.4);
    transition: all 0.3s ease;
  }
  .btn:hover { transform: scale(1.07); box-shadow: 0 0 25px rgba(255,215,0,0.6); }

  .what-you-get {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
    text-align: left;
  }
  .what-you-get h3 { color: #FFD700; margin-bottom: 15px; text-align: center; }

  ul { list-style: none; padding: 0; margin: 0; font-size: 1.1em; }
  ul li { padding: 12px 0; border-bottom: 1px solid #222; }
  ul li:last-child { border-bottom: none; }

  .bonus-section {
    margin-top: 50px;
    background: #111;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
    text-align: center;
  }
  .bonus-section h3 { color: #FFD700; margin-bottom: 10px; }
  .bonus-section p { font-size: 1.1em; color: #ddd; }

  /* Join form */
  .join-wrap {
    margin-top: 50px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    text-align: left;
  }
  .join-wrap h3 {
    color: #FFD700;
    margin: 0 0 10px 0;
    text-align: center;
  }
  .price-note {
    text-align: center;
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.05em;
  }
  .form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .form-group {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }
  label { margin-bottom: 6px; color: #ddd; font-size: 0.95em; }
  input[type="text"], input[type="email"] {
    background: #151515;
    border: 1px solid #333;
    color: #f4f4f4;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 1em;
    outline: none;
  }
  input[type="text"]:focus, input[type="email"]:focus { border-color: #FFD700; box-shadow: 0 0 10px rgba(255,215,0,0.2); }
  .agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0 15px 0;
    color: #ccc;
    font-size: 0.95em;
  }
  .subtle {
    color: #aaa; font-size: 0.9em; text-align: center; margin-top: 10px;
  }
  .cta-bar {
    display: flex; justify-content: center; margin-top: 10px;
  }
  .honeypot { position: absolute; left: -9999px; top: -9999px; }
  .offer-card{
  display:flex;gap:24px;align-items:center;justify-content:space-between;
  background:#141414;border:1px solid #2a2a2a;border-radius:14px;padding:24px 22px;
  box-shadow:0 0 22px rgba(255,215,0,.12);margin:26px 0 34px;
}
.offer-left{flex:1 1 520px;text-align:left}
.offer-right{flex:0 0 280px}
.price-pill{
  display:inline-block;background:linear-gradient(45deg,#ffcc00,#ff8c00);color:#111;
  padding:6px 12px;border-radius:999px;font-weight:700;margin-bottom:10px;box-shadow:0 0 12px rgba(255,215,0,.35)
}
.offer-title{margin:0 0 10px;font-size:1.35em;color:#f4f4f4}
.offer-bullets{list-style:none;margin:0 0 16px;padding:0}
.offer-bullets li{padding:8px 0;border-bottom:1px solid #222;color:#ddd}
.offer-bullets li:last-child{border-bottom:none}
.btn-big{font-size:1.2em;padding:16px 28px;border-radius:12px}
.trust-note{margin-top:12px;color:#aaa;font-size:.95em}
.mini-proof{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.proof-badge{background:#1f4523;border:1px solid #2e8b57;color:#b9f7cf;padding:4px 8px;border-radius:6px;font-size:.8em}
.proof-copy{color:#cfd6ff;font-size:.95em}
.mini-visual{position:relative;height:120px;background:#101010;border:1px solid #222;border-radius:10px}
.mock{position:absolute;border-radius:8px}
.mock.card{top:14px;left:14px;right:50%;bottom:14px;background:#1d1d2b;border:1px solid rgba(255,215,0,.18)}
.mock.lines{top:14px;left:55%;right:14px;height:60px;background:linear-gradient(#25253a,#25253a) no-repeat;background-size:100% 6px;box-shadow:0 20px 0 0 #25253a,0 40px 0 0 #25253a}
.mock.cta{left:55%;right:14px;bottom:14px;height:34px;background:linear-gradient(90deg,#ff8c00,#ffcc00)}
/* Sticky bar */
#stickyBuy{
  position:fixed; left:0; right:0; bottom:-90px; z-index:9998;
  transition: transform .35s ease, bottom .35s ease, opacity .25s ease;
  opacity:0;
}
#stickyBuy.show{ bottom:0; opacity:1; }
.sb-wrap{
  margin:0 auto; max-width:980px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background:rgba(18,18,28,.92);
  border-top:1px solid rgba(255,215,0,.25);
  border-left:1px solid rgba(255,215,0,.12);
  border-right:1px solid rgba(255,215,0,.12);
  border-radius:12px 12px 0 0;
  padding:12px 16px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
.sb-copy{ display:flex; flex-direction:column; }
.sb-copy strong{ color:#ffd700; letter-spacing:.2px; }
.sb-sub{ color:#cfd6ff; font-size:.9em; opacity:.9; }
.sb-btn{
  display:inline-block; padding:12px 18px; border-radius:10px;
  background:linear-gradient(90deg,#ff8c00,#ffcc00); color:#111; font-weight:800;
  text-decoration:none; box-shadow:0 0 12px rgba(255,215,0,.35);
}
@media (max-width:560px){
  .sb-wrap{ flex-direction:column; align-items:stretch; gap:10px; }
  .sb-btn{ text-align:center; }
  .hero {
  padding: 2rem 1rem; /* mobile */
}
  .hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.2;
}
.hero p {
  font-size: clamp(1rem, 4vw, 1.25rem);
}
.hero .btn {
  width: 100%;
  max-width: 320px;
  margin: 1rem auto;
}
}
@media (min-width: 768px) {
  .hero {
    padding: 4rem 2rem; /* tablet+ */
  }
}

#chat-widget {
  text-align: left;
}
