:root { --primary-bg: #09090b; --nav-bg: rgba(18, 18, 22, 0.75); --card-bg: rgba(255, 255, 255, 0.02); --card-bg-hover: rgba(255, 255, 255, 0.05); --card-border: rgba(255, 255, 255, 0.06); --card-border-hover: rgba(255, 255, 255, 0.2); --text-light: #f4f4f5; --text-muted: #a1a1aa; --accent-color: #ffffff; --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); --mouse-x: 50%; --mouse-y: 50%; } * { margin: 0; padding: 0; box-sizing: border-box; outline: none; } html { scroll-behavior: smooth; scroll-padding-top: 40px; } body { font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--primary-bg); color: var(--text-light); line-height: 1.5; overflow-x: hidden; min-height: 100vh; position: relative; user-select: none; cursor: none; opacity: 0; transition: opacity 0.8s ease-out; } body.loaded { opacity: 1; } #preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary-bg); z-index: 20000; display: flex; align-items: center; justify-content: center; transition: opacity 1s ease, visibility 1s; } #preloader.fade-out { opacity: 0; visibility: hidden; } #loader-svg-container svg text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 56px; fill: none; stroke: #ffffff; stroke-width: 1.5px; letter-spacing: 4px; stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawText 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; } @keyframes drawText { 100% { stroke-dashoffset: 0; fill: rgba(255, 255, 255, 1); } } #cursor-dot, #cursor-outline { position: fixed; z-index: 10001; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); transition: transform 0.1s, opacity 0.3s, background-color 0.3s; display: none; } #cursor-dot { width: 6px; height: 6px; background-color: #ffffff; } #cursor-outline { width: 26px; height: 26px; border: 1px solid rgba(255, 255, 255, 0.35); } body.desktop-device #cursor-dot, body.desktop-device #cursor-outline { display: block; } body.desktop-device:has(a:hover, button:hover, .card:hover) #cursor-outline { transform: translate(-50%, -50%) scale(1.6); background-color: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.8); } #background-light-rig { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -2; background: radial-gradient(circle at 50% -20%, #18181b 0%, #09090b 80%); overflow: hidden; pointer-events: none; } #background-light-rig::before { content: ''; position: absolute; width: 120vw; height: 120vw; max-width: 800px; max-height: 800px; left: var(--mouse-x, 50%); top: var(--mouse-y, 50%); background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%); transform: translate(-50%, -50%); transition: left 0.6s, top 0.6s; } nav { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); height: 64px; background: var(--nav-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; align-items: center; gap: 12px; padding: 0 16px; z-index: 1000; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); animation: dockEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; } @keyframes dockEntrance { from { transform: translate(-50%, 100px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } } .app-nav { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255, 255, 255, 0.02); border-radius: 12px; color: var(--text-muted); text-decoration: none; font-size: 1.2rem; transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.03); position: relative; } .app-nav:hover { color: var(--text-light); background: rgba(255, 255, 255, 0.1); transform: translateY(-6px) scale(1.12); } .app-nav.active { color: #ffffff; background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); } main { padding-bottom: 120px; min-height: 100vh; } section { min-height: 70vh; padding: 120px 24px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); } section.is-visible { opacity: 1; transform: translateY(0); } .content-wrapper { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 2; } .section-header { text-align: left; margin-bottom: 60px; border-left: 1px solid rgba(255, 255, 255, 0.15); padding-left: 24px; } .section-title { font-size: 2.25rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); margin-bottom: 8px; } .section-subtitle { color: var(--text-muted); font-size: 1rem; font-weight: 400; letter-spacing: 1px; } #home { position: relative; display: flex; align-items: center; justify-content: center; } .hero-content { text-align: center; max-width: 800px; } .hero-title svg { width: 300px; height: 100px; filter: drop-shadow(0 4px 20px rgba(255,255,255,0.08)); } .hero-title text { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 70px; fill: url(#hero-gradient); letter-spacing: 6px; } .hero-subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.08); padding: 8px 18px; border-radius: 40px; display: inline-block; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); text-decoration: none; cursor: pointer; } .tagline { font-size: 1.25rem; color: var(--text-muted); max-width: 550px; margin: 0 auto 48px; line-height: 1.7; font-weight: 300; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; background: #ffffff; color: #000000; text-decoration: none; border-radius: 12px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); border: 1px solid transparent; cursor: pointer; margin: 8px; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05); } .btn:hover { background: #f4f4f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15); } .btn-outline { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.15); color: var(--text-light); } .btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); } .grid-container { display: grid; gap: 24px; margin-top: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .card { background: var(--card-bg); border-radius: 16px; border: 1px solid var(--card-border); transition: var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); backdrop-filter: blur(15px); padding: 24px; } .card:hover { background: var(--card-bg-hover); border-color: var(--card-border-hover); transform: translateY(-4px); } .card-header { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; } .mac-dot { width: 10px; height: 10px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.2); } .card:hover .mac-dot { background-color: rgba(255, 255, 255, 0.5); } .card-title { font-size: 1.25rem; font-weight: 700; color: var(--text-light); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; } .card-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; font-weight: 300; } .tech-tag { background: rgba(255, 255, 255, 0.04); color: var(--text-light); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; border: 1px solid rgba(255, 255, 255, 0.08); display: inline-block; margin-right: 6px; margin-top: 8px; } .timeline-container { position: relative; max-width: 800px; margin: 40px auto; padding-left: 32px; } .timeline-container::before { content: ''; position: absolute; left: 8px; top: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.2) 80%, transparent); } .timeline-item { padding: 24px; margin-bottom: 24px; background: var(--card-bg); border-radius: 12px; border: 1px solid var(--card-border); transition: var(--transition); position: relative; left: 16px; width: calc(100% - 16px); } .timeline-item::before { content: ''; position: absolute; left: -44px; top: 32px; width: 8px; height: 8px; background: #ffffff; border-radius: 50%; box-shadow: 0 0 10px rgba(255,255,255,0.4); } .timeline-item:hover { background: var(--card-bg-hover); border-color: rgba(255,255,255,0.3); transform: translateX(8px); } .timeline-date { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; } .timeline-title { color: var(--text-light); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 32px 0; } .stat-card { background: rgba(255,255,255,0.02); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--card-border); transition: var(--transition); } .stat-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); } .stat-value { font-size: 2rem; font-weight: 800; color: var(--text-light); display: block; } .stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; } .contact-form-container { max-width: 600px; margin: 0 auto; padding: 40px; background: var(--card-bg); border-radius: 20px; border: 1px solid var(--card-border); backdrop-filter: blur(20px); } .form-group { position: relative; margin-bottom: 20px; } .form-input { width: 100%; padding: 16px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--card-border); border-radius: 10px; color: var(--text-light); font-size: 0.95rem; font-family: inherit; transition: var(--transition); } .form-input:focus { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.4); } .form-label { position: absolute; top: 16px; left: 16px; color: var(--text-muted); pointer-events: none; transition: var(--transition); font-size: 0.95rem; } .form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label { top: -10px; left: 10px; font-size: 0.75rem; background: var(--primary-bg); padding: 0 6px; color: #ffffff; font-weight: 600; } .hidden { display: none !important; } .fade-in-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(20px); } @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } .social-links { display: flex; justify-content: center; gap: 16px; margin-top: 32px; } .social-link { width: 48px; height: 48px; border-radius: 12px; background: rgba(255, 255, 255, 0.03); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: var(--transition); border: 1px solid var(--card-border); font-size: 1.2rem; } .social-link:hover { background: #ffffff; color: #000000; transform: translateY(-4px); } #notification-area { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; } .toast { background: rgba(20, 20, 25, 0.95); color: #fff; padding: 16px 24px; border-radius: 12px; border-left: 4px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 12px; font-size: 0.9rem; backdrop-filter: blur(10px); animation: slideIn 0.3s ease-out; max-width: 300px; } @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } } @media (max-width: 768px) { body { cursor: auto; } #cursor-dot, #cursor-outline { display: none !important; } .hero-title svg { width: 240px; height: 80px; } .hero-title text { font-size: 56px; } section { padding: 80px 16px; } nav { width: 90%; height: 56px; bottom: 16px; } .app-nav { width: 36px; height: 36px; font-size: 1rem; } #notification-area { right: 50%; transform: translateX(50%); width: 90%; top: auto; bottom: 100px; } }
