    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --primary: #4c9aff;
      --primary-dark: #2e7ee6;
      --secondary: #f0f8ff;
      --accent: #00d4ff;
      --danger: #ff4757;
      --warning: #ffa502;
      --dark: #0a0a0a;
      --dark-light: #1a1a1a;
      --dark-medium: #2a2a2a;
      --gray: #666666;
      --gray-light: #888888;
      --gray-dark: #333333;
      --white: #ffffff;
      --text-light: #cccccc;
      --border: rgba(255, 255, 255, 0.1)
    }

    body {
      font-family: Inter, 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--dark);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
      font-weight: 400
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(10, 10, 10, .9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      padding: 16px 0;
      transition: all .3s ease
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: -.5px
    }

    a[href] {
      text-decoration: none
    }

    a[href]:hover::after {
      display: none !important
    }

    a[title] {
      text-decoration: none
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center
    }

    .nav-links a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all .3s ease;
      position: relative
    }

    .nav-links a:hover {
      color: var(--white)
    }

    .auth-buttons {
      display: flex;
      gap: 12px;
      align-items: center
    }

    .user-info {
      display: none;
      align-items: center;
      gap: 12px;
      position: relative
    }

    .user-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all .3s ease
    }

    .user-avatar:hover {
      background: var(--primary-dark)
    }

    .dropdown {
      position: relative
    }

    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      top: 40px;
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px 0;
      min-width: 180px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all .3s ease, opacity .2s ease .1s;
      z-index: 1001
    }

    .dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0)
    }

    .dropdown-content {
      transition: all .3s ease, opacity .2s ease .1s
    }

    .dropdown-content:hover {
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important
    }

    .dropdown-content a {
      color: var(--text-light);
      padding: 8px 16px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      transition: all .3s ease
    }

    .dropdown-content a:hover {
      background: rgba(76, 154, 255, .1);
      color: var(--white)
    }

    .btn {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      transition: all .3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 14px;
      gap: 8px;
      position: relative;
      overflow: hidden
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white)
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-1px)
    }

    .btn-secondary {
      background: 0 0;
      color: var(--text-light);
      border: 1px solid var(--border)
    }

    .btn-secondary:hover {
      background: var(--dark-light);
      color: var(--white);
      border-color: var(--primary)
    }

    .btn-link {
      background: 0 0;
      border: none;
      color: var(--primary);
      text-decoration: underline;
      cursor: pointer;
      padding: 0;
      font-size: inherit
    }

    .btn-link:hover {
      color: var(--primary-dark)
    }

    .topbar {
      width: 100%;
      background: rgba(10, 10, 10, .95);
      border-bottom: 1px solid var(--border);
      color: var(--gray-light);
      font-size: 13px
    }

    .topbar .topbar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0
    }

    .topbar-links {
      display: flex;
      gap: 16px
    }

    .topbar-links a {
      color: var(--gray-light);
      text-decoration: none
    }

    .topbar-links a:hover {
      color: var(--white)
    }

    main {
      margin-top: 64px
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      opacity: .3
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(10, 10, 10, .8) 0, rgba(26, 26, 26, .7) 50%, rgba(10, 10, 10, .8) 100%), radial-gradient(circle at 30% 40%, rgba(76, 154, 255, .05) 0, transparent 70%);
      z-index: -1
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 600px;
      margin: 0 auto
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(76, 154, 255, .1);
      border: 1px solid rgba(76, 154, 255, .2);
      padding: 8px 16px;
      border-radius: 24px;
      font-size: 13px;
      margin-bottom: 32px;
      color: var(--primary);
      font-weight: 500
    }

    .hero h1 {
      font-size: 56px;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -1px
    }

    .hero p {
      font-size: 18px;
      color: var(--gray-light);
      margin-bottom: 40px;
      line-height: 1.6;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap
    }

    .hero-cta .btn {
      padding: 14px 32px;
      font-size: 16px
    }

    .products {
      padding: 120px 0;
      background: var(--dark)
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px
    }

    .product-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--dark-light);
      min-height: 220px;
      display: flex;
      align-items: flex-end;
      isolation: isolate
    }

    .product-info {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 16px 20px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .6) 60%, rgba(0, 0, 0, .85) 100%)
    }

    .product-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 6px
    }

    .product-sub {
      color: var(--gray-light);
      font-size: 14px
    }

    .bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: .9
    }

    .product-overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none
    }

    .product-play {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      background: rgba(0, 0, 0, .55);
      border: 1px solid var(--border);
      border-radius: 40px;
      color: var(--white);
      font-weight: 600;
      pointer-events: all;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, border-color .2s ease
    }

    .product-play i {
      font-size: 16px;
      color: var(--primary)
    }

    .product-play:hover {
      transform: scale(1.04);
      background: rgba(0, 0, 0, .7);
      border-color: var(--primary)
    }

    .trust {
      padding: 100px 0;
      background: var(--dark-light)
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 28px
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: rgba(255, 255, 255, .03);
      color: var(--text-light);
      font-size: 13px
    }

    .trust-badge i {
      color: var(--primary)
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 24px;
      margin-bottom: 40px
    }

    .stat-card {
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      text-align: center
    }

    .stat-value {
      font-size: 32px;
      font-weight: 700;
      color: var(--white)
    }

    .stat-label {
      color: var(--gray-light);
      margin-top: 6px;
      font-size: 14px
    }

    .trust-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px
    }

    .trust-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px
    }

    .trust-item i {
      color: var(--primary);
      margin-top: 2px
    }

    .faq {
      padding: 90px 0;
      background: var(--dark)
    }

    .faq-list {
      max-width: 900px;
      margin: 0 auto
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--dark-light);
      margin-bottom: 12px;
      overflow: hidden
    }

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 16px 20px;
      background: 0 0;
      color: var(--white);
      font-weight: 600;
      cursor: pointer;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .faq-answer {
      padding: 0 20px 16px;
      color: var(--gray-light);
      display: none
    }

    .faq-item.active .faq-answer {
      display: block
    }

    .faq-icon {
      transition: transform .2s ease
    }

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

    .testimonials {
      padding: 90px 0;
      background: var(--dark-light)
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px
    }

    .testimonial-card {
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
      color: var(--text-light)
    }

    .testimonial-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700
    }

    .features {
      padding: 120px 0;
      background: var(--dark-light)
    }

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

    .section-title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--white);
      letter-spacing: -.5px
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--gray-light);
      max-width: 520px;
      margin: 0 auto
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px
    }

    .feature-card {
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: left;
      transition: all .3s ease;
      position: relative
    }

    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(76, 154, 255, .3);
      box-shadow: 0 8px 32px rgba(76, 154, 255, .1)
    }

    .feature-icon {
      font-size: 24px;
      margin-bottom: 20px;
      color: var(--primary)
    }

    .feature-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--white)
    }

    .feature-description {
      color: var(--gray-light);
      line-height: 1.6;
      font-size: 15px
    }

    .pricing {
      padding: 120px 0;
      background: var(--dark)
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 64px
    }

    .price-card {
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      transition: all .3s ease
    }

    .price-card.popular {
      border-color: var(--primary);
      background: linear-gradient(135deg, rgba(76, 154, 255, .05), rgba(76, 154, 255, .02))
    }

    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 48px rgba(0, 0, 0, .3)
    }

    .popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: var(--white);
      padding: 6px 16px;
      border-radius: 16px;
      font-size: 12px;
      font-weight: 600
    }

    .price-card h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--white)
    }

    .price {
      font-size: 32px;
      color: var(--primary);
      font-weight: 700;
      margin: 16px 0
    }

    .price-card p {
      color: var(--gray-light);
      margin-bottom: 24px;
      font-size: 14px
    }

    .price-card .btn {
      width: 100%
    }

    .video-preview {
      padding: 120px 0;
      background: var(--dark-medium)
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 32px;
      margin-top: 64px
    }

    .video-card {
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: all .3s ease
    }

    .video-card:hover {
      transform: translateY(-4px);
      border-color: rgba(76, 154, 255, .3);
      box-shadow: 0 12px 48px rgba(76, 154, 255, .1)
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden
    }

    .video-wrapper video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease
    }

    .video-card:hover .video-overlay {
      opacity: 1
    }

    .play-button {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--white);
      cursor: pointer;
      transition: all .3s ease
    }

    .play-button:hover {
      transform: scale(1.1);
      background: var(--primary-dark)
    }

    .play-button::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 12px solid var(--white);
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      margin-left: 2px
    }

    .video-info {
      padding: 24px
    }

    .video-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--white)
    }

    .video-description {
      color: var(--gray-light);
      line-height: 1.6;
      margin-bottom: 16px;
      font-size: 14px
    }

    .video-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap
    }

    .tag {
      background: rgba(76, 154, 255, .1);
      border: 1px solid rgba(76, 154, 255, .2);
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 12px;
      color: var(--primary)
    }

    footer {
      background: var(--dark-light);
      padding: 60px 0 24px;
      border-top: 1px solid var(--border)
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px
    }

    .footer-section h4 {
      color: var(--white);
      margin-bottom: 16px;
      font-weight: 600
    }

    .footer-section a {
      color: var(--gray-light);
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      transition: color .3s ease
    }

    .footer-section a:hover {
      color: var(--white)
    }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      color: var(--gray-light);
      text-align: center;
      font-size: 14px
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, .8);
      backdrop-filter: blur(8px)
    }

    .modal-content {
      background: var(--dark-light);
      margin: 5% auto;
      padding: 32px;
      border-radius: 16px;
      width: 90%;
      max-width: 400px;
      border: 1px solid var(--border);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
      position: relative
    }

    .close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: 0 0;
      border: none;
      color: var(--gray-light);
      font-size: 24px;
      cursor: pointer;
      transition: color .3s ease
    }

    .close:hover {
      color: var(--white)
    }

    .modal-title {
      font-size: 24px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 32px;
      color: var(--white)
    }

    .form-group {
      margin-bottom: 20px
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--white);
      font-weight: 500;
      font-size: 14px
    }

    .form-group input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--dark);
      color: var(--white);
      font-size: 14px;
      transition: none !important;
      will-change: auto;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

    .form-group input:focus {
      outline: 0 !important;
      border-color: var(--primary) !important;
      box-shadow: 0 0 0 3px rgba(76, 154, 255, .1) !important;
      transition: none !important;
    }

    /* Input performance optimizations */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"] {
      transition: none !important;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      -webkit-transition: none !important;
      -moz-transition: none !important;
      -o-transition: none !important;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="password"]:focus {
      transition: none !important;
      -webkit-transition: none !important;
      -moz-transition: none !important;
      -o-transition: none !important;
    }

    .form-links {
      text-align: center;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .verification-notice {
      background: rgba(255, 165, 2, .1);
      border: 1px solid rgba(255, 165, 2, .2);
      border-radius: 8px;
      padding: 16px;
      margin: 16px 0;
      color: var(--warning);
      text-align: center
    }

    .verification-notice h4 {
      margin-bottom: 8px;
      color: var(--warning)
    }

    .loading-spinner {
      display: none;
      border: 2px solid rgba(76, 154, 255, .2);
      border-radius: 50%;
      border-top: 2px solid var(--primary);
      width: 16px;
      height: 16px;
      animation: spin 1s linear infinite;
      margin: 0 auto
    }

    @keyframes spin {
      0% {
        transform: rotate(0)
      }

      100% {
        transform: rotate(360deg)
      }
    }

    @media (max-width:768px) {
      .topbar .topbar-inner {
        padding: 8px 0
      }

      .topbar-links {
        gap: 12px
      }

      .hero h1 {
        font-size: 40px
      }

      .nav-links {
        display: none
      }

      .features-grid,
      .pricing-grid,
      .video-grid {
        grid-template-columns: 1fr
      }

      .auth-buttons {
        flex-direction: column;
        gap: 8px
      }

      .dropdown-content {
        right: -50px
      }

      .hero-cta {
        flex-direction: column;
        align-items: center
      }

      .section-title {
        font-size: 32px
      }

      .container {
        padding: 0 16px
      }

      .preview-hero {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .feature-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px
      }

      .feature-showcase:nth-child(even) {
        direction: ltr
      }

      .demo-preview {
        grid-template-columns: 1fr;
        gap: 24px
      }

      .demo-tabs {
        flex-direction: column;
        align-items: center
      }

      .feature-showcase-grid {
        grid-template-columns: 1fr
      }

      /* Mobile modal adjustments */
      .initial-ban-fear-landing,
      .ban-solution-section,
      .more-proof-section {
        padding: 10px;
      }

      .initial-ban-fear-landing .ban-fear-content,
      .ban-solution-content,
      .more-proof-content {
        padding: 20px;
        max-width: 95%;
        max-height: 95vh;
      }

      .ban-fear-title,
      .ban-solution-title,
      .more-proof-title {
        font-size: 24px;
      }

      .ban-fear-subtitle,
      .ban-solution-subtitle {
        font-size: 16px;
      }

      .ban-fear-description {
        font-size: 14px;
      }

      .risk-stats {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .feature-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:480px) {
      .hero h1 {
        font-size: 32px
      }

      .section-title {
        font-size: 28px
      }

      .preview-title {
        font-size: 24px
      }

      .feature-details .feature-title {
        font-size: 24px
      }

      .demo-title {
        font-size: 24px
      }
    }

    .scroll-reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity .6s ease-out, transform .6s ease-out;
      will-change: opacity, transform
    }

    .scroll-reveal-left {
      opacity: 0;
      transform: translateX(-100px);
      transition: opacity .6s ease-out, transform .6s ease-out;
      will-change: opacity, transform
    }

    .scroll-reveal-right {
      opacity: 0;
      transform: translateX(100px);
      transition: opacity .6s ease-out, transform .6s ease-out;
      will-change: opacity, transform
    }

    .scroll-reveal-scale {
      opacity: 0;
      transform: scale(.8);
      transition: opacity .6s ease-out, transform .6s ease-out;
      will-change: opacity, transform
    }

    .scroll-reveal-left.revealed,
    .scroll-reveal-right.revealed,
    .scroll-reveal-scale.revealed,
    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1)
    }

    .scroll-reveal:nth-child(1) {
      transition-delay: .1s
    }

    .scroll-reveal:nth-child(2) {
      transition-delay: .2s
    }

    .scroll-reveal:nth-child(3) {
      transition-delay: .3s
    }

    .scroll-reveal:nth-child(4) {
      transition-delay: .4s
    }

    .scroll-reveal:nth-child(5) {
      transition-delay: .5s
    }

    .scroll-reveal:nth-child(6) {
      transition-delay: .6s
    }

    .feature-card {
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: left;
      transition: all .3s ease, opacity .8s ease, transform .8s ease;
      position: relative
    }

    .premium-features {
      margin-bottom: 80px
    }

    .feature-showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 80px;
      padding: 40px;
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      z-index: 1
    }

    .feature-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
      opacity: 0;
      transition: opacity .3s ease
    }

    .feature-showcase:hover::before {
      opacity: 1
    }

    .feature-showcase:nth-child(even) {
      direction: rtl
    }

    .feature-showcase:nth-child(even) .feature-details {
      direction: ltr
    }

    .feature-visual {
      position: relative
    }

    .feature-image {
      position: relative;
      height: 300px;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
    }

    .feature-image .video-3d-container {
      position: relative;
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
      transition: all .7s ease-out;
      z-index: 1
    }

    .feature-image .video-3d-container:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0)
    }

    .feature-image .video-3d-container .absolute {
      position: absolute
    }

    .feature-image .video-3d-container .relative {
      position: relative
    }

    .feature-image .video-3d-container .w-full {
      width: 100%
    }

    .feature-image .video-3d-container .h-80 {
      height: 320px
    }

    .feature-image .video-3d-container .rounded-xl {
      border-radius: 12px
    }

    .feature-image .video-3d-container .overflow-hidden {
      overflow: hidden
    }

    .feature-image .video-3d-container .shadow-2xl {
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
    }

    .feature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      min-width: 100%;
      min-height: 100%;
      max-width: 100%;
      max-height: 100%
    }

    .feature-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease
    }

    .feature-image:hover .feature-overlay {
      opacity: 1
    }

    .feature-play-btn {
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      cursor: pointer;
      transition: all .3s ease
    }

    .feature-play-btn:hover {
      transform: scale(1.1);
      background: var(--primary-dark)
    }

    .feature-badge {
      position: absolute;
      top: -10px;
      right: -10px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--white);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 8px 24px rgba(76, 154, 255, .3)
    }

    .feature-details {
      padding: 24px;
      position: relative;
      z-index: 5;
      background: rgba(26, 26, 26, .8);
      border-radius: 16px;
      backdrop-filter: blur(10px)
    }

    .feature-details .feature-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 20px;
      position: relative;
      z-index: 10;
      display: block;
      text-shadow: 0 0 20px rgba(76, 154, 255, .3)
    }

    .feature-details .feature-description {
      color: var(--gray-light);
      line-height: 1.7;
      margin-bottom: 24px;
      font-size: 16px
    }

    .feature-highlights {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-light);
      font-size: 14px
    }

    .highlight-item i {
      font-size: 16px;
      width: 20px
    }

    .video-card {
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: all .3s ease, opacity .8s ease, transform .8s ease
    }

    .main-preview {
      margin-bottom: 80px
    }

    .preview-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 60px
    }

    .preview-video-container {
      position: relative
    }

    .video-3d-container {
      position: relative;
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
      transition: all .7s ease-out
    }

    .video-3d-container:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0)
    }

    .preview-content {
      padding: 24px
    }

    .preview-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .preview-description {
      font-size: 16px;
      color: var(--gray-light);
      line-height: 1.7;
      margin-bottom: 32px
    }

    .preview-features {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .preview-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-light);
      font-size: 14px
    }

    .preview-feature i {
      font-size: 18px;
      width: 20px
    }

    .feature-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 32px;
      margin-bottom: 80px
    }

    .showcase-item {
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: all .4s ease;
      position: relative
    }

    .showcase-item:hover {
      transform: translateY(-8px);
      border-color: rgba(76, 154, 255, .4);
      box-shadow: 0 20px 60px rgba(76, 154, 255, .15)
    }

    .showcase-image {
      position: relative;
      height: 240px;
      width: 100%;
      overflow: hidden
    }

    .showcase-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      min-width: 100%;
      min-height: 100%;
      max-width: 100%;
      max-height: 100%
    }

    .showcase-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease
    }

    .showcase-item:hover .showcase-overlay {
      opacity: 1
    }

    .showcase-play-btn {
      width: 64px;
      height: 64px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      cursor: pointer;
      transition: all .3s ease
    }

    .showcase-play-btn:hover {
      transform: scale(1.1);
      background: var(--primary-dark)
    }

    .showcase-content {
      padding: 24px
    }

    .showcase-title {
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 12px
    }

    .showcase-description {
      color: var(--gray-light);
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 14px
    }

    .showcase-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap
    }

    .interactive-demo {
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      margin-bottom: 60px
    }

    .demo-header {
      text-align: center;
      margin-bottom: 40px
    }

    .demo-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px
    }

    .demo-subtitle {
      color: var(--gray-light);
      font-size: 16px
    }

    .demo-tabs {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
      flex-wrap: wrap
    }

    .demo-tab {
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 24px;
      color: var(--text-light);
      cursor: pointer;
      transition: all .3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px
    }

    .demo-tab:hover {
      border-color: var(--primary);
      color: var(--white)
    }

    .demo-tab.active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary)
    }

    .demo-content {
      position: relative
    }

    .demo-panel {
      display: none
    }

    .demo-panel.active {
      display: block
    }

    .demo-preview {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center
    }

    .demo-video {
      position: relative;
      height: 300px;
      width: 100%;
      border-radius: 16px;
      overflow: hidden
    }

    .demo-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      min-width: 100%;
      min-height: 100%;
      max-width: 100%;
      max-height: 100%
    }

    .demo-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s ease
    }

    .demo-video:hover .demo-overlay {
      opacity: 1
    }

    .demo-play-btn {
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 24px;
      cursor: pointer;
      transition: all .3s ease
    }

    .demo-play-btn:hover {
      transform: scale(1.1);
      background: var(--primary-dark)
    }

    .demo-info h4 {
      font-size: 24px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px
    }

    .demo-info p {
      color: var(--gray-light);
      line-height: 1.6;
      margin-bottom: 24px;
      font-size: 16px
    }

    .demo-features {
      display: flex;
      gap: 12px;
      flex-wrap: wrap
    }

    .demo-feature {
      background: rgba(76, 154, 255, .1);
      border: 1px solid rgba(76, 154, 255, .2);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      color: var(--primary);
      font-weight: 500
    }

    .price-card {
      background: var(--dark-light);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      transition: all .3s ease, opacity .8s ease, transform .8s ease
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(76, 154, 255, .1);
      border: 1px solid rgba(76, 154, 255, .2);
      padding: 8px 16px;
      border-radius: 24px;
      font-size: 13px;
      margin-bottom: 32px;
      color: var(--primary);
      font-weight: 500;
      animation: float 3s ease-in-out infinite
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-5px)
      }
    }

    .hero-cta .btn-primary {
      animation: pulse 2s infinite
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(76, 154, 255, .4)
      }

      70% {
        box-shadow: 0 0 0 10px rgba(76, 154, 255, 0)
      }

      100% {
        box-shadow: 0 0 0 0 rgba(76, 154, 255, 0)
      }
    }

    .text-center {
      text-align: center
    }

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

    .text-muted {
      color: var(--gray-light)
    }

    .mb-1 {
      margin-bottom: 8px
    }

    .mb-2 {
      margin-bottom: 16px
    }

    .mb-3 {
      margin-bottom: 24px
    }

    .mt-2 {
      margin-top: 16px
    }

    .hidden {
      display: none
    }

    .flex {
      display: flex
    }

    .items-center {
      align-items: center
    }

    .gap-2 {
      gap: 16px
    }

    /* Initial Ban Fear Landing Styles */
    .initial-ban-fear-landing {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(10, 10, 10, 0.95) 100%);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideInFromTop 0.8s ease-out;
      padding: 20px;
      box-sizing: border-box;
    }

    .initial-ban-fear-landing .ban-fear-content {
      text-align: center;
      width: 100%;
      max-width: 900px;
      max-height: 90vh;
      padding: 40px;
      background: var(--dark-light);
      border: 2px solid #27AE60;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(39, 174, 96, 0.3);
      overflow-y: auto;
      margin: auto;
    }

    .warning-icon {
      font-size: 80px;
      color: #27AE60;
      margin-bottom: 30px;
      animation: pulse 2s infinite;
    }

    .ban-fear-title {
      color: #27AE60;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
    }

    .ban-fear-subtitle {
      color: #2ECC71;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .ban-fear-description {
      color: #cccccc;
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .ban-fear-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .ban-fear-btn {
      padding: 16px 32px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 12px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .risk-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .stat-item {
      background: rgba(39, 174, 96, 0.1);
      border: 1px solid #27AE60;
      border-radius: 12px;
      padding: 20px;
    }

    .stat-number {
      font-size: 32px;
      font-weight: 700;
      color: #27AE60;
      margin-bottom: 8px;
    }

    .stat-label {
      color: #cccccc;
      font-size: 14px;
    }

    /* Ban Solution Section Styles */
    .ban-solution-section {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(10, 10, 10, 0.95) 100%);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideInFromTop 0.8s ease-out;
      padding: 20px;
      box-sizing: border-box;
    }

    .ban-solution-content {
      text-align: center;
      width: 100%;
      max-width: 1000px;
      max-height: 90vh;
      padding: 40px;
      background: var(--dark-light);
      border: 2px solid #4c9aff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(76, 154, 255, 0.3);
      position: relative;
      overflow-y: auto;
      margin: auto;
    }

    .solution-icon {
      font-size: 80px;
      color: #4c9aff;
      margin-bottom: 30px;
      animation: pulse 2s infinite;
    }

    .ban-solution-title {
      color: #4c9aff;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 0 0 20px rgba(76, 154, 255, 0.5);
    }

    .ban-solution-subtitle {
      color: #cccccc;
      font-size: 20px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .ban-solution-features {
      background: rgba(26, 26, 26, 0.8);
      border: 1px solid #4c9aff;
      border-radius: 12px;
      padding: 30px;
      margin: 30px 0;
      text-align: left;
    }

    .ban-solution-features h3 {
      color: #4c9aff;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px;
    }

    .feature-item {
      color: #cccccc;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ban-solution-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .ban-solution-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: #888;
      font-size: 24px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .ban-solution-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    @keyframes slideInFromTop {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    /* More Proof Section Styles */
    .more-proof-section {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(10, 10, 10, 0.95) 100%);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slideInFromTop 0.8s ease-out;
      overflow-y: auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .more-proof-content {
      text-align: center;
      width: 100%;
      max-width: 1200px;
      max-height: 90vh;
      padding: 40px;
      background: var(--dark-light);
      border: 2px solid #4c9aff;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(76, 154, 255, 0.3);
      position: relative;
      overflow-y: auto;
      margin: auto;
    }

    .more-proof-title {
      color: #4c9aff;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 40px;
      text-shadow: 0 0 20px rgba(76, 154, 255, 0.5);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin: 30px 0;
    }

    .proof-card {
      background: rgba(26, 26, 26, 0.8);
      border: 1px solid #4c9aff;
      border-radius: 15px;
      padding: 25px;
      transition: all 0.3s ease;
    }

    .proof-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(76, 154, 255, 0.2);
    }

    .proof-icon {
      font-size: 48px;
      color: #4c9aff;
      margin-bottom: 15px;
    }

    .proof-card h4 {
      color: #4c9aff;
      font-size: 20px;
      margin-bottom: 15px;
    }

    .proof-card p {
      color: #cccccc;
      font-size: 14px;
      line-height: 1.6;
    }

    .comparison-section {
      background: rgba(26, 26, 26, 0.8);
      border: 1px solid #ffa502;
      border-radius: 15px;
      padding: 30px;
      margin: 30px 0;
      text-align: left;
    }

    .comparison-title {
      color: #ffa502;
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;
      text-align: center;
    }

    .comparison-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 16px;
    }

    .comparison-item.negative {
      color: #ff4757;
    }

    .comparison-item.positive {
      color: #4c9aff;
    }

    .more-proof-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .more-proof-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: #888;
      font-size: 24px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .more-proof-close:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }


