Spaces:
Running
Running
Komalpreet Kaur
style: establish full fluid mobile responsiveness on iPhone 14 viewports across AuthScreen, App Shell, and 3D Brain overlays
be0c19e unverified | /* βββββββββββββββββββββββββββββββββββββββββββββββ | |
| AuthScreen (Neural Gloss & Soma Orange) | |
| βββββββββββββββββββββββββββββββββββββββββββββββ */ | |
| .landing { | |
| position: fixed; | |
| inset: 0; | |
| background: #f3f4f6; /* Premium soft, warm workspace backdrop */ | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| z-index: 1000; | |
| overflow: hidden; | |
| font-family: 'Inter', system-ui, -apple-system, sans-serif; | |
| } | |
| /* ββ Background Neural Glows ββ */ | |
| .landing-bg { | |
| position: absolute; | |
| inset: 0; | |
| z-index: 0; | |
| } | |
| .bg-orb { | |
| position: absolute; | |
| border-radius: 50%; | |
| filter: blur(120px); | |
| opacity: 0.5; | |
| animation: drift 20s infinite alternate ease-in-out; | |
| } | |
| /* Unified Soma Orange Palette Glow Orbs */ | |
| .orb-1 { | |
| width: 600px; | |
| height: 600px; | |
| background: rgba(255, 107, 53, 0.15); /* Soma Orange Glow */ | |
| top: -10%; | |
| left: -10%; | |
| } | |
| .orb-2 { | |
| width: 500px; | |
| height: 500px; | |
| background: rgba(255, 139, 84, 0.12); /* Soft Axon Glow */ | |
| bottom: -5%; | |
| right: -5%; | |
| } | |
| .orb-3 { | |
| width: 400px; | |
| height: 400px; | |
| background: rgba(255, 235, 227, 0.2); /* Soft Warm Radial */ | |
| top: 30%; | |
| right: 20%; | |
| } | |
| .bg-grid { | |
| position: absolute; | |
| inset: 0; | |
| background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px); | |
| background-size: 30px 30px; | |
| opacity: 0.8; | |
| } | |
| @keyframes drift { | |
| from { transform: translate(0, 0) scale(1); } | |
| to { transform: translate(40px, 40px) scale(1.15); } | |
| } | |
| /* ββ Frosted Glass Console Panel ββ */ | |
| .splash-content, .name-content { | |
| position: relative; | |
| z-index: 10; | |
| width: 100%; | |
| max-width: 480px; | |
| text-align: center; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| background: rgba(255, 255, 255, 0.45); | |
| backdrop-filter: blur(35px); | |
| -webkit-backdrop-filter: blur(35px); | |
| border: 1px solid rgba(255, 255, 255, 0.8); | |
| border-radius: 32px; | |
| padding: 48px 40px; | |
| box-shadow: 0 24px 60px rgba(0, 0, 0, 0.04), inset 0 0 20px rgba(255, 255, 255, 0.2); | |
| animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1); | |
| box-sizing: border-box; | |
| } | |
| @keyframes slide-up { | |
| from { opacity: 0; transform: translateY(30px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| /* ββ Hero Orb (Floating Core) ββ */ | |
| .hero-orb { | |
| width: 80px; | |
| height: 80px; | |
| margin-bottom: 32px; | |
| position: relative; | |
| } | |
| .hero-core { | |
| position: absolute; | |
| inset: 22%; | |
| background: #ff6b35; /* Soma Orange Core */ | |
| border-radius: 50%; | |
| box-shadow: 0 0 30px rgba(255, 107, 53, 0.6); | |
| animation: heartbeat 2s infinite ease-in-out; | |
| } | |
| .hero-ring { | |
| position: absolute; | |
| inset: 0; | |
| border: 1px solid rgba(255, 107, 53, 0.2); | |
| border-radius: 50%; | |
| animation: rotate 12s linear infinite; | |
| } | |
| .r2 { transform: rotate(45deg); inset: -8px; border-color: rgba(255, 107, 53, 0.15); } | |
| .r3 { transform: rotate(-45deg); inset: -16px; border-color: rgba(255, 107, 53, 0.1); } | |
| @keyframes rotate { | |
| from { transform: rotate(0deg); } | |
| to { transform: rotate(360deg); } | |
| } | |
| @keyframes heartbeat { | |
| 0% { transform: scale(0.95); opacity: 0.8; } | |
| 50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 45px rgba(255, 107, 53, 0.85); } | |
| 100% { transform: scale(0.95); opacity: 0.8; } | |
| } | |
| /* ββ Premium Typography ββ */ | |
| .hero-title { | |
| font-size: 4rem; | |
| font-weight: 900; | |
| letter-spacing: -0.06em; | |
| color: #1e293b; | |
| margin: 0 0 6px 0; | |
| line-height: 1; | |
| } | |
| .hero-tagline { | |
| font-size: 0.65rem; | |
| color: #ff6b35; /* Brand accent color */ | |
| text-transform: uppercase; | |
| letter-spacing: 0.4em; | |
| font-weight: 800; | |
| margin: 0 0 24px 0; | |
| font-family: monospace; | |
| } | |
| .hero-desc { | |
| font-size: 0.88rem; | |
| color: #64748b; | |
| line-height: 1.6; | |
| margin: 0 0 32px 0; | |
| max-width: 380px; | |
| } | |
| /* ββ Dynamic Badges (Features List) ββ */ | |
| .splash-features { | |
| display: flex; | |
| gap: 10px; | |
| margin-bottom: 36px; | |
| justify-content: center; | |
| flex-wrap: wrap; | |
| } | |
| .splash-feature { | |
| background: rgba(255, 255, 255, 0.65); | |
| border: 1px solid rgba(255, 255, 255, 0.9); | |
| padding: 6px 12px; | |
| border-radius: 100px; | |
| font-size: 0.68rem; | |
| font-weight: 800; | |
| color: #334155; | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); | |
| text-transform: uppercase; | |
| letter-spacing: 0.03em; | |
| } | |
| .sf-dot { | |
| width: 5px; | |
| height: 5px; | |
| border-radius: 50%; | |
| background-color: #ff6b35; | |
| box-shadow: 0 0 6px #ff6b35; | |
| } | |
| /* ββ Premium Orange Action Buttons ββ */ | |
| .enter-btn, .name-submit { | |
| background: #ff6b35 ; | |
| color: #fff ; | |
| padding: 12px 32px ; | |
| border-radius: 100px ; | |
| border: none ; | |
| font-size: 0.85rem ; | |
| font-weight: 700 ; | |
| letter-spacing: 0.05em ; | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| cursor: pointer; | |
| transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) ; | |
| box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25) ; | |
| } | |
| .enter-btn:hover, .name-submit:hover:not(:disabled) { | |
| transform: translateY(-2px) ; | |
| background: #e0531f ; | |
| box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4) ; | |
| } | |
| .enter-btn:active, .name-submit:active:not(:disabled) { | |
| transform: translateY(0) ; | |
| } | |
| .splash-hint { | |
| font-size: 0.68rem; | |
| color: #94a3b8; | |
| margin-top: 16px; | |
| font-weight: 500; | |
| } | |
| /* ββ Name Form Stage ββ */ | |
| .name-orb { | |
| width: 60px; | |
| height: 60px; | |
| margin-bottom: 24px; | |
| position: relative; | |
| } | |
| .name-orb .hero-core { | |
| background: #ff6b35; | |
| box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); | |
| } | |
| .name-heading { | |
| font-size: 2rem; | |
| font-weight: 900; | |
| color: #1e293b; | |
| margin: 0 0 6px 0; | |
| letter-spacing: -0.03em; | |
| } | |
| .name-sub { | |
| font-size: 0.8rem; | |
| color: #64748b; | |
| line-height: 1.5; | |
| margin: 0 0 24px 0; | |
| max-width: 340px; | |
| } | |
| .name-form { | |
| width: 100%; | |
| } | |
| .name-input-wrap { | |
| position: relative; | |
| margin-bottom: 20px; | |
| } | |
| .name-input { | |
| width: 100%; | |
| background: rgba(255, 255, 255, 0.8) ; | |
| border: 1px solid rgba(0, 0, 0, 0.08) ; | |
| border-radius: 16px ; | |
| padding: 16px 20px ; | |
| font-size: 1rem ; | |
| font-weight: 600 ; | |
| color: #1e293b ; | |
| outline: none ; | |
| text-align: center ; | |
| transition: all 0.3s ease ; | |
| box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01) ; | |
| } | |
| .name-input:focus { | |
| border-color: #ff6b35 ; | |
| background: #fff ; | |
| box-shadow: 0 0 16px rgba(255, 107, 53, 0.12) ; | |
| } | |
| .name-submit { | |
| width: 100%; | |
| justify-content: center; | |
| } | |
| .name-submit:disabled { | |
| opacity: 0.5; | |
| cursor: not-allowed; | |
| transform: none ; | |
| box-shadow: none ; | |
| } | |
| .back-link { | |
| background: none; | |
| border: none; | |
| color: #64748b; | |
| font-size: 0.75rem; | |
| font-weight: 700; | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| margin-top: 24px; | |
| cursor: pointer; | |
| transition: color 0.2s; | |
| } | |
| .back-link:hover { | |
| color: #ff6b35; | |
| } | |
| .auth-error { | |
| color: #ef4444; | |
| font-size: 0.72rem; | |
| font-weight: 600; | |
| margin: -10px 0 16px 0; | |
| text-align: center; | |
| } | |
| /* ββ Footer ββ */ | |
| .landing-footer { | |
| position: absolute; | |
| bottom: 30px; | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| color: #94a3b8; | |
| font-family: monospace; | |
| font-size: 0.65rem; | |
| font-weight: 600; | |
| letter-spacing: 0.05em; | |
| text-transform: uppercase; | |
| } | |
| .footer-dot { | |
| width: 4px; | |
| height: 4px; | |
| border-radius: 50%; | |
| background-color: #ff6b35; | |
| } | |
| /* ββ Page Transitions ββ */ | |
| .transitioning { | |
| opacity: 0.8; | |
| filter: blur(10px); | |
| transition: all 0.5s ease-in-out; | |
| } | |
| /* ββ Mobile Responsive Overrides for iPhone 14 ββ */ | |
| @media (max-width: 480px) { | |
| .landing { | |
| align-items: flex-start ; | |
| padding: 30px 16px ; | |
| overflow-y: auto ; | |
| } | |
| .splash-content, .name-content { | |
| margin: 20px auto 60px auto ; | |
| padding: 36px 20px ; | |
| width: 100% ; | |
| max-width: 100% ; | |
| border-radius: 24px ; | |
| } | |
| .hero-orb { | |
| width: 60px ; | |
| height: 60px ; | |
| margin-bottom: 24px ; | |
| } | |
| .hero-title { | |
| font-size: 2.6rem ; | |
| } | |
| .hero-tagline { | |
| font-size: 0.58rem ; | |
| letter-spacing: 0.3em ; | |
| margin-bottom: 18px ; | |
| } | |
| .hero-desc { | |
| font-size: 0.8rem ; | |
| margin-bottom: 24px ; | |
| line-height: 1.5 ; | |
| } | |
| .splash-features { | |
| gap: 8px ; | |
| margin-bottom: 28px ; | |
| } | |
| .splash-feature { | |
| padding: 4px 10px ; | |
| font-size: 0.62rem ; | |
| } | |
| .enter-btn, .name-submit { | |
| padding: 10px 24px ; | |
| font-size: 0.8rem ; | |
| } | |
| .landing-footer { | |
| position: relative ; | |
| bottom: auto ; | |
| margin: 20px auto 40px auto ; | |
| justify-content: center ; | |
| } | |
| } | |