/* ==========================================================================
   🌌 NOVAPLAY EXACT APP MATCH SYSTEM & COLORS (1:1 BRAND MATCH)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* 1:1 Color matching with Flutter App */
  --bg-dark: #0F1116; /* Exact Scaffold Background */
  --bg-card: rgba(255, 255, 255, 0.01); /* Translucent cards */
  --bg-card-hover: rgba(255, 255, 255, 0.02);
  
  --color-purple: #8E2DE2; /* Brand Core Purple */
  --color-purple-dark: #4A00E0; /* Secondary Brand Purple */
  --color-cyan: #00FFFF; /* Progress bar cyan */
  
  /* Media Channel Colors from App */
  --color-image: #C084FC;
  --color-video: #22D3EE;
  --color-audio: #FBBF24;
  --color-document: #34D399;
  
  --text-primary: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.4); /* Matching App transparency */
  --text-glow: rgba(142, 45, 226, 0.3);
  
  --border-light: rgba(255, 255, 255, 0.03); /* Matching App border style */
  --border-purple: rgba(192, 132, 252, 0.2); /* Matching NovaStorage card border */
  
  --transition-smooth: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.62;
}

/* 🛸 RADIAL GLOWING SPACE ORBS (1:1 App Splash/Dashboard Match) */
.space-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  mix-blend-mode: screen;
}

.orb-1 {
  top: -150px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-purple) 0%, rgba(142, 45, 226, 0) 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  bottom: 100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-purple) 0%, rgba(142, 45, 226, 0) 70%);
  opacity: 0.18;
  animation: orbFloat2 15s ease-in-out infinite;
}

/* ==========================================================================
   NAVIGATION BAR (FUTURISTIC FLOATING HULL)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 8%;
  background: rgba(15, 17, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

/* BRAND LOGO FROM MOBILE APP - INCREASED SIZE FOR HIGH VISIBILITY */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px; /* Increased size significantly as requested! */
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(142, 45, 226, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(142, 45, 226, 0.5);
}

/* ==========================================================================
   HERO CORE SECTION (MIND-BLOWING GRAPHIC LAYOUT)
   ========================================================================== */
.hero {
  position: relative;
  padding: 185px 8% 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.tagline {
  background: rgba(142, 45, 226, 0.08);
  border: 1px solid rgba(142, 45, 226, 0.2);
  color: #c084fc;
  padding: 6px 18px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero .tagline {
  opacity: 0;
  animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-title span.grad {
  background: linear-gradient(to right, var(--text-primary), var(--color-purple), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* 🛸 CALL TO ACTIONS */
.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
  opacity: 0;
  animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 0 25px rgba(142, 45, 226, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(142, 45, 226, 0.45);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   🌌 NATIVE GLASSMORPHIC INTERACTIVE COCKPIT PANEL (SMOOTH & LIFTED)
   ========================================================================== */
.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 15px;
  perspective: 1000px;
  opacity: 0;
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards, mockupFloat 6s ease-in-out 1.3s infinite;
  will-change: transform, opacity;
}

.hero-mockup {
  width: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.015);
  border: 1.5px solid rgba(255, 255, 255, 0.035);
  padding: 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotateX(6deg);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  transition: var(--transition-smooth);
  will-change: transform, border-color, box-shadow;
}

.hero-mockup:hover {
  transform: rotateX(0deg) scale(1.02);
  border-color: var(--border-purple);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.75), 0 0 40px rgba(142, 45, 226, 0.15);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  margin-bottom: 20px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px #34D399;
}

.status-text {
  font-family: var(--font-heading);
  font-size: 8.5px;
  font-weight: 900;
  color: #34D399;
  letter-spacing: 1px;
}

/* NATIVE DASHBOARD CONTENT GRID */
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

/* STORAGE CONTROL BOX */
.mockup-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.005);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 20px;
}

.hud-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.hud-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.hud-value span {
  font-size: 1.15rem;
  color: var(--color-purple);
}

/* Dynamic CSS Progress Fluid Bar */
.hud-progress-bg {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.hud-progress-fill {
  height: 100%;
  width: 38%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-cyan) 100%);
  box-shadow: 0 0 15px var(--color-cyan);
}

