/* ============================================
   BHAZAR 2.0 — Sales Landing Page Styles
   Premium Dark Mode Design System
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-dark: #040811;
  --bg-dark-alt: #080E1B;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(79, 125, 243, 0.5);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent-blue: #4F7DF3;
  --accent-green: #00D4AA;
  --accent-violet: #7C3AED;
  --accent-orange: #F59E0B;
  --accent-red: #EF4444;
  --gradient-primary: linear-gradient(135deg, #4F7DF3, #7C3AED);
  --gradient-cta: linear-gradient(135deg, #4F7DF3 0%, #7C3AED 50%, #4F7DF3 100%);
  --gradient-green: linear-gradient(135deg, #00D4AA, #4F7DF3);
  --gradient-warm: linear-gradient(135deg, #F59E0B, #EF4444);
  --gradient-text: linear-gradient(90deg, #4F7DF3, #7C3AED, #F59E0B);
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --card-radius: 16px;
  --pill-radius: 9999px;
  /* Shadows */
  --glow-blue: 0 0 30px rgba(79, 125, 243, 0.3);
  --glow-violet: 0 0 30px rgba(124, 58, 237, 0.3);
  --glow-green: 0 0 30px rgba(0, 212, 170, 0.3);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#loading-screen.fade-out {
  animation: screen-fade 3.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes screen-fade {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 0.7;
  }

  60% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-logo-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
  overflow: hidden;
}

.loading-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: logo-fade-in 1.5s ease 0.5s forwards;
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Two masks — top half slides UP, bottom half slides DOWN */
.loading-reveal-mask {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: #000000;
}

.loading-reveal-mask.mask-top {
  top: 0;
  animation: mask-slide-up 3s cubic-bezier(0.25, 0, 0.25, 1) 1.5s forwards;
}

.loading-reveal-mask.mask-bottom {
  bottom: 0;
  animation: mask-slide-down 3s cubic-bezier(0.25, 0, 0.25, 1) 1.5s forwards;
}

@keyframes mask-slide-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes mask-slide-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Glowing scan line on the edge of each mask */
.loading-reveal-mask.mask-top::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #888, #ffffff, #888, transparent);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.2);
  display: none;
}

.loading-reveal-mask.mask-bottom::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #888, #ffffff, #888, transparent);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.2);
  display: none;
}

@keyframes scanline-appear {
  to {
    opacity: 1;
  }
}

/* After reveal — logo pulses in sync with each letter */
.loading-logo-wrapper.revealed .loading-logo {
  opacity: 1;
  transform: scale(1);
  animation: logo-letter-sync 4s ease-in-out 4.5s forwards;
}

/* Pulses at: 0.3s(B), 0.65s(h), 1.0s(a), 1.35s(z), 1.7s(a), 2.05s(r) — relative to 4.5s start */
@keyframes logo-letter-sync {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  /* B pulse at ~7% (0.3s/4s) */
  6% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.15));
    transform: scale(1.04);
  }

  10% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  /* h pulse at ~16% (0.65s/4s) */
  15% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  16% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.15));
    transform: scale(1.04);
  }

  20% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  /* a pulse at ~25% (1.0s/4s) */
  24% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  25% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.15));
    transform: scale(1.04);
  }

  29% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  /* z pulse at ~34% (1.35s/4s) */
  33% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  34% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.15));
    transform: scale(1.04);
  }

  38% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  /* a pulse at ~43% (1.7s/4s) */
  42% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  43% {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.15));
    transform: scale(1.04);
  }

  47% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  /* r pulse at ~51% (2.05s/4s) */
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }

  51% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.2));
    transform: scale(1.06);
  }

  56% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    transform: scale(1);
  }

  100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transform: scale(1);
  }
}

/* Loading text — dynamic letter by letter */
.loading-text {
  margin-top: 4px;
  display: flex;
  gap: 3px;
  justify-content: center;
  transition: opacity 2s ease, transform 2s ease;
}

/* INTERACTIVE SELECTION SCREEN STYLES */

