@tailwind base; @tailwind components; @tailwind utilities; /* Montserrat - header font (used in neode present) */ @font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat/Montserrat-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; } /* Controller / keyboard navigation - soft glow, hover-style (not yellow button) */ *:focus-visible { outline: none; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 16px rgba(120, 180, 255, 0.2), 0 0 32px rgba(100, 160, 255, 0.1); transition: box-shadow 0.2s ease; } /* Containers get a subtle inner glow when focused */ [data-controller-container]:focus-visible { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 24px rgba(120, 180, 255, 0.15), 0 0 48px rgba(100, 160, 255, 0.08), inset 0 0 24px rgba(255, 255, 255, 0.03); } /* Global glassmorphism utilities */ @layer components { .glass { background-color: rgba(0, 0, 0, 0.35); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); } .glass-strong { background-color: rgba(0, 0, 0, 0.35); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); } .glass-card { background-color: rgba(0, 0, 0, 0.65); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); border-radius: 1rem; overflow-x: hidden; overflow-y: visible; } .glass-button { display: inline-flex; align-items: center; justify-content: center; height: 48px; min-height: 48px; padding-block: 0 !important; line-height: 48px; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.9); } .glass-button-sm { min-height: 0 !important; height: auto !important; line-height: inherit; padding-block: 0.375rem !important; padding-inline: 0.75rem; } /* Toast - glassmorphic, top-right */ .toast-glass { background-color: rgba(0, 0, 0, 0.65); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); border-radius: 0.75rem; } /* Toast transition */ .toast-enter-active, .toast-leave-active { transition: all 0.3s ease; } .toast-enter-from, .toast-leave-to { opacity: 0; transform: translateX(1rem); } /* Gradient containers - transparent to black */ .gradient-card { background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); border-radius: 1rem; } .gradient-card-dark { background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); border-radius: 1rem; } .gradient-button { background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.95); transition: all 0.3s ease; } .gradient-button:hover { background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6); } /* Gradient border for logo badge */ .logo-gradient-border { position: relative; border-radius: 9999px; padding: 3px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); } .logo-gradient-border::after { content: ''; position: absolute; inset: 3px; border-radius: 9999px; background: #000; z-index: 0; } .logo-gradient-border img, .logo-gradient-border svg { border-radius: 9999px; display: block; position: relative; z-index: 1; } /* Gradient border container for large content areas */ .gradient-border-container { position: relative; border-radius: 1.5rem; padding: 4px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%); box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6); } .gradient-border-container-inner { background: rgba(0, 0, 0, 0.35); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 1.25rem; } /* Choose Your Path - Main Container */ .path-glass-container { width: calc(100% - 48px); max-width: 1200px; margin: 40px auto; padding: 32px; background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.06); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 16px; overflow-x: hidden; } /* Choose Your Path - Option Cards */ .path-option-card { position: relative; background: rgba(0, 0, 0, 0.60); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22); border-radius: 16px; padding: 12px 10px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; border: none; } /* Gradient border effect using CSS mask - default is subtle */ .path-option-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px; background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; } /* Icon styling with black glass effect */ .path-option-card svg { color: rgba(255, 255, 255, 0.85); transition: all 0.3s ease; filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.6)); stroke-width: 2.5; } .path-option-card:hover { transform: translateY(-2px); background: rgba(0, 0, 0, 0.35); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25); } .path-option-card:hover::before { background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent); } .path-option-card:hover svg { color: rgba(255, 255, 255, 1); filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.5)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 -1px 3px rgba(0, 0, 0, 0.7)); } /* Selected state */ .path-option-card--selected { background: rgba(255, 255, 255, 0.12); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35); transform: translateY(-2px); } .path-option-card--selected::before { background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent); } .path-option-card--selected svg { color: rgba(255, 255, 255, 1); filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.6)) drop-shadow(0 3px 8px rgba(0, 0, 0, 1)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.3)); } .path-option-card--selected h3 { color: rgba(255, 255, 255, 1); } /* Action Buttons */ .path-action-button { font-size: 18px; font-weight: 500; line-height: 1.4; border-radius: 16px; background: rgba(0, 0, 0, 0.25); color: rgba(255, 255, 255, 0.96); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: none; position: relative; cursor: pointer; transition: all 0.3s ease; min-width: 0; white-space: nowrap; letter-spacing: 0.02em; } .path-action-button--skip { padding: 12px 40px; font-size: 16px; } .path-action-button--skip::before { display: none; } .path-action-button--continue { padding: 16px 40px; font-size: 18px; font-weight: 600; } .path-action-button::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px; background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; } .path-action-button:hover { transform: translateY(-2px); background: rgba(0, 0, 0, 0.35); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25); } .path-action-button:hover::before { background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent); } .path-action-button:active { background: rgba(0, 0, 0, 0.55); transform: translateY(1px); } /* Active Navigation Tab Style - matches hover container */ .nav-tab-active { position: relative; background: rgba(0, 0, 0, 0.35) !important; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important; color: rgba(255, 255, 255, 1) !important; font-weight: 600 !important; } .nav-tab-active::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; } } /* Background image */ body { margin: 0; font-family: 'Avenir Next', system-ui, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: #000 url('/assets/img/bg.jpg') center top / auto 100vh no-repeat fixed; color: white; min-height: 100vh; } #app { min-height: 100vh; } /* Custom scrollbar for glass containers */ .custom-scrollbar::-webkit-scrollbar { width: 10px; } .custom-scrollbar::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); border-radius: 10px; } .custom-scrollbar::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%); border-radius: 10px; border: 2px solid rgba(0, 0, 0, 0.2); } .custom-scrollbar::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%); } /* Animations */ @keyframes fadeUpIn { 0% { opacity: 0; transform: translateY(28px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } } @keyframes caretBlink { 0%, 100% { border-right-color: #00ffff; } 50% { border-right-color: transparent; } } .animate-fade-up { animation: fadeUpIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both; } .animate-fade-in { animation: fadeIn 0.5s ease forwards; } .animate-fade-out { animation: fadeOut 0.8s ease forwards; } .typing-text { display: inline-block; overflow: hidden; white-space: nowrap; max-width: 0; border-right: 4px solid #00ffff; animation: typing 2s steps(30, end) forwards, caretBlink 0.5s step-end 3 2.6s; } /* Adjust typing animation to use max-width for better centering */ @keyframes typing { from { max-width: 0; } to { max-width: 100%; } } @keyframes caretBlink { 0%, 100% { border-right-color: #00ffff; } 50% { border-right-color: transparent; } } /* Splash screen styles */ .splash-complete .login-card { animation: fadeUpIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both; } /* Background glitch effect - continuous every 5s */ body::before, body::after, html::before { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0; } /* Subtle black glitch overlay */ body::before { background-image: url('/assets/img/bg.jpg'); background-size: auto 100vh; background-position: center top; background-attachment: fixed; mix-blend-mode: multiply; filter: brightness(0.4) contrast(1.2); will-change: transform, clip-path, opacity; animation: bg-glitch-shift-repeat 5s steps(10, end) infinite; } /* Second subtle black layer */ html::before { background-image: url('/assets/img/bg.jpg'); background-size: auto 100vh; background-position: center top; background-attachment: fixed; mix-blend-mode: multiply; filter: brightness(0.3) contrast(1.3); will-change: transform, clip-path, opacity; animation: bg-glitch-shift-2-repeat 5s steps(9, end) infinite; } /* Subtle scanline sweep */ body::after { background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0) 60%), repeating-linear-gradient(180deg, rgba(0,0,0,0.02) 0 2px, rgba(0,0,0,0) 2px 4px), radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.15) 100%); will-change: transform, opacity; animation: bg-glitch-scan-repeat 5s ease-out infinite; } /* Dashboard: full viewport width, no letterboxing */ body.dashboard-active { overflow-x: hidden; width: 100%; } body.dashboard-active .dashboard-view .bg-perspective-container { left: 0 !important; right: 0 !important; width: 100% !important; min-width: 100% !important; } /* Disable glitch effect on dashboard */ .dashboard-view ~ body::before, .dashboard-view ~ body::after, .dashboard-view ~ html::before { animation: none !important; opacity: 0 !important; } /* Alternative approach - disable on body when dashboard is active */ body:has(.dashboard-view)::before, body:has(.dashboard-view)::after, html:has(.dashboard-view)::before { animation: none !important; opacity: 0 !important; } /* Disable glitch effect on video background screens (onboarding intro/login) */ body.video-background-active::before, body.video-background-active::after, html:has(body.video-background-active)::before { animation: none !important; opacity: 0 !important; display: none !important; } /* Repeating glitch animations - every 5 seconds (subtle) */ @keyframes bg-glitch-shift-repeat { 0%, 82% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; } 82.1% { opacity: .08; } 84% { transform: translate(3px,-1px); clip-path: inset(8% 0 70% 0); } 86% { transform: translate(-3px,1px); clip-path: inset(42% 0 40% 0); } 88% { transform: translate(2px,0); clip-path: inset(68% 0 10% 0); } 91% { transform: translate(-2px,2px); clip-path: inset(18% 0 60% 0); } 93% { transform: translate(3px,-2px); clip-path: inset(55% 0 20% 0); } 95% { transform: translate(-2px,1px); clip-path: inset(10% 0 80% 0); } 100% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; } } @keyframes bg-glitch-scan-repeat { 0%, 82% { opacity: 0; transform: translateY(-20%); } 84% { opacity: 0.15; } 90% { opacity: 0.10; } 100% { opacity: 0; transform: translateY(115%); } } @keyframes bg-glitch-shift-2-repeat { 0%, 82% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; } 82.1% { opacity: .06; } 84% { transform: translate(-3px,1px); clip-path: inset(12% 0 65% 0); } 86% { transform: translate(3px,-1px) skewX(0.3deg); clip-path: inset(36% 0 42% 0); } 89% { transform: translate(-2px,1px); clip-path: inset(72% 0 8% 0); } 92% { transform: translate(2px,-2px); clip-path: inset(22% 0 58% 0); } 95% { transform: translate(-2px,1px); clip-path: inset(50% 0 26% 0); } 100% { transform: translate(0,0); clip-path: inset(0% 0 0 0); opacity: 0; } }