/* CHANNELS GRID FOR NATIVE DECK */
.mockup-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.channel-node {
  background: rgba(255, 255, 255, 0.005);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 16px;
  transition: var(--transition-smooth);
}

.channel-node:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}

.node-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.node-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.node-count {
  font-size: 10px;
  color: var(--text-muted);
}

/* MAPPING SPECIFIC CHANNELS COLORS */
.node-img { border-color: rgba(192, 132, 252, 0.15); }
.node-img .node-icon-wrapper { background: rgba(192, 132, 252, 0.1); color: var(--color-image); }
.node-img .node-title { color: #ffffff; }

.node-vid { border-color: rgba(34, 211, 238, 0.15); }
.node-vid .node-icon-wrapper { background: rgba(34, 211, 238, 0.1); color: var(--color-video); }
.node-vid .node-title { color: #ffffff; }

.node-aud { border-color: rgba(251, 191, 36, 0.15); }
.node-aud .node-icon-wrapper { background: rgba(251, 191, 36, 0.15); color: var(--color-audio); }
.node-aud .node-title { color: #ffffff; }

.node-doc { border-color: rgba(52, 211, 153, 0.15); }
.node-doc .node-icon-wrapper { background: rgba(52, 211, 153, 0.1); color: var(--color-document); }
.node-doc .node-title { color: #ffffff; }

/* ==========================================================================
   FEATURE GRID (APPLE MINIMALIST CARDS)
   ========================================================================== */
.features {
  padding: 100px 8%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  margin-top: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 1.1rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  will-change: transform, border-color, box-shadow;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-purple);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(142, 45, 226, 0.08);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(142, 45, 226, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--color-purple);
  border: 1px solid rgba(192, 132, 252, 0.15);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   DYNAMIC CALCULATOR CONTROL DECK
   ========================================================================== */
.calc-section {
  padding: 100px 8%;
  background: radial-gradient(circle at center, rgba(142, 45, 226, 0.06) 0%, transparent 60%);
  display: flex;
  justify-content: center;
}

.calc-box {
  width: 100%;
  max-width: 900px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: 32px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.calc-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-left h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.calc-left p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 35px;
}

/* 🛸 THE ADVANCED NEON SLIDER WIDGET */
.slider-container {
  width: 100%;
}

.slider-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.slider-val span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-purple);
}

.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  margin: 15px 0 30px;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(142, 45, 226, 0.4);
  border: 1.5px solid #ffffff;
  transition: var(--transition-smooth);
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* 🛸 CALCULATOR RESULTS DECK */
.calc-right {
  background: rgba(255, 255, 255, 0.005);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  padding: 30px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 15px;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.003);
  border: 1px solid rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.calc-row:hover {
  background: rgba(255, 255, 255, 0.01);
  border-color: var(--border-purple);
  transform: scale(1.015);
}

.row-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.row-label svg {
  color: var(--color-purple);
}

.row-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
}

/* ==========================================================================
   FOOTER (PRODUCTION CONTROL DOCK)
   ========================================================================== */
.footer {
  padding: 80px 8% 40px;
  border-top: 1px solid var(--border-light);
  position: relative;
  background: rgba(15, 17, 22, 0.98);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-info {
  max-width: 320px;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 15px;
}

.footer-grid {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (CYBER COCKPIT RESIZING)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.4rem;
  }
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 140px 5% 70px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  .features {
    padding: 70px 5%;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .grid-container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-grid {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   🛸 CYBERNETIC COMING SOON MODAL SCREEN
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 9, 13, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  background: rgba(15, 17, 26, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(142, 45, 226, 0.15);
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.modal-logo-container {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(142, 45, 226, 0.3));
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: linear-gradient(to right, var(--text-primary), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 25px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.modal-input:focus {
  border-color: var(--border-purple);
  background: rgba(255, 255, 255, 0.05);
}

.modal-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(142, 45, 226, 0.2);
  transition: var(--transition-smooth);
}

.modal-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(142, 45, 226, 0.35);
}

.modal-success-msg {
  display: none;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #34D399;
  letter-spacing: 1px;
  margin-top: 15px;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mockupFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes orbFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(30px, 20px) scale(1.08);
    opacity: 0.32;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
}

@keyframes orbFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.18;
  }
  50% {
    transform: translate(-20px, -30px) scale(1.12);
    opacity: 0.24;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.18;
  }
}
