:root {
  --bg-dark: #020202;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --accent-cyan: #00f2ff;
  --accent-purple: #7000ff;
  --text-main: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.6);
  --glow-cyan: rgba(0, 242, 255, 0.4);
  --font-main: 'Outfit', sans-serif;
  --nav-height: 90px;
  --elite-purple: #9d00ff;
  --elite-cyan: #00e4ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* Atmosphere Background */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-bg-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%);
  z-index: -1;
}

/* Header & Nav */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: -1px;
}

.logo span {
  color: white;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.7;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-cyan);
}

/* Unified Buttons */
.btn {
  display: inline-flex;
  padding: 1.1rem 2.8rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.btn-primary,
.nav-links .btn-primary {
  background: white !important;
  color: black !important;
  opacity: 1 !important;
}

.btn-primary:hover {
  background: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 242, 255, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  transform: translateY(-5px);
}

.glow {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Elite Subscription Button */
.btn-elite {
  background: url('assets/subscription_btn_bg.png') center/cover no-repeat !important;
  color: white !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 1.3rem 3.5rem !important;
  font-size: 1rem !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-elite::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s;
}

.btn-elite:hover::before {
  left: 100%;
}

.btn-elite:hover {
  transform: scale(1.05) translateY(-5px) !important;
  border-color: var(--elite-cyan) !important;
  box-shadow: 0 20px 40px rgba(157, 0, 255, 0.4), 0 0 20px var(--elite-cyan);
}

.glow-elite {
  animation: eliteGlow 3s infinite alternate;
}

@keyframes eliteGlow {
  0% {
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3), 0 0 5px rgba(0, 228, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.6), 0 0 15px rgba(0, 228, 255, 0.4);
  }
}

.full-width {
  width: 100%;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  text-align: center;
}

.hero-icon-box {
  margin-bottom: 2rem;
}

.hero-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.hero-inner h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.hero-inner p {
  font-size: 1.25rem;
  opacity: 0.7;
  max-width: 750px;
  margin: 0 auto 4.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.neon-text {
  color: var(--accent-cyan);
  text-shadow: 0 0 30px var(--glow-cyan);
}

/* Manifest */
.manifest-section {
  padding: 15rem 0;
  background: rgba(0, 0, 0, 0.85);
  position: relative;
}

.manifest-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--bg-dark), transparent, var(--bg-dark));
  pointer-events: none;
}

.section-label {
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.9rem;
  margin-bottom: 4rem;
  opacity: 0.8;
}

.manifest-text {
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.highlight {
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Redesigned Immersive Viralia */
.viralia-immersive {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  margin: 10rem 0;
  overflow: hidden;
}

.viralia-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.viralia-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2);
}

.viralia-bg-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 40%, transparent 60%, var(--bg-dark) 100%),
    linear-gradient(0deg, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
}

.viralia-immersive-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  /* Card on the right side */
}

.viralia-floating-card {
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(112, 0, 255, 0.3);
  padding: 0;
  border-radius: 60px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(112, 0, 255, 0.15);
  overflow: hidden;
}

.viralia-card-inner {
  display: flex;
  min-height: 550px;
}

