@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep: #0A0118;
  --bg-card: rgba(22, 10, 50, 0.7);
  --accent-cyan: #00E5FF;
  --accent-orange: #FF9560;
  --accent-gold: #FFC414;
  --accent-pink: #FF6BCA;
  --accent-blue: #4F6AFF;
  --accent-purple: #8B5CF6;
  --text-white: #FFFFFF;
  --text-soft: #B8B0CC;
  --text-dim: #7A7294;
  --grad-orange: linear-gradient(94.67deg, #FF9560 -13.33%, #FFC414 102.22%);
  --grad-hero: linear-gradient(135deg, #1a0533 0%, #0d0920 40%, #0f1535 100%);
  --grad-blue-pink: linear-gradient(135deg, #4F6AFF 0%, #FF6BCA 100%);
  --grad-purple: linear-gradient(180deg, #5B21B6 0%, #1E1145 100%);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}
.yellow-clr{
  color: #FFC414;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  /* color:var(--text-white);
  background:var(--bg-deep); */
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}


/* ===== ANIMATED BG ===== */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79, 106, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}


/* ===== NAV ===== */
.navbar-main {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 1, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.nav-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fff 50%, #FF6BCA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all .25s;
  color: var(--text-soft);
}

.nav-links a:hover {
  color: #fff;
  background: var(--glass);
}

.nav-links .btn-get-link {
  background: var(--grad-orange);
  color: #0D0A27 !important;
  font-weight: 700;
  animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}


/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 106, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 202, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-promote {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #FFC670, #FF9560);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(86.93deg, #FFFFFF 54.24%, #8383FF 77.05%, #FF72BD 99.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--text-white);
  max-width: 850px;
  margin: 0 auto 32px;
  line-height: 1.4;
}

.hero-live {
  margin-top: 40px;
}

.hero-live .going {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-live .date {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
}

.hero-live .time {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--accent-gold);
}


/* ===== SECTIONS ===== */
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.section-pad {
  padding: 80px 0;
  position: relative;
}

.section-pad-lg {
  padding: 100px 0;
  position: relative;
}


/* ===== FACT CARDS ===== */
.fact-section {

  position: relative;
  background: url(../images/fact-section.png) no-repeat center top;
  background-size: cover;
  padding: 80px 0 50px 0;
}

.fact-card {
  background: linear-gradient(180deg, rgba(40, 30, 80, 0.6) 0%, rgba(12, 9, 35, 0.5) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.fact-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.fact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(79, 106, 255, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.fact-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}









/* ===== LAUNCH DATES ===== */
.launch-box {
background: linear-gradient(135deg, #000000, #000000);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.launch-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4F6AFF, #6bc9ff, #7860ff);
}

.launch-grid h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.launch-grid p {
  font-size: 16px;
  color: var(--text-soft);
}

.launch-note {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 600;
}


/* ===== PRODUCT INTRO ===== */

.intro-section {

  padding: 70px 0px 150px 0px;
  background: url(../images/intro-section.png) no-repeat center top;
  background-size: cover;

  z-index: 9;

}

@media (min-width:768px) {

  .intro-section {
    padding: 70px 0px 150px 0px;
    background: url(../images/intro-section.png) no-repeat center top;
    background-size: cover;
  }

}

.intro-section {

  background-colore: #0A0118;
}


.intro-label {
  font-size: 40px;
  font-weight: 600;
  /* background:linear-gradient(90deg,#FFC670,#FF9560);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent; */
  margin-bottom: 24px;
  font-style: italic;
}

.mockup-box {
  background: linear-gradient(135deg, rgba(30, 20, 80, 0.5), rgba(15, 5, 50, 0.5));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.mockup-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 106, 255, 0.05), rgba(255, 107, 202, 0.05));
}

.mockup-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-purple);
  position: relative;
}


/* ===== FEATURE ITEMS ===== */
.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all .3s;
  height: 100%;
}

.feat-item:hover {
  border-color: rgba(139, 92, 246, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.feat-icon-sm {
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
background: linear-gradient(135deg, rgba(216, 72, 118, 0.33), rgba(209, 96, 134, 0.09));
  border: 1px solid rgb(129, 16, 106);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feat-item p {
  font-size: 16px;
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 0;
}


/* ===== 3 STEPS ===== */
.steps-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.step-number {
  min-width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #4F6AFF, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(79, 106, 255, 0.3);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.step-content em {
  color: var(--accent-cyan);
  font-style: italic;
}




/* ===== FEATURE DETAIL CARDS ===== */

.feature-detail-section {

  padding: 70px 0px 80px 0px;
  background: url(../images/channel-truth-section.png) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;

}

.feat-detail-card {
     background: linear-gradient(180deg, #06b7fa, rgb(20 14 47));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feat-detail-card:hover {
  border-color: rgba(79, 106, 255, 0.3);
  transform: translateY(-3px);
}

.feat-detail-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;

  color: #fff;
}

.feat-detail-card p {
font-size: 18px;
    color: #e2deec;
    line-height: 1.6;
    margin-bottom: 0;
}

.feat-detail-card .icon-wrap {
  width: 100%;

  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(79, 106, 255, 0.2), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.15);
padding: 14px;
 


}


/* ===== COMMERCIAL LICENSE ===== */
.commercial {
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 1, 24, 0) 0%, rgba(25, 8, 80, 0.3) 50%, rgba(10, 1, 24, 0) 100%);
}

.commercial .highlight {
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 600;
  line-height: 1.35;
  background: var(--gradient-primary);
  /* background: linear-gradient(94.67deg, #B1C6FF 30.56%, #FF7274 102.22%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 850px;
  margin: 0px auto;
}

.commercial .sub-text {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 1.6;
}

.commercial .sub-text strong {
  color: #fff;
}

.wait-badge {
  display: inline-block;
  padding: 10px 28px;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(90deg, #FF3333, #1E43C8);
  border-radius: 30px;
  margin-bottom: 32px;
}

.license-img-placeholder {
  padding: 60px;
  background: linear-gradient(135deg, rgba(79, 106, 255, 0.1), rgba(255, 107, 202, 0.1));
  border: 1px dashed rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  font-size: 18px;
  color: var(--text-dim);
}


/* ===== FUNNEL ===== */

/* .funnel-section {

	padding: 30px 0px;

	background: url(../images/funnel-headline.png) no-repeat center center;

	background-size: cover;

}



@media (min-width:768px) {

	.funnel-section {

		padding: 80px 0px;



	}

} */

.arrow-right img {
position: relative;
  width: 50px;
  right: 0%;
  z-index: 1;
  opacity: 0.8;
}

.funnel-section {
  background: #0A0118;
  overflow: hidden;
}

.funnel-card {
    background: linear-gradient(180deg, #0090c7, rgb(15 10 40));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
  height: 100%;
}

.funnel-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
}

.funnel-card h4 {
font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  min-height: 44px;
  color: #fff;
}

.funnel-price {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(94.67deg, #00D2BD -13.33%, #7982FF 44.45%, #FF6868 102.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.funnel-card .note {
  font-size: 13px;
  color: var(--text-white);
  margin-top: 8px;
}

.funnel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-purple);
}

@media(max-width:991px) {
  .funnel-arrow {
    transform: rotate(90deg);
  }
}


/* ===== OTO CARDS ===== */
.oto-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #E82C90 0%, #3F10FF 100%);
  padding: 1px;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
}

.oto-header {
  padding: 24px;
  text-align: center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.oto-header.fe {
  background: linear-gradient(90deg, #0E1247, #1a1a6d);
}

.oto-header.oto1 {
  background: linear-gradient(90deg, #171E6D, #6F2CD3);
}

.oto-header.oto2 {
  background: linear-gradient(90deg, #2C5BD3, #4B1794);
}

.oto-header.oto3 {
  background: linear-gradient(90deg, #631585, #2F2CD3);
}

.oto-header.oto4 {
  background: linear-gradient(90deg, #3A1778, #B70303);
}
.oto-oto4{
margin-top: -305px;
}



.oto-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.oto-header p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  margin-bottom: 0;
}

.oto-body {
  background: linear-gradient(180deg, #FFFFFF, #F3F1FF);
  padding: 28px;
  color: #000;
  border-radius: 0 0 calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px);
  flex-grow: 1;
}

.oto-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #103CFF;
  margin-bottom: 16px;
}

.oto-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.oto-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  background-image: url(../images/tick1.png);
background-repeat: no-repeat;
    min-height: 35px;
  padding-left: 35px;
  background-position: 0px 3px;
  background-size: 25px;
}

.oto-body ul li::before {
  /* content: 'βœ"'; */
  /* background-image: url(../images/tick1.png); */
  position: absolute;
  left: 0;
  top: 0;
  color: #4F6AFF;
  font-weight: 800;
  font-size: 16px;
  /* min-height: 35px;
  padding-left: 35px;
  background-position: 0px 3px;
  background-size: 25px; */
}


/* ===== PRIZES ===== */
.prizes-section {
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 1, 24, 0), rgba(25, 8, 80, 0.2), rgba(10, 1, 24, 0));
}

.prize-card {
  padding: 32px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(40, 25, 100, 0.5), rgba(20, 12, 55, 0.5));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all .3s;
  height: 100%;
}

.prize-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 29, 0.3);
}

.prize-card.gold {
  border-color: rgba(255, 215, 29, 0.4);
  box-shadow: 0 8px 40px rgba(255, 215, 29, 0.1);
}

.prize-rank {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.prize-rank sup {
  font-size: 12px;
}

.prize-amount {
display: inline-block;
  padding: 5px 40px;
  background: linear-gradient(135deg, #E2575F, #4F6AFF);
  border-radius: 30px;
  font-size: 30px;
  font-weight: 800;
  margin-top: 8px;
  color: #fff;
  background: var(--gradient-primary);
}

.prize-trophy {
  font-size: 48px;
  margin-bottom: 12px;
}

.contest-badge {
  display: inline-block;
  padding: 14px 36px;
  margin-top: 40px;
background: linear-gradient(94.67deg, #110080 30.56%, #290039 102.22%);
  border-radius: 40px;
  font-size: 24px;
  font-weight: 700;
}

.prize-note {
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}


/* ===== RECIPROCATE ===== */
.reciprocate {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0EEFF 100%);
  color: #000;
  position: relative;
}

.reciprocate .section-title {
  color: #090117;
}

.reciprocate .sub {
  font-size: 18px;
  color: #444;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.rp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(114, 95, 137, 0.12);
  transition: all .3s;
  height: 100%;
}

.rp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(114, 95, 137, 0.2);
}

.rp-card .placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0eeff, #e8e4ff);
  border-radius: 12px;
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
}

.rp-sales {
  display: inline-block;
  padding: 6px 20px;
  background: #4164FF;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  margin-top: -8px;
  position: relative;
  z-index: 2;
}


/* ===== CTA ===== */
.cta-section {
  text-align: center;
}

.cta-section .divider {
  width: 200px;
  height: 2px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
}

.btn-affiliate {
  display: inline-block;
  padding: 18px 52px;
  font-size: 22px;
  font-weight: 700;
  color: #0D0A27;
  background: var(--grad-orange);
  border-radius: 12px;
  animation: pulseBtn 2s ease-in-out infinite;
  transition: all .3s;
}

.btn-affiliate:hover {
  box-shadow: 0 8px 30px rgba(255, 196, 20, 0.3);
  transform: scale(1.02);
  color: #0D0A27;
}


/* ===== CONTACT ===== */
.contact-section .section-title span {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}


/* ===== FOOTER ===== */
.footer-main {
  padding: 60px 0 40px;
  text-align: center;
  background: rgba(25, 3, 52, 0.8);
  border-top: 1px solid var(--glass-border);
}

.footer-main .logo {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(86.93deg, #FFFFFF 54.24%, #8383FF 77.05%, #FF72BD 99.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footer-main .copy {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--text-soft);
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links .sep {
  width: 1px;
  height: 16px;
  background: var(--text-dim);
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HIGHLIGHT YELLOW ===== */
.txt-yellow {
  color: #FFD81D;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media(max-width:767px) {

    .section-title {
        font-size: 24px;
    }



  .hero-title {
    font-size: 48px;
  }

  .steps-title {
    font-size: 30px;
  }

  .launch-box {
    padding: 32px 20px;
  }

  .step-number {
    min-width: 60px;
    height: 60px;
    font-size: 24px;
  }
}