/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --gradient-start: #FF0050;
  --gradient-end: #FF4081;
  --primary-pink: #FF1A6C;
  --bg-dark: #0A0A0F;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent-highlight: #FF6B9D;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glow: rgba(255, 0, 80, 0.4);
  --success-green: #10B981;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: #0A0A0F !important;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0F !important;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.ml-main {
  width: 100%;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0A0A0F;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
}

.ml-main-content {
  width: 100%;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 0.75rem;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 896px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1280px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  width: 100%;
  padding: 3rem 0.75rem;
  overflow-x: hidden;
}

@media (min-width: 480px) {
  .section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-highlight);
  margin-bottom: 0.5rem;
}

/* ============================================
   CTA WRAPPER
   ============================================ */
.cta-wrapper {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

@media (min-width: 480px) {
  .cta-wrapper {
    padding: 2rem 1rem;
  }
}

/* ============================================
   BADGE
   ============================================ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-highlight);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--success-green);
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
}

/* ============================================
   TEXT UTILITIES
   ============================================ */
.text-gradient {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-pink {
  color: var(--primary-pink);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

/* ============================================
   GRID & LAYOUT UTILITIES
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ============================================
   CARD STYLES
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  transition: background 0.3s ease;
}

.card:hover {
  background: var(--bg-card-hover);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 26, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-pink);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-secondary);
}

/* ============================================
   CREDIBILITY BAR
   ============================================ */
.credibility-bar {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 2rem 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .credibility-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767px) {
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
}

.stat-value {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CHECKLIST
   ============================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  align-items: flex-start;
  transition: background 0.2s ease;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.checklist-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--success-green);
}

.checklist-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-card {
    flex-direction: row;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-card {
    padding: 4rem;
  }
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-visual {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .story-image {
    max-height: none;
  }
}

.story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent, transparent);
  z-index: 10;
  pointer-events: none;
}

.story-image-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 20;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
}

.story-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary-pink);
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.story-quote p {
  font-weight: 500;
  color: var(--text-primary);
  font-style: italic;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
}

.final-cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(255, 26, 108, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .final-cta-layout {
    flex-direction: row;
    align-items: center;
  }
}

.final-cta-info {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.final-cta-form-container {
  flex: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-live {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.final-cta-live h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-pink);
  flex-shrink: 0;
}

.feature-list-item span {
  color: var(--text-secondary);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-header {
  width: 100%;
  text-align: center;
}

.thankyou-header h1 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.thankyou-header p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--primary-pink);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
  border-left-color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .step-card {
    flex-direction: row;
    padding: 2rem;
    align-items: center;
  }
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 80, 0.25);
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-pink);
}

.step-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ============================================
   THANK YOU CLOSING
   ============================================ */
.thankyou-closing {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 3rem;
}

.thankyou-closing h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.thankyou-closing p {
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.thankyou-closing .signature {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 400px) {
  .btn {
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .btn {
    padding: 1.125rem 2.5rem;
  }
}

.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.btn-md {
  height: 2.75rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.btn-xl {
  height: 4rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  box-shadow: 0 4px 30px var(--glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 12%;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: btn-sparkle 2.5s ease-in-out infinite;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(255, 255, 255, 0.6),
    -30px 10px 0 0 white,
    -30px 10px 6px rgba(255, 255, 255, 0.9),
    -60px -5px 0 0 white,
    -60px -5px 6px rgba(255, 255, 255, 0.9);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 0, 80, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: white;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn:disabled,
.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-full-width {
  width: 100%;
  max-width: none;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(255, 26, 108, 0.5);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(255, 26, 108, 0.7);
}

.btn-content {
  position: relative;
  z-index: 10;
}

.btn-shimmer-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.btn-shimmer-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  animation: btn-shimmer 3s ease-in-out infinite;
}

.btn-icon-left {
  margin-right: 0.5rem;
}

.btn-icon-right {
  margin-left: 0.5rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  min-height: 48px;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-pink);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes btn-shimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes btn-sparkle {

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

  25% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(0.5);
  }

  75% {
    opacity: 0.8;
    transform: scale(0.9);
  }
}

@keyframes sparkle {

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

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out;
}

.animate-fade-in-up {
  animation: fade-in-up 0.5s ease-out;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  width: 100%;
  padding: 2.5rem 0.75rem;
  text-align: center;
}

@media (min-width: 480px) {
  .footer {
    padding: 3rem 1rem;
  }
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   HERO BACKGROUND ANIMATION
   ============================================ */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.25) 0%, transparent 70%);
  top: -250px;
  left: -200px;
  animation: glow-drift-1 30s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 64, 129, 0.2) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: glow-drift-2 35s ease-in-out infinite;
}

