* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000;
  color: rgb(255, 251, 241);
  overflow-x: hidden;
}

/* ================= LINKS ================= */
a {
  text-decoration: none;
  color: inherit;
}

/* ================= CONTAINER ================= */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  position: relative;
  z-index: 10;
}

/* LOGO FIX */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:28px;
  font-weight:800;
  letter-spacing:1px;
  white-space:nowrap;
}

.logo-img{
  width:52px;
  height:52px;
  object-fit:contain;
  display:block;
}

/* ================= BUTTON ================= */
.btn{ 
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7d2cff, #b84cff);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(139,44,255,0.4);
}
.Navbtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7d2cff, #b84cff);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(139,44,255,0.4);
}
.btnx{
   
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #711ff7, #8e1bda);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(139,44,255,0.4);
 
}
.btnW{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7d2cff, #b84cff);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease;
}
.Navbtn:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139,44,255,0.6);
}
.btnx:hover,
.btn:hover,
.btnW:hover{
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139,44,255,0.6);
}

/* ================= HERO (UNCHANGED) ================= */
.hero {
  display: flex;
  flex-direction: row;   /* force side by side */
  flex-wrap: nowrap;     /* stacking band */
  align-items: center;
  gap: 15px;
   
  overflow-x: auto;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(70, 6, 139, 0.3), transparent 35%), #000000;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 700px;
  flex: 1;
  min-width: 0;
}

