 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     cursor: none;
     /* Hide default cursor */
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     background: #000000;
     min-height: 100vh;
     overflow-x: hidden;
     -webkit-overflow-scrolling: touch;
     padding-top: 0;
     /* Remove top padding */
 }

 /* ========== FUTURISTIC CUSTOM CURSOR ========== */
 .custom-cursor {
     position: fixed;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 99999;
     mix-blend-mode: screen;
 }

 /* Main cursor - geometric diamond shape */
 .cursor-main {
     width: 24px;
     height: 24px;
     position: absolute;
     transform: translate(-50%, -50%) rotate(45deg);
     transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .cursor-diamond {
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #dc143c 100%);
     box-shadow:
         0 0 20px rgba(255, 107, 53, 0.6),
         0 0 40px rgba(255, 69, 0, 0.4),
         inset 0 0 10px rgba(255, 255, 255, 0.3);
     animation: cursorBreathing 3s ease-in-out infinite;
     border-radius: 2px;
 }

 @keyframes cursorBreathing {

     0%,
     100% {
         box-shadow:
             0 0 20px rgba(255, 107, 53, 0.6),
             0 0 40px rgba(255, 69, 0, 0.4),
             inset 0 0 10px rgba(255, 255, 255, 0.3);
     }

     50% {
         box-shadow:
             0 0 30px rgba(255, 107, 53, 0.8),
             0 0 60px rgba(255, 69, 0, 0.6),
             inset 0 0 15px rgba(255, 255, 255, 0.5);
     }
 }

 /* Trailing follower cursor */
 .cursor-follower {
     width: 40px;
     height: 40px;
     position: absolute;
     transform: translate(-50%, -50%) rotate(45deg);
     border: 2px solid rgba(255, 107, 53, 0.3);
     border-radius: 3px;
     transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
     background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
 }

 /* Orbiting particles */
 .cursor-orbit {
     position: absolute;
     width: 6px;
     height: 6px;
     background: #ff6b35;
     border-radius: 50%;
     box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
     animation: orbit 2s linear infinite;
     opacity: 0.8;
 }

 .cursor-orbit:nth-child(2) {
     animation-delay: -0.5s;
 }

 .cursor-orbit:nth-child(3) {
     animation-delay: -1s;
 }

 .cursor-orbit:nth-child(4) {
     animation-delay: -1.5s;
 }

 @keyframes orbit {
     0% {
         transform: translate(-50%, -50%) rotate(0deg) translateX(30px) rotate(0deg);
     }

     100% {
         transform: translate(-50%, -50%) rotate(360deg) translateX(30px) rotate(-360deg);
     }
 }

 /* Hover state - expand and glow */
 .cursor-hover .cursor-main {
     width: 32px;
     height: 32px;
 }

 .cursor-hover .cursor-diamond {
     background: linear-gradient(135deg, #ff8c42 0%, #ff4500 50%, #ff1744 100%);
     box-shadow:
         0 0 30px rgba(255, 140, 66, 0.8),
         0 0 60px rgba(255, 69, 0, 0.6),
         inset 0 0 20px rgba(255, 255, 255, 0.5);
 }

 .cursor-hover .cursor-follower {
     width: 60px;
     height: 60px;
     border-color: rgba(255, 140, 66, 0.5);
     background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
 }

 /* Click state - pulse ripple */
 .cursor-clicking .cursor-main {
     width: 20px;
     height: 20px;
 }

 .cursor-clicking .cursor-follower {
     width: 50px;
     height: 50px;
 }

 /* Click ripple effect */
 .cursor-ripple {
     position: fixed;
     width: 20px;
     height: 20px;
     border: 2px solid rgba(255, 107, 53, 0.8);
     border-radius: 50%;
     pointer-events: none;
     z-index: 99998;
     animation: rippleEffect 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 @keyframes rippleEffect {
     0% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 1;
     }

     100% {
         transform: translate(-50%, -50%) scale(3);
         opacity: 0;
     }
 }

 /* Text/Link hover - color shift to deeper red */
 .cursor-text .cursor-diamond {
     background: linear-gradient(135deg, #ff3c00 0%, #e91e63 50%, #c62828 100%);
     box-shadow:
         0 0 30px rgba(255, 60, 0, 0.8),
         0 0 60px rgba(233, 30, 99, 0.6),
         inset 0 0 20px rgba(255, 255, 255, 0.5);
 }

 .cursor-text .cursor-follower {
     border-color: rgba(255, 60, 0, 0.5);
     background: radial-gradient(circle, rgba(255, 60, 0, 0.15) 0%, transparent 70%);
 }

 /* Mobile - hide custom cursor */
 @media (max-width: 768px),
 (hover: none) {
     .custom-cursor {
         display: none !important;
     }

     * {
         cursor: auto !important;
     }
 }



 /* Light Mode Styles */

 /* Prevent horizontal scroll on mobile */
 html,
 body {
     max-width: 100%;
     overflow-x: hidden;
 }

 /* ========== GLASS MORPHISM NAVBAR ========== */
 .glass-navbar {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 1200px;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     padding: 15px 30px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
     animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
     opacity: 0;
     animation-fill-mode: forwards;
     font-family: "Poppins", sans-serif;
     font-weight: 500;
     font-style: normal;
 }

 @keyframes navSlideDown {
     0% {
         opacity: 0;
         transform: translateX(-50%) translateY(-30px) scale(0.95);
         filter: blur(10px);
     }

     100% {
         opacity: 1;
         transform: translateX(-50%) translateY(0) scale(1);
         filter: blur(0);
     }
 }

 .navbar-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
 }

 .navbar-right {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .navbar-logo {
     display: flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     color: white;
     font-size: 1.5rem;
     font-weight: 700;
     transition: all 0.3s ease;
     opacity: 0;
     animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-20px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .navbar-logo:hover {
     transform: scale(1.05);
 }

 .logo-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     animation: logoRotate 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
 }

 @keyframes logoRotate {
     0% {
         transform: scale(0) rotate(-180deg);
         opacity: 0;
     }

     60% {
         transform: scale(1.1) rotate(10deg);
     }

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

 .logo-icon img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .navbar-menu {
     display: flex;
     list-style: none;
     gap: 10px;
     margin: 0;
     padding: 0;
 }

 .navbar-menu li {
     margin: 0;
     opacity: 0;
     animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
 }

 /* Staggered animation for menu items */
 .navbar-menu li:nth-child(1) {
     animation-delay: 0.3s;
 }

 .navbar-menu li:nth-child(2) {
     animation-delay: 0.4s;
 }

 .navbar-menu li:nth-child(3) {
     animation-delay: 0.5s;
 }

 .navbar-menu li:nth-child(4) {
     animation-delay: 0.6s;
 }

 .navbar-menu li:nth-child(5) {
     animation-delay: 0.7s;
 }

 .navbar-menu li:nth-child(6) {
     animation-delay: 0.8s;
 }

 /* For CTA container */

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .navbar-menu a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 12px;
     font-weight: 500;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     display: block;
     position: relative;
 }

 .navbar-menu a:hover {
     color: white;
     background: rgba(139, 92, 246, 0.2);
     transform: translateY(-2px);
 }

 .navbar-menu a.active {
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
     color: white;
     box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
 }

 .navbar-cta {
     display: flex;
     gap: 10px;
     opacity: 0;
     animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
 }

 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.8);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .nav-btn {
     padding: 10px 24px;
     border-radius: 12px;
     font-weight: 600;
     font-size: 0.95rem;
     text-decoration: none;
     transition: all 0.3s ease;
     border: none;
 }

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

 .nav-btn-outline:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
 }

 .nav-btn-primary {
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     color: white;
     box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
 }

 .nav-btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
 }

 /* Mobile Menu Toggle */
 .navbar-toggle {
     display: none;
     background: rgba(139, 92, 246, 0.2);
     border: 1px solid rgba(139, 92, 246, 0.4);
     border-radius: 12px;
     padding: 10px 14px;
     color: white;
     font-size: 1.4rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
 }

 .navbar-toggle:hover {
     background: rgba(139, 92, 246, 0.3);
     transform: scale(1.05);
     box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
 }

 .navbar-toggle:active {
     transform: scale(0.95);
 }

 /* Mobile Responsive */
 @media (max-width: 968px) {
     body {
         padding-top: 0;
     }

     .glass-navbar {
         top: 10px;
         width: 95%;
         padding: 12px 20px;
         border-radius: 18px;
     }

     .navbar-right {
         gap: 10px;
     }

     .navbar-toggle {
         display: flex;
         align-items: center;
         justify-content: center;
         opacity: 0;
         animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
     }

     @keyframes fadeInRight {
         from {
             opacity: 0;
             transform: translateX(20px) scale(0.8);
         }

         to {
             opacity: 1;
             transform: translateX(0) scale(1);
         }
     }

     .navbar-menu {
         position: absolute;
         top: calc(100% + 15px);
         left: 0;
         right: 0;
         flex-direction: column;
         background: rgba(26, 21, 53, 0.95);
         backdrop-filter: blur(30px);
         -webkit-backdrop-filter: blur(30px);
         border: 1px solid rgba(139, 92, 246, 0.3);
         border-radius: 18px;
         padding: 20px;
         gap: 8px;
         max-height: 0;
         overflow: hidden;
         opacity: 0;
         transform: translateY(-20px);
         transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
             opacity 0.4s ease,
             transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
         box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
     }

     .navbar-menu.active {
         max-height: 600px;
         opacity: 1;
         transform: translateY(0);
     }

     .navbar-menu li {
         opacity: 0;
         transform: translateX(-20px);
         animation: none;
     }

     .navbar-menu.active li {
         animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
     }

     /* Staggered mobile menu items */
     .navbar-menu.active li:nth-child(1) {
         animation-delay: 0.05s;
     }

     .navbar-menu.active li:nth-child(2) {
         animation-delay: 0.1s;
     }

     .navbar-menu.active li:nth-child(3) {
         animation-delay: 0.15s;
     }

     .navbar-menu.active li:nth-child(4) {
         animation-delay: 0.2s;
     }

     .navbar-menu.active li:nth-child(5) {
         animation-delay: 0.25s;
     }

     .navbar-menu.active li:nth-child(6) {
         animation-delay: 0.3s;
     }

     @keyframes slideInLeft {
         from {
             opacity: 0;
             transform: translateX(-20px);
         }

         to {
             opacity: 1;
             transform: translateX(0);
         }
     }

     .navbar-menu a {
         padding: 14px 18px;
         text-align: left;
         font-size: 1rem;
         border-radius: 12px;
         background: rgba(139, 92, 246, 0.05);
         border: 1px solid rgba(139, 92, 246, 0.1);
     }

     .navbar-menu a:hover {
         background: rgba(139, 92, 246, 0.2);
         border-color: rgba(139, 92, 246, 0.3);
         transform: translateX(5px);
     }

     .navbar-menu a.active {
         background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
         border-color: rgba(139, 92, 246, 0.5);
     }

     .navbar-cta {
         flex-direction: column;
         margin-top: 10px;
         padding-top: 15px;
         border-top: 1px solid rgba(139, 92, 246, 0.2);
         gap: 10px;
         opacity: 1;
         animation: none;
     }

     .nav-btn {
         text-align: center;
         width: 100%;
         padding: 14px 24px;
         font-size: 1rem;
         border-radius: 12px;
     }

     .nav-btn-primary {
         background: linear-gradient(135deg, #8B5CF6, #3B82F6);
         box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
     }

     .nav-btn-outline {
         background: rgba(139, 92, 246, 0.15);
         border: 1.5px solid rgba(139, 92, 246, 0.4);
     }

     .logo-icon {
         width: 35px;
         height: 35px;
     }

     .navbar-logo {
         font-size: 1.3rem;
     }

     .navbar-logo span {
         background: linear-gradient(135deg, #8B5CF6, #3B82F6);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
         font-weight: 800;
     }
 }

 @media (max-width: 480px) {
     .glass-navbar {
         padding: 10px 15px;
         width: 96%;
         border-radius: 16px;
     }

     .navbar-logo {
         font-size: 1.15rem;
         gap: 8px;
     }

     .logo-icon {
         width: 32px;
         height: 32px;
         border-radius: 8px;
     }

     .navbar-toggle {
         padding: 8px 12px;
         font-size: 1.3rem;
     }

     .navbar-menu {
         padding: 16px;
         border-radius: 16px;
         top: calc(100% + 12px);
     }

     .navbar-menu a {
         padding: 12px 16px;
         font-size: 0.95rem;
     }

     .nav-btn {
         padding: 12px 20px;
         font-size: 0.95rem;
     }
 }

 .animated-bg-section {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Full background image covering entire section */
 .animated-bg-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('../images/DARK BG.svg');
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     animation: bgMajesticReveal 1.5s ease-out forwards;
     z-index: 1;
     opacity: 1;
     transition: background-image 0.5s ease;
     will-change: transform, opacity;
 }

 /* Animated gradient overlay - simplified */
 .animated-bg-section::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(ellipse at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
     z-index: 2;
     opacity: 0.5;
     pointer-events: none;
     animation: none;
 }

 /* Light mode hero background */

 /* Optimized background reveal animation */
 @keyframes bgMajesticReveal {
     0% {
         opacity: 0;
         filter: blur(20px);
         transform: scale(1.2);
     }

     100% {
         opacity: 1;
         filter: blur(0);
         transform: scale(1.1);
     }
 }

 /* Simplified parallax movement - less intensive */
 @keyframes epicBackgroundMove {

     0%,
     100% {
         transform: scale(1.1) translate(0, 0);
     }

     50% {
         transform: scale(1.12) translate(2%, 2%);
     }
 }

 /* Floating orbs - optimized for performance */
 .floating-orb {
     position: absolute;
     border-radius: 50%;
     background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.25), rgba(59, 130, 246, 0.1));
     filter: blur(60px);
     opacity: 0;
     animation: orbFloat 25s ease-in-out infinite;
     pointer-events: none;
     z-index: 0;
     will-change: transform, opacity;
 }

 .floating-orb:nth-child(2) {
     width: 350px;
     height: 350px;
     top: -10%;
     left: -10%;
     animation-delay: 0s;
 }

 .floating-orb:nth-child(3) {
     width: 300px;
     height: 300px;
     bottom: -5%;
     right: -5%;
     animation-delay: 8s;
     background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.1));
 }

 @keyframes orbFloat {

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

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

 /* Hide third orb for performance */
 .floating-orb:nth-child(4) {
     display: none;
 }

 /* Subtle scanline overlay - disabled for performance */
 .animated-bg-section .scanlines {
     display: none;
 }

 .animated-bg-section .content {
     position: relative;
     z-index: 10;
     text-align: center;
     color: white;
     padding: 60px 40px;
     background: transparent;
     border-radius: 0;
     opacity: 0;
     animation: contentReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
     max-width: 1100px;
     transition: color 0.5s ease;
     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
 }

 /* Dark overlay behind content for better visibility */
 .animated-bg-section .content::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 110%;
     height: 110%;
     background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 80%);
     z-index: -1;
     opacity: 1;
     filter: blur(30px);
 }

 /* Light mode content styling */

 /* Elegant content reveal animation */
 @keyframes contentReveal {
     0% {
         opacity: 0;
         transform: translateY(40px) scale(0.98);
         filter: blur(8px);
     }

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

 /* Subtitle styling with elegant reveal */
 .content .subtitle {
     font-size: 1.3rem;
     font-weight: 600;
     letter-spacing: 6px;
     text-transform: uppercase;
     background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #c4b5fd 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     background-size: 200% 200%;
     margin-bottom: 30px;
     opacity: 0;
     position: relative;
     animation: subtitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards,
         subtitleGlow 3s ease-in-out infinite;
     filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
 }

 /* Elegant line decoration for subtitle with animated glow */
 .content .subtitle::before,
 .content .subtitle::after {
     content: '';
     position: absolute;
     top: 50%;
     width: 80px;
     height: 3px;
     background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 1), rgba(167, 139, 250, 1));
     box-shadow: 0 0 15px rgba(139, 92, 246, 0.8),
         0 0 30px rgba(139, 92, 246, 0.4);
     animation: linePulse 2s ease-in-out infinite;
 }

 .content .subtitle::before {
     right: calc(100% + 20px);
     background: linear-gradient(90deg, rgba(167, 139, 250, 1), rgba(139, 92, 246, 1), transparent);
     animation-delay: 0.5s;
 }

 .content .subtitle::after {
     left: calc(100% + 20px);
 }

 @keyframes linePulse {

     0%,
     100% {
         opacity: 1;
         box-shadow: 0 0 15px rgba(139, 92, 246, 0.8),
             0 0 30px rgba(139, 92, 246, 0.4);
     }

     50% {
         opacity: 0.6;
         box-shadow: 0 0 25px rgba(139, 92, 246, 1),
             0 0 50px rgba(139, 92, 246, 0.6);
     }
 }

 @keyframes subtitleReveal {
     0% {
         opacity: 0;
         transform: translateY(20px) scale(0.95);
         letter-spacing: 10px;
         filter: blur(5px);
     }

     100% {
         opacity: 1;
         transform: translateY(0) scale(1);
         letter-spacing: 6px;
         filter: blur(0);
     }
 }

 @keyframes subtitleGlow {

     0%,
     100% {
         background-position: 0% 50%;
         filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
     }

     50% {
         background-position: 100% 50%;
         filter: drop-shadow(0 0 35px rgba(139, 92, 246, 0.8)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
     }
 }

 .content h1 {
     font-size: 7rem;
     margin-bottom: 40px;
     font-weight: 900;
     letter-spacing: -2px;
     line-height: 1;
     font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
     position: relative;
     filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.8));
 }

 /* Letter by letter animation for h1 */
 .content h1 .letter {
     display: inline-block;
     opacity: 0;
     animation: letterMajesticReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
 }

 @keyframes letterMajesticReveal {
     0% {
         opacity: 0;
         transform: translateY(50px) scale(0.8);
         filter: blur(15px);
     }

     60% {
         opacity: 1;
         transform: translateY(-8px) scale(1.05);
         filter: blur(0);
     }

     80% {
         transform: translateY(3px) scale(0.98);
     }

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

 /* Special styling for DOT ERA - highly visible */
 .content h1 .dot-era {
     font-size: 1em;
     font-weight: 900;
     background: linear-gradient(135deg, #E0B3FF 0%, #8B5CF6 25%, #6366F1 50%, #3B82F6 75%, #60A5FA 100%);
     background-size: 200% 200%;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: letterMajesticReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
         grandGradientShift 8s ease infinite;
     filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.9));
     position: relative;
 }

 /* Add bright glow behind DOT ERA */
 .content h1 .dot-era::before {
     content: attr(data-text);
     position: absolute;
     left: 0;
     top: 0;
     z-index: -1;
     background: linear-gradient(135deg, #8B5CF6, #6366F1, #3B82F6);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     filter: blur(25px);
     opacity: 0.6;
 }

 /* Grand gradient shift animation for DOT ERA */
 @keyframes grandGradientShift {

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

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

 /* Shimmer effect overlay */
 @keyframes shimmer {
     0% {
         transform: translateX(-100%);
     }

     100% {
         transform: translateX(100%);
     }
 }

 /* Light mode text styles */

 .content .description {
     font-size: 1.25rem;
     line-height: 1.85;
     margin: 0 auto 40px;
     max-width: 720px;
     font-weight: 400;
     color: rgba(255, 255, 255, 0.95);
     opacity: 0;
     animation: descriptionReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
     position: relative;
     text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8),
         0 1px 3px rgba(0, 0, 0, 0.9);
 }

 @keyframes descriptionReveal {
     0% {
         opacity: 0;
         transform: translateY(30px) scale(0.95);
         filter: blur(8px);
     }

     70% {
         transform: translateY(-3px) scale(1.01);
     }

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

 .content .tagline {
     font-size: 1.5rem;
     font-style: italic;
     font-weight: 400;
     margin: 40px auto 50px;
     padding: 0;
     max-width: 650px;
     color: rgba(255, 255, 255, 1);
     border: none;
     background: transparent;
     opacity: 0;
     animation: taglineReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
     letter-spacing: 0.8px;
     position: relative;
     text-shadow: 0 3px 25px rgba(0, 0, 0, 0.9),
         0 0 40px rgba(139, 92, 246, 0.5),
         0 2px 5px rgba(0, 0, 0, 1);
 }

 /* Elegant quote marks with glow */
 .content .tagline::before,
 .content .tagline::after {
     content: '"';
     font-size: 2.5rem;
     font-style: normal;
     color: rgba(139, 92, 246, 0.9);
     position: absolute;
     font-family: Georgia, serif;
     text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
         0 2px 10px rgba(0, 0, 0, 0.8);
 }

 .content .tagline::before {
     left: -30px;
     top: -8px;
 }

 .content .tagline::after {
     right: -30px;
     bottom: -18px;
 }

 @keyframes taglineReveal {
     0% {
         opacity: 0;
         transform: translateY(30px) scale(0.9);
         filter: blur(8px);
     }

     60% {
         opacity: 1;
         transform: translateY(-5px) scale(1.03);
         filter: blur(0);
     }

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

 .content .buttons {
     display: flex;
     gap: 24px;
     justify-content: center;
     margin-top: 50px;
     flex-wrap: wrap;
 }

 .content .btn {
     padding: 20px 50px;
     font-size: 1.1rem;
     font-weight: 600;
     border: none;
     border-radius: 12px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
     display: inline-block;
     opacity: 0;
     letter-spacing: 0.8px;
     position: relative;
     overflow: hidden;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
 }

 /* Shine effect on buttons */
 .content .btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.6s ease;
 }

 .content .btn:hover::before {
     left: 100%;
 }

 .content .btn:nth-child(1) {
     background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #3B82F6 100%);
     background-size: 200% 200%;
     color: white;
     animation: buttonMajesticReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards;
     box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5),
         0 5px 15px rgba(0, 0, 0, 0.6);
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
 }

 .content .btn:nth-child(2) {
     background: rgba(139, 92, 246, 0.15);
     color: rgba(255, 255, 255, 1);
     border: 2px solid rgba(139, 92, 246, 0.8);
     animation: buttonMajesticReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3),
         0 5px 15px rgba(0, 0, 0, 0.6),
         inset 0 0 20px rgba(139, 92, 246, 0.2);
     text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
 }

 @keyframes buttonMajesticReveal {
     0% {
         opacity: 0;
         transform: translateY(40px) scale(0.9);
         filter: blur(10px);
     }

     60% {
         opacity: 1;
         transform: translateY(-8px) scale(1.05);
         filter: blur(0);
     }

     80% {
         transform: translateY(2px) scale(0.98);
     }

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

 .content .btn:hover {
     transform: translateY(-8px) scale(1.05);
 }

 .content .btn:nth-child(1):hover {
     box-shadow: 0 15px 50px rgba(139, 92, 246, 0.7),
         0 8px 20px rgba(0, 0, 0, 0.7);
     background-position: 100% 0;
 }

 .content .btn:nth-child(2):hover {
     background: rgba(139, 92, 246, 0.25);
     border-color: rgba(139, 92, 246, 1);
     box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5),
         0 8px 20px rgba(0, 0, 0, 0.7),
         inset 0 0 30px rgba(139, 92, 246, 0.3);
 }

 .content .btn:active {
     transform: translateY(-3px) scale(1.02);
 }

 /* Light particles for blast effect */
 .light-particle {
     position: absolute;
     width: 4px;
     height: 4px;
     background: white;
     border-radius: 50%;
     pointer-events: none;
     z-index: 2;
     box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
     display: none;
     /* Disabled blast effect */
 }

 /* Canvas for particles - diagonal left side with clipping */
 #particles-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
     z-index: 3;
     pointer-events: none;
     opacity: 0;
     animation: canvasElegantReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
 }

 /* Elegant canvas reveal animation */
 @keyframes canvasElegantReveal {
     0% {
         opacity: 0;
         transform: scale(1.1);
         filter: blur(20px);
     }

     100% {
         opacity: 1;
         transform: scale(1);
         filter: blur(0);
     }
 }

 /* Canvas for geometric animation - diagonal right side */
 #geometric-canvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
     z-index: 3;
     pointer-events: none;
     opacity: 0;
     animation: canvasElegantReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
 }

 /* Scroll indicator */
 .scroll-indicator {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 100;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
     opacity: 0;
     animation: scrollIndicatorReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 2.8s forwards;
 }

 @keyframes scrollIndicatorReveal {
     0% {
         opacity: 0;
         transform: translateX(-50%) translateY(-30px);
         filter: blur(5px);
     }

     100% {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
         filter: blur(0);
     }
 }

 .scroll-indicator .mouse {
     width: 30px;
     height: 50px;
     border: 3px solid rgba(139, 92, 246, 0.8);
     border-radius: 20px;
     position: relative;
     box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
 }

 .scroll-indicator .mouse::before {
     content: '';
     position: absolute;
     top: 8px;
     left: 50%;
     transform: translateX(-50%);
     width: 4px;
     height: 8px;
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     border-radius: 2px;
     animation: scrollWheel 2s ease-in-out infinite;
     box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
 }

 @keyframes scrollWheel {

     0%,
     100% {
         opacity: 1;
         transform: translateX(-50%) translateY(0);
     }

     50% {
         opacity: 0.5;
         transform: translateX(-50%) translateY(15px);
     }
 }

 .scroll-indicator .arrows {
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .scroll-indicator .arrow {
     width: 0;
     height: 0;
     border-left: 8px solid transparent;
     border-right: 8px solid transparent;
     border-top: 8px solid rgba(139, 92, 246, 0.8);
     animation: arrowBounce 2s ease-in-out infinite;
 }

 .scroll-indicator .arrow:nth-child(1) {
     animation-delay: 0s;
 }

 .scroll-indicator .arrow:nth-child(2) {
     animation-delay: 0.15s;
 }

 .scroll-indicator .arrow:nth-child(3) {
     animation-delay: 0.3s;
 }

 @keyframes arrowBounce {

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

     50% {
         opacity: 1;
         transform: translateY(8px);
     }
 }

 .scroll-indicator .text {
     color: rgba(139, 92, 246, 0.9);
     font-size: 0.9rem;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-top: 5px;
     text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
     animation: textPulse 2s ease-in-out infinite;
 }

 /* Light mode scroll indicator */

 @keyframes textPulse {

     0%,
     100% {
         opacity: 0.7;
     }

     50% {
         opacity: 1;
     }
 }

 /* ========== SCROLL ARRIVAL ANIMATIONS ========== */

 /* Base state for all animated sections */
 .scroll-animate {
     opacity: 0;
     transform: translateY(80px);
     transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .scroll-animate.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Fade & Appear Animation */
 .fade-in {
     opacity: 0;
     transform: translateY(60px);
     transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
         transform 1s cubic-bezier(0.4, 0, 0.2, 1);
 }

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

 /* Parallax Effect - Elements move at different speeds */
 .parallax-layer-1 {
     opacity: 0;
     transform: translateY(100px);
     transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
         transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .parallax-layer-1.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .parallax-layer-2 {
     opacity: 0;
     transform: translateY(140px);
     transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
         transform 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
 }

 .parallax-layer-2.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .parallax-layer-3 {
     opacity: 0;
     transform: translateY(180px);
     transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
         transform 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
 }

 .parallax-layer-3.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Staggered Children Animation */
 .stagger-children>* {
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .stagger-children.visible>*:nth-child(1) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.1s;
 }

 .stagger-children.visible>*:nth-child(2) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.2s;
 }

 .stagger-children.visible>*:nth-child(3) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.3s;
 }

 .stagger-children.visible>*:nth-child(4) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.4s;
 }

 .stagger-children.visible>*:nth-child(5) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.5s;
 }

 .stagger-children.visible>*:nth-child(6) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.6s;
 }

 .stagger-children.visible>*:nth-child(7) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.7s;
 }

 .stagger-children.visible>*:nth-child(8) {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.8s;
 }

 /* Slide from sides */
 .slide-from-left {
     opacity: 0;
     transform: translateX(-100px);
     transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .slide-from-left.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .slide-from-right {
     opacity: 0;
     transform: translateX(100px);
     transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .slide-from-right.visible {
     opacity: 1;
     transform: translateX(0);
 }

 /* Scale and Fade */
 .scale-fade {
     opacity: 0;
     transform: scale(0.8);
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .scale-fade.visible {
     opacity: 1;
     transform: scale(1);
 }

 /* Combined Parallax + Fade for cards */
 .card-reveal {
     opacity: 0;
     transform: translateY(60px) scale(0.95);
     transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .card-reveal.visible {
     opacity: 1;
     transform: translateY(0) scale(1);
 }

 /* ========== ULTRA-SMOOTH SEAMLESS TRANSITION ========== */

 .animated-bg-section {
     position: relative;
     transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
     background: #000000;
 }

 .animated-bg-section.scrolled-down {
     opacity: 0;
     transform: translateY(-50px) scale(0.97);
     pointer-events: none;
 }

 .vision-section {
     position: relative;
     width: 100%;
     min-height: 100vh;
     padding: 120px 60px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
     background: #000000;
     background-attachment: fixed;
     overflow-x: hidden;
     gap: 0;
     opacity: 1;
     /* Always visible - let children handle animations */
     transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* Energy Particle */
 .energy-particle {
     position: fixed;
     width: 4px;
     height: 4px;
     border-radius: 50%;
     pointer-events: none;
     z-index: 9999;
     background: radial-gradient(circle, rgba(139, 92, 246, 1), transparent);
     box-shadow: 0 0 12px rgba(139, 92, 246, 1), 0 0 24px rgba(139, 92, 246, 0.5);
 }

 /* Energy Wave */
 .energy-wave {
     position: fixed;
     width: 100%;
     height: 2px;
     pointer-events: none;
     z-index: 9999;
     background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6) 30%, rgba(59, 130, 246, 0.8) 50%, rgba(139, 92, 246, 0.6) 70%, transparent);
     box-shadow: 0 0 12px rgba(139, 92, 246, 0.7);
 }

 /* Glow Trail */
 .glow-trail {
     position: fixed;
     width: 3px;
     height: 3px;
     border-radius: 50%;
     pointer-events: none;
     z-index: 9999;
     background: rgba(139, 92, 246, 1);
     box-shadow: 0 0 10px rgba(139, 92, 246, 1), 0 0 20px rgba(139, 92, 246, 0.6);
 }

 /* Light Streak */
 .light-streak {
     position: fixed;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), rgba(59, 130, 246, 0.9), transparent);
     pointer-events: none;
     z-index: 9999;
     box-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
     filter: blur(0.5px);
 }

 /* Ambient Glow Overlay */
 .transition-glow {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 9998;
     background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 60%);
     opacity: 0;
 }

 .vision-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
     z-index: 0;
 }

 /* Light mode vision section */

 /* Light mode text and card styles */

 /* Light mode feature cards */

 /* Light mode benefit cards */

 /* Background Animation Elements for Vision Section */
 .vision-section .bg-orb {
     position: fixed;
     border-radius: 50%;
     filter: blur(80px);
     opacity: 0.3;
     pointer-events: none;
     z-index: 0;
     will-change: transform;
 }

 .vision-section .bg-orb-1 {
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
     top: -250px;
     left: -250px;
     animation: floatOrb1 20s ease-in-out infinite;
 }

 .vision-section .bg-orb-2 {
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
     top: 50%;
     right: -200px;
     animation: floatOrb2 25s ease-in-out infinite;
 }

 .vision-section .bg-orb-3 {
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
     bottom: -300px;
     left: 30%;
     animation: floatOrb3 30s ease-in-out infinite;
 }

 .vision-section .bg-orb-4 {
     width: 350px;
     height: 350px;
     background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent);
     top: 20%;
     right: 20%;
     animation: floatOrb4 22s ease-in-out infinite;
 }

 @keyframes floatOrb1 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(100px, 150px) scale(1.2);
     }

     66% {
         transform: translate(-80px, 100px) scale(0.9);
     }
 }

 @keyframes floatOrb2 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(-120px, -100px) scale(1.1);
     }

     66% {
         transform: translate(80px, 120px) scale(0.95);
     }
 }

 @keyframes floatOrb3 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(-150px, -80px) scale(1.15);
     }

     66% {
         transform: translate(100px, -120px) scale(0.9);
     }
 }

 @keyframes floatOrb4 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(90px, 110px) scale(1.25);
     }

     66% {
         transform: translate(-100px, -90px) scale(0.85);
     }
 }

 /* Animated Grid Lines */
 .vision-section .grid-lines {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
     background-size: 50px 50px;
     pointer-events: none;
     z-index: 0;
     animation: gridMove 20s linear infinite;
 }

 @keyframes gridMove {
     0% {
         background-position: 0 0;
     }

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

 /* Floating Dots */
 .vision-section .floating-dots {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 0;
     overflow: hidden;
 }

 .vision-section .dot {
     position: absolute;
     width: 6px;
     height: 6px;
     background: rgba(139, 92, 246, 0.9);
     border-radius: 50%;
     box-shadow: 0 0 15px rgba(139, 92, 246, 1),
         0 0 30px rgba(139, 92, 246, 0.6);
     animation: dotPulse 3s ease-in-out infinite;
 }

 @keyframes dotPulse {

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

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

 /* Ensure content is above background */
 .vision-section {
     position: relative;
     z-index: 1;
 }

/* Optimized animations for mobile */
@media (max-width: 968px) {
    .vision-section .bg-orb {
        opacity: 0.3 !important;
        filter: blur(80px) !important;
        animation-duration: 30s !important;
    }

    .vision-section .bg-orb-1 {
        width: 400px !important;
        height: 400px !important;
    }

    .vision-section .bg-orb-2 {
        width: 350px !important;
        height: 350px !important;
    }

    .vision-section .bg-orb-3 {
        width: 450px !important;
        height: 450px !important;
    }

    .vision-section .bg-orb-4 {
        width: 300px !important;
        height: 300px !important;
        opacity: 0.25 !important;
    }

    .vision-section .grid-lines {
        opacity: 0.8 !important;
        background-size: 40px 40px !important;
        animation-duration: 30s !important;
        background-image:
            linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px) !important;
    }

    .vision-section .floating-dots {
        opacity: 0.6 !important;
    }

    .vision-section .dot {
        width: 4px !important;
        height: 4px !important;
    }
    
    .vision-section::before {
        opacity: 1 !important;
    }
} .vision-container {
     position: relative;
     z-index: 10;
     max-width: 1300px;
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     padding: 0 40px;
     margin-bottom: 0;
     opacity: 0;
     transform: translateY(40px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .vision-container.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .vision-content {
     padding: 30px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     min-height: 500px;
 }

 .vision-content .section-label {
     font-size: 0.9rem;
     color: #8B5CF6;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     margin-bottom: 20px;
     display: inline-block;
     padding: 10px 24px;
     background: rgba(139, 92, 246, 0.1);
     border-radius: 30px;
     border: 1px solid rgba(139, 92, 246, 0.3);
     box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
     transition: all 0.3s ease;
 }

 .vision-content .section-label:hover {
     background: rgba(139, 92, 246, 0.15);
     border-color: rgba(139, 92, 246, 0.5);
     transform: translateY(-2px);
 }

 .vision-content h2 {
     font-size: 3.8rem;
     color: white;
     font-weight: 900;
     margin-bottom: 30px;
     line-height: 1.2;
     background: linear-gradient(135deg, #fff 0%, #e0d4ff 50%, #8B5CF6 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     background-size: 200% auto;
     animation: gradientShift 8s ease infinite;
 }

 .vision-content .vision-description {
     font-size: 1.25rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.9;
     margin-bottom: 40px;
     font-weight: 400;
 }

 .vision-content .vision-highlights {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: 40px;
     background: transparent;
 }

 .vision-highlight-item {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     padding: 25px;
     background: transparent;
     backdrop-filter: none;
     border-radius: 20px;
     border-left: 3px solid rgba(139, 92, 246, 0.4);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: none;
     opacity: 0;
     transform: translateX(-30px);
 }

 .vision-highlight-item.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .vision-highlight-item:hover {
     background: transparent;
     transform: translateX(12px) scale(1.01);
     border-left-width: 5px;
     border-left-color: rgba(167, 139, 250, 0.8);
     box-shadow: none;
 }

 .vision-highlight-item .icon {
     font-size: 2rem;
     min-width: 80px;
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: transparent;
     border-radius: 0;
     color: white;
     font-weight: bold;
 }

 .vision-highlight-item .icon img {
     filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.5));
 }

 .vision-highlight-item .content h3 {
     font-size: 1.3rem;
     color: white;
     margin-bottom: 8px;
     font-weight: 700;
 }

 .vision-highlight-item .content p {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.6;
 }

 .vision-visual {
     position: relative;
     min-height: 600px;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px 20px;
 }

 .vision-circle {
     position: absolute;
     border-radius: 50%;
     border: 2px solid rgba(139, 92, 246, 0.3);
 }

 .vision-circle.outer {
     width: 500px;
     height: 500px;
     animation: rotateCircle 20s linear infinite;
 }

 .vision-circle.middle {
     width: 350px;
     height: 350px;
     animation: rotateCircle 15s linear infinite reverse;
 }

 .vision-circle.inner {
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
     animation: rotateCircle 10s linear infinite;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
     color: #8B5CF6;
     box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
 }

 @keyframes rotateCircle {
     0% {
         transform: rotate(0deg);
     }

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

 .vision-dot {
     position: absolute;
     width: 15px;
     height: 15px;
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     border-radius: 50%;
     box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
 }

 .vision-dot:nth-child(1) {
     top: 0;
     left: 50%;
     transform: translateX(-50%);
 }

 .vision-dot:nth-child(2) {
     top: 50%;
     right: 0;
     transform: translateY(-50%);
 }

 .vision-dot:nth-child(3) {
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
 }

 .vision-dot:nth-child(4) {
     top: 50%;
     left: 0;
     transform: translateY(-50%);
 }

 @media (max-width: 968px) {

     /* Visible background animations on mobile */
     .animated-bg-section::before {
         animation: mobileBackgroundPulse 6s ease-in-out infinite !important;
         transform: scale(1.1) !important;
         opacity: 1 !important;
         filter: brightness(1) !important;
     }

     @keyframes mobileBackgroundPulse {

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

         50% {
             transform: scale(1.15);
         }
     }

     .animated-bg-section::after {
         background: radial-gradient(circle at 50% 50%,
                 rgba(139, 92, 246, 0.25) 0%,
                 rgba(59, 130, 246, 0.15) 40%,
                 transparent 70%) !important;
         opacity: 1 !important;
         animation: mobileGradientPulse 8s ease-in-out infinite !important;
         z-index: 2 !important;
     }

     @keyframes mobileGradientPulse {

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

         50% {
             opacity: 0.9;
             transform: scale(1.1);
         }
     }

     /* Simplified hero section for mobile */
     .animated-bg-section {
         min-height: 100vh;
         padding: 80px 20px 40px;
         position: relative;
         overflow: hidden;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .content {
         padding: 30px 20px !important;
         max-width: 100% !important;
         animation: simpleFadeIn 1s ease-out forwards !important;
         z-index: 10 !important;
         position: relative !important;
         text-align: center !important;
     }

     @keyframes simpleFadeIn {
         from {
             opacity: 0;
             transform: translateY(30px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

     .content .subtitle {
         font-size: 0.85rem !important;
         margin-bottom: 20px !important;
         animation: simpleFadeIn 1s ease-out 0.2s forwards !important;
         letter-spacing: 4px !important;
         opacity: 0;
     }

     .content .subtitle::before,
     .content .subtitle::after {
         width: 35px !important;
         height: 2px !important;
     }

     .content h1 {
         font-size: 3rem !important;
         margin-bottom: 25px !important;
         letter-spacing: -1px !important;
         filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 1)) !important;
         line-height: 1.2 !important;
         opacity: 0;
         animation: simpleFadeIn 1s ease-out 0.3s forwards !important;
     }

     .content h1 .letter {
         animation: none !important;
         opacity: 1 !important;
         transform: none !important;
     }

     .content h1 .dot-era {
         animation: simplePulse 3s ease-in-out infinite !important;
         font-size: 1em !important;
         filter: drop-shadow(0 0 30px rgba(139, 92, 246, 1)) drop-shadow(0 4px 15px rgba(0, 0, 0, 1)) !important;
     }

     @keyframes simplePulse {

         0%,
         100% {
             filter: drop-shadow(0 0 30px rgba(139, 92, 246, 1)) drop-shadow(0 4px 15px rgba(0, 0, 0, 1));
         }

         50% {
             filter: drop-shadow(0 0 45px rgba(139, 92, 246, 1)) drop-shadow(0 4px 15px rgba(0, 0, 0, 1));
         }
     }

     .content h1 .dot-era::before {
         display: none !important;
     }

     .content .description {
         font-size: 1rem !important;
         animation: simpleFadeIn 1s ease-out 0.5s forwards !important;
         transform: none !important;
         margin-bottom: 25px !important;
         line-height: 1.7 !important;
         text-shadow: 0 2px 20px rgba(0, 0, 0, 1),
             0 1px 5px rgba(0, 0, 0, 1) !important;
         opacity: 0;
         padding: 0 10px;
     }

     .content .tagline {
         font-size: 1.1rem !important;
         margin: 25px auto 35px !important;
         animation: simpleFadeIn 1s ease-out 0.7s forwards !important;
         transform: none !important;
         text-shadow: 0 3px 25px rgba(0, 0, 0, 1),
             0 0 35px rgba(139, 92, 246, 0.6) !important;
         opacity: 0;
         padding: 0 15px;
     }

     .content .tagline::before {
         left: -15px !important;
         font-size: 1.8rem !important;
         top: -5px !important;
     }

     .content .tagline::after {
         right: -15px !important;
         font-size: 1.8rem !important;
         bottom: -15px !important;
     }

     .content .buttons {
         display: flex !important;
         flex-direction: column !important;
         gap: 15px !important;
         align-items: center !important;
         width: 100% !important;
     }

     .content .btn {
         animation: simpleFadeIn 1s ease-out 0.9s forwards !important;
         transform: none !important;
         padding: 18px 45px !important;
         font-size: 1rem !important;
         box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8) !important;
         opacity: 0;
         width: 90% !important;
         max-width: 300px !important;
     }

     .content .btn::before {
         display: none !important;
     }

     .content .btn:hover {
         transform: none !important;
     }

     .content .btn:nth-child(1) {
         box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5),
             0 4px 12px rgba(0, 0, 0, 0.7) !important;
     }

     .content .btn:nth-child(2) {
         box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4),
             0 4px 12px rgba(0, 0, 0, 0.7) !important;
     }

     /* Visible canvas animations on mobile */
     #particles-canvas,
     #geometric-canvas {
         opacity: 0.5 !important;
         filter: blur(1px) !important;
         animation: mobileCanvasPulse 5s ease-in-out infinite !important;
         z-index: 3 !important;
     }

     @keyframes mobileCanvasPulse {

         0%,
         100% {
             opacity: 0.4;
         }

         50% {
             opacity: 0.6;
         }
     }

    /* Simplified scroll indicator */
    .scroll-indicator {
        display: none !important;
    }     .scroll-indicator .mouse {
         width: 25px !important;
         height: 45px !important;
         border-width: 2px !important;
     }

     .scroll-indicator .text {
         font-size: 0.75rem !important;
     }

     /* Vision section mobile optimizations */
     .vision-section {
         padding: 50px 20px !important;
         gap: 50px !important;
         min-height: auto !important;
         transform: none !important;
         filter: none !important;
         align-items: stretch !important;
     }

     .vision-section.visible {
         transform: none !important;
         filter: none !important;
     }

     .vision-section.scroll-back {
         transform: none !important;
         filter: none !important;
     }

     .vision-container {
         grid-template-columns: 1fr !important;
         gap: 40px !important;
         max-width: 100% !important;
         padding: 0 20px !important;
         align-items: stretch !important;
     }

     .vision-content {
         padding: 30px 20px !important;
         text-align: center !important;
         width: 100% !important;
         min-height: auto !important;
     }

     .vision-content .section-label {
         margin: 0 auto 15px !important;
         display: block !important;
         width: fit-content !important;
     }

     .vision-content h2 {
         font-size: 2rem !important;
         line-height: 1.25 !important;
         margin-bottom: 20px !important;
         text-align: center !important;
     }

     .vision-content .vision-description {
         font-size: 1.05rem !important;
         line-height: 1.7 !important;
         text-align: center !important;
         margin-bottom: 30px !important;
     }

     .vision-content .vision-highlights {
         gap: 15px !important;
     }

    .vision-highlight-item {
        padding: 25px 20px !important;
        flex-direction: row !important;
        text-align: left !important;
        gap: 18px !important;
        background: rgba(139, 92, 246, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(139, 92, 246, 0.2) !important;
        border-left: 4px solid rgba(139, 92, 246, 0.6) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                    0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
        margin-bottom: 20px !important;
    }

    .vision-highlight-item:hover {
        transform: translateY(-2px) !important;
        border-left-width: 4px !important;
        border-left-color: rgba(167, 139, 250, 0.8) !important;
        background: rgba(139, 92, 246, 0.08) !important;
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15), 
                    0 0 0 1px rgba(255, 255, 255, 0.08) inset !important;
    }

    .vision-highlight-item .icon {
        font-size: 1.8rem !important;
        min-width: 70px !important;
        width: 70px !important;
        height: 70px !important;
        flex-shrink: 0 !important;
        background: rgba(139, 92, 246, 0.1) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(139, 92, 246, 0.3) !important;
        padding: 12px !important;
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2) !important;
    }

    .vision-highlight-item .content {
        flex: 1 !important;
    }

    .vision-highlight-item .content h3 {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }

    .vision-highlight-item .content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }     .vision-visual {
         display: none !important;
     }

     /* Hide rotating circles on mobile */
     .vision-circle {
         display: none !important;
     }

     .vision-circle.outer {
         display: none !important;
     }

     .vision-circle.middle {
         display: none !important;
     }

     .vision-circle.inner {
         display: none !important;
     }

     /* Better touch targets */
     .content .btn,
     .cta-btn,
     .social-link,
     .footer-links a {
         min-height: 44px;
         display: inline-flex;
         align-items: center;
         justify-content: center;
     }

     /* Disable smooth scroll on mobile for better performance */
     html {
         scroll-behavior: auto !important;
     }
 }

 /* What Is Dot Ecosystem - 3x3 Grid Styles */
 .ecosystem-grid-new {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     grid-template-rows: repeat(3, 1fr);
     gap: 20px;
     max-width: 560px;
     width: 100%;
     margin: 0 auto;
     padding: 20px;
     place-items: center;
 }

 .ecosystem-card-new {
     background: rgba(15, 15, 30, 0.4);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(139, 92, 246, 0.35);
     border-radius: 24px;
     padding: 0;
     text-align: center;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
         inset 0 1px 0 rgba(255, 255, 255, 0.05);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
     aspect-ratio: 1 / 1;
     min-height: 155px;
     position: relative;
     overflow: hidden;
     opacity: 0;
     transform: scale(0.9);
 }

 .ecosystem-card-new.visible {
     opacity: 1;
     transform: scale(1);
 }

 .ecosystem-card-new::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
     opacity: 0;
     transition: opacity 0.5s ease;
 }

 .ecosystem-card-new:hover::before {
     opacity: 1;
 }

 .ecosystem-card-new:hover {
     background: rgba(15, 15, 30, 0.6);
     border-color: rgba(139, 92, 246, 0.8);
     transform: translateY(-10px) scale(1.06);
     box-shadow: 0 25px 70px rgba(139, 92, 246, 0.5),
         0 0 100px rgba(139, 92, 246, 0.3),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
 }

 .ecosystem-card-new.center-card-new {
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%);
     border: 2px solid rgba(139, 92, 246, 0.8);
     box-shadow: 0 0 70px rgba(139, 92, 246, 0.6),
         0 25px 60px rgba(139, 92, 246, 0.4),
         inset 0 2px 4px rgba(255, 255, 255, 0.1);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 0;
 }

 .ecosystem-card-new.center-card-new:hover {
     transform: translateY(-12px) scale(1.12);
     box-shadow: 0 0 120px rgba(139, 92, 246, 0.8),
         0 30px 80px rgba(139, 92, 246, 0.5),
         inset 0 2px 4px rgba(255, 255, 255, 0.15);
     border-color: rgba(139, 92, 246, 1);
 }

 .card-icon-new {
     width: 60px;
     height: 60px;
     margin: 0 auto 12px auto;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 1;
     transition: transform 0.5s ease;
     flex-shrink: 0;
 }

 .ecosystem-card-new:hover .card-icon-new {
     transform: scale(1.1) translateY(-3px);
 }

 .card-icon-new.large-icon {
     width: 85px;
     height: 85px;
     margin-bottom: 14px;
 }

 .card-icon-new img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     filter: drop-shadow(0 5px 15px rgba(139, 92, 246, 0.7));
     transition: filter 0.5s ease;
     display: block;
 }

 .ecosystem-card-new:hover .card-icon-new img {
     filter: drop-shadow(0 8px 25px rgba(139, 92, 246, 1));
 }

 .ecosystem-card-new h4 {
     color: white;
     font-size: 1rem;
     font-weight: 800;
     margin: 0;
     padding: 0 8px;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
     position: relative;
     z-index: 1;
     transition: all 0.3s ease;
     line-height: 1.3;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .ecosystem-card-new:hover h4 {
     letter-spacing: 3px;
     text-shadow: 0 2px 15px rgba(139, 92, 246, 0.8);
 }

 .ecosystem-card-new.center-card-new h4 {
     font-size: 1.5rem;
     font-weight: 900;
     letter-spacing: 5px;
     background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #c4b5fd 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-shadow: none;
     filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.9));
     padding: 0 12px;
 }

 .ecosystem-card-new.center-card-new:hover h4 {
     letter-spacing: 6px;
     filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 1));
 }

 @media (max-width: 968px) {
     .ecosystem-grid-new {
         max-width: 100%;
         gap: 12px;
         padding: 15px;
         place-items: center;
     }

     .ecosystem-card-new {
         padding: 0;
         min-height: 110px;
         border-radius: 18px;
         width: 100%;
         height: 100%;
         aspect-ratio: 1 / 1;
     }

     .card-icon-new {
         width: 42px;
         height: 42px;
         margin: 0 auto 10px auto;
     }

     .card-icon-new.large-icon {
         width: 60px;
         height: 60px;
         margin-bottom: 10px;
     }

     .ecosystem-card-new h4 {
         font-size: 0.75rem;
         letter-spacing: 1.5px;
         padding: 0 6px;
     }

     .ecosystem-card-new.center-card-new h4 {
         font-size: 1.1rem;
         letter-spacing: 3px;
         padding: 0 8px;
     }

     .ecosystem-card-new:hover {
         transform: translateY(-5px) scale(1.03);
     }

     .ecosystem-card-new.center-card-new:hover {
         transform: translateY(-6px) scale(1.05);
     }
 }

 @media (max-width: 480px) {
     .ecosystem-grid-new {
         gap: 8px;
         padding: 10px;
         place-items: center;
     }

     .ecosystem-card-new {
         padding: 0;
         min-height: 85px;
         border-radius: 16px;
         width: 100%;
         height: 100%;
         aspect-ratio: 1 / 1;
     }

     .card-icon-new {
         width: 32px;
         height: 32px;
         margin: 0 auto 6px auto;
     }

     .card-icon-new.large-icon {
         width: 48px;
         height: 48px;
         margin-bottom: 8px;
     }

     .ecosystem-card-new h4 {
         font-size: 0.65rem;
         letter-spacing: 1px;
         padding: 0 4px;
     }

     .ecosystem-card-new.center-card-new h4 {
         font-size: 0.95rem;
         letter-spacing: 2px;
         padding: 0 6px;
     }
 }

 /* Features of Dot Ecosystem Styles */
 .features-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
     margin-top: 40px;
 }

 .feature-card {
     background: rgba(139, 92, 246, 0.05);
     border: 2px solid rgba(139, 92, 246, 0.2);
     border-radius: 20px;
     padding: 35px;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     text-align: center;
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #8B5CF6, #3B82F6);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .feature-card:hover::before {
     transform: scaleX(1);
 }

 .feature-card:hover {
     background: rgba(139, 92, 246, 0.15);
     border-color: rgba(139, 92, 246, 0.5);
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
 }

 .feature-card .feature-icon {
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     margin: 0 auto 20px;
     transition: transform 0.4s ease;
 }

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

 .feature-card h3 {
     color: white;
     font-size: 1.3rem;
     margin-bottom: 12px;
     font-weight: 700;
 }

 .feature-card p {
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.95rem;
     line-height: 1.6;
 }

 @media (max-width: 1200px) {
     .features-grid {
         grid-template-columns: repeat(3, 1fr) !important;
     }
 }

 @media (max-width: 968px) {
     .features-grid {
         grid-template-columns: repeat(2, 1fr) !important;
         gap: 20px !important;
     }

     .feature-card {
         padding: 25px 20px !important;
     }

     .feature-card .feature-icon {
         width: 60px;
         height: 60px;
         font-size: 2rem;
         margin-bottom: 15px;
     }

     /* Disable complex hover animations on mobile */
     .feature-card:hover .feature-icon {
         transform: none !important;
     }

     .feature-card h3 {
         font-size: 1.1rem !important;
     }

     .feature-card p {
         font-size: 0.9rem !important;
     }
 }

 @media (max-width: 640px) {
     .features-grid {
         grid-template-columns: 1fr !important;
     }
 }

 /* Why Join Us Section */
 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     margin-top: -30px !important;
 }

 .benefit-card {
     background: rgba(10, 10, 20, 0.2);
     border: 1px solid rgba(139, 92, 246, 0.2);
     border-radius: 32px;
     padding: 45px 35px;
     text-align: left;
     transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
     position: relative;
     overflow: hidden;
     backdrop-filter: blur(12px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25),
         inset 0 1px 1px rgba(255, 255, 255, 0.05);
 }

 .benefit-card::before {
     content: '';
     position: absolute;
     top: -100%;
     left: -100%;
     width: 300%;
     height: 300%;
     background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
     transition: all 0.6s ease;
     opacity: 0;
 }

 .benefit-card:hover::before {
     top: -50%;
     left: -50%;
     opacity: 1;
 }

 .benefit-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #8B5CF6, #3B82F6, #8B5CF6);
     background-size: 200% 100%;
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.5s ease;
     border-radius: 0 0 32px 32px;
 }

 .benefit-card:hover::after {
     transform: scaleX(1);
     animation: gradientSlide 2s ease infinite;
 }

 .benefit-card:hover {
     transform: translateY(-12px) scale(1.02);
     background: rgba(10, 10, 20, 0.4);
     border-color: rgba(139, 92, 246, 0.5);
     box-shadow: 0 20px 60px rgba(139, 92, 246, 0.35),
         0 0 80px rgba(139, 92, 246, 0.15),
         inset 0 1px 2px rgba(255, 255, 255, 0.1);
 }

 @keyframes gradientSlide {

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

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

 .benefit-card:hover {
     background: rgba(30, 30, 30, 0.95);
     border-color: rgba(139, 92, 246, 0.8);
     transform: translateY(-20px) scale(1.02);
     box-shadow: 0 30px 60px rgba(139, 92, 246, 0.6);
 }

 .benefit-icon-wrapper {
     display: flex;
     align-items: center;
     gap: 20px;
     margin-bottom: 25px;
 }

 .benefit-card .benefit-icon {
     width: 75px;
     height: 75px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     transition: all 0.4s ease;
 }

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

 .benefit-number {
     font-size: 3.5rem;
     font-weight: 900;
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     line-height: 1;
     opacity: 0.3;
 }

 .benefit-card h3 {
     color: white;
     font-size: 1.7rem;
     margin-bottom: 15px;
     font-weight: 800;
     line-height: 1.3;
 }

 .benefit-card p {
     color: rgba(255, 255, 255, 0.85);
     font-size: 1.05rem;
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .benefit-tag {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(139, 92, 246, 0.2);
     color: #8B5CF6;
     padding: 8px 18px;
     border-radius: 25px;
     font-size: 0.85rem;
     font-weight: 700;
     border: 1px solid rgba(139, 92, 246, 0.4);
     letter-spacing: 1px;
     transition: all 0.3s ease;
 }

 .benefit-card:hover .benefit-tag {
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     color: white;
     border-color: transparent;
     transform: translateX(5px);
 }

 @media (max-width: 968px) {
     .benefits-grid {
         grid-template-columns: 1fr;
         gap: 20px !important;
     }

     .benefit-card {
         padding: 30px 25px !important;
     }

     .benefit-card::before,
     .benefit-card::after {
         display: none !important;
     }

     /* Disable complex hover effects on mobile */
     .benefit-card:hover {
         transform: none !important;
     }

     .benefit-card:hover .benefit-icon {
         transform: none !important;
     }

     .benefit-icon-wrapper {
         gap: 15px !important;
     }

     .benefit-card .benefit-icon {
         width: 60px;
         height: 60px;
         font-size: 2rem;
     }

     .benefit-number {
         font-size: 2.5rem !important;
     }

     .benefit-card h3 {
         font-size: 1.4rem !important;
     }

     .benefit-card p {
         font-size: 1rem !important;
     }
 }

 /* Call-to-Action Section */
 .join-cta-wrapper {
     position: relative;
     width: 100%;
     padding: 0;
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 1s ease, transform 1s ease;
 }

 .join-cta-wrapper.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .join-cta-container {
     position: relative;
     z-index: 1;
     max-width: 1000px;
     margin: 0 auto;
     text-align: center;
     background: rgba(15, 15, 30, 0.3);
     border: 1px solid rgba(139, 92, 246, 0.35);
     border-radius: 48px;
     padding: 80px 60px;
     box-shadow: 0 20px 70px rgba(139, 92, 246, 0.35),
         0 0 100px rgba(139, 92, 246, 0.15),
         inset 0 2px 4px rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(25px);
     -webkit-backdrop-filter: blur(25px);
     animation: ctaFloat 6s ease-in-out infinite;
     transform: scale(0.9);
     opacity: 0;
     transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
 }

 .join-cta-wrapper.visible .join-cta-container {
     transform: scale(1);
     opacity: 1;
 }

 @keyframes ctaFloat {

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

     50% {
         transform: translateY(-10px);
     }
 }

 .join-cta-sparkle {
     position: absolute;
     font-size: 2rem;
     animation: sparkle 3s ease-in-out infinite;
 }

 .sparkle-1 {
     top: 10%;
     left: 5%;
     animation-delay: 0s;
 }

 .sparkle-2 {
     top: 15%;
     right: 8%;
     animation-delay: 0.5s;
 }

 .sparkle-3 {
     bottom: 20%;
     left: 10%;
     animation-delay: 1s;
 }

 .sparkle-4 {
     bottom: 15%;
     right: 5%;
     animation-delay: 1.5s;
 }

 @keyframes sparkle {

     0%,
     100% {
         opacity: 0.3;
         transform: scale(0.8) rotate(0deg);
     }

     50% {
         opacity: 1;
         transform: scale(1.2) rotate(180deg);
     }
 }

 .join-cta-label {
     display: inline-block;
     font-size: 0.95rem;
     color: #8B5CF6;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     margin-bottom: 25px;
     padding: 10px 30px;
     background: rgba(139, 92, 246, 0.2);
     border-radius: 30px;
     border: 1px solid rgba(139, 92, 246, 0.5);
     animation: labelPulse 2s ease-in-out infinite;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
 }

 .join-cta-wrapper.visible .join-cta-label {
     opacity: 1;
     transform: translateY(0);
 }

 @keyframes labelPulse {

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

     50% {
         transform: scale(1.05);
     }
 }

 .join-cta-title {
     font-size: 4.5rem;
     font-weight: 900;
     color: white;
     margin-bottom: 30px;
     line-height: 1.1;
     background: linear-gradient(135deg, #fff, #8B5CF6, #3B82F6, #fff);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: gradientShift 5s ease infinite;
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
 }

 .join-cta-wrapper.visible .join-cta-title {
     opacity: 1;
     transform: translateY(0);
 }

 @keyframes gradientShift {

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

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

 .join-cta-description {
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.8;
     margin-bottom: 50px;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
 }

 .join-cta-wrapper.visible .join-cta-description {
     opacity: 1;
     transform: translateY(0);
 }

 .join-cta-stats {
     display: flex;
     justify-content: center;
     gap: 60px;
     margin-bottom: 50px;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease 1.1s, transform 0.6s ease 1.1s;
 }

 .join-cta-wrapper.visible .join-cta-stats {
     opacity: 1;
     transform: translateY(0);
 }

 .join-stat {
     text-align: center;
     opacity: 0;
     transform: scale(0.8);
     transition: opacity 0.5s ease, transform 0.5s ease;
 }

 .join-cta-wrapper.visible .join-stat:nth-child(1) {
     opacity: 1;
     transform: scale(1);
     transition-delay: 1.3s;
 }

 .join-cta-wrapper.visible .join-stat:nth-child(2) {
     opacity: 1;
     transform: scale(1);
     transition-delay: 1.5s;
 }

 .join-cta-wrapper.visible .join-stat:nth-child(3) {
     opacity: 1;
     transform: scale(1);
     transition-delay: 1.7s;
 }

 .join-stat-number {
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 10px auto;
     transition: all 0.3s ease;
 }

 .join-stat-number:hover {
     transform: scale(1.15) rotate(5deg);
     filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.5));
 }

 .join-stat-label {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.7);
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .join-cta-button {
     display: inline-flex;
     align-items: center;
     gap: 15px;
     padding: 25px 60px;
     font-size: 1.3rem;
     font-weight: 800;
     color: white;
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     border: none;
     border-radius: 50px;
     text-decoration: none;
     box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
     transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
     position: relative;
     overflow: hidden;
     opacity: 0;
     transform: translateY(30px) scale(0.9);
 }

 .join-cta-wrapper.visible .join-cta-button {
     opacity: 1;
     transform: translateY(0) scale(1);
     transition: opacity 0.6s ease 1.9s, transform 0.6s ease 1.9s,
         box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .join-cta-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.6s;
 }

 .join-cta-button:hover::before {
     left: 100%;
 }

 .join-cta-button:hover {
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 30px 80px rgba(139, 92, 246, 0.8);
 }

 .join-cta-button:active {
     transform: translateY(-2px) scale(1.02);
 }

 .button-icon {
     font-size: 1.5rem;
     animation: bounceIcon 1.5s ease-in-out infinite;
 }

 @keyframes bounceIcon {

     0%,
     100% {
         transform: translateX(0);
     }

     50% {
         transform: translateX(5px);
     }
 }

/* Mobile Responsive */
@media (max-width: 968px) {
    .join-cta-wrapper {
        padding: 0 15px !important;
    }

    .join-cta-container {
        padding: 50px 30px !important;
        border-radius: 30px !important;
        max-width: 100% !important;
    }

    .join-cta-label {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        padding: 10px 25px !important;
        margin-bottom: 20px !important;
    }

    .join-cta-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 25px !important;
    }

    .join-cta-description {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
        margin-bottom: 40px !important;
        padding: 0 10px !important;
    }

    .join-cta-stats {
        flex-direction: row !important;
        gap: 25px !important;
        margin-bottom: 40px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .join-stat {
        flex: 0 0 auto !important;
        min-width: 80px !important;
    }

    .join-stat-number {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 8px !important;
    }

    .join-stat-label {
        font-size: 0.85rem !important;
        letter-spacing: 1.5px !important;
    }

    .join-cta-button {
        padding: 20px 45px !important;
        font-size: 1.1rem !important;
        width: 90% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }

    .join-cta-sparkle {
        font-size: 1.5rem !important;
    }

    .sparkle-1 {
        top: 5% !important;
        left: 5% !important;
    }

    .sparkle-2 {
        top: 8% !important;
        right: 5% !important;
    }

    .sparkle-3 {
        bottom: 15% !important;
        left: 8% !important;
    }

    .sparkle-4 {
        bottom: 12% !important;
        right: 8% !important;
    }
}

@media (max-width: 480px) {
    .join-cta-wrapper {
        padding: 0 10px !important;
    }

    .join-cta-container {
        padding: 40px 20px !important;
        border-radius: 25px !important;
    }

    .join-cta-label {
        font-size: 0.7rem !important;
        letter-spacing: 1.5px !important;
        padding: 8px 18px !important;
        margin-bottom: 15px !important;
    }

    .join-cta-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
    }

    .join-cta-description {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        margin-bottom: 35px !important;
        padding: 0 5px !important;
    }

    .join-cta-stats {
        gap: 20px !important;
    }

    .join-stat {
        min-width: 70px !important;
    }

    .join-stat-number {
        width: 50px !important;
        height: 50px !important;
    }

    .join-stat-label {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }

    .join-cta-button {
        padding: 18px 35px !important;
        font-size: 1rem !important;
        gap: 10px !important;
        width: 95% !important;
        max-width: 280px !important;
    }

    .button-icon {
        font-size: 1.2rem !important;
    }

    .join-cta-sparkle {
        font-size: 1.2rem !important;
    }
}

 /* Community Section */
 .community-section {
     position: relative;
     padding: 100px 50px;
     z-index: 1;
     overflow: hidden;
 }

 /* Background Animation Elements for Community Section */
 .community-bg-orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(80px);
     opacity: 0.3;
     pointer-events: none;
     z-index: 0;
 }

 .community-orb-1 {
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
     top: -100px;
     left: -150px;
     animation: floatCommunityOrb1 20s ease-in-out infinite;
 }

 .community-orb-2 {
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
     top: 50%;
     right: -100px;
     animation: floatCommunityOrb2 25s ease-in-out infinite;
 }

 .community-orb-3 {
     width: 450px;
     height: 450px;
     background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
     bottom: -150px;
     left: 40%;
     animation: floatCommunityOrb3 22s ease-in-out infinite;
 }

 @keyframes floatCommunityOrb1 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(80px, 100px) scale(1.1);
     }

     66% {
         transform: translate(-60px, 80px) scale(0.95);
     }
 }

 @keyframes floatCommunityOrb2 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(-100px, -80px) scale(1.15);
     }

     66% {
         transform: translate(70px, 100px) scale(0.9);
     }
 }

 @keyframes floatCommunityOrb3 {

     0%,
     100% {
         transform: translate(0, 0) scale(1);
     }

     33% {
         transform: translate(-120px, -60px) scale(1.2);
     }

     66% {
         transform: translate(90px, -80px) scale(0.85);
     }
 }

 /* Animated Grid Lines */
 .community-grid-lines {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
     background-size: 50px 50px;
     pointer-events: none;
     z-index: 0;
     animation: communityGridMove 20s linear infinite;
 }

 @keyframes communityGridMove {
     0% {
         transform: translate(0, 0);
     }

     100% {
         transform: translate(50px, 50px);
     }
 }

 /* Floating Dots */
 .community-floating-dots {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 0;
 }

 .community-floating-dots .dot {
     position: absolute;
     width: 4px;
     height: 4px;
     background: radial-gradient(circle, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.4));
     border-radius: 50%;
     opacity: 0.3;
 }

 /* Ensure content is above background */
 .community-section .section-header,
 .community-section .community-grid {
     position: relative;
     z-index: 1;
 }

 .section-header {
     position: relative;
     z-index: 10;
     text-align: center;
     margin-top: 80px;
     margin-bottom: 60px;
 }

 .section-badge {
     display: inline-block;
     font-size: 0.85rem;
     color: #8B5CF6;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 15px;
     padding: 8px 20px;
     background: rgba(139, 92, 246, 0.1);
     border-radius: 20px;
     border: 1px solid rgba(139, 92, 246, 0.3);
 }

 .section-title {
     font-size: 3rem;
     font-weight: 700;
     background: linear-gradient(135deg, #ffffff, #e0d5ff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
 }

 .section-description {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.6);
     max-width: 700px;
     margin: 0 auto;
 }

 .community-grid {
     position: relative;
     z-index: 10;
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .community-card {
     background: rgba(15, 15, 25, 0.25);
     backdrop-filter: blur(12px);
     border: 1px solid rgba(139, 92, 246, 0.25);
     border-radius: 28px;
     padding: 40px 30px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
         inset 0 1px 1px rgba(255, 255, 255, 0.04);
 }

 .community-card:hover {
     transform: translateY(-10px) scale(1.03);
     background: rgba(15, 15, 25, 0.45);
     border-color: rgba(139, 92, 246, 0.6);
     box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4),
         0 0 90px rgba(139, 92, 246, 0.2),
         inset 0 1px 2px rgba(255, 255, 255, 0.08);
 }

 .community-icon {
     width: 70px;
     height: 70px;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .community-title {
     font-size: 1.4rem;
     font-weight: 700;
     color: white;
     margin-bottom: 12px;
 }

 .community-description {
     font-size: 0.95rem;
     color: rgba(255, 255, 255, 0.6);
     margin-bottom: 25px;
     line-height: 1.5;
     flex-grow: 1;
 }

 .community-btn {
     padding: 12px 28px;
     background: rgba(139, 92, 246, 0.2);
     border: 1px solid rgba(139, 92, 246, 0.4);
     border-radius: 12px;
     color: white;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-block;
     width: 100%;
 }

 .community-btn:hover {
     background: rgba(139, 92, 246, 0.3);
     border-color: rgba(139, 92, 246, 0.6);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
 }

 .community-dual-buttons {
     display: flex;
     gap: 10px;
     width: 100%;
 }

 .community-btn-small {
     padding: 12px 20px;
     background: rgba(139, 92, 246, 0.2);
     border: 1px solid rgba(139, 92, 246, 0.4);
     border-radius: 12px;
     color: white;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     display: inline-block;
     flex: 1;
     text-align: center;
 }

 .community-btn-small:hover {
     background: rgba(139, 92, 246, 0.3);
     border-color: rgba(139, 92, 246, 0.6);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
 }

 /* Footer Section */
 .footer {
     position: relative;
     width: 100%;
     background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #0a0814);
     padding: 80px 50px 30px;
     border-top: 1px solid rgba(139, 92, 246, 0.2);
 }

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

 .footer-top {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 60px;
     margin-bottom: 60px;
     padding-bottom: 50px;
     border-bottom: 1px solid rgba(139, 92, 246, 0.2);
 }

 .footer-brand {
     max-width: 350px;
 }

 .footer-logo {
     font-size: 2.5rem;
     font-weight: 900;
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
     display: inline-block;
 }

 .footer-brand p {
     color: rgba(255, 255, 255, 0.7);
     font-size: 1rem;
     line-height: 1.7;
     margin-bottom: 25px;
 }

 .footer-social {
     display: flex;
     gap: 15px;
 }

 .social-link {
     width: 45px;
     height: 45px;
     background: rgba(139, 92, 246, 0.1);
     border: 1px solid rgba(139, 92, 246, 0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     color: #8B5CF6;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     border-color: transparent;
     color: white;
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
 }

 .footer-column h3 {
     color: white;
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-column h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 3px;
     background: linear-gradient(90deg, #8B5CF6, #3B82F6);
     border-radius: 2px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 15px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 1rem;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .footer-links a:hover {
     color: #8B5CF6;
     transform: translateX(5px);
 }

 .footer-newsletter {
     margin-top: 20px;
 }

 .newsletter-input {
     width: 100%;
     padding: 15px 20px;
     background: rgba(139, 92, 246, 0.05);
     border: 1px solid rgba(139, 92, 246, 0.3);
     border-radius: 30px;
     color: white;
     font-size: 0.95rem;
     margin-bottom: 15px;
     transition: all 0.3s ease;
 }

 .newsletter-input:focus {
     outline: none;
     border-color: #8B5CF6;
     background: rgba(139, 92, 246, 0.1);
 }

 .newsletter-input::placeholder {
     color: rgba(255, 255, 255, 0.5);
 }

 .newsletter-btn {
     width: 100%;
     padding: 15px 30px;
     background: linear-gradient(135deg, #8B5CF6, #3B82F6);
     border: none;
     border-radius: 30px;
     color: white;
     font-size: 1rem;
     font-weight: 700;
     transition: all 0.3s ease;
 }

 .newsletter-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
 }

 .newsletter-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed;
     transform: none;
 }

 .newsletter-message {
     margin-top: 12px;
     padding: 12px 18px;
     border-radius: 12px;
     font-size: 0.9rem;
     font-weight: 500;
     text-align: center;
     opacity: 0;
     transform: translateY(-10px);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .newsletter-message.show {
     opacity: 1;
     transform: translateY(0);
 }

 .newsletter-message.success {
     background: rgba(34, 197, 94, 0.15);
     border: 1px solid rgba(34, 197, 94, 0.3);
     color: #4ade80;
 }

 .newsletter-message.error {
     background: rgba(239, 68, 68, 0.15);
     border: 1px solid rgba(239, 68, 68, 0.3);
     color: #f87171;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 30px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-copyright {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.95rem;
 }

 .footer-links-bottom {
     display: flex;
     gap: 30px;
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links-bottom a {
     color: rgba(255, 255, 255, 0.6);
     text-decoration: none;
     font-size: 0.95rem;
     transition: color 0.3s ease;
 }

 .footer-links-bottom a:hover {
     color: #8B5CF6;
 }

 @media (max-width: 968px) {
     .section-title {
         font-size: 2.2rem;
     }

     .section-description {
         font-size: 1rem;
     }

     .community-grid {
         grid-template-columns: 1fr;
     }

     .footer {
         padding: 60px 25px 30px !important;
         background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #050309);
     }

     .footer-container {
         padding: 0 !important;
     }

     .footer-top {
         grid-template-columns: 1fr !important;
         gap: 45px !important;
         margin-bottom: 40px !important;
         padding-bottom: 40px !important;
         border-bottom: 1px solid rgba(139, 92, 246, 0.15);
     }

     .footer-brand {
         max-width: 100% !important;
         text-align: center !important;
         padding: 0 10px;
     }

     .footer-logo {
         font-size: 2.5rem !important;
         text-align: center !important;
         display: block !important;
         margin-bottom: 18px !important;
         background: linear-gradient(135deg, #a78bfa, #60a5fa);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
     }

     .footer-brand p {
         font-size: 1rem !important;
         text-align: center !important;
         line-height: 1.8 !important;
         color: rgba(255, 255, 255, 0.75) !important;
         max-width: 500px;
         margin: 0 auto 25px !important;
     }

     .footer-social {
         justify-content: center !important;
         gap: 12px !important;
         flex-wrap: wrap;
     }

     .social-link {
         width: 52px !important;
         height: 52px !important;
         font-size: 1.4rem !important;
         background: rgba(139, 92, 246, 0.08) !important;
         border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
         backdrop-filter: blur(10px);
         transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
     }

     .social-link:hover {
         transform: translateY(-5px) scale(1.05) !important;
         box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4) !important;
     }

     .footer-column {
         text-align: center !important;
         padding: 20px 15px;
         background: rgba(139, 92, 246, 0.03);
         border-radius: 16px;
         border: 1px solid rgba(139, 92, 246, 0.1);
     }

     .footer-column h3 {
         font-size: 1.2rem !important;
         text-align: center !important;
         margin-bottom: 22px !important;
         letter-spacing: 0.5px;
     }

     .footer-column h3::after {
         left: 50% !important;
         transform: translateX(-50%);
         width: 50px !important;
         height: 3px !important;
     }

     .footer-links {
         align-items: center !important;
     }

     .footer-links li {
         margin-bottom: 12px !important;
     }

     .footer-links a {
         font-size: 1rem !important;
         padding: 10px 0 !important;
         display: inline-block !important;
         color: rgba(255, 255, 255, 0.75) !important;
         position: relative;
     }

     .footer-links a::after {
         content: '';
         position: absolute;
         bottom: 5px;
         left: 50%;
         transform: translateX(-50%);
         width: 0;
         height: 2px;
         background: linear-gradient(90deg, #8B5CF6, #3B82F6);
         transition: width 0.3s ease;
     }

     .footer-links a:hover::after {
         width: 80%;
     }

     .footer-newsletter {
         max-width: 100% !important;
         margin-top: 0 !important;
     }

     .newsletter-input {
         padding: 16px 20px !important;
         font-size: 1rem !important;
         background: rgba(139, 92, 246, 0.08) !important;
         border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
         margin-bottom: 12px !important;
     }

     .newsletter-input:focus {
         background: rgba(139, 92, 246, 0.12) !important;
         box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
     }

     .newsletter-btn {
         padding: 16px 30px !important;
         font-size: 1rem !important;
         font-weight: 700 !important;
         background: linear-gradient(135deg, #8B5CF6, #3B82F6);
         box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
     }

     .newsletter-btn:hover {
         box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
     }

     .footer-bottom {
         flex-direction: column !important;
         text-align: center !important;
         gap: 18px !important;
         padding-top: 30px !important;
         border-top: 1px solid rgba(139, 92, 246, 0.1);
     }

     .footer-copyright {
         font-size: 0.95rem !important;
         order: 2 !important;
         color: rgba(255, 255, 255, 0.65) !important;
         letter-spacing: 0.3px;
     }

     .footer-links-bottom {
         gap: 15px !important;
         justify-content: center !important;
         flex-wrap: wrap !important;
         order: 1 !important;
         flex-direction: row !important;
     }

     .footer-links-bottom a {
         font-size: 0.95rem !important;
         padding: 8px 12px !important;
         color: rgba(255, 255, 255, 0.7) !important;
         border-radius: 8px;
         transition: all 0.3s ease !important;
     }

     .footer-links-bottom a:hover {
         background: rgba(139, 92, 246, 0.1);
         color: #a78bfa !important;
     }
 }

 /* ========== ENHANCED WHAT IS DOT ECOSYSTEM FEATURES ========== */
 .what-is-features {
     display: flex;
     flex-direction: column;
     gap: 30px;
     margin-top: 50px;
 }

 .feature-item {
     display: flex;
     align-items: flex-start;
     gap: 30px;
     padding: 35px;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
     border: 1px solid rgba(139, 92, 246, 0.25);
     border-radius: 24px;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }

 .feature-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
     opacity: 0;
     transition: opacity 0.5s ease;
     z-index: 0;
 }

 .feature-item:hover::before {
     opacity: 1;
 }

 .feature-item::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transition: left 0.7s ease;
     z-index: 1;
 }

 .feature-item:hover::after {
     left: 100%;
 }

 .feature-item:hover {
     transform: translateX(12px) scale(1.02);
     border-color: rgba(139, 92, 246, 0.6);
     box-shadow:
         0 20px 60px rgba(139, 92, 246, 0.25),
         0 0 80px rgba(139, 92, 246, 0.15),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
 }

 .feature-number {
     position: relative;
     z-index: 2;
     min-width: 80px;
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: 900;
     color: white;
     background: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(59, 130, 246, 0.4) 100%);
     border: 2px solid rgba(139, 92, 246, 0.6);
     border-radius: 20px;
     box-shadow:
         0 8px 32px rgba(139, 92, 246, 0.4),
         inset 0 2px 8px rgba(255, 255, 255, 0.2);
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     flex-shrink: 0;
 }

 .feature-item:hover .feature-number {
     transform: scale(1.1) rotate(5deg);
     box-shadow:
         0 12px 48px rgba(139, 92, 246, 0.6),
         inset 0 2px 8px rgba(255, 255, 255, 0.3);
     border-color: rgba(139, 92, 246, 0.9);
 }

 .feature-content {
     position: relative;
     z-index: 2;
     flex: 1;
 }

 .feature-content h3 {
     font-size: 1.6rem;
     font-weight: 800;
     color: white;
     margin-bottom: 15px;
     letter-spacing: 0.5px;
     background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     transition: all 0.3s ease;
 }

 .feature-item:hover .feature-content h3 {
     letter-spacing: 1px;
 }

 .feature-content p {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.85);
     line-height: 1.8;
     margin: 0;
 }

 /* Mobile Responsive */
 @media (max-width: 968px) {
     .what-is-features {
         gap: 20px;
         margin-top: 30px;
     }

     .feature-item {
         flex-direction: column;
         align-items: center;
         text-align: center;
         padding: 25px 20px;
         gap: 20px;
     }

     .feature-item:hover {
         transform: translateY(-5px) scale(1.01);
     }

     .feature-number {
         min-width: 70px;
         width: 70px;
         height: 70px;
         font-size: 1.8rem;
     }

     .feature-content h3 {
         font-size: 1.3rem;
         margin-bottom: 12px;
     }

     .feature-content p {
         font-size: 1rem;
         line-height: 1.7;
     }
 }

 @media (max-width: 480px) {
     .feature-item {
         padding: 20px 15px;
     }

     .feature-number {
         min-width: 60px;
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
     }

     .feature-content h3 {
         font-size: 1.15rem;
     }

     .feature-content p {
         font-size: 0.95rem;
     }

     /* Enhanced Footer for Small Mobile Devices */
     .footer {
         padding: 50px 20px 25px !important;
     }

     .footer-top {
         gap: 35px !important;
         margin-bottom: 35px !important;
         padding-bottom: 35px !important;
     }

     .footer-brand {
         padding: 0 5px !important;
     }

     .footer-logo {
         font-size: 2rem !important;
         margin-bottom: 15px !important;
         letter-spacing: -0.5px;
     }

     .footer-brand p {
         font-size: 0.95rem !important;
         line-height: 1.7 !important;
         padding: 0 10px;
     }

     .footer-social {
         gap: 10px !important;
     }

     .social-link {
         width: 48px !important;
         height: 48px !important;
         font-size: 1.3rem !important;
     }

     .footer-column {
         padding: 18px 12px !important;
         border-radius: 14px !important;
     }

     .footer-column h3 {
         font-size: 1.1rem !important;
         margin-bottom: 18px !important;
     }

     .footer-column h3::after {
         width: 45px !important;
         height: 2.5px !important;
     }

     .footer-links li {
         margin-bottom: 10px !important;
     }

     .footer-links a {
         font-size: 0.95rem !important;
         padding: 8px 0 !important;
     }

     .newsletter-input {
         padding: 14px 18px !important;
         font-size: 0.95rem !important;
         margin-bottom: 10px !important;
     }

     .newsletter-btn {
         padding: 14px 25px !important;
         font-size: 0.95rem !important;
     }

     .footer-bottom {
         gap: 15px !important;
         padding-top: 25px !important;
     }

     .footer-copyright {
         font-size: 0.9rem !important;
         padding: 0 10px;
         line-height: 1.5;
     }

     .footer-links-bottom {
         gap: 12px !important;
     }

     .footer-links-bottom a {
         font-size: 0.9rem !important;
         padding: 6px 10px !important;
     }
 }

/* ========== MOBILE ENHANCEMENTS - EXPANDABLE CONTENT ========== */

/* Expandable content for large text sections */
.expandable-content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-content.collapsed {
    max-height: 4.5em; /* Default to 3 lines */
}

.expandable-content[data-lines="2"].collapsed {
    max-height: 3em; /* 2 lines */
}

.expandable-content[data-lines="3"].collapsed {
    max-height: 4.5em; /* 3 lines */
}

.expandable-content.expanded {
    max-height: none;
}

.read-more-btn {
    display: inline;
    margin-left: 0;
    padding: 0;
    background: none;
    border: none;
    color: #a78bfa;
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.read-more-btn:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

.read-more-btn:active {
    color: #8b5cf6;
}

/* Add space before read more link */
.truncatable-text.has-more + .read-more-btn::before {
    content: ' ';
    white-space: pre;
}



/* Truncatable text for shorter content */
.truncatable-text {
    display: inline;
    overflow: visible;
    transition: all 0.3s ease;
}

.truncatable-text.has-more {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.truncatable-text.expanded {
    display: inline;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

@media (max-width: 968px) {
    /* Enable text truncation on mobile */
    .truncatable-text.has-more {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .truncatable-text.expanded {
        display: inline;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    /* Show expandable content controls only on mobile */
    .expandable-content.collapsed::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1.5em;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
        pointer-events: none;
    }

    .expandable-content.expanded::after {
        display: none;
    }
}

/* Desktop - no truncation needed */
@media (min-width: 969px) {
    .read-more-btn {
        display: none;
    }
    
    .expandable-content {
        max-height: none !important;
    }
    
    .truncatable-text {
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
}

/* ========== ENHANCED MOBILE CARD RESPONSIVENESS ========== */

@media (max-width: 968px) {
    /* Feature cards enhanced sizing */
    .feature-card {
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px 20px !important;
    }
    
    .feature-card .feature-icon {
        margin-bottom: 15px !important;
    }
    
    .feature-card h3 {
        margin-bottom: 10px !important;
        min-height: 2.5em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .feature-card p {
        flex: 1;
        display: flex;
        align-items: center;
    }

    /* Benefit cards enhanced */
    .benefit-card {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.6) !important;
        border: 1px solid rgba(139, 92, 246, 0.3) !important;
    }
    
    .benefit-card h3 {
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    
    .benefit-card p {
        flex: 1;
        margin-bottom: 15px !important;
    }
    
    .benefit-tag {
        margin-top: auto;
    }

    /* Community cards enhanced */
    .community-card {
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px 20px !important;
    }
    
    .community-card .community-icon {
        margin-bottom: 15px !important;
    }
    
    .community-card .community-title {
        margin-bottom: 10px !important;
    }
    
    .community-card .community-description {
        flex: 1;
        margin-bottom: 15px !important;
    }
    
    .community-card .community-btn,
    .community-card .community-dual-buttons {
        margin-top: auto;
    }

    /* What Is Features enhanced spacing */
    .what-is-features {
        gap: 25px !important;
    }
    
    .feature-item {
        padding: 25px 20px !important;
        min-height: 140px;
        display: flex;
        gap: 15px;
    }
    
    .feature-content h3 {
        margin-bottom: 8px !important;
        font-size: 1.15rem !important;
    }
}

@media (max-width: 640px) {
    /* Single column optimizations */
    .feature-card,
    .benefit-card,
    .community-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Compact card heights for small screens */
    .feature-card {
        min-height: 160px;
    }
    
    .benefit-card {
        min-height: 180px;
    }
    
    .community-card {
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .feature-card {
        padding: 25px 18px !important;
        min-height: 150px;
    }
    
    .benefit-card {
        padding: 25px 20px !important;
        min-height: 170px;
    }
    
    .community-card {
        padding: 25px 18px !important;
        min-height: 250px;
    }
}

/* ========== COMPREHENSIVE RESPONSIVE BREAKPOINTS ========== */

/* Extra Large Screens - Large Desktops & TVs (1920px+) */
@media (min-width: 1920px) {
    .vision-container {
        max-width: 1800px !important;
    }

    .vision-content h2 {
        font-size: 4rem !important;
    }

    .vision-description {
        font-size: 1.4rem !important;
        line-height: 2 !important;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 40px !important;
        max-width: 1800px !important;
    }

    .feature-card {
        padding: 45px !important;
    }

    .feature-card h3 {
        font-size: 1.5rem !important;
    }

    .feature-card p {
        font-size: 1.1rem !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
        max-width: 1800px !important;
    }

    .benefit-card {
        padding: 50px 40px !important;
    }

    .benefit-card h3 {
        font-size: 1.9rem !important;
    }

    .benefit-card p {
        font-size: 1.15rem !important;
    }

    .community-grid {
        gap: 40px !important;
        max-width: 1800px !important;
    }

    .join-cta-container {
        max-width: 1200px !important;
        padding: 100px 80px !important;
    }

    .join-cta-title {
        font-size: 5rem !important;
    }

    .join-cta-description {
        font-size: 1.5rem !important;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .vision-container {
        max-width: 1400px !important;
    }

    .vision-content h2 {
        font-size: 3.5rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 35px !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 35px !important;
    }
}

/* Standard Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .vision-container {
        max-width: 1200px !important;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
    }

    .feature-card {
        padding: 30px !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }

    .benefit-card {
        padding: 40px 30px !important;
    }
}

/* Tablet Landscape & Small Desktop (969px - 1199px) */
@media (min-width: 969px) and (max-width: 1199px) {
    .vision-container {
        max-width: 100% !important;
        padding: 0 30px !important;
    }

    .vision-content h2 {
        font-size: 2.8rem !important;
    }

    .vision-description {
        font-size: 1.15rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .feature-card {
        padding: 28px !important;
    }

    .feature-card h3 {
        font-size: 1.2rem !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .benefit-card {
        padding: 35px 28px !important;
    }

    .ecosystem-grid-new {
        max-width: 500px !important;
    }
}

/* Tablet Portrait (768px - 968px) */
@media (min-width: 768px) and (max-width: 968px) {
    .vision-container {
        padding: 0 25px !important;
    }

    .vision-content h2 {
        font-size: 2.5rem !important;
    }

    .vision-description {
        font-size: 1.1rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .feature-card {
        padding: 28px 22px !important;
        min-height: 200px !important;
    }

    .feature-card .feature-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .feature-card h3 {
        font-size: 1.15rem !important;
    }

    .feature-card p {
        font-size: 0.95rem !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .benefit-card {
        padding: 32px 25px !important;
        min-height: 220px !important;
    }

    .benefit-card h3 {
        font-size: 1.5rem !important;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .community-card {
        min-height: 300px !important;
    }

    .ecosystem-grid-new {
        max-width: 450px !important;
        gap: 15px !important;
    }

    .join-cta-container {
        padding: 60px 40px !important;
    }

    .join-cta-title {
        font-size: 3rem !important;
    }
}

/* Mobile Landscape & Small Tablet (641px - 767px) */
@media (min-width: 641px) and (max-width: 767px) {
    .vision-container {
        padding: 0 20px !important;
    }

    .vision-content h2 {
        font-size: 2.2rem !important;
    }

    .vision-description {
        font-size: 1.05rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }

    .feature-card {
        padding: 25px 20px !important;
        min-height: 190px !important;
    }

    .feature-card .feature-icon {
        width: 65px !important;
        height: 65px !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
    }

    .feature-card p {
        font-size: 0.92rem !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .benefit-card {
        padding: 30px 24px !important;
        min-height: 200px !important;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }

    .ecosystem-grid-new {
        max-width: 400px !important;
        gap: 12px !important;
    }
}

/* Mobile Portrait (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .vision-container {
        padding: 0 18px !important;
    }

    .vision-content h2 {
        font-size: 2rem !important;
    }

    .vision-description {
        font-size: 1.02rem !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .feature-card {
        padding: 25px 20px !important;
        min-height: 170px !important;
    }

    .feature-card .feature-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
    }

    .feature-card p {
        font-size: 0.92rem !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .benefit-card {
        padding: 28px 22px !important;
        min-height: 190px !important;
    }

    .benefit-card h3 {
        font-size: 1.45rem !important;
    }

    .community-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .community-card {
        min-height: 270px !important;
    }

    .ecosystem-grid-new {
        max-width: 100% !important;
        gap: 10px !important;
    }

    .join-cta-container {
        padding: 50px 28px !important;
    }

    .join-cta-title {
        font-size: 2.3rem !important;
    }

    .join-cta-description {
        font-size: 1.05rem !important;
    }
}

/* Small Mobile (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .vision-container {
        padding: 0 16px !important;
    }

    .vision-content h2 {
        font-size: 1.85rem !important;
    }

    .vision-description {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .feature-card {
        padding: 24px 18px !important;
        min-height: 160px !important;
    }

    .feature-card .feature-icon {
        width: 55px !important;
        height: 55px !important;
    }

    .feature-card h3 {
        font-size: 1.05rem !important;
        min-height: auto !important;
    }

    .feature-card p {
        font-size: 0.9rem !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .benefit-card {
        padding: 26px 20px !important;
        min-height: 180px !important;
    }

    .benefit-card h3 {
        font-size: 1.35rem !important;
    }

    .benefit-card p {
        font-size: 0.98rem !important;
    }

    .community-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .community-card {
        padding: 28px 20px !important;
        min-height: 260px !important;
    }

    .ecosystem-grid-new {
        gap: 9px !important;
        padding: 12px !important;
    }

    .ecosystem-card-new {
        min-height: 90px !important;
    }

    .join-cta-container {
        padding: 45px 25px !important;
        border-radius: 28px !important;
    }

    .join-cta-title {
        font-size: 2.2rem !important;
    }

    .join-cta-description {
        font-size: 1.02rem !important;
    }
}

/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .vision-container {
        padding: 0 15px !important;
    }

    .vision-content h2 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
    }

    .vision-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .feature-card {
        padding: 22px 16px !important;
        min-height: 150px !important;
    }

    .feature-card .feature-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 12px !important;
    }

    .feature-card h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    .feature-card p {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .benefit-card {
        padding: 24px 18px !important;
        min-height: 170px !important;
    }

    .benefit-icon-wrapper {
        gap: 12px !important;
    }

    .benefit-card .benefit-icon {
        width: 55px !important;
        height: 55px !important;
    }

    .benefit-number {
        font-size: 2.2rem !important;
    }

    .benefit-card h3 {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
    }

    .benefit-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .benefit-tag {
        font-size: 0.78rem !important;
        padding: 6px 14px !important;
    }

    .community-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .community-card {
        padding: 26px 18px !important;
        min-height: 250px !important;
    }

    .community-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 14px !important;
    }

    .community-title {
        font-size: 1.25rem !important;
    }

    .community-description {
        font-size: 0.9rem !important;
    }

    .community-btn,
    .community-btn-small {
        font-size: 0.85rem !important;
        padding: 12px 20px !important;
    }

    .ecosystem-grid-new {
        gap: 8px !important;
        padding: 10px !important;
    }

    .ecosystem-card-new {
        min-height: 82px !important;
        border-radius: 14px !important;
    }

    .card-icon-new {
        width: 30px !important;
        height: 30px !important;
        margin: 0 auto 5px auto !important;
    }

    .card-icon-new.large-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .ecosystem-card-new h4 {
        font-size: 0.6rem !important;
        letter-spacing: 0.8px !important;
    }

    .ecosystem-card-new.center-card-new h4 {
        font-size: 0.9rem !important;
        letter-spacing: 1.5px !important;
    }

    .join-cta-container {
        padding: 40px 22px !important;
        border-radius: 24px !important;
    }

    .join-cta-label {
        font-size: 0.75rem !important;
        padding: 8px 20px !important;
        letter-spacing: 1.5px !important;
    }

    .join-cta-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 22px !important;
    }

    .join-cta-description {
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
        margin-bottom: 35px !important;
    }

    .join-cta-stats {
        gap: 20px !important;
        margin-bottom: 35px !important;
    }

    .join-stat-number {
        width: 50px !important;
        height: 50px !important;
    }

    .join-stat-label {
        font-size: 0.88rem !important;
    }

    .join-cta-button {
        padding: 20px 40px !important;
        font-size: 1.1rem !important;
    }

    /* What Is Features */
    .what-is-features {
        gap: 20px !important;
    }

    .feature-item {
        padding: 22px 18px !important;
        min-height: 130px !important;
        gap: 12px !important;
    }

    .feature-number {
        font-size: 2.2rem !important;
        min-width: 50px !important;
    }

    .feature-content h3 {
        font-size: 1.05rem !important;
        margin-bottom: 6px !important;
    }

    .feature-content p {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }
}

/* Ultra-wide Screens (2560px+) */
@media (min-width: 2560px) {
    .vision-container {
        max-width: 2400px !important;
    }

    .vision-content h2 {
        font-size: 5rem !important;
    }

    .vision-description {
        font-size: 1.6rem !important;
        line-height: 2.2 !important;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 50px !important;
        max-width: 2400px !important;
    }

    .feature-card {
        padding: 55px !important;
    }

    .feature-card .feature-icon {
        width: 100px !important;
        height: 100px !important;
    }

    .feature-card h3 {
        font-size: 1.8rem !important;
    }

    .feature-card p {
        font-size: 1.25rem !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 50px !important;
        max-width: 2400px !important;
    }

    .benefit-card {
        padding: 60px 50px !important;
    }

    .benefit-card .benefit-icon {
        width: 90px !important;
        height: 90px !important;
    }

    .benefit-number {
        font-size: 4.5rem !important;
    }

    .benefit-card h3 {
        font-size: 2.2rem !important;
    }

    .benefit-card p {
        font-size: 1.3rem !important;
    }

    .community-grid {
        gap: 50px !important;
        max-width: 2400px !important;
    }

    .community-card {
        padding: 50px !important;
    }

    .community-icon {
        width: 100px !important;
        height: 100px !important;
    }

    .community-title {
        font-size: 1.8rem !important;
    }

    .community-description {
        font-size: 1.2rem !important;
    }

    .join-cta-container {
        max-width: 1400px !important;
        padding: 120px 100px !important;
    }

    .join-cta-title {
        font-size: 6rem !important;
    }

    .join-cta-description {
        font-size: 1.8rem !important;
        max-width: 900px !important;
    }
}

