@import url('https://fonts.cdnfonts.com/css/brinnan');

body {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000000;
  margin: 0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000000;
  overflow-x: hidden;
}

/* Background Image with Vertical Gradient Overlay */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
background-image: url('assets/bannerbackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 90, 166, 0.3) 0%,
    rgba(59, 130, 246, 0.2) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 75%,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-size: 100% 200%;
  animation: vertical-gradient-shift 15s ease infinite;
  z-index: 1;
}

@keyframes vertical-gradient-shift {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(2px 2px at 15% 65%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: stars-twinkle 8s ease-in-out infinite;
  opacity: 0.6;
  z-index: 2;
}

@keyframes stars-twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ========================================
   ANIMATION KEYFRAMES
   ======================================== */

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 40px;
  transition: background 0.3s ease;
  animation: fadeInDown 0.8s ease-out;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.navbar-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 8px 12px;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.navbar-logo:hover { opacity: 0.8; }

.logo-image {
  width: 90px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  position: relative;
  animation: fadeInDown 0.8s ease-out both;
}

.nav-link:nth-child(1) { animation-delay: 0.3s; }
.nav-link:nth-child(2) { animation-delay: 0.4s; }
.nav-link:nth-child(3) { animation-delay: 0.5s; }

.nav-link:hover { color: #ffffff; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.nav-dropdown {
  position: relative;
  animation: fadeInDown 0.8s ease-out 0.6s both;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.85);
}

.dropdown-arrow.open { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 30, 45, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-item {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInDown 0.8s ease-out 0.7s both;
}

.btn-login {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 20px;
  transition: color 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-login:hover { color: #ffffff; }

.btn-get-started {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-get-started:hover .btn-arrow { transform: translateX(3px); }

/* ========================================
   BANNER CONTENT
   ======================================== */
.banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  flex: 1;
  padding-top: 100px;
  padding-bottom: 60px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  backdrop-filter: blur(10px);
  box-shadow: 
    inset 0 0 15px rgba(59, 130, 246, 0.4),
    inset 0 0 25px rgba(59, 130, 246, 0.2);
  animation: fadeInDown 1s ease-out 0.3s both, innerNeonPulse 2s ease-in-out 1.3s infinite;
}

@keyframes innerNeonPulse {
  0%, 100% {
    box-shadow: 
      inset 0 0 15px rgba(59, 130, 246, 0.4),
      inset 0 0 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 
      inset 0 0 20px rgba(59, 130, 246, 0.6),
      inset 0 0 35px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.7);
  }
}

.ai-icon {
  color: #3b82f6;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.banner-title {
  font-family: "Brinnan", sans-serif;
  font-size: 96px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 32px 0;
  animation: fadeInDown 1s ease-out 0.5s both;
}

.title-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #a0c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.banner-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 48px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-demo,
.btn-waitlist {
  font-size: 16px;
  font-weight: 400;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-demo {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid transparent;
}

.btn-demo:hover { color: #ffffff; }

.btn-waitlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(0, 0, 0);
  color: #ffffff;
  border: 1.5px solid rgba(59, 130, 246, 0.5);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 15px rgba(59, 130, 246, 0.4),
    inset 0 0 15px rgba(59, 130, 246, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-waitlist:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 21, 54, 0.2);
}

.btn-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-waitlist:hover .btn-icon { transform: translateX(3px); }


/* ========================================
   WAITLIST MODAL STYLES
   ======================================== */

.hero-wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: heroWlFadeIn 0.25s ease;
}

@keyframes heroWlFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-wl-modal {
  width: 100%;
  max-width: 520px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  animation: heroWlSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

@keyframes heroWlSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-wl-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 32px 0;
}

.hero-wl-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-wl-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #4d7cff;
  text-transform: uppercase;
}

.hero-wl-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.hero-wl-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
}

.hero-wl-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hero-wl-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-wl-body {
  padding: 28px 32px 32px;
}