.viralia-side-visual {
  flex: 1.1;
  padding: 5rem;
  background: radial-gradient(circle at center, rgba(112, 0, 255, 0.1), transparent);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.viralia-side-content {
  flex: 1;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.viralia-3d-asset {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-purple), #ff00ff);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: -1;
}

.floating-icon {
  width: 120px;
  height: 120px;
  color: var(--accent-purple);
  filter: drop-shadow(0 0 30px var(--accent-purple)) brightness(1.5);
  margin-top: 2rem;
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.viralia-tag {
  color: #ff00ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.viralia-title {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 800;
  color: white;
}

.viralia-title span {
  color: #7000ff;
  display: block;
  text-shadow: 0 0 40px rgba(112, 0, 255, 0.6);
}

.viralia-desc {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.viralia-desc strong {
  color: var(--accent-cyan);
}

.viralia-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.viralia-perks span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.viralia-perks i {
  color: #00f2ff;
  width: 18px;
}

.viralia-pricing {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.old-price {
  font-size: 1.5rem;
  color: #ff4d4d;
  text-decoration: line-through 3px;
  font-weight: 700;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.2rem;
}

.new-price {
  font-size: 5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 80px rgba(0, 242, 255, 0.4);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.limited-offer-link {
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  margin-top: 1rem;
}

.limited-offer {
  background: linear-gradient(90deg, #ff00ff, #7000ff);
  color: white;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 15px 30px rgba(255, 0, 255, 0.4);
  animation: pulse 2s infinite;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.limited-offer:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 0, 255, 0.6);
  background: linear-gradient(90deg, #7000ff, #ff00ff);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 0, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
  }
}

.viralia-image-btn {
  display: block;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
}

.viralia-image-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.viralia-image-btn:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: #ff00ff;
  box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

@media (max-width: 992px) {
  .viralia-immersive-content {
    justify-content: center;
  }

  .viralia-card-inner {
    flex-direction: column;
  }

  .viralia-side-visual,
  .viralia-side-content {
    padding: 4rem 2rem;
    text-align: center;
    flex: none;
  }

  .viralia-side-visual {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .viralia-title {
    font-size: 3rem;
  }

  .viralia-perks {
    grid-template-columns: 1fr;
  }

  .viralia-3d-asset {
    display: none;
  }
}

/* Marketplace & Store */
.marketplace-section {
  padding: 10rem 0;
  position: relative;
  z-index: 2;
}

.marketplace-controls {
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-cyan);
  color: black;
  box-shadow: 0 0 30px var(--glow-cyan), 0 0 10px var(--accent-cyan);
  transform: translateY(-2px);
}

.search-box {
  position: relative;
  min-width: 300px;
}

.search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1rem 3.5rem 1rem 1.5rem;
  border-radius: 100px;
  color: white;
  font-family: inherit;
  transition: 0.3s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}

.search-box i {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  opacity: 0.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 0;
  backdrop-filter: blur(20px);
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.8s;
  pointer-events: none;
}

.product-card:hover::after {
  left: 150%;
}

.product-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-cyan);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 255, 0.1);
}

.product-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.product-card:hover .product-thumb img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.badge-course {
  background: rgba(0, 242, 255, 0.8);
  color: black;
}

.badge-prompt {
  background: rgba(112, 0, 255, 0.8);
  color: white;
}

.badge-free {
  background: rgba(255, 0, 157, 0.8);
  color: white;
}

.product-info {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.product-info p {
  font-size: 0.95rem;
  opacity: 0.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-cyan);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
}

/* Mute/Unmute Button on Hero Video */
.mute-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.mute-btn:hover {
  background: rgba(0, 242, 255, 0.15);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
  transform: scale(1.1);
}

.mute-btn i {
  width: 20px;
  height: 20px;
}


.title-lg {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  margin: 2rem auto;
  border-radius: 10px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5rem;
  margin-top: 7rem;
}

.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 3rem;
  backdrop-filter: blur(25px);
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.glass-card:hover {
  transform: translateY(-20px);
  border-color: rgba(0, 242, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 255, 0.1);
}

.card-img-wrapper {
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 2.5rem;
  height: 240px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
  opacity: 0.85;
}

.glass-card:hover .card-img {
  transform: scale(1.15);
  opacity: 1;
}

.card-body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.rating {
  color: #fbc02d;
  font-size: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating span {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.card-body p {
  opacity: 0.65;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

/* Leads */
.lead-card-high {
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.06), rgba(112, 0, 255, 0.06));
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8rem 4rem;
  text-align: center;
  margin: 12rem 0;
  backdrop-filter: blur(20px);
}

.title-md {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lead-card-high p {
  opacity: 0.6;
  margin-bottom: 4rem;
}

.futuristic-form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.f-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  padding: 1.4rem 3rem;
  border-radius: 100px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
}

.f-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

/* Footer */
.main-footer {
  padding: 10rem 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  background: #010101;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent-cyan);
}

.social-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 4rem 0;
}

.social-btn {
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.02);
}

