/* RESET */
* {
margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
font-family: 'Space Grotesk', sans-serif;
  background-color: #0b0b0b;
  color: white;
  overflow-x: hidden;
}

html {
scroll-behavior: smooth;
}

/* HERO FUTURISTIC */
.futuristic-hero {
padding: 4rem 2rem 4rem;
  background-color: #0b0b0b;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
max-inline-size: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease both;
}

/* LOGO FADE DROP */
.hero-logo {
inline-size: 90px;
  margin-block-end: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: logoFadeIn 1s ease 0.6s forwards;
}

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

}

/* TYPEWRITER TEXT */
.hero-headline {
font-size: 2.8rem;
  font-weight: 900;
  color: white;
  margin-block-end: 2.2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

#typewriter {
color: #ff2d2d;
  font-weight: bold;
}

.cursor {
display: inline-block;
  color: #ff2d2d;
  animation: blink 0.8s steps(1) infinite;
  font-size: 2rem;
  margin-inline-start: 2px;
}

@keyframes blink {
0%, 100% { opacity: 1;
}

50% {
opacity: 0;
}

}

/* GLASS VIDEO WRAPPER */
.hero-video-wrapper {
margin: 2rem 0;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(209, 43, 43, 0.15);
  transition: transform 0.3s ease;
}

.hero-video-wrapper video {
inline-size: 100%;
  max-block-size: 440px;
  object-fit: cover;
  display: block;
}

/* CTA BUTTONS */
.hero-buttons {
display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-start: 1.5rem;
}

.btn {
  padding: 0.95rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 0 0 transparent;
}

.glow-red {
  background-color: #d12b2b;
  color: white;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.95rem 2rem;
  box-shadow: 0 0 10px rgba(209, 43, 43, 0.4);
  transition: all 0.3s ease;
}

.glow-red:hover {
  background-color: #a92121;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  transform: translateY(-3px);
}

.glow-border {
  background-color: transparent;
  color: white;
  border: 2px solid #d12b2b;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.95rem 2rem;
  box-shadow: 0 0 10px rgba(209, 43, 43, 0.2);
  transition: all 0.3s ease;
}

.glow-border:hover {
  background-color: #d12b2b;
  color: white;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  transform: translateY(-3px);
}



/* SCROLL INDICATOR */
.scroll-down-indicator {
margin-block-start: 3rem;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-down-indicator span {
inline-size: 24px;
  block-size: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.scroll-down-indicator span::after {
content: '';
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 50%;
  inline-size: 6px;
  block-size: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollPulse 1.5s infinite;
}

@keyframes scrollPulse {
0% { opacity: 1; transform: translate(-50%, 0);
}

100% {
opacity: 1; transform: translate(-50%, 0);
}

}

/* RESPONSIVE */
@media (max-width: 768px) {
.hero-headline {
    font-size: 2rem;
}

.hero-logo {
width: 100px;
}

.hero-buttons {
flex-direction: column;
    gap: 1rem;
}

}

/* FADE-UP ENTRANCE */
@keyframes fadeInUp {
0% {
    opacity: 0;
    transform: translateY(40px);
}

}


.hero-headline-static {
font-size: 2.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-headline-dynamic {
font-size: 1.8rem;
  color: #ff2d2d;
  font-weight: bold;
  min-height: 2.4rem; /* locks the height so layout doesn’t shift */
}

@media (max-width: 768px) {
.hero-headline-static {
    font-size: 2rem;
}

}


/*----------------------------------------------------------------------------------------------------*/


/* PRICING SECTION */
.pricing-section {
padding: 6rem 2rem;
  text-align: center;
}

.pricing-heading {
font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.pricing-grid {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.pricing-card {
background-color: #1a1a1a;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 700px;
  width: 100%;
  border: 1px solid #333;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.tier-title {
font-size: 1.4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.3rem;
}

.tier-subtitle {
color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tier-price {
font-size: 2rem;
  font-weight: bold;
  color: #d12b2b;
  margin-bottom: 0.5rem;
}

.tier-cycle {
font-size: 1rem;
  color: #777;
}

.tier-features {
list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.tier-features li {
margin: 0.6rem 0;
  font-size: 0.95rem;
}

.positive {
color: #22c55e;
}

.negative {
color: #ff000a;
}

.pricing-btn {
display: block;
  width: 100%;
  background-color: #d12b2b;
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.pricing-btn:hover {
background-color: #a92121;
}

.pricing-btn.disabled {
background-color: #222;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.pricing-btn.disabled:hover {
color: #a92121;
  text-decoration: none;
}

.platinum-card {
border: 2px solid #d12b2b;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
  position: relative;
}

.platinum-card::before {
content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #d12b2b;
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.material-symbols-rounded {
font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.check-icon {
color: #22c55e;
  margin-right: 0.5rem;
}

.close-icon {
color: #ff000a;
  margin-right: 0.5rem;
}

/* Pricing Animation */
.pricing-card {
opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.pricing-card.animate-in {
opacity: 1;
  transform: translateY(0);
}

/*----------------------------------------------------------------------------------------------------*/


/* TEAM SECTION (Futuristic) */
.team-section {
padding: 6rem 2rem;
  text-align: center;
}

.team-heading {
font-size: 2.8rem;
  margin-bottom: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
}

.team-grid {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
}

.team-card {
background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  max-width: 600px;
  flex: 1 1 280px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

.team-card.animate-in {
opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.team-photo {
width: 100%;
  border-radius: 14px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.team-name {
font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.team-role {
color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-bio {
font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.team-tags {
display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.tag {
background-color: #d12b2b;
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.team-tags i {
color: white;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.team-tags i:hover {
transform: scale(1.2);
}


/*----------------------------------------------------------------------------------------------------*/

.viral-section {
opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.viral-section.animate-in {
opacity: 1;
  transform: translateY(0);
}

.viral-section {
padding: 6rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.viral-heading {
font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.highlight-red {
color: #ff2d2d;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.4);
  padding-bottom: 2px;
}

.viral-benefits {
list-style: none;
  padding: 0;
  margin: 0 auto;
  color: white;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.viral-benefits li {
display: flex;
  align-items: center;
  gap: 0.75rem;
}

.viral-benefits .check-icon {
font-size: 1.6rem;
  color: #ff2d2d;
}

.viral-bullet {
opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.viral-bullet.animate-in {
opacity: 1;
  transform: translateY(0);
}

/* Mobile scaling (keeps it smaller on phones) */
@media (max-width: 768px) {
.viral-heading {
    font-size: 2rem;
}

}



/*----------------------------------------------------------------------------------------------------*/

.momentum-section {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.momentum-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.momentum-heading {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.momentum-subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.momentum-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.momentum-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}





@media (max-width: 768px) {
  .momentum-heading {
    font-size: 2rem;
  }

  .momentum-subtext {
    font-size: 1rem;
  }

  .momentum-buttons {
    flex-direction: column;
  }

  .momentum-buttons .btn {
    width: 100%;
  }
}


/*----------------------------------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------------------------------*/