@keyframes glow-drift-1 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate(40px, 30px);
    opacity: 0.4;
  }
}

@keyframes glow-drift-2 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.25;
  }

  50% {
    transform: translate(-30px, -20px);
    opacity: 0.35;
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
}

.hero-particle-sm {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-particle-md {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.8) 0%, rgba(255, 107, 157, 0) 70%);
}

.hero-particle-lg {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 0, 80, 0.4) 0%, transparent 70%);
  filter: blur(4px);
}

/* Particle positions and animations — 28 particles */
.hero-particle:nth-child(1) { left: 8%; top: 15%; animation: drift-1 18s ease-in-out infinite; }
.hero-particle:nth-child(2) { left: 22%; top: 55%; animation: drift-2 22s ease-in-out infinite; animation-delay: -4s; }
.hero-particle:nth-child(3) { left: 42%; top: 12%; animation: drift-3 20s ease-in-out infinite; animation-delay: -2s; }
.hero-particle:nth-child(4) { left: 68%; top: 30%; animation: drift-1 19s ease-in-out infinite; animation-delay: -6s; }
.hero-particle:nth-child(5) { left: 88%; top: 60%; animation: drift-2 21s ease-in-out infinite; animation-delay: -8s; }
.hero-particle:nth-child(6) { left: 12%; top: 75%; animation: drift-3 17s ease-in-out infinite; animation-delay: -3s; }
.hero-particle:nth-child(7) { left: 52%; top: 70%; animation: drift-1 23s ease-in-out infinite; animation-delay: -10s; }
.hero-particle:nth-child(8) { left: 32%; top: 38%; animation: drift-2 18s ease-in-out infinite; animation-delay: -5s; }
.hero-particle:nth-child(9) { left: 78%; top: 8%; animation: drift-3 20s ease-in-out infinite; animation-delay: -7s; }
.hero-particle:nth-child(10) { left: 3%; top: 45%; animation: drift-1 22s ease-in-out infinite; animation-delay: -12s; }
.hero-particle:nth-child(11) { left: 58%; top: 48%; animation: drift-2 19s ease-in-out infinite; animation-delay: -3s; }
.hero-particle:nth-child(12) { left: 94%; top: 42%; animation: drift-3 21s ease-in-out infinite; animation-delay: -9s; }
.hero-particle:nth-child(13) { left: 18%; top: 28%; animation: fade-drift-1 12s ease-in-out infinite; }
.hero-particle:nth-child(14) { left: 38%; top: 65%; animation: fade-drift-2 14s ease-in-out infinite; animation-delay: -3s; }
.hero-particle:nth-child(15) { left: 62%; top: 18%; animation: fade-drift-1 11s ease-in-out infinite; animation-delay: -5s; }
.hero-particle:nth-child(16) { left: 82%; top: 52%; animation: fade-drift-2 13s ease-in-out infinite; animation-delay: -2s; }
.hero-particle:nth-child(17) { left: 5%; top: 32%; animation: fade-drift-1 15s ease-in-out infinite; animation-delay: -7s; }
.hero-particle:nth-child(18) { left: 48%; top: 82%; animation: fade-drift-2 12s ease-in-out infinite; animation-delay: -4s; }
.hero-particle:nth-child(19) { left: 72%; top: 72%; animation: fade-drift-1 14s ease-in-out infinite; animation-delay: -6s; }
.hero-particle:nth-child(20) { left: 28%; top: 8%; animation: fade-drift-2 11s ease-in-out infinite; animation-delay: -1s; }
.hero-particle:nth-child(21) { left: 15%; top: 62%; animation: pop-fade 8s ease-in-out infinite; }
.hero-particle:nth-child(22) { left: 45%; top: 25%; animation: pop-fade 9s ease-in-out infinite; animation-delay: -2s; }
.hero-particle:nth-child(23) { left: 75%; top: 45%; animation: pop-fade 7s ease-in-out infinite; animation-delay: -4s; }
.hero-particle:nth-child(24) { left: 35%; top: 78%; animation: pop-fade 10s ease-in-out infinite; animation-delay: -3s; }
.hero-particle:nth-child(25) { left: 88%; top: 22%; animation: pop-fade 8s ease-in-out infinite; animation-delay: -5s; }
.hero-particle:nth-child(26) { left: 8%; top: 88%; animation: pop-fade 9s ease-in-out infinite; animation-delay: -1s; }
.hero-particle:nth-child(27) { left: 55%; top: 5%; animation: pop-fade 7s ease-in-out infinite; animation-delay: -6s; }
.hero-particle:nth-child(28) { left: 92%; top: 78%; animation: pop-fade 11s ease-in-out infinite; animation-delay: -2s; }

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.7; }
  50% { transform: translate(35px, -50px); opacity: 0.9; }
  90% { opacity: 0.7; }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 0.6; }
  50% { transform: translate(-30px, -60px); opacity: 0.8; }
  85% { opacity: 0.6; }
}

@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 0.5; }
  50% { transform: translate(25px, -45px); opacity: 0.7; }
  88% { opacity: 0.5; }
}

@keyframes fade-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(0.5); opacity: 0; }
  20% { transform: translate(10px, -15px) scale(1); opacity: 0.8; }
  50% { transform: translate(25px, -35px) scale(1); opacity: 0.9; }
  80% { transform: translate(40px, -55px) scale(1); opacity: 0.6; }
}

@keyframes fade-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(0.5); opacity: 0; }
  25% { transform: translate(-12px, -18px) scale(1); opacity: 0.7; }
  50% { transform: translate(-20px, -40px) scale(1); opacity: 0.85; }
  75% { transform: translate(-32px, -58px) scale(1); opacity: 0.5; }
}

@keyframes pop-fade {
  0%, 100% { transform: scale(0); opacity: 0; }
  15% { transform: scale(1.2); opacity: 0.9; }
  30% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1) translate(15px, -20px); opacity: 0.8; }
  70% { transform: scale(0.9) translate(25px, -35px); opacity: 0.5; }
  85% { transform: scale(0.5) translate(30px, -45px); opacity: 0.2; }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================
   WEBINARJAM BUTTON OVERRIDES
   ============================================ */
.wj-embed-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.125rem 2.5rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
  color: white !important;
  box-shadow: 0 4px 30px var(--glow) !important;
  max-width: 500px !important;
  width: auto !important;
}

.wj-embed-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 40px rgba(255, 0, 80, 0.5) !important;
}

.wj-embed-button:active {
  transform: scale(0.98) !important;
}

.wj-btn-hero {
  padding: 1rem 1.5rem !important;
  font-size: 0.9rem !important;
  min-width: 0 !important;
  letter-spacing: 0.1em !important;
  white-space: normal !important;
}

@media (min-width: 768px) {
  .wj-btn-hero {
    padding: 1.5rem 3rem !important;
    font-size: 1.25rem !important;
    min-width: 300px !important;
    letter-spacing: 0.15em !important;
    white-space: nowrap !important;
  }
}

.wj-btn-section {
  padding: 1rem 2rem !important;
  font-size: 0.9rem !important;
}

.wj-btn-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto;
}

.wj-btn-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: btn-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: 12px;
  z-index: 1;
}

/* ============================================
   SCROLL ANIMATION UTILITIES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