.hero-wl-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-wl-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.hero-wl-input {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-wl-input:focus {
  border-color: rgba(77, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.1);
}

.hero-wl-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.hero-wl-textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.hero-wl-textarea:focus {
  border-color: rgba(77, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.1);
}

.hero-wl-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.hero-wl-row {
  display: flex;
  gap: 14px;
}

.hero-wl-row .hero-wl-field {
  flex: 1;
}

.hero-wl-submit {
  padding: 14px 24px;
  border-radius: 999px;
  background: #4d7cff;
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hero-wl-submit:hover:not(:disabled) {
  background: #3d6ae8;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(77, 124, 255, 0.3);
}

.hero-wl-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero-wl-sending {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-wl-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: heroWlSpin 0.6s linear infinite;
}

@keyframes heroWlSpin {
  to { transform: rotate(360deg); }
}

.hero-wl-success {
  text-align: center;
  padding: 40px 32px;
}

.hero-wl-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(77, 124, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: heroWlPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroWlPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hero-wl-success-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
}

.hero-wl-success-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 24px;
  line-height: 1.6;
}

.hero-wl-success-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(77, 124, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-wl-success-btn:hover {
  background: rgba(77, 124, 255, 0.15);
  border-color: #4d7cff;
}

.hero-wl-error {
  font-size: 0.82rem;
  color: #ff6b6b;
  text-align: center;
  margin-top: 4px;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (min-width: 1440px) {
  .navbar-container-wrapper { max-width: 1600px; }
  .banner-title { font-size: 104px; }
  .banner-description { font-size: 20px; }
}

@media (max-width: 1439px) and (min-width: 1025px) {
  .navbar-container-wrapper { max-width: 1200px; }
  .banner-title { font-size: 88px; }
}

@media (max-width: 1024px) {
  .navbar { padding: 16px 32px; }
  .navbar-container { gap: 32px; }
  .navbar-links { gap: 24px; }
  .nav-link { font-size: 14px; }
  .banner-content {
    padding: 0 32px;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .banner-title { font-size: 72px; }
  .banner-description { font-size: 17px; }
  .btn-demo,
  .btn-waitlist {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .banner-title { font-size: 64px; }
  .banner-description { font-size: 16px; margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .navbar-container-wrapper { border-radius: 50px; padding: 6px 16px; }
  .navbar-container { gap: 16px; }
  .navbar-logo { padding: 6px 8px; }
  .logo-image { width: 45px; height: 28px; }
  .logo-text { font-size: 16px; }

  .mobile-menu-toggle { display: block; order: 3; }

  .navbar-links {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(20, 30, 45, 0.98);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: none;
  }

  .navbar-links.mobile-open {
    max-height: 500px;
    opacity: 1;
    padding: 20px;
  }

  .nav-link {
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    animation: none;
  }
  .nav-link:hover { background: rgba(255, 255, 255, 0.05); }
  .nav-link::after { display: none; }

  .nav-dropdown { width: 100%; animation: none; }
  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 10px;
  }
  .dropdown-trigger:hover { background: rgba(255, 255, 255, 0.05); }
  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-actions { gap: 12px; order: 2; }
  .btn-get-started { padding: 10px 20px; font-size: 14px; }
  .btn-login { display: none; }
  .btn-arrow { width: 14px; height: 14px; }

  .banner-content {
    padding: 0 20px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .ai-badge { font-size: 14px; padding: 8px 16px; margin-bottom: 32px; }
  .banner-title { font-size: 48px; }
  .banner-description { font-size: 16px; margin-bottom: 40px; }
  .banner-description br { display: none; }
  .banner-actions { gap: 16px; }
  .btn-demo,
  .btn-waitlist { padding: 14px 28px; font-size: 15px; }

  /* Waitlist Modal Mobile */
  .hero-wl-overlay { padding: 12px; align-items: flex-end; }
  .hero-wl-modal {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    animation: heroWlSlideUpMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  @keyframes heroWlSlideUpMobile {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-wl-header { padding: 24px 20px 0; }
  .hero-wl-body { padding: 24px 20px; }
  .hero-wl-row { flex-direction: column; gap: 18px; }
}

@media (max-width: 767px) and (min-width: 481px) {
  .banner-title { font-size: 44px; }
  .banner-description { font-size: 15px; }
}

@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .navbar-container-wrapper { padding: 4px 12px; }
  .logo-image { width: 35px; height: 24px; }
  .logo-text { font-size: 14px; }
  .btn-get-started { padding: 8px 16px; font-size: 13px; gap: 6px; }
  .btn-get-started span { display: none; }
  .btn-get-started::after { content: 'Join'; }

  .banner-content {
    padding: 0 16px;
    padding-top: 90px;
    padding-bottom: 32px;
  }
  .ai-badge { font-size: 12px; padding: 6px 12px; margin-bottom: 24px; }
  .ai-icon { width: 14px; height: 14px; }
  .banner-title { font-size: 36px; margin-bottom: 20px; }
  .banner-description { font-size: 14px; margin-bottom: 32px; }
  .banner-actions { flex-direction: column; gap: 12px; width: 100%; }
  .btn-demo,
  .btn-waitlist {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    justify-content: center;
  }
  .btn-icon { width: 14px; height: 14px; }

  /* Waitlist Modal Extra Small */
  .hero-wl-header { padding: 20px 16px 0; }
  .hero-wl-body { padding: 20px 16px; }
  .hero-wl-title { font-size: 1.2rem; }
  .hero-wl-success { padding: 32px 16px; }
}

@media (max-width: 375px) {
  .banner-title { font-size: 32px; line-height: 1.1; }
  .banner-description { font-size: 13px; line-height: 1.5; }
  .ai-badge { font-size: 11px; padding: 5px 10px; }
  .btn-demo,
  .btn-waitlist { font-size: 13px; padding: 11px 18px; }
}

@media (min-width: 1920px) {
  .hero-background { background-size: cover; background-position: top center; }
  .navbar-container-wrapper { max-width: 1800px; }
  .banner-title { font-size: 112px; }
  .banner-description { font-size: 22px; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .banner-content { padding-top: 80px; padding-bottom: 30px; }
  .banner-title { font-size: 36px; margin-bottom: 16px; }
  .ai-badge { margin-bottom: 20px; }
  .banner-description { font-size: 14px; margin-bottom: 24px; }
  .banner-actions { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ===== DASHBOARD MOCK ===== */
.dashboard-mock {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: #000000;
}

.mock-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mock-image:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(77, 124, 255, 0.25),
    0 0 40px rgba(77, 124, 255, 0.1);
}

/* Reusable scroll animation */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Main Container */
.features-main-container {
  min-height: 100vh;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    overflow: hidden;
}


.features-hero-section {
  max-width: 56rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.features-hero-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 1.5rem;

}

.features-hero-description {
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.features-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.features-btn-secondary {
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  background: transparent;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.features-btn-secondary:hover {
  color: #d1d5db;
}

.features-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgb(0, 0, 0);
  color: #ffffff;
  border: 1.5px solid rgba(59, 130, 246, 0.5);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 15px rgba(59, 130, 246, 0.4),
    inset 0 0 15px rgba(59, 130, 246, 0.2);
  animation: innerNeonPulse 2s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features-btn-primary:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 21, 54, 0.2);
}

.features-arrow {
  font-size: 1.25rem;
}


.features-hub-container {
  position: relative;
  max-width: 90rem;
  padding: 0 1rem;
}



.features-cards-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.features-card-wrapper {
  display: flex;
  justify-content: center;
}

/* Card Positioning Classes for Mobile */
.features-position-top-left {
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
}

.features-position-top-right {
  grid-column: 1;
  grid-row: 2;
  justify-content: center;
}

.features-position-bottom-left {
  grid-column: 1;
  grid-row: 3;
  justify-content: center;
}

.features-position-bottom-right {
  grid-column: 1;
  grid-row: 4;
  justify-content: center;
}

/* Chip Container */
.features-chip-container {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.features-chip-wrapper {
  position: relative;
  width: 12rem;
  height: 12rem;
}

.features-chip-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
  position: relative;
  z-index: 10;
}

.features-chip-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: features-pulse-glow 3s ease-in-out infinite;
}

@keyframes features-pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}


.features-single-card {
  position: relative;
  background: #05070B;
  backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.089);
  border-radius: .25rem;
  padding: 1rem 1rem;
  width: 100%;
  max-width: 22rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: features-fade-in-up 0.8s ease-out both;
}

.features-single-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

@keyframes features-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-card-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features-card-icon-container {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.features-single-card:hover .features-card-icon-container {
  transform: scale(1.1);
}

.features-card-icon-image {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

/* Text */
.features-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
}

.features-card-description {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
  margin-left: 3.5rem;
  font-weight: 400;
}

/* Card Effects */
.features-card-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 0 1rem 0 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.features-single-card:hover .features-card-corner-accent {
  opacity: 1;
}

.features-card-glow-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%, rgba(168, 85, 247, 0.1) 100%);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.features-single-card:hover .features-card-glow-effect {
  opacity: 1;
}


@media (max-width: 767px) {
  .features-chip-wrapper {
    display: none;
  }
  
  .features-hero-section {
    margin-bottom: 2rem;
  }
  
  .features-main-container {
    padding: 1rem 1rem;
    justify-content: flex-start;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .features-hero-title {
    font-size: 30px;
  }
  


  .features-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0 2rem;
  }

  /* Tablet Positioning */
  .features-position-top-left {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    margin-bottom: -3rem;
  }

  .features-position-top-right {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    margin-bottom: -3rem;
  }

  .features-chip-container {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    z-index: 5;
  }

  .features-position-bottom-left {
    grid-column: 1;
    grid-row: 3;
    justify-content: flex-end;
    margin-top: -3rem;
  }

  .features-position-bottom-right {
    grid-column: 2;
    grid-row: 3;
    justify-content: flex-start;
    margin-top: -3rem;
  }

  .features-chip-wrapper {
    width: 14rem;
    height: 14rem;
    display: block;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .features-hero-title {
    font-size: 34px;
  }

  .features-cards-grid {
    gap: 0 3rem;
  }

  .features-position-top-left {
    margin-bottom: -4rem;
  }

  .features-position-top-right {
    margin-bottom: -4rem;
  }

  .features-position-bottom-left {
    margin-top: -4rem;
  }

  .features-position-bottom-right {
    margin-top: -4rem;
  }

  .features-chip-wrapper {
    width: 16rem;
    height: 16rem;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .features-cards-grid {
    gap: 0 4rem;
  }

  .features-position-top-left {
    margin-bottom: -5rem;
    padding-right: 112px;
  }

  .features-position-top-right {
    margin-bottom: -5rem;
    padding-left: 112px;
  }

  .features-position-bottom-left {
    margin-top: -5rem;
    padding-right: 112px;
  }

  .features-position-bottom-right {
    margin-top: -5rem;
    padding-left: 112px;
  }

  .features-chip-wrapper {
    width: 18rem;
    height: 18rem;
  }
}

/* Mobile card size adjustment */
@media (max-width: 767px) {
  .features-single-card {
    max-width: 20rem;
    margin: 0 auto;
  }
  
  .features-cards-grid {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .features-hero-title {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  
  .features-hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 904px) {
  .features-single-card {
    max-width: 18rem;
  }

}

/* ===== WHO WINS WHAT ===== */
.who-wins-section {
  background: #000000;
  padding: 80px 0;
  color: white;
}

.who-wins-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.who-wins-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  margin: 0 0 48px 0;
  letter-spacing: -0.02em;
}

.cards-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-top: 16px;
  padding-bottom: 10px;
}

.cards-scroll-container::-webkit-scrollbar {
  display: none;
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  width: fit-content;
}

.benefit-card {
  width: 250px;
  min-width: 240px;
  background: #111111;
  border: 1px solid #222222;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.benefit-card:hover {
  background: #151515;
  border-color: #333333;
  box-shadow: 0 -4px 16px rgba(59, 130, 246, 0.12), 0 8px 20px rgba(0, 0, 0, 0.5);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 0 0;
  color: #ffffff;
}

.card-subtitle {
  font-size: 14px;
  color: #aaaaaa;
  margin: 0;
}

@media (max-width: 992px) {
  .who-wins-title { font-size: 40px; }
  .benefit-card { width: 300px; min-width: 300px; }
}

@media (max-width: 576px) {
  .who-wins-section { padding: 60px 0; }
  .who-wins-title { font-size: 32px; margin-bottom: 40px; }
  .benefit-card { width: 280px; min-width: 280px; padding: 24px 20px; }
  .icon-wrapper { width: 44px; height: 44px; }
  .benefit-icon { width: 40px; height: 40px; }
}

.whatmakesus-container {
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatmakesus-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 350px 10px 1fr;
  gap: 40px;
  align-items: start;
}

.whatmakesus-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 640px;
  justify-content: space-between;
}

.whatmakesus-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  margin: 0 0 48px 0;
  letter-spacing: -0.02em;
}

.learn-more-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid #4d7cff;
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: inset 0 0 12px rgba(59, 130, 246, 0.4),
    inset 0 0 12px rgba(59, 130, 246, 0.2);
  animation: innerNeonPulse 2s ease-in-out infinite;
}

.learn-more-btn:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 21, 54, 0.2);
}

.arrow {
  font-size: 20px;
  font-weight: 300;
}

.whatmakesus-divider {
  width: 10px;
  height: 100%;
  min-height: 500px;
  position: relative;
  border-radius: 4px;
  transition: background 0.4s ease;
}

.whatmakesus-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.feature-item {
  padding: 24px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.feature-item.active {
  background: linear-gradient(90deg, rgba(34, 34, 34, 0.575), transparent);
  padding: 32px 24px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.feature-item.active .feature-icon {
  display: flex;
  margin-bottom: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #4d7cff;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}

.feature-item:not(.active) .feature-title {
  font-size: 18px;
  color: #cccccc;
}

.feature-description {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #999999;
  line-height: 1.5;
}

.feature-item:hover:not(.active) {
  padding-left: 12px;
}

.feature-item:hover:not(.active) .feature-title {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .whatmakesus-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whatmakesus-divider {
    display: none;
  }

  .whatmakesus-title {
    font-size: 40px;
  }

  .whatmakesus-header {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .whatmakesus-container {
    padding: 40px 20px;
  }

  .whatmakesus-title {
    font-size: 32px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-item:not(.active) .feature-title {
    font-size: 16px;
  }
}

.business-wrapper {
  min-height: 100vh;
  background: #000000;
  padding: 70px 20px;
  font-family: "Inter", sans-serif;
  color: white;
}

.business-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.business-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.business-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.6fr 1.2fr;
  gap: 25px;
  align-items: start;
}

/* Left Labels */
.business-left p {
  position: relative;
  font-size: 18px;
  padding: 13px 0;
  top: 95px;
  opacity: 0.9;
}

/* Cards */
.business-card {
  border-radius: 14px;
  padding: 28px 25px;
  min-height: 620px;
}

.business-card h3 {
  font-size: 24px;
  margin-bottom: 22px;
  font-weight: 400;
}

.business-card p {
  font-size: 14px;
  padding: 18px 0;
  opacity: 0.75;
}

/* Dark Cards */
.business-card.dark {
  background: rgba(255, 255, 255, 0.04);
}

/* Highlight Card EXACT Gradient Border */
.business-card.highlight {
  position: relative;
  background: rgba(20, 30, 60, 0.55);
  border: 2px solid transparent;
  border-radius: 16px;

  background-image: linear-gradient(
      rgba(10, 15, 30, 0.85),
      rgba(10, 15, 30, 0.85)
    ),
    linear-gradient(180deg, #1a51f4, #5480fe);

  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0px 0px 25px rgba(84, 128, 254, 0.35);
}

.business-card.highlight p {
  opacity: 0.95;
  font-weight: 500;
}

/* Badge */
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #1a51f4, #5480fe);
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.badge-icon {
  color: #ffffff;
  margin-right: 6px;
}

/* Hover Effect for Dark Cards */
.business-card.dark {
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.business-card.dark:hover {
  background: rgba(20, 30, 60, 0.55);

  background-image: linear-gradient(
      rgba(10, 15, 30, 0.85),
      rgba(10, 15, 30, 0.85)
    ),
    linear-gradient(180deg, #1a51f449, #5481fe62);

  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0px 0px 25px rgba(84, 128, 254, 0.35);

  transform: translateY(-6px);
}

/* Responsive Design - Tablet */
@media (max-width: 1160px) {
  .business-wrapper {
    padding: 50px 20px;
  }

  .business-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .business-left {
    display: none;
  }

  .business-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .business-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .business-card p {
    font-size: 14px;
    padding: 14px 0;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .business-wrapper {
    padding: 40px 16px;
  }

  .business-container {
    padding: 0 10px;
  }

  .business-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .business-card {
    padding: 20px 16px;
  }

  .business-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .business-card p {
    font-size: 13px;
    padding: 12px 0;
  }

  .badge {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  .business-title {
    font-size: 24px;
  }

  .business-card h3 {
    font-size: 18px;
  }
}

/* ===== CFO / SOLUTIONS ===== */
.cfo-container {
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
  padding: 80px 20px;
  overflow-x: hidden;
}

.cfo-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cfo-header {
  text-align: center;
  margin-bottom: 100px;
}

.cfo-main-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ffffff, #a0c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cfo-features {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.cfo-feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px 60px;
  align-items: center;
  opacity: 0;
  animation: cfo-slide-in 1s ease-out forwards;
}

.cfo-feature-1 { animation-delay: 0.2s; }
.cfo-feature-2 { animation-delay: 0.4s; }
.cfo-feature-3 { animation-delay: 0.6s; }
.cfo-feature-4 { animation-delay: 0.8s; }

@keyframes cfo-slide-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cfo-feature-number-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.cfo-feature-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #5480FE;
  background: rgba(74, 158, 255, 0.12);
  border: 2px solid #4A9EFF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 158, 255, 0.4);
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.cfo-feature:hover .cfo-feature-number {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.6);
}

.cfo-feature-text {
  max-width: 480px;
}

.cfo-feature-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cfo-feature-description {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: #d0d0d0;
}

.cfo-feature-image {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  box-shadow: 0 20px 60px rgba(74, 158, 255, 0.18);
  transition: all 0.5s ease;
  width: 100%;
  max-width: 560px;
}

.cfo-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.cfo-feature:hover .cfo-feature-image {
  transform: translateY(-12px);
  box-shadow: 0 40px 100px rgba(74, 158, 255, 0.3);
}

.cfo-feature:hover .cfo-feature-image img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .cfo-feature {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cfo-feature-number-wrapper {
    margin: 0 auto;
  }

  .cfo-feature-text {
    max-width: 100%;
  }

  .cfo-feature-image {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .cfo-main-title {
    font-size: 36px;
  }

  .cfo-feature-number {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

/* ===== AUTONOMOUS / POWERFULLY BUILT ===== */
.autonomous-modern-finance-section {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 100px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.autonomous-inner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.autonomous-main-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.05;
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: -62px;
}

.autonomous-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.autonomous-features-list {
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-left: 8px;
}

.autonomous-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

.autonomous-feature-item.autonomous-active {
  padding-left: 0;
}

.autonomous-vertical-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3b82f6;
  border-radius: 2px;
}

.autonomous-blue-indicator {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 8px;
  margin-right: 18px;
  margin-left: 12px;
}

.autonomous-feature-content {
  flex: 1;
}

.autonomous-feature-title {
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 4px;
}

.autonomous-feature-item.autonomous-active .autonomous-feature-title {
  font-weight: 500;
}

.autonomous-feature-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin-top: 2px;
}

.autonomous-dashboard-preview-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  background: #111;
  border: 1px solid #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autonomous-dashboard-preview-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(59, 130, 246, 0.3);
}

.autonomous-dashboard-preview {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 1100px) {
  .autonomous-content-wrapper {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .autonomous-main-title {
    font-size: 3.2rem;
  }

  .autonomous-dashboard-preview-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .autonomous-modern-finance-section {
    padding: 60px 0 80px;
  }

  .autonomous-main-title {
    font-size: 1.8rem;
    margin-right: 5px;
  }

  .autonomous-feature-title {
    font-size: 1.25rem;
  }

  .autonomous-feature-desc {
    font-size: 0.98rem;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: #000000;
  color: white;
  padding: 120px 80px;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 100px;
  align-items: flex-start;
}

.faq-left h2 {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-top: 18px;
}

.faq-right {
  width: 100%;
}

.faq-item {
  padding: 28px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.8;
}

.faq-answer {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 90%;
}

.faq-divider {
  margin-top: 28px;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.faq-item.active .faq-question {
  color: white;
}

@media (max-width: 900px) {
  .faq-section { padding: 80px 20px; }
  .faq-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .faq-left h2 { font-size: 2.5rem; }
}


/* ===== CONTACT ===== */
.contact-section {
  background: #000000;
  color: white;
  padding: 120px 40px;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 120px;
  align-items: flex-start;
}

.contact-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-subtext {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 50px;
}

.contact-cards {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
}

.contact-card {
  flex: 1;
  padding: 38px 34px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
}

.contact-card-title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-card-info {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  text-decoration: none;
}

.contact-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
  width: fit-content;
  transition: 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  background: white;
  color: black;
}

.contact-footer {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 950px) {
  .contact-section { padding: 80px 20px; }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-cards { flex-direction: column; }
  .contact-title { font-size: 2.7rem; }
}


/* ===== WAITLIST CTA SECTION ===== */
.waitlist-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 90, 166, 0.3) 0%,
    rgba(59, 130, 246, 0.2) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 75%,
    rgba(0, 0, 0, 0.5) 100%
  );
  background-size: 100% 200%;
  animation: vertical-gradient-shift 15s ease infinite;
  z-index: 1;
}

.waitlist-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.waitlist-content {
  text-align: center;
  max-width: 720px;
  margin-top: 500px;
}

.waitlist-badge {
  background: transparent;
  color: #ffffff;
  border: 1px solid #4d7cff;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  box-shadow: inset 0 0 12px rgba(59, 130, 246, 0.4),
    inset 0 0 12px rgba(59, 130, 246, 0.2);
  animation: innerNeonPulse 2s ease-in-out infinite;
  margin-bottom: 28px;
}

.waitlist-title {
  font-family: "Brinnan", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: white;
  margin-bottom: 18px;
}

.waitlist-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 42px;
}

.waitlist-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.waitlist-btn-primary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #4d7cff;
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 12px rgba(59, 130, 246, 0.4),
    inset 0 0 12px rgba(59, 130, 246, 0.2);
  animation: innerNeonPulse 2s ease-in-out infinite;
}

.waitlist-btn-primary:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 21, 54, 0.2);
}

.waitlist-btn-primary span {
  font-size: 1.05rem;
}

/* ===== WAITLIST CTA MODAL ===== */
.waitlist-wl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: waitlistWlFadeIn 0.25s ease;
}

@keyframes waitlistWlFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.waitlist-wl-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  animation: waitlistWlSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

@keyframes waitlistWlSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.waitlist-wl-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
}

.waitlist-wl-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}

.waitlist-wl-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 32px 0;
  padding-right: 64px;
}

.waitlist-wl-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.waitlist-wl-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #4d7cff;
  text-transform: uppercase;
}