/* All wrappers get pointer cursor */
.loading-content,
.loading-side-wrapper {
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

/* Hover effect for selection */
.loading-side-wrapper:hover {
  transform: translateY(-50%) scale(1.03);
  z-index: 10;
}

.loading-content:hover {
  transform: scale(1.03);
  z-index: 10;
}

/* Initial state: Logo marks HIDDEN (Text Only Mode) */
.loading-logo-wrapper {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: scale(0.9);
  transition: height 3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 2.5s ease,
    transform 3s cubic-bezier(0.4, 0, 0.2, 1),
    margin-bottom 3s ease;
  margin-bottom: 0;
}

/* REVEALED STATE - Logo Appears */
.loading-logo-wrapper.revealed {
  opacity: 1;
  height: 320px;
  transform: scale(1);
  margin-bottom: 6px;
}

/* SELECTED STATE — shift up to keep centered growth */
.loading-content.selected,
.loading-side-wrapper.selected {
  transform: translateY(-100px);
  transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FADED STATE - For unselected items */
.loading-content.faded,
.loading-side-wrapper.faded {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.95);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Modifying animation triggers to depend on .revealed class or user interaction */
/* We keep existing keyframes but rely on JS to add classes */

/* Loading SIDE wrappers (Left & Right) */
/* Loading SIDE wrappers (Left & Right) */
.loading-side-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Scale 1 to match center */
  transform: translateY(-50%) scale(1);
  margin-top: 0;
  /* Smooth glide to center */
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
    left 1.8s cubic-bezier(0.25, 1, 0.5, 1),
    right 1.8s cubic-bezier(0.25, 1, 0.5, 1),
    margin-top 1.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s ease;
}

/* Move side wrappers to center on selection */
.loading-side-wrapper.move-to-center {
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, calc(-50% - 100px)) scale(1) !important;
  margin-top: 0 !important;
  z-index: 100;
  /* Ensure on top */
}

/* Override scale(1) on hover to avoid conflict with hover scale(1.03) */
.loading-side-wrapper:hover {
  transform: translateY(-50%) scale(1.03);
  margin-top: 0;
}

.loading-side-wrapper.left {
  left: 100px;
}

.loading-side-wrapper.right {
  right: 100px;
}

@media (max-width: 1400px) {

  /* Scale down on smaller screens to prevent overlap */
  .loading-side-wrapper {
    transform: translateY(-50%) scale(0.8);
  }

  .loading-side-wrapper.left {
    left: 40px;
  }

  .loading-side-wrapper.right {
    right: 40px;
  }
}

@media (max-width: 768px) {

  /* Stack all sections vertically on mobile */
  #loading-screen {
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 48px 24px;
    overflow-y: auto;
  }

  .loading-side-wrapper,
  .loading-content {
    position: static !important;
    transform: none !important;
    display: flex;
    width: 100%;
    max-width: 340px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .loading-side-wrapper.left {
    left: auto;
    order: -1;
  }

  .loading-side-wrapper.right {
    right: auto;
    order: 1;
  }

  .loading-content {
    order: 0;
  }

  .loading-side-wrapper:hover,
  .loading-content:hover {
    transform: scale(1.03) !important;
  }

  /* --- SELECTED STATE on mobile --- */
  /* Selected section expands and centers like desktop */
  .loading-side-wrapper.selected,
  .loading-content.selected,
  .loading-side-wrapper.move-to-center {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: #000 !important;
    z-index: 100;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    transform: none !important;
  }

  /* Faded sections disappear on mobile */
  .loading-side-wrapper.faded,
  .loading-content.faded {
    opacity: 0 !important;
    transform: scale(0.9) !important;
    pointer-events: none;
    position: absolute !important;
  }

  /* Logo full size on mobile after selection */
  .loading-logo {
    width: 50px !important;
    height: 50px !important;
    transition: all 1s ease;
  }

  .selected .loading-logo,
  .move-to-center .loading-logo {
    width: 120px !important;
    height: 120px !important;
  }

  .loading-logo-wrapper.revealed {
    height: 60px !important;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .selected .loading-logo-wrapper.revealed,
  .move-to-center .loading-logo-wrapper.revealed {
    height: 160px !important;
  }

  /* Scale down text for initial mobile cards */
  .loading-text {
    font-size: 1.6rem !important;
    letter-spacing: 6px !important;
    transition: all 0.6s ease;
  }

  .selected .loading-text,
  .move-to-center .loading-text {
    font-size: 2.2rem !important;
    letter-spacing: 8px !important;
  }

  .loading-subtitle {
    font-size: 1rem !important;
    letter-spacing: 4px !important;
    transition: all 0.6s ease;
  }

  .selected .loading-subtitle,
  .move-to-center .loading-subtitle {
    font-size: 1.2rem !important;
    letter-spacing: 5px !important;
  }
}

/* Loading Subtitles (CRM / Social AI) */
.loading-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-top: 2px;
  display: flex;
  gap: 6px;
  justify-content: center;
  opacity: 1;
  animation: none;
}