.social-btn:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-8px) scale(1.1);
  background: rgba(0, 242, 255, 0.05);
}

.copyright {
  opacity: 0.4;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.legal-links {
  display: flex;
  gap: 3rem;
  justify-content: center;
  opacity: 0.5;
  font-size: 0.85rem;
}

.legal-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.legal-links a:hover {
  color: var(--accent-cyan);
  opacity: 1;
}


/* Modals */
.modal-root {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-root.active {
  display: flex;
}

.modal-card {
  background: #080808;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 4.5rem;
  max-width: 900px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
}

.close-modal:hover {
  opacity: 1;
  color: var(--accent-cyan);
}

.legal-content p {
  margin-bottom: 2rem;
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* Dual Brands Social Wrapper */
.social-wrapper {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.social-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  font-weight: 700;
  opacity: 0.8;
}

.social-icons {
  margin: 0 !important;
}

.social-btn i,
.social-btn svg {
  width: 22px;
  height: 22px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: 0.3s;
}

.social-btn:hover i {
  color: var(--accent-cyan);
}

.social-label {
  display: block !important;
  visibility: visible !important;
  margin-bottom: 0.5rem;
}

/* AI Bot Trigger & Chat */
.ai-bot-trigger {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 75px;
  height: 75px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  animation: bot-pulse 2s infinite ease-in-out;
  transition: 0.4s;
}

@keyframes bot-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.8), 0 0 10px var(--accent-purple);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
  }
}

.ai-bot-trigger::after {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  width: 15px;
  height: 15px;
  background: #ff0055;
  border-radius: 50%;
  border: 2px solid black;
  animation: bot-flicker 1s infinite;
}

@keyframes bot-flicker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ai-bot-trigger:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 50px var(--accent-cyan);
  animation-play-state: paused;
}

.ai-bot-trigger i {
  color: var(--accent-cyan);
  width: 32px;
  height: 32px;
}

.bot-badge {
  position: absolute;
  top: -10px;
  background: var(--accent-purple);
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.bot-chat-card {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: 35px;
  width: 400px;
  height: 550px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.chat-header {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.bot-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.bot-info h3 {
  font-size: 1.1rem;
}

.bot-info span {
  font-size: 0.75rem;
  opacity: 0.5;
}

.chat-body {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chat-msg {
  padding: 1rem 1.4rem;
  border-radius: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 5px;
  color: var(--text-main);
}

.chat-msg.user {
  background: var(--accent-cyan);
  color: black;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  font-weight: 600;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chat-options button {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 0.8rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.chat-options button:hover {
  background: var(--accent-cyan);
  color: black;
}

.bot-form-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bot-ui-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  color: white;
  font-family: inherit;
}

.bot-submit-btn {
  background: white;
  color: black;
  border: none;
  padding: 1rem;
  border-radius: 100px;
  font-weight: 800;
  cursor: pointer;
}

/* Chat Footer Input */
.chat-footer {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
}

.chat-footer input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.8rem 1.5rem;
  color: white;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
}

.chat-footer input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.send-btn {
  width: 45px;
  height: 45px;
  background: var(--accent-cyan);
  border: none;
  border-radius: 50%;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--accent-cyan);
}

@media (max-width: 500px) {
  .bot-chat-card {
    width: 90vw;
    height: 80vh;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-inner h1 {
    font-size: 3.5rem;
  }

  .manifest-text {
    font-size: 1.6rem;
  }

  .lead-card-high {
    padding: 5rem 2rem;
  }

  .modal-card {
    padding: 2.5rem;
  }

  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
  }
}