.hero-text h1 {
  font-size: 55px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-text h1 span {
  color: #8b2cff;
  text-shadow: 0 0 15px rgba(139,44,255,0.7);
}

.hero-text p {
  max-width: 520px;
  color: #b8b8b8;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.hero-video { 
margin-top: -220px;
margin-left: 120px;
    flex: 1;
  display: flex;
  justify-content: flex-start; /* important change */
  align-items: center;
  flex: 1;
  min-width: 0;
}
 

.hero-video-element {
width: 100%;
  max-width: 680px;  /* mobile control */
  height: 310;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
}

/* ================= FEATURES (LIGHT THEME) ================= */

.features{
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
   
  padding-bottom: 40px ;
}

.features h2{
  color: #111;
  font-size: 48px;
  margin-bottom: 50px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 25px;
}

.feature{
  background: #eeeef0;
  border: 1px solid #c2c1c1;
   
  border-radius: 20px;
  transition: 0.3s ease;
  padding: 54px 0 60px;
}

.feature:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-icon{
  font-size: 42px;
  margin-bottom: 18px;
}

.feature h3{
  color: #111;
  font-size: 22px;
  margin-bottom: 12px;
}

.feature p{
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
  font-size: 15px;
}

/* ================= HOW IT WORKS ================= */

.how-it-works{
  background:#ffffff;
  padding:100px 0;
  text-align:center;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:50px;
}

.step-card{
  background:#f7f7fb;
  border:1px solid #e6e6ef;
  padding:30px;
  border-radius:20px;
}

.step-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.step-number{
  font-size:40px;
  font-weight:800;
  color:#8c52ff;
  margin-bottom:15px;
}

/* ================= CTA / FORMS ================= */

.cta{
  background:#ffffff;
  padding:110px 0;
  text-align:center;
}

.cta h2{
  font-size:48px;
  color:#111;
  margin-bottom:15px;
}

.cta p{
  color:rgba(0,0,0,0.6);
  font-size:18px;
}

.signup-box{
  width:100%;
  max-width:650px;
  margin:40px auto 0;
  background:#f7f7fb;
  border:1px solid #e6e6ef;
  border-radius:28px;
  padding:35px !important;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.signup-box input{
  width:100%;
  background:#fff;
  border:1px solid #e0e0e0;
  color:#111;
  padding:18px 20px;
  border-radius:16px;
}

.signup-box input::placeholder{
  color:rgba(0,0,0,0.4);
}

.signup-box button{
  width:100%;
  margin-top:10px;
  border:none;
  cursor:pointer;
  padding:18px 20px;
  border-radius:18px;
  font-size:16px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,#7b2ff7,#a855f7,#3b82f6);
}

/* ================= BENEFITS ================= */

.benefits{
  padding:100px 0;
  background:#ffffff;
  text-align:center;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.benefit-card{
  background:#f7f7fb;
  border:1px solid #e6e6ef;
  padding:25px;
  border-radius:18px;
}

.benefit-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* ================= TRUST ================= */

.trust{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  color:#666;
  font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .hero-content{
    flex-direction:column;
    text-align:center;
  }

  .hero-text h1{
    font-size:44px;
  }
}

@media (max-width: 480px){
  .hero-text h1{
    font-size:34px;
  }

  .btn{
    width:100%;
    justify-content:center;
  }
}
.intro{
  background:#fff;
  padding-top: 20px;   /* reduce top space */
  padding-bottom: 80px;
  text-align:center;
   
  padding: 110px 0;
   
}

.intro h2{
  font-size: 52px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -1px;
}

.intro h4{
  font-size: 20px;
  color: rgba(0,0,0,0.7);
  font-weight: 500;
  margin-bottom: 25px;
}
 
.intro p{
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0,0,0,0.65);
  margin-bottom: 35px;
}

.intro .btnW{
  display: inline-block;
}
.referral-flow{
  background:#fff;
  padding:110px 0;
  text-align:center;
}

/* HEADER */
.ref-head h2{
  font-size:48px;
  font-weight:800;
  color:#111;
  margin-bottom:10px;
}

.ref-head p{
  color:rgba(0,0,0,0.6);
  margin-bottom:60px;
  font-size:16px;
}

/* FLOW CONTAINER */
.ref-flow{
  display:flex;
  flex-direction:column;
  gap:25px;
  max-width:700px;
  margin:auto;
}

/* FLOW ITEM */
.flow-item{
  display:flex;
  align-items:flex-start;
  gap:20px;
  text-align:left;
  padding:20px;
  border-radius:16px;
  background:#f7f7fb;
  border:1px solid #e6e6ef;
  transition:0.3s;
}

.flow-item:hover{
  transform:translateX(6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* NUMBER CIRCLE */
.num{
  width:38px;
  height:38px;
  border-radius:50%;
  background:linear-gradient(135deg,#7b2ff7,#a855f7);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* TEXT */
.flow-item h3{
  font-size:18px;
  color:#111;
}

.flow-item p{
  font-size:14px;
  color:rgba(0,0,0,0.6);
}

/* ACTION BOX */
.ref-action{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
}

/* INPUT - FULL RESET (IMPORTANT) */
.ref-action input{
  flex:1;

  /* HARD RESET */
  all: unset;

  /* NEW DESIGN */
  padding:16px 18px;
  width:100%;
  border-radius:14px;

  background:#0b0d0b; /* solid dark (no transparency issue) */
  color:#ffffff !important;

  border:1px solid rgba(140,82,255,0.35);

  font-size:14px;
  box-sizing:border-box;

  transition:0.3s;
}

/* placeholder fix */
.ref-action input::placeholder{
  color:rgba(255,255,255,0.5);
}

/* focus */
.ref-action input:focus{
  border-color:#7b2ff7;
  box-shadow:0 0 20px rgba(123,47,247,0.25);
}

/* BUTTON */
.ref-action button{
  padding:16px 20px;
  border:none;
  border-radius:14px;
  font-weight:700;
  color:#fff;
  cursor:pointer;
  white-space:nowrap;

  background:linear-gradient(135deg,#5d1bc8,#8423df,#8b1dcf);

  transition:0.3s;
}

.ref-action button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(123,47,247,0.3);
}
/* TRUST */
.trust{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  font-size:14px;
  color:#555;
}
.tribe-image{
  margin-top:-80px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.tribe-image img{
  width:100%;
  max-width:1000px;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  object-fit:cover;
  transition:0.4s ease;
}

/* hover premium effect */
.tribe-image img:hover{
  transform:scale(1.02);
  box-shadow:0 25px 80px rgba(0,0,0,0.2);
}
 .waitlist-pro{
  background:#ffffff;
  padding:80px 0;
  text-align:center;
}

/* HEADER */
.waitlist-head h2{
  font-size:48px;
  font-weight:800;
  color:#111;
  margin-bottom:10px;
}

.waitlist-head p{
  color:rgba(0,0,0,0.6);
  margin-bottom:50px;
}

/* FORM */
.waitlist-form{
  max-width:700px;
  margin:auto;
}

/* GRID */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

/* INPUT BOX */
.input-box{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f7f7fb;
  border:1px solid #e6e6ef;
  padding:14px 16px;
  border-radius:14px;
  transition:0.3s;
}

.input-box span{
  font-size:16px;
}

.input-box input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  font-size:14px;
}

/* FULL WIDTH */
.input-box.full{
  grid-column:1 / -1;
}

/* FOCUS EFFECT */
.input-box:focus-within{
  border-color:#7b2ff7;
  box-shadow:0 10px 25px rgba(123,47,247,0.15);
  transform:translateY(-2px);
}

/* BUTTON */
.submit-btn{
  margin-top:25px;
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  font-size:16px;
  font-weight:700;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(135deg,#7b2ff7,#a855f7,#3b82f6);
  transition:0.3s;
}

.submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(123,47,247,0.25);
}

/* TRUST */
.trust{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  font-size:14px;
  color:#555;
}
.intro,
.cta,
.referral-flow{
  padding-top:80px ;
  padding-bottom:60px ;
  margin:0 ;
} 