@keyframes subtitle-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-text.text-fade-out {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.loading-letter {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  animation: none;
}

/* Trigger animation when wrapper is revealed/selected */
.revealed .loading-letter,
.selected .loading-letter {
  animation: letter-pop 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Subtitle letters animate with a slight delay after main text */
.revealed~.loading-subtitle .loading-letter,
.selected .loading-subtitle .loading-letter {
  animation: letter-pop 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Text container fade-in on reveal */
.revealed~.loading-text,
.selected .loading-text {
  animation: letter-pop 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes letter-pop {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  }
}

/* ============================================
   WELCOME SUBSCRIBE SECTION
   ============================================ */
.welcome-subscribe {
  padding: 60px 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 28px 70px;
  background: var(--gradient-cta);
  background-size: 200% auto;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all .4s ease;
  box-shadow: 0 0 35px rgba(79, 125, 243, 0.5), 0 0 70px rgba(124, 58, 237, 0.25);
  animation: subscribe-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-subscribe:hover {
  background-position: right center;
  transform: scale(1.08);
  box-shadow: 0 0 50px rgba(79, 125, 243, 0.7), 0 0 100px rgba(124, 58, 237, 0.4);
  color: #fff;
}

@keyframes subscribe-pulse {

  0%,
  100% {
    box-shadow: 0 0 35px rgba(79, 125, 243, 0.5), 0 0 70px rgba(124, 58, 237, 0.25);
  }

  50% {
    box-shadow: 0 0 50px rgba(79, 125, 243, 0.7), 0 0 100px rgba(124, 58, 237, 0.4);
  }
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Overlay sigur pentru reducerea luminozitatii la 70% (30% opacitate neagra) */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999;
  transition: background 1.5s ease;
}

/* Loading screen e mai intunecat (80% opacitate neagra -> 20% luminozitate) */
body.loading::after {
  background: rgba(0, 0, 0, 0.8);
}



/* Page content starts hidden, fades in when loading completes */
body.loading .navbar,
body.loading .hero,
body.loading .sell-anything,
body.loading .tools-section {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 2.2s ease, transform 2.2s ease;
}

body.page-revealed .navbar {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

body.page-revealed .hero {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

body.page-revealed .sell-anything {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

body.page-revealed .tools-section {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--accent-violet);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(79, 125, 243, 0.15);
  border: 1px solid rgba(79, 125, 243, 0.3);
  border-radius: var(--pill-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* --- CTA Button --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gradient-cta);
  background-size: 200% auto;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all .4s ease;
  box-shadow: 0 0 25px rgba(79, 125, 243, 0.4), 0 0 50px rgba(124, 58, 237, 0.2);
  animation: cta-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
}

.btn-cta:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(79, 125, 243, 0.6), 0 0 80px rgba(124, 58, 237, 0.3);
  color: #fff;
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 0 25px rgba(79, 125, 243, 0.4), 0 0 50px rgba(124, 58, 237, 0.2);
  }

  50% {
    box-shadow: 0 0 35px rgba(79, 125, 243, 0.6), 0 0 70px rgba(124, 58, 237, 0.3);
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  background: rgba(79, 125, 243, 0.1);
  color: #fff;
}

/* --- Card Base --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  transition: all .4s ease;
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-blue);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.glass-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: var(--gradient-primary);
  color: #fff;
}

.glass-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.glass-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.stagger-7 {
  transition-delay: 0.7s;
}

.stagger-8 {
  transition-delay: 0.8s;
}

.stagger-9 {
  transition-delay: 0.9s;
}

/* ============================================
   1. TOP BAR + NAVIGATION (PayKickstart style)
   ============================================ */
/* --- Top Announcement Bar --- */
.top-bar {
  position: sticky;
  top: 36px;
  z-index: 1001;
  background: linear-gradient(90deg, #0d9b6a 0%, #116b52 20%, #0f2a3a 50%, #0e1b2e 100%);
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin: 40px auto 0;
  max-width: 1200px;
  transition: opacity 0.3s ease;
}

.top-bar:hover {
  opacity: 1;
}

/* Scroll fade overlays — top and bottom */
.scroll-fade-overlay {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

.scroll-fade-overlay--top {
  top: 0;
  height: 250px;
  background: linear-gradient(to bottom,
      var(--bg-dark) 0%,
      rgba(4, 8, 17, 0.85) 30%,
      rgba(4, 8, 17, 0.5) 60%,
      rgba(4, 8, 17, 0.15) 85%,
      transparent 100%);
}

.scroll-fade-overlay--bottom {
  bottom: 0;
  height: 250px;
  background: linear-gradient(to top,
      var(--bg-dark) 0%,
      rgba(4, 8, 17, 0.85) 30%,
      rgba(4, 8, 17, 0.5) 60%,
      rgba(4, 8, 17, 0.15) 85%,
      transparent 100%);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-left i {
  color: #ffd700;
  font-size: 0.9rem;
}

.top-bar-countdown {
  display: flex;
  gap: 4px;
  margin-left: 4px;
}

.tb-unit {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.tb-num {
  color: #4df5b5;
  font-variant-numeric: tabular-nums;
}

.top-bar-center {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.top-bar-center u {
  color: #ffd700;
  text-decoration-color: #ffd700;
}

.btn-topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: #22c55e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn-topbar-cta:hover {
  background: #16a34a;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  color: #fff;
}

/* --- Navbar (logo row) --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.navbar-logo span {
  color: var(--accent-blue);
}

.navbar-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  transition: all .3s ease;
}

.navbar-cta:hover {
  background: #16a34a;
  transform: scale(1.05);
  color: #fff;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* --- Language Popup Overlay --- */
.lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .4s ease;
}

.lang-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.lang-popup {
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 48px 40px 40px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: popup-in .4s ease;
}

@keyframes popup-in {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.lang-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.lang-popup-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.lang-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lang-popup-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.lang-popup-option:hover {
  border-color: var(--accent-blue);
  background: rgba(79, 125, 243, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(79, 125, 243, 0.2);
}

.lang-popup-flag {
  font-size: 1.5rem;
  line-height: 1;
}

.lang-popup-name {
  white-space: nowrap;
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(79, 125, 243, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(79, 125, 243, 0.12);
  border: 1px solid rgba(79, 125, 243, 0.25);
  border-radius: var(--pill-radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero .hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero .hero-sub strong {
  color: var(--accent-orange);
  font-weight: 700;
}

.hero .btn-cta {
  font-size: 1.2rem;
  padding: 20px 48px;
}

.hero-trust {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-trust i {
  color: var(--accent-green);
}

/* ============================================
   3. SELL ANYTHING
   ============================================ */
.sell-anything {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

.sell-anything .card-icon.orange {
  background: linear-gradient(135deg, var(--accent-orange), #EF4444);
}

.sell-anything .card-icon.green {
  background: var(--gradient-green);
}

.sell-anything .card-icon.violet {
  background: linear-gradient(135deg, var(--accent-violet), #EC4899);
}

/* ============================================
   4. ALL-IN-ONE TOOLS
   ============================================ */
.tools-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.tools-section .section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.8;
}

.tools-subsection {
  margin-bottom: 60px;
}

.tools-subsection h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.tools-subsection>p {
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Comparison bar */
.comparison-bar {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.comparison-card {
  padding: 30px 40px;
  border-radius: var(--card-radius);
  text-align: center;
  flex: 1;
  max-width: 350px;
}

.comparison-card.standard {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-card.platform {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
}

.comparison-card .rate {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.comparison-card.standard .rate {
  color: var(--accent-red);
}

.comparison-card.platform .rate {
  color: var(--accent-green);
}

.comparison-card .label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Payment methods mini cards */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all .3s;
}

.payment-item:hover {
  border-color: var(--border-hover);
}

.payment-item i {
  font-size: 1.2rem;
  color: var(--accent-blue);
  width: 24px;
  text-align: center;
}

/* Counter big */
.big-counter {
  text-align: center;
  padding: 60px 0;
}

.big-counter .counter-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.big-counter .counter-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ============================================
   5/9. TESTIMONIALS
   ============================================ */
.testimonial-section {
  padding: 80px 0;
  background: var(--bg-dark-alt);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 6rem;
  position: absolute;
  top: -10px;
  left: 30px;
  color: var(--accent-blue);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   6. SUBSCRIPTION MANAGEMENT
   ============================================ */
.subscriptions {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

/* ============================================
   7. CHECKOUT EXPERIENCE
   ============================================ */
.checkout-section {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

.checkout-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.checkout-card {
  text-align: center;
  padding: 40px 24px;
}

.checkout-card .card-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* ============================================
   8. CONVERSION BOOSTERS
   ============================================ */
.boosters {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

/* ============================================
   10. REVENUE RETENTION
   ============================================ */
.retention {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.expandable-card {
  margin-bottom: 16px;
  border-radius: var(--card-radius);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color .3s;
}

.expandable-card:hover {
  border-color: var(--border-hover);
}

.expandable-header {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: background .3s;
}

.expandable-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.expandable-header i {
  transition: transform .3s;
  color: var(--accent-blue);
}

.expandable-card.open .expandable-header i {
  transform: rotate(180deg);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 30px;
}

.expandable-card.open .expandable-content {
  max-height: 500px;
  padding: 0 30px 24px;
}

.expandable-content ul {
  padding-left: 0;
}

.expandable-content li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.expandable-content li i {
  color: var(--accent-green);
  font-size: 0.85rem;
}

/* ============================================
   11. CUSTOMER JOURNEY
   ============================================ */
.customer-journey {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

/* ============================================
   12. AFFILIATE MANAGEMENT
   ============================================ */
.affiliate {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

/* ============================================
   13. WALLET
   ============================================ */
.wallet-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(79, 125, 243, 0.08) 100%);
  border-top: 1px solid rgba(0, 212, 170, 0.2);
  border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

/* ============================================
   14. FRAUD PROTECTION
   ============================================ */
.fraud-section {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

.fraud-section .card-icon {
  background: var(--gradient-warm);
}

/* ============================================
   15. INTEGRATIONS
   ============================================ */
.integrations {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.integration-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all .3s;
  text-align: center;
}

.integration-item:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.integration-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.integration-cat-badge {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--pill-radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================
   16. REPORTING
   ============================================ */
.reporting {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

/* ============================================
   17. MOBILE APP
   ============================================ */
.mobile-app {
  padding: var(--section-padding);
  background: var(--bg-dark);
  overflow: hidden;
}

.mobile-app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--bg-dark-alt);
  border: 3px solid var(--border-subtle);
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(79, 125, 243, 0.2);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--bg-dark);
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(79, 125, 243, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, var(--bg-dark-alt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px 24px;
}

.phone-screen i {
  font-size: 3rem;
  color: var(--accent-blue);
}

.phone-screen span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mobile-features-list {
  list-style: none;
}

.mobile-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-features-list li:last-child {
  border-bottom: none;
}

.mobile-features-list li i {
  color: var(--accent-green);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

/* ============================================
   18. SECURITY
   ============================================ */
.security {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.security-badge {
  text-align: center;
  padding: 40px 24px;
}

.security-badge .badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent-green);
  border: 2px solid rgba(0, 212, 170, 0.3);
}

.security-badge h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
}

.security-badge p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   19. VIDEO DEMO
   ============================================ */
.video-demo {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.video-placeholder {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg-dark-alt);
  border: 2px solid var(--border-subtle);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s;
}

.video-placeholder:hover {
  border-color: var(--accent-blue);
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(79, 125, 243, 0.1) 0%, transparent 70%);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: var(--glow-blue);
  transition: transform .3s;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
}

/* ============================================
   20. SUPPORT
   ============================================ */
.support {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

/* ============================================
   21 & 27. PRICING / CTA SECTIONS
   ============================================ */
.pricing-cta {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(79, 125, 243, 0.08) 50%, var(--bg-dark) 100%);
  text-align: center;
}

.countdown-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.countdown-box {
  width: 90px;
  padding: 20px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown-box .cd-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  color: var(--text-primary);
}

.countdown-box .cd-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ============================================
   22. BONUS VALUE STACK
   ============================================ */
.bonus-section {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

.bonus-total {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.bonus-list {
  max-width: 800px;
  margin: 0 auto;
}

.bonus-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  margin-bottom: 12px;
  transition: all .3s;
  gap: 16px;
}

.bonus-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.bonus-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.bonus-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bonus-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.bonus-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bonus-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-green);
}

.bonus-badge {
  padding: 4px 14px;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--pill-radius);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-green);
}

/* ============================================
   23. PROFIT ENGINE
   ============================================ */
.profit-engine {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.profit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.profit-card .profit-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.profit-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

/* ============================================
   24. COMPARISON TABLE
   ============================================ */
.comparison-section {
  padding: var(--section-padding);
  background: var(--bg-dark-alt);
}

.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.comparison-table thead th {
  background: rgba(79, 125, 243, 0.15);
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.comparison-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table tbody td:last-child {
  color: var(--accent-red);
  font-weight: 600;
  text-align: right;
}

.comparison-table tbody tr {
  background: var(--bg-card);
  transition: background .3s;
}

.comparison-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.comparison-total {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--card-radius);
}

.comparison-total .total-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-red);
  margin-bottom: 10px;
}

.comparison-vs {
  margin-top: 30px;
  padding: 30px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--card-radius);
  text-align: center;
}

.comparison-vs p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* ============================================
   25. FAQ
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  margin-bottom: 12px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background .3s;
  gap: 16px;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
  transition: transform .3s;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 30px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 30px 24px;
}

/* ============================================
   26. SOCIAL PROOF / REVIEWS
   ============================================ */
.social-proof {
  padding: 80px 0;
  background: var(--bg-dark-alt);
}

.review-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-badge {
  text-align: center;
  padding: 30px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  min-width: 200px;
}

.review-badge .platform {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.review-badge .stars {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.review-badge .rating {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   28. FOOTER
   ============================================ */
.site-footer {
  padding: 60px 0 30px;
  background: #0A0F1C;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--accent-blue);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.footer-copyright {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .profit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-app-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .checkout-cards {
    grid-template-columns: 1fr;
  }

  .security-badges {
    grid-template-columns: 1fr;
  }

  .profit-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .comparison-bar {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-cta {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .hero .btn-cta {
    padding: 18px 36px;
    font-size: 1.05rem;
  }

  .countdown-box {
    width: 72px;
  }

  .countdown-box .cd-number {
    font-size: 1.6rem;
  }

  .bonus-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-item-right {
    align-self: flex-end;
  }

  .review-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .navbar-logo {
    font-size: 1.3rem;
  }

  .navbar-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .countdown-row {
    gap: 10px;
  }

  .countdown-box {
    width: 64px;
    padding: 14px 8px;
  }

  .countdown-box .cd-number {
    font-size: 1.3rem;
  }
}

/* ============================================
   DATE/TIME WIDGET
   ============================================ */
.datetime-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9997;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.datetime-widget i {
  color: var(--accent-blue);
  font-size: 0.75rem;
}

/* ============================================
   THEME SWITCHER
   ============================================ */
.theme-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10000;
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}

.theme-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  padding: 3px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn.active {
  border-color: rgba(255, 255, 255, 0.6);
}

.theme-btn:hover {
  transform: scale(1.15);
}

.theme-swatch {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.theme-swatch--color {
  background: linear-gradient(135deg, #4F7DF3, #7C3AED);
}

.theme-swatch--bw {
  background: linear-gradient(135deg, #ffffff 50%, #000000 50%);
}

/* ============================================
   BLACK & WHITE THEME OVERRIDE
   ============================================ */
body.theme-bw {
  --accent-blue: #ffffff;
  --accent-green: #ffffff;
  --accent-violet: #cccccc;
  --accent-orange: #dddddd;
  --accent-red: #aaaaaa;
  --border-hover: rgba(255, 255, 255, 0.3);
  --gradient-primary: linear-gradient(135deg, #ffffff, #999999);
  --gradient-cta: linear-gradient(135deg, #ffffff 0%, #aaaaaa 50%, #ffffff 100%);
  --gradient-green: linear-gradient(135deg, #ffffff, #bbbbbb);
  --gradient-warm: linear-gradient(135deg, #dddddd, #999999);
  --gradient-text: linear-gradient(90deg, #ffffff, #cccccc, #ffffff);
  --glow-blue: 0 0 30px rgba(255, 255, 255, 0.15);
  --glow-violet: 0 0 30px rgba(255, 255, 255, 0.15);
  --glow-green: 0 0 30px rgba(255, 255, 255, 0.15);
}

body.theme-bw .top-bar {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(8, 14, 27, 0.9) 60%, rgba(4, 8, 17, 0.95) 100%);
}

body.theme-bw .btn-topbar-cta {
  background: #ffffff;
  color: #000;
}

body.theme-bw .navbar-cta {
  background: #ffffff;
  color: #000;
}



/* B&W version: old continuous breathing pulse (before letter-sync) */
body.theme-bw .loading-logo-wrapper.revealed .loading-logo {
  animation: logo-glow-pulse-bw 2s ease-in-out infinite;
}

@keyframes logo-glow-pulse-bw {

  0%,
  100% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.08));
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.35)) drop-shadow(0 0 50px rgba(255, 255, 255, 0.2));
  }
}

/* ---- B&W: All green buttons → white ---- */
body.theme-bw .btn-topbar-cta,
body.theme-bw .navbar-cta {
  background: #ffffff;
  color: #000;
}

body.theme-bw .btn-topbar-cta:hover,
body.theme-bw .navbar-cta:hover {
  background: #cccccc;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* ---- B&W: CTA button glow → white ---- */
body.theme-bw .subscribe-cta:hover,
body.theme-bw .cta-btn:hover {
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.3), 0 0 100px rgba(255, 255, 255, 0.15);
}

/* ---- B&W: Icon badge backgrounds → grayscale ---- */
body.theme-bw .icon-badge,
body.theme-bw .feature-icon,
body.theme-bw .step-number {
  background: linear-gradient(135deg, #ffffff, #888888) !important;
}

/* ---- B&W: Card hover glow ---- */
body.theme-bw .glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

/* ---- B&W: Countdown badge ---- */
body.theme-bw .top-bar-countdown span {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ---- B&W: Loading screen text glow ---- */
body.theme-bw .loading-letter {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ---- B&W: Footer links ---- */
body.theme-bw a {
  color: #cccccc;
}

body.theme-bw a:hover {
  color: #ffffff;
}

/* ---- B&W: Testimonial avatar ---- */
body.theme-bw .testimonial-avatar {
  background: linear-gradient(135deg, #ffffff, #888888);
}

/* ---- B&W: Hero badge ---- */
body.theme-bw .hero-badge {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ---- B&W: Section underlines / highlights ---- */
body.theme-bw u,
body.theme-bw .highlight {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* ---- B&W: Bordered pill buttons ---- */
body.theme-bw .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

body.theme-bw .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* ---- B&W: All box-shadows with blue/violet → white ---- */
body.theme-bw .subscribe-cta,
body.theme-bw .cta-btn {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* ============================================
   INVEST FUNNEL – NAVBAR
   ============================================ */
.invest-nav {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 0;
  background: rgba(4, 8, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.invest-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.invest-nav-logo img {
  height: 32px;
  width: auto;
}

.invest-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.invest-nav-links a {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.invest-nav-links a:hover {
  color: #fff;
}

.invest-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient-cta);
  background-size: 200% 100%;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  border-radius: var(--pill-radius);
  transition: all 0.3s ease;
  text-decoration: none;
}

.invest-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
  background-position: 100% 0;
}

.invest-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .invest-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(4, 8, 17, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .invest-nav-links.active {
    display: flex;
  }

  .invest-nav-toggle {
    display: block;
  }
}

/* B&W overrides for invest-nav */
body.theme-bw .invest-nav-cta {
  background: #ffffff;
  color: #000 !important;
}

body.theme-bw .invest-nav-cta:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* --- Scroll Reveal Animations (Intersection Observer) --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* --- 1. Hover Glow Card --- */
.hover-glow-card {
  position: relative;
  overflow: hidden;
}

.hover-glow-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y);
  left: var(--mouse-x);
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 125, 243, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.hover-glow-card:hover::before {
  opacity: 1;
}

.hover-glow-card>* {
  position: relative;
  z-index: 1;
}

/* --- 2. Stagger Reveal --- */
.stagger-container .stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-container.is-visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* Delays are added via inline styles or nth-child in JS */

/* --- 3. Magnetic Button --- */
.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.2s;
  will-change: transform;
}

.magnetic-btn span,
.magnetic-btn i {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}

/* --- 4. Blur on Scroll --- */
.blur-on-scroll {
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.blur-on-scroll.is-blurred {
  filter: blur(4px);
  opacity: 0.6;
}

/* --- 5. Typing Text --- */
.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--accent);
  width: 0;
}

.typing-text.is-typing {
  animation: typing 2s steps(40, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* --- 6. Tilt 3D --- */
.tilt-3d {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  transition: transform 0.3s ease-out;
  will-change: transform;
}


/* --- 7. Premium Typed Letters --- */
.fade-letter {
  display: inline-block;
  opacity: 0;
  animation: fadeColorIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeColorIn {
  0% {
    opacity: 0;
    filter: blur(8px) brightness(2);
    transform: translateY(8px) scale(0.9);
  }

  100% {
    opacity: 1;
    filter: blur(0px) brightness(1);
    transform: translateY(0) scale(1);
  }
}



/* --- Navbar Entrance Animation --- */
.nav-animate-in {
  opacity: 0;
  /* initial state before JS kicks in: hidden */
  transform: translateY(-50px) translateX(-50%) !important;
  pointer-events: none;
}

/* When JS triggers is-visible, we run an animation sequence instead of simple transition */
.nav-animate-in.is-visible {
  animation: navEntranceSequence 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

@keyframes navEntranceSequence {
  0% {
    opacity: 0;
    transform: translateY(30vh) translateX(-50%) scale(1.1) !important;
  }

  30% {
    /* Appears in center front of user */
    opacity: 1;
    transform: translateY(30vh) translateX(-50%) scale(1.1) !important;
  }

  60% {
    /* Holds in center to be read */
    opacity: 1;
    transform: translateY(30vh) translateX(-50%) scale(1.1) !important;
  }

  100% {
    /* Glides smoothly back to its top fixed position */
    opacity: 1;
    transform: translateY(0) translateX(-50%) scale(1) !important;
  }
}