.waitlist-wl-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.waitlist-wl-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
}

.waitlist-wl-body { padding: 28px 32px 32px; }

.waitlist-wl-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.waitlist-wl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.waitlist-wl-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3px;
}

.waitlist-wl-input {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-wl-input:focus {
  border-color: rgba(77, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.1);
}

.waitlist-wl-input::placeholder { color: rgba(255, 255, 255, 0.2); }

.waitlist-wl-textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.waitlist-wl-textarea:focus {
  border-color: rgba(77, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.1);
}

.waitlist-wl-textarea::placeholder { color: rgba(255, 255, 255, 0.2); }

.waitlist-wl-row { display: flex; gap: 14px; }
.waitlist-wl-row .waitlist-wl-field { flex: 1; }

.waitlist-wl-submit {
  padding: 14px 24px;
  border-radius: 999px;
  background: #4d7cff;
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.waitlist-wl-submit:hover:not(:disabled) {
  background: #3d6ae8;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(77, 124, 255, 0.3);
}

.waitlist-wl-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.waitlist-wl-sending { display: flex; align-items: center; gap: 8px; }

.waitlist-wl-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: waitlistWlSpin 0.6s linear infinite;
}

@keyframes waitlistWlSpin { to { transform: rotate(360deg); } }

.waitlist-wl-success { text-align: center; padding: 40px 32px; }

.waitlist-wl-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(77, 124, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: waitlistWlPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes waitlistWlPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.waitlist-wl-success-title { font-size: 1.3rem; font-weight: 600; color: #ffffff; margin: 0 0 8px; }
.waitlist-wl-success-text { font-size: 0.88rem; color: rgba(255, 255, 255, 0.45); margin: 0 0 24px; line-height: 1.6; }

.waitlist-wl-success-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(77, 124, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.waitlist-wl-success-btn:hover {
  background: rgba(77, 124, 255, 0.15);
  border-color: #4d7cff;
}

.waitlist-wl-error { font-size: 0.82rem; color: #ff6b6b; text-align: center; margin-top: 4px; }

@media (max-width: 768px) {
  .waitlist-title { font-size: 2.1rem; }
  .waitlist-subtitle { font-size: 0.95rem; }
  .waitlist-wl-overlay { padding: 12px; align-items: flex-end; }
  .waitlist-wl-modal {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    animation: waitlistWlSlideUpMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  @keyframes waitlistWlSlideUpMobile {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }
  .waitlist-wl-header { padding: 24px 20px 0; padding-right: 56px; }
  .waitlist-wl-body { padding: 24px 20px; }
  .waitlist-wl-row { flex-direction: column; gap: 18px; }
  .waitlist-wl-close { top: 14px; right: 14px; }
}

@media (max-width: 425px) {
  .waitlist-wl-header { padding: 20px 16px 0; padding-right: 52px; }
  .waitlist-wl-body { padding: 20px 16px; }
  .waitlist-wl-title { font-size: 1.2rem; }
  .waitlist-wl-success { padding: 32px 16px; }
  .waitlist-wl-close { top: 12px; right: 12px; width: 34px; height: 34px; }
}

/* ===== FOOTER ===== */
.footer-section {
  background: #000000;
  padding: 100px 80px 0;
  color: white;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

.footer-left {
  flex: 1.4;
}

.footer-title {
  font-family: "Brinnan", sans-serif;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 50px;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-input {
  width: 280px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  outline: none;
  font-size: 0.95rem;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-subscribe-btn {
  padding: 14px 22px;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #4d7cff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 12px rgba(59, 130, 246, 0.4),
    inset 0 0 12px rgba(59, 130, 246, 0.2);
  animation: footerNeonPulse 2s ease-in-out infinite;
}

.footer-subscribe-btn:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 21, 54, 0.2);
}

.footer-links {
  flex: 1.6;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-column a {
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: center;
  font-family: "Brinnan", sans-serif;
  font-size: 190px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

@media (max-width: 950px) {
  .footer-section {
    padding: 80px 20px 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 70px;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-input {
    width: 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .footer-brand {
    font-size: 8.2rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .footer-brand {
    font-size: 5.2rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 425px) {
  .footer-brand {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}


/* ===== LEGAL MODAL ===== */
.lm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lmFadeIn 0.25s ease;
}

@keyframes lmFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lm-modal {
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: lmSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

@keyframes lmSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lm-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lm-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #4d7cff;
  text-transform: uppercase;
}

.lm-title {
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
}

.lm-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 2px 0 0;
}

.lm-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lm-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.lm-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 36px 36px;
  scroll-behavior: smooth;
}

.lm-body::-webkit-scrollbar {
  width: 6px;
}

.lm-body::-webkit-scrollbar-track {
  background: transparent;
}

.lm-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.lm-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lm-section {
  margin-bottom: 28px;
}

.lm-section:last-child {
  margin-bottom: 0;
}

.lm-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.1px;
  padding-left: 14px;
  border-left: 3px solid #4d7cff;
}

.lm-section-text {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 12px;
  white-space: pre-line;
}

.lm-section-text:last-child {
  margin-bottom: 0;
}

.lm-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
}

.lm-footer-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lm-footer-btn {
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(77, 124, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lm-footer-btn:hover {
  background: rgba(77, 124, 255, 0.15);
  border-color: #4d7cff;
}

@media (max-width: 768px) {
  .lm-overlay {
    padding: 12px;
    align-items: flex-end;
  }
  .lm-modal {
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    animation: lmSlideUpM 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes lmSlideUpM {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }
  .lm-header {
    padding: 24px 20px 18px;
  }
  .lm-title {
    font-size: 1.25rem;
  }
  .lm-body {
    padding: 20px;
  }
  .lm-footer {
    padding: 14px 20px;
    flex-direction: column;
    gap: 12px;
  }
  .lm-footer-text {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
  .lm-footer-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 425px) {
  .lm-header {
    padding: 20px 16px 14px;
  }
  .lm-body {
    padding: 16px;
  }
  .lm-section-title {
    font-size: 0.95rem;
  }
  .lm-section-text {
    font-size: 0.82rem;
  }
}