/* ===== RESET & BASE ===== */ *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg: #080810; --bg2: #0d0d1a; --bg3: #12121f; --surface: #16162a; --surface2: #1e1e35; --border: rgba(255,255,255,0.07); --border2: rgba(255,255,255,0.12); --text: #f0f0f8; --text2: #a0a0b8; --text3: #6a6a85; --accent: #8b5cf6; --accent2: #a78bfa; --pink: #ec4899; --teal: #2dd4bf; --orange: #f97316; --grad1: linear-gradient(135deg, #8b5cf6, #ec4899); --grad2: linear-gradient(135deg, #8b5cf6, #2dd4bf); --radius: 16px; --radius2: 24px; --shadow: 0 20px 60px rgba(0,0,0,0.5); --font-display: 'Syne', sans-serif; --font-body: 'Inter', sans-serif; } html { scroll-behavior: smooth; font-size: 16px; } body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; cursor: none; } a { text-decoration: none; color: inherit; } ul { list-style: none; } em { font-style: normal; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } /* ===== SCROLLBAR ===== */ ::-webkit-scrollbar { width: 4px; } ::-webkit-scrollbar-track { background: var(--bg); } ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; } /* ===== CURSOR ===== */ .cursor { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .15s, height .15s, background .15s; } .cursor-follower { width: 36px; height: 36px; border: 1.5px solid rgba(139,92,246,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform .12s ease, width .2s, height .2s; } body:hover .cursor { opacity: 1; } .cursor.hover { width: 20px; height: 20px; background: var(--pink); } .cursor-follower.hover { width: 56px; height: 56px; border-color: var(--pink); } /* ===== NAV ===== */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; gap: 2rem; padding: 1.25rem 4rem; transition: background .4s, backdrop-filter .4s, box-shadow .4s; } .nav.scrolled { background: rgba(8,8,16,0.85); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); } .nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-right: auto; } .dot { color: var(--accent); } .nav-links { display: flex; gap: 2.5rem; } .nav-links a { font-size: .9rem; font-weight: 500; color: var(--text2); letter-spacing: 0.02em; transition: color .2s; position: relative; } .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent2); transition: width .3s; } .nav-links a:hover { color: var(--text); } .nav-links a:hover::after { width: 100%; } .btn-nav { font-size: .85rem; font-weight: 600; letter-spacing: 0.04em; padding: .55rem 1.4rem; border: 1px solid var(--border2); border-radius: 100px; background: transparent; color: var(--text); transition: background .2s, border-color .2s, color .2s; } .btn-nav:hover { background: var(--accent); border-color: var(--accent); } .burger { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 5px; padding: 4px; } .burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; } /* ===== MOBILE MENU ===== */ .mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(8,8,16,0.97); backdrop-filter: blur(24px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; } .mobile-menu.open { opacity: 1; pointer-events: all; } .mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; } .mobile-menu a { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--text); } /* ===== HERO ===== */ .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 7rem 4rem 4rem; position: relative; overflow: hidden; } .hero-bg { position: absolute; inset: 0; pointer-events: none; } .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; animation: blobFloat 12s ease-in-out infinite; } .blob1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -200px; animation-delay: 0s; } .blob2 { width: 500px; height: 500px; background: var(--pink); bottom: -150px; right: 20%; animation-delay: -4s; } .blob3 { width: 400px; height: 400px; background: var(--teal); top: 40%; right: -100px; animation-delay: -8s; } @keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.97); } } .grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; } .hero-content { position: relative; z-index: 1; } .hero-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 500; letter-spacing: 0.05em; color: var(--text2); padding: .4rem 1rem; border: 1px solid var(--border2); border-radius: 100px; margin-bottom: 2rem; background: rgba(139,92,246,0.08); } .pulse { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; position: relative; } .pulse::after { content: ''; position: absolute; inset: -3px; background: rgba(74,222,128,0.4); border-radius: 50%; animation: pulseAnim 1.5s ease-in-out infinite; } @keyframes pulseAnim { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(1.8); } } .hero-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.5rem; } .hero-title .line { display: block; overflow: hidden; } .hero-title .line > * { display: inline-block; animation: slideUp .8s cubic-bezier(.23,1,.32,1) both; } .hero-title .line:nth-child(1) > * { animation-delay: .1s; } .hero-title .line:nth-child(2) > * { animation-delay: .2s; } .hero-title .line:nth-child(3) > * { animation-delay: .3s; } @keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .hero-sub { font-size: .95rem; color: var(--text2); letter-spacing: 0.03em; margin-bottom: 2.5rem; font-weight: 400; } .hero-cta { display: flex; gap: 1rem; align-items: center; margin-bottom: 3rem; flex-wrap: wrap; } .btn-primary { display: inline-flex; align-items: center; gap: .6rem; background: var(--grad1); color: #fff; font-size: .95rem; font-weight: 600; padding: .85rem 2rem; border-radius: 100px; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 30px rgba(139,92,246,0.4); } .btn-primary svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(139,92,246,0.6); } .btn-primary:hover svg { transform: translateX(4px); } .btn-ghost { font-size: .95rem; font-weight: 500; color: var(--text2); border-bottom: 1px solid var(--border2); padding-bottom: 2px; transition: color .2s, border-color .2s; } .btn-ghost:hover { color: var(--text); border-color: var(--text); } .hero-stats { display: flex; align-items: center; gap: 1.5rem; } .stat { display: flex; flex-direction: column; } .stat strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; line-height: 1; } .stat span { font-size: .75rem; color: var(--text3); letter-spacing: 0.05em; margin-top: .2rem; } .stat-divider { width: 1px; height: 36px; background: var(--border2); } /* HERO VISUAL */ .hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; } .hero-card { width: 100%; max-width: 480px; background: var(--surface); border: 1px solid var(--border2); border-radius: var(--radius2); padding: 2rem; box-shadow: var(--shadow), 0 0 0 1px var(--border); animation: heroCardFloat 6s ease-in-out infinite; } @keyframes heroCardFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(.5deg); } } .hc-inner { position: relative; } .hc-mockup { background: var(--bg2); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 1rem; } .hc-bar { width: 60px; height: 6px; background: var(--grad1); border-radius: 3px; margin-bottom: 1rem; } .hc-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem; } .hcb { border-radius: 8px; } .hcb1 { height: 80px; background: linear-gradient(135deg,#8b5cf6,#ec4899); grid-row: span 2; } .hcb2 { height: 36px; background: var(--surface2); } .hcb3 { height: 36px; background: var(--surface2); } .hcb4 { height: 36px; background: linear-gradient(135deg,#2dd4bf,#60a5fa); grid-column: span 2; } .hc-palette { display: flex; gap: .4rem; } .hc-palette span { width: 24px; height: 24px; border-radius: 6px; } .hc-floating { position: absolute; background: rgba(13,13,26,0.9); border: 1px solid var(--border2); border-radius: 100px; padding: .4rem 1rem; font-size: .75rem; font-weight: 600; color: var(--text2); white-space: nowrap; backdrop-filter: blur(10px); animation: floatTag 4s ease-in-out infinite; } .f1 { top: -16px; right: -20px; animation-delay: 0s; } .f2 { bottom: 20px; left: -30px; animation-delay: -1.5s; } .f3 { bottom: -16px; right: 10px; animation-delay: -3s; } @keyframes floatTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} } .scroll-indicator { position: absolute; bottom: 2rem; left: 4rem; display: flex; align-items: center; gap: .75rem; font-size: .75rem; color: var(--text3); letter-spacing: 0.1em; } .scroll-line { width: 40px; height: 1px; background: var(--border2); position: relative; overflow: hidden; } .scroll-dot { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--accent); animation: scrollAnim 2s ease-in-out infinite; } @keyframes scrollAnim { 0%{left:-100%} 100%{left:100%} } /* ===== MARQUEE ===== */ .marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 0; background: var(--bg2); } .marquee-track { display: flex; gap: 2rem; align-items: center; white-space: nowrap; animation: marqueeScroll 25s linear infinite; width: max-content; } .marquee-track span { font-family: var(--font-display); font-size: .9rem; font-weight: 600; color: var(--text2); letter-spacing: 0.08em; text-transform: uppercase; } .marquee-track .sep { color: var(--accent); font-size: .7rem; } @keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} } /* ===== SECTION COMMON ===== */ .section-header { text-align: center; margin-bottom: 4rem; } .section-tag { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent2); margin-bottom: .75rem; } .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; } /* ===== WORK ===== */ .work { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; } .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } .pcard-large { grid-column: span 2; } .project-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; cursor: none; } .project-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); border-color: var(--border2); } .pc-img { height: 280px; position: relative; overflow: hidden; transition: height .3s; } .pcard-large .pc-img { height: 360px; } .pc-img:hover { filter: brightness(1.05); } /* project mockups */ .pc-shapes { position: absolute; inset: 0; } .pcs { position: absolute; border-radius: 50%; } .pcs1 { width: 200px; height: 200px; background: rgba(255,255,255,0.06); top: -60px; right: -60px; } .pcs2 { width: 120px; height: 120px; background: rgba(255,255,255,0.04); bottom: 20px; left: 30px; } .pcs3 { width: 60px; height: 60px; background: rgba(255,255,255,0.08); top: 40%; right: 30%; } .pc-logo-mock { position: absolute; bottom: 2rem; left: 2rem; display: flex; align-items: center; gap: .75rem; } .plm-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.9); border-radius: 12px; } .plm-text { display: flex; flex-direction: column; gap: 4px; } .plm-text span { height: 8px; background: rgba(255,255,255,0.7); border-radius: 4px; } .plm-text span:first-child { width: 80px; } .plm-text span:last-child { width: 50px; } .pc-ui-mock { position: absolute; inset: 1.5rem; background: rgba(255,255,255,0.05); border-radius: 12px; padding: 1rem; } .pum-nav { display: flex; gap: .5rem; margin-bottom: .75rem; } .pum-nav span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); } .pum-hero { display: flex; gap: .5rem; margin-bottom: .5rem; } .pum-hero div:first-child { flex: 1; height: 60px; background: rgba(255,255,255,0.1); border-radius: 8px; } .pum-hero div:last-child { width: 60px; height: 60px; background: rgba(56,189,248,0.3); border-radius: 8px; } .pum-cards { display: flex; gap: .4rem; } .pum-cards span { flex: 1; height: 36px; background: rgba(255,255,255,0.07); border-radius: 6px; } .pc-motion-mock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; } .pmm-circle { width: 80px; height: 80px; border: 3px solid rgba(245,158,11,0.6); border-radius: 50%; animation: spinCircle 4s linear infinite; } @keyframes spinCircle { to{transform:rotate(360deg)} } .pmm-lines { display: flex; flex-direction: column; gap: 6px; } .pmm-lines span { height: 2px; background: rgba(245,158,11,0.4); border-radius: 1px; } .pmm-lines span:nth-child(1){width:60px;} .pmm-lines span:nth-child(2){width:40px;} .pmm-lines span:nth-child(3){width:80px;} .pmm-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 1.5rem; color: rgba(255,255,255,0.8); } .pc-print-mock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; } .ppm-book { display: flex; align-items: center; gap: .25rem; } .ppm-cover { width: 80px; height: 110px; background: rgba(255,255,255,0.15); border-radius: 4px 8px 8px 4px; padding: 1rem .75rem; display: flex; flex-direction: column; gap: 6px; } .ppm-cover span { height: 4px; background: rgba(255,255,255,0.5); border-radius: 2px; } .ppm-cover span:first-child{width:100%;} .ppm-cover span:last-child{width:60%;} .ppm-pages { display: flex; gap: 2px; } .ppm-pages span { width: 4px; height: 110px; background: rgba(255,255,255,0.08); border-radius: 1px; } .pc-pack-mock { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; gap: .75rem; padding-bottom: 2rem; } .ppack1,.ppack2,.ppack3 { width: 48px; border-radius: 8px 8px 4px 4px; background: rgba(255,255,255,0.15); } .ppack1{height:120px;} .ppack2{height:100px;} .ppack3{height:140px;} .pc-info { padding: 1.75rem; } .pc-cat { font-size: .72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent2); } .pc-info h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: .4rem 0 .6rem; } .pc-info p { font-size: .9rem; color: var(--text2); line-height: 1.6; margin-bottom: 1rem; } .pc-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--accent2); } .pc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; } .pc-link:hover svg { transform: translateX(4px); } /* ===== ABOUT ===== */ .about { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; } .av-frame { position: relative; width: 360px; } .av-photo { width: 360px; height: 420px; background: linear-gradient(135deg, var(--surface), var(--surface2)); border: 1px solid var(--border2); border-radius: var(--radius2); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; } .av-gradient { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(139,92,246,0.15), rgba(236,72,153,0.15)); } .av-initials { font-family: var(--font-display); font-size: 5rem; font-weight: 800; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 1; } .av-tag { position: absolute; background: rgba(13,13,26,0.95); border: 1px solid var(--border2); border-radius: 100px; padding: .5rem 1rem; font-size: .8rem; font-weight: 500; backdrop-filter: blur(10px); display: flex; align-items: center; gap: .4rem; } .at1 { top: -16px; right: -20px; } .at2 { bottom: 40px; left: -20px; } .av-badge { position: absolute; bottom: -16px; right: 20px; background: var(--grad1); color: white; padding: .5rem 1.25rem; border-radius: 100px; font-size: .8rem; font-weight: 600; } .about-content { } .about-content .section-tag { display: block; } .about-lead { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin: 1.5rem 0 1rem; } .about-body { font-size: .95rem; color: var(--text2); line-height: 1.8; margin-bottom: 2rem; } .about-skills { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; } .skill-tag { font-size: .8rem; font-weight: 500; padding: .35rem .85rem; border: 1px solid var(--border2); border-radius: 6px; color: var(--text2); transition: border-color .2s, color .2s; } .skill-tag:hover { border-color: var(--accent); color: var(--accent2); } .about-awards { display: flex; flex-direction: column; gap: 1rem; } .award { display: flex; align-items: center; gap: 1rem; } .award-icon { color: var(--accent2); font-size: 1rem; } .award strong { display: block; font-size: .9rem; font-weight: 600; } .award span { font-size: .8rem; color: var(--text3); } /* ===== SERVICES ===== */ .services { padding: 6rem 4rem; background: var(--bg2); } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1400px; margin: 0 auto; } .service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius2); padding: 2rem; transition: transform .3s, border-color .3s, box-shadow .3s; } .service-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 20px 60px rgba(0,0,0,0.3); } .sc-icon { font-size: 1.8rem; margin-bottom: 1.25rem; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; } .service-card p { font-size: .9rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.25rem; } .sc-tags { display: flex; flex-wrap: wrap; gap: .4rem; } .sc-tags span { font-size: .72rem; font-weight: 500; letter-spacing: 0.04em; padding: .2rem .65rem; border-radius: 4px; background: rgba(139,92,246,0.12); color: var(--accent2); } /* ===== PROCESS ===== */ .process { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; } .process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; } .process-step { position: relative; padding: 2rem; border-radius: var(--radius2); border: 1px solid var(--border); background: var(--surface); } .process-step::before { content: ''; position: absolute; top: 2rem; right: -1rem; width: 2rem; height: 1px; background: var(--border2); } .process-step:last-child::before { display: none; } .ps-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; opacity: 0.6; } .ps-content h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; } .ps-content p { font-size: .85rem; color: var(--text2); line-height: 1.7; } /* ===== TESTIMONIALS ===== */ .testimonials { padding: 6rem 4rem; background: var(--bg2); } .testi-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.5rem; max-width: 1400px; margin: 0 auto; } .testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius2); padding: 2rem; } .tc-featured { border-color: var(--border2); background: linear-gradient(135deg, var(--surface), rgba(139,92,246,0.05)); } .tq { font-size: 2.5rem; color: var(--accent); margin-bottom: .75rem; line-height: 1; } .testi-card p { font-size: .9rem; color: var(--text2); line-height: 1.8; margin-bottom: 1.5rem; } .tc-featured p { font-size: 1rem; color: var(--text); } .tc-author { display: flex; align-items: center; gap: .75rem; } .tca-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: white; } .tc-author strong { display: block; font-size: .9rem; font-weight: 600; } .tc-author span { font-size: .78rem; color: var(--text3); } /* ===== CONTACT ===== */ .contact { padding: 6rem 4rem; } .contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; } .contact-left .section-title { margin: .75rem 0 1rem; } .contact-left > p { font-size: .95rem; color: var(--text2); line-height: 1.7; margin-bottom: 2rem; } .contact-info { display: flex; flex-direction: column; gap: .75rem; } .ci-item { display: flex; align-items: center; gap: 1rem; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 10px; color: var(--text2); font-size: .9rem; transition: border-color .2s, color .2s; } .ci-item:hover { border-color: var(--border2); color: var(--text); } .ci-icon { font-size: 1rem; } .contact-form { display: flex; flex-direction: column; gap: 1.25rem; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; } .form-group { display: flex; flex-direction: column; gap: .5rem; } .form-group label { font-size: .8rem; font-weight: 500; color: var(--text3); letter-spacing: 0.05em; } .form-group input, .form-group select, .form-group textarea { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: .85rem 1rem; color: var(--text); font-family: var(--font-body); font-size: .9rem; transition: border-color .2s, box-shadow .2s; outline: none; resize: none; appearance: none; } .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); } .form-group select option { background: var(--surface); color: var(--text); } .btn-submit { display: inline-flex; align-items: center; gap: .6rem; background: var(--grad1); color: white; font-size: .95rem; font-weight: 600; font-family: var(--font-body); border: none; border-radius: 100px; padding: 1rem 2.5rem; cursor: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 30px rgba(139,92,246,0.4); align-self: flex-start; } .btn-submit svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; } .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(139,92,246,0.6); } /* ===== FOOTER ===== */ .footer { padding: 3rem 4rem 2rem; border-top: 1px solid var(--border); } .footer-inner { display: flex; align-items: flex-start; gap: 3rem; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; } .footer-brand { } .footer-brand p { font-size: .85rem; color: var(--text3); margin-top: .5rem; } .footer-links { display: flex; gap: 2rem; align-items: center; } .footer-links a { font-size: .9rem; color: var(--text2); transition: color .2s; } .footer-links a:hover { color: var(--text); } .footer-social { display: flex; gap: 1rem; } .footer-social a { width: 36px; height: 36px; border: 1px solid var(--border2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: var(--text2); transition: border-color .2s, color .2s, background .2s; } .footer-social a:hover { border-color: var(--accent); color: var(--accent2); background: rgba(139,92,246,0.1); } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text3); } /* ===== REVEAL ANIMATIONS ===== */ .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1); } .reveal.visible { opacity: 1; transform: translateY(0); } /* ===== RESPONSIVE ===== */ @media (max-width: 1100px) { .hero { grid-template-columns: 1fr; padding: 7rem 2.5rem 4rem; } .hero-visual { display: none; } .work { padding: 5rem 2.5rem; } .projects-grid { grid-template-columns: 1fr 1fr; } .pcard-large { grid-column: span 2; } .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2.5rem; } .av-frame { width: 100%; max-width: 320px; } .av-photo { width: 320px; } .services { padding: 5rem 2.5rem; } .services-grid { grid-template-columns: 1fr 1fr; } .process-steps { grid-template-columns: 1fr 1fr; } .process-step::before { display: none; } .testi-grid { grid-template-columns: 1fr; } .contact-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0; } .contact { padding: 5rem 2.5rem; } .nav { padding: 1.25rem 2.5rem; } } @media (max-width: 768px) { .nav-links, .btn-nav { display: none; } .burger { display: flex; } .projects-grid { grid-template-columns: 1fr; } .pcard-large { grid-column: span 1; } .services-grid { grid-template-columns: 1fr; } .process-steps { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .footer-inner { flex-direction: column; gap: 1.5rem; } .scroll-indicator { display: none; } }