Spaces:
Running
Running
| <html lang="en" data-theme="light"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Phoenix Studio | Creative Digital Experiences</title> | |
| <!-- Google Fonts --> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet"> | |
| <!-- Font Awesome --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> | |
| <!-- GSAP --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script> | |
| <style> | |
| /* βββ CSS Custom Properties (Theme Tokens) βββ */ | |
| :root { | |
| --font-display: 'Outfit', sans-serif; | |
| --font-body: 'Plus Jakarta Sans', sans-serif; | |
| --font-mono: 'Space Grotesk', monospace; | |
| /* Base Colors */ | |
| --rose: #e85a6e; | |
| --rose-soft: rgba(232, 90, 110, 0.12); | |
| --amber: #f2a64a; | |
| --amber-soft: rgba(242, 166, 74, 0.12); | |
| --teal: #3dbda2; | |
| --teal-soft: rgba(61, 189, 162, 0.12); | |
| --violet: #8b5cf6; | |
| --violet-soft: rgba(139, 92, 246, 0.12); | |
| /* Light theme */ | |
| --bg-primary: #faf9f7; | |
| --bg-secondary: #f0efed; | |
| --bg-card: #ffffff; | |
| --bg-elevated: #ffffff; | |
| --text-primary: #1c1917; | |
| --text-secondary: #78716c; | |
| --text-tertiary: #a8a29e; | |
| --border: rgba(28, 25, 23, 0.08); | |
| --border-strong: rgba(28, 25, 23, 0.14); | |
| --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03); | |
| --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.03); | |
| --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.03); | |
| --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.07), 0 8px 10px -6px rgba(0,0,0,0.03); | |
| --glow-rose: rgba(232, 90, 110, 0.25); | |
| --glow-amber: rgba(242, 166, 74, 0.25); | |
| /* Transitions */ | |
| --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1); | |
| --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1); | |
| --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1); | |
| --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); | |
| } | |
| [data-theme="dark"] { | |
| --bg-primary: #0c0a09; | |
| --bg-secondary: #161412; | |
| --bg-card: #1c1917; | |
| --bg-elevated: #23201d; | |
| --text-primary: #fafaf9; | |
| --text-secondary: #a8a29e; | |
| --text-tertiary: #78716c; | |
| --border: rgba(250, 250, 249, 0.07); | |
| --border-strong: rgba(250, 250, 249, 0.12); | |
| --shadow-sm: 0 1px 2px rgba(0,0,0,0.2); | |
| --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.25); | |
| --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.3); | |
| --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.35); | |
| --glow-rose: rgba(232, 90, 110, 0.2); | |
| --glow-amber: rgba(242, 166, 74, 0.2); | |
| } | |
| /* βββ Reset & Base βββ */ | |
| *, *::before, *::after { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| body { | |
| font-family: var(--font-body); | |
| background: var(--bg-primary); | |
| color: var(--text-primary); | |
| min-height: 100vh; | |
| overflow-x: hidden; | |
| transition: background var(--transition-slow), color var(--transition-slow); | |
| line-height: 1.65; | |
| } | |
| ::selection { | |
| background: var(--rose-soft); | |
| color: var(--rose); | |
| } | |
| /* βββ Scrollbar βββ */ | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: transparent; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: var(--border-strong); | |
| border-radius: 3px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: var(--text-tertiary); | |
| } | |
| /* βββ Navigation βββ */ | |
| .nav-bar { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| z-index: 1000; | |
| padding: 0 24px; | |
| transition: all var(--transition-slow); | |
| opacity: 0; | |
| transform: translateY(-20px); | |
| } | |
| .nav-bar.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .nav-bar.solid { | |
| background: color-mix(in srgb, var(--bg-primary) 88%, transparent); | |
| backdrop-filter: blur(24px) saturate(1.5); | |
| -webkit-backdrop-filter: blur(24px) saturate(1.5); | |
| border-bottom: 1px solid var(--border); | |
| } | |
| .nav-inner { | |
| max-width: 1320px; | |
| margin: 0 auto; | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| height: 72px; | |
| } | |
| .nav-logo { | |
| font-family: var(--font-display); | |
| font-size: 1.35rem; | |
| font-weight: 800; | |
| color: var(--text-primary); | |
| text-decoration: none; | |
| letter-spacing: -0.5px; | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| } | |
| .nav-logo-mark { | |
| width: 36px; | |
| height: 36px; | |
| border-radius: 10px; | |
| background: linear-gradient(135deg, var(--rose), var(--amber)); | |
| display: grid; | |
| place-items: center; | |
| color: #fff; | |
| font-size: 0.85rem; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .nav-logo-mark::after { | |
| content: ''; | |
| position: absolute; | |
| inset: 0; | |
| background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.2)); | |
| } | |
| .nav-links { | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| } | |
| .nav-link { | |
| font-family: var(--font-body); | |
| font-size: 0.85rem; | |
| font-weight: 500; | |
| color: var(--text-secondary); | |
| text-decoration: none; | |
| padding: 8px 16px; | |
| border-radius: 8px; | |
| transition: all var(--transition-fast); | |
| position: relative; | |
| } | |
| .nav-link:hover { | |
| color: var(--text-primary); | |
| background: var(--bg-secondary); | |
| } | |
| .nav-link.active { | |
| color: var(--text-primary); | |
| background: var(--rose-soft); | |
| } | |
| .nav-actions { | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| } | |
| .theme-btn, .mobile-toggle { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 10px; | |
| border: 1px solid var(--border); | |
| background: var(--bg-card); | |
| color: var(--text-secondary); | |
| cursor: pointer; | |
| display: grid; | |
| place-items: center; | |
| transition: all var(--transition-fast); | |
| font-size: 1rem; | |
| } | |
| .theme-btn:hover, .mobile-toggle:hover { | |
| color: var(--text-primary); | |
| border-color: var(--border-strong); | |
| box-shadow: var(--shadow-md); | |
| transform: translateY(-1px); | |
| } | |
| .mobile-toggle { | |
| display: none; | |
| } | |
| @media (max-width: 768px) { | |
| .nav-links { | |
| display: none; | |
| position: absolute; | |
| top: 100%; | |
| left: 0; | |
| right: 0; | |
| background: color-mix(in srgb, var(--bg-primary) 95%, transparent); | |
| backdrop-filter: blur(20px); | |
| padding: 16px 24px; | |
| flex-direction: column; | |
| gap: 4px; | |
| border-bottom: 1px solid var(--border); | |
| } | |
| .nav-links.open { | |
| display: flex; | |
| } | |
| .mobile-toggle { | |
| display: grid; | |
| } | |
| } | |
| /* βββ Hero βββ */ | |
| .hero { | |
| position: relative; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| text-align: center; | |
| padding: 140px 24px 80px; | |
| overflow: hidden; | |
| } | |
| .hero-canvas { | |
| position: absolute; | |
| inset: 0; | |
| z-index: 0; | |
| pointer-events: none; | |
| } | |
| .hero-bg-orb { | |
| position: absolute; | |
| border-radius: 50%; | |
| filter: blur(80px); | |
| opacity: 0.4; | |
| pointer-events: none; | |
| } | |
| .hero-bg-orb.orb-1 { | |
| width: 600px; | |
| height: 600px; | |
| background: var(--rose); | |
| top: -10%; | |
| left: -10%; | |
| animation: orbFloat 12s ease-in-out infinite; | |
| } | |
| .hero-bg-orb.orb-2 { | |
| width: 500px; | |
| height: 500px; | |
| background: var(--amber); | |
| bottom: -10%; | |
| right: -5%; | |
| animation: orbFloat 14s ease-in-out infinite reverse; | |
| } | |
| .hero-bg-orb.orb-3 { | |
| width: 300px; | |
| height: 300px; | |
| background: var(--teal); | |
| top: 40%; | |
| right: 20%; | |
| animation: orbFloat 10s ease-in-out infinite; | |
| animation-delay: -5s; | |
| } | |
| @keyframes orbFloat { | |
| 0%, 100% { transform: translate(0, 0) scale(1); } | |
| 33% { transform: translate(30px, -30px) scale(1.05); } | |
| 66% { transform: translate(-20px, 20px) scale(0.95); } | |
| } | |
| .hero-badge { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| font-family: var(--font-mono); | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| letter-spacing: 1px; | |
| text-transform: uppercase; | |
| color: var(--rose); | |
| background: var(--rose-soft); | |
| padding: 8px 18px; | |
| border-radius: 100px; | |
| margin-bottom: 32px; | |
| border: 1px solid color-mix(in srgb, var(--rose) 15%, transparent); | |
| z-index: 1; | |
| position: relative; | |
| } | |
| .hero-badge .dot { | |
| width: 6px; | |
| height: 6px; | |
| background: var(--rose); | |
| border-radius: 50%; | |
| animation: badgePulse 2s ease-in-out infinite; | |
| } | |
| @keyframes badgePulse { | |
| 0%, 100% { opacity: 1; transform: scale(1); } | |
| 50% { opacity: 0.5; transform: scale(1.3); } | |
| } | |
| .hero-title { | |
| font-family: var(--font-display); | |
| font-size: clamp(3rem, 8vw, 6.5rem); | |
| font-weight: 900; | |
| line-height: 1.05; | |
| letter-spacing: -3px; | |
| margin-bottom: 28px; | |
| z-index: 1; | |
| position: relative; | |
| } | |
| .hero-title .line { | |
| display: block; | |
| } | |
| .hero-title .highlight { | |
| background: linear-gradient(135deg, var(--rose), var(--amber)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .hero-subtitle { | |
| font-family: var(--font-body); | |
| font-size: clamp(1.05rem, 2.2vw, 1.35rem); | |
| font-weight: 400; | |
| color: var(--text-secondary); | |
| max-width: 640px; | |
| margin: 0 auto 48px; | |
| line-height: 1.7; | |
| z-index: 1; | |
| position: relative; | |
| } | |
| .hero-ctas { | |
| display: flex; | |
| gap: 16px; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| align-items: center; | |
| z-index: 1; | |
| position: relative; | |
| } | |
| .btn { | |
| font-family: var(--font-body); | |
| font-size: 0.9rem; | |
| font-weight: 600; | |
| padding: 14px 32px; | |
| border-radius: 12px; | |
| text-decoration: none; | |
| cursor: pointer; | |
| transition: all var(--transition-base); | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 10px; | |
| border: none; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .btn::after { | |
| content: ''; | |
| position: absolute; | |
| inset: 0; | |
| background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); | |
| opacity: 0; | |
| transition: opacity var(--transition-fast); | |
| } | |
| .btn:hover::after { | |
| opacity: 1; | |
| } | |
| .btn-primary { | |
| background: linear-gradient(135deg, var(--rose), var(--amber)); | |
| color: #fff; | |
| box-shadow: 0 4px 14px var(--glow-rose), 0 2px 4px rgba(0,0,0,0.08); | |
| } | |
| .btn-primary:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 8px 25px var(--glow-rose), 0 4px 8px rgba(0,0,0,0.1); | |
| } | |
| .btn-secondary { | |
| background: var(--bg-card); | |
| color: var(--text-primary); | |
| border: 1px solid var(--border-strong); | |
| box-shadow: var(--shadow-sm); | |
| } | |
| .btn-secondary:hover { | |
| border-color: var(--border-strong); | |
| box-shadow: var(--shadow-md); | |
| transform: translateY(-2px); | |
| background: var(--bg-elevated); | |
| } | |
| .btn-ghost { | |
| background: transparent; | |
| color: var(--text-secondary); | |
| border: 1px solid transparent; | |
| } | |
| .btn-ghost:hover { | |
| color: var(--text-primary); | |
| background: var(--bg-secondary); | |
| } | |
| .hero-stats { | |
| display: flex; | |
| gap: 64px; | |
| margin-top: 80px; | |
| z-index: 1; | |
| position: relative; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| } | |
| .hero-stat { | |
| text-align: center; | |
| } | |
| .hero-stat-number { | |
| font-family: var(--font-display); | |
| font-size: 2.5rem; | |
| font-weight: 800; | |
| color: var(--text-primary); | |
| line-height: 1; | |
| display: flex; | |
| align-items: flex-start; | |
| justify-content: center; | |
| gap: 2px; | |
| } | |
| .hero-stat-number .suffix { | |
| font-size: 1.2rem; | |
| font-weight: 600; | |
| color: var(--rose); | |
| margin-top: 2px; | |
| } | |
| .hero-stat-label { | |
| font-size: 0.8rem; | |
| color: var(--text-tertiary); | |
| margin-top: 8px; | |
| font-weight: 500; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| } | |
| .hero-scroll { | |
| position: absolute; | |
| bottom: 32px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| z-index: 1; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 8px; | |
| color: var(--text-tertiary); | |
| font-size: 0.7rem; | |
| font-family: var(--font-mono); | |
| text-transform: uppercase; | |
| letter-spacing: 2px; | |
| text-decoration: none; | |
| transition: color var(--transition-fast); | |
| } | |
| .hero-scroll:hover { | |
| color: var(--text-secondary); | |
| } | |
| .hero-scroll-line { | |
| width: 1px; | |
| height: 40px; | |
| background: linear-gradient(to bottom, var(--text-tertiary), transparent); | |
| animation: scrollPulse 2s ease-in-out infinite; | |
| } | |
| @keyframes scrollPulse { | |
| 0%, 100% { opacity: 1; transform: scaleY(1); } | |
| 50% { opacity: 0.5; transform: scaleY(0.7); } | |
| } | |
| /* βββ Section Base βββ */ | |
| .section { | |
| padding: 120px 24px; | |
| position: relative; | |
| } | |
| .section-inner { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| .section-header { | |
| margin-bottom: 72px; | |
| position: relative; | |
| } | |
| .section-overline { | |
| font-family: var(--font-mono); | |
| font-size: 0.75rem; | |
| font-weight: 600; | |
| letter-spacing: 2px; | |
| text-transform: uppercase; | |
| color: var(--rose); | |
| margin-bottom: 16px; | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| } | |
| .section-overline::after { | |
| content: ''; | |
| display: block; | |
| width: 48px; | |
| height: 1px; | |
| background: var(--rose); | |
| opacity: 0.4; | |
| } | |
| .section-title { | |
| font-family: var(--font-display); | |
| font-size: clamp(2rem, 5vw, 3.5rem); | |
| font-weight: 800; | |
| line-height: 1.1; | |
| letter-spacing: -1.5px; | |
| color: var(--text-primary); | |
| max-width: 700px; | |
| } | |
| .section-title span { | |
| background: linear-gradient(135deg, var(--rose), var(--amber)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .section-desc { | |
| font-size: 1.1rem; | |
| color: var(--text-secondary); | |
| margin-top: 16px; | |
| max-width: 540px; | |
| line-height: 1.7; | |
| } | |
| /* βββ Features βββ */ | |
| .features-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); | |
| gap: 24px; | |
| } | |
| .feature-card { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: 20px; | |
| padding: 40px; | |
| transition: all var(--transition-slow); | |
| position: relative; | |
| overflow: hidden; | |
| cursor: default; | |
| } | |
| .feature-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 3px; | |
| background: linear-gradient(90deg, var(--rose), var(--amber)); | |
| transform: scaleX(0); | |
| transition: transform var(--transition-slow); | |
| transform-origin: left; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-6px); | |
| box-shadow: var(--shadow-xl); | |
| border-color: var(--border-strong); | |
| } | |
| .feature-card:hover::before { | |
| transform: scaleX(1); | |
| } | |
| .feature-icon-wrap { | |
| width: 56px; | |
| height: 56px; | |
| border-radius: 16px; | |
| display: grid; | |
| place-items: center; | |
| margin-bottom: 24px; | |
| position: relative; | |
| font-size: 1.3rem; | |
| } | |
| .feature-icon-wrap.rose { | |
| background: var(--rose-soft); | |
| color: var(--rose); | |
| } | |
| .feature-icon-wrap.amber { | |
| background: var(--amber-soft); | |
| color: var(--amber); | |
| } | |
| .feature-icon-wrap.teal { | |
| background: var(--teal-soft); | |
| color: var(--teal); | |
| } | |
| .feature-icon-wrap.violet { | |
| background: var(--violet-soft); | |
| color: var(--violet); | |
| } | |
| .feature-title { | |
| font-family: var(--font-display); | |
| font-size: 1.3rem; | |
| font-weight: 700; | |
| margin-bottom: 12px; | |
| letter-spacing: -0.3px; | |
| } | |
| .feature-desc { | |
| font-size: 0.95rem; | |
| color: var(--text-secondary); | |
| line-height: 1.7; | |
| margin-bottom: 20px; | |
| } | |
| .feature-tags { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| } | |
| .feature-tag { | |
| font-family: var(--font-mono); | |
| font-size: 0.7rem; | |
| font-weight: 500; | |
| padding: 4px 12px; | |
| border-radius: 6px; | |
| background: var(--bg-secondary); | |
| color: var(--text-tertiary); | |
| letter-spacing: 0.5px; | |
| } | |
| /* βββ Showcase βββ */ | |
| .showcase { | |
| padding: 120px 24px; | |
| overflow: hidden; | |
| } | |
| .showcase-marquee { | |
| display: flex; | |
| gap: 24px; | |
| animation: marqueeScroll 35s linear infinite; | |
| width: max-content; | |
| } | |
| .showcase-marquee:hover { | |
| animation-play-state: paused; | |
| } | |
| @keyframes marqueeScroll { | |
| 0% { transform: translateX(0); } | |
| 100% { transform: translateX(-50%); } | |
| } | |
| .showcase-card { | |
| flex-shrink: 0; | |
| width: 380px; | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: 20px; | |
| overflow: hidden; | |
| transition: all var(--transition-slow); | |
| position: relative; | |
| } | |
| .showcase-card:hover { | |
| transform: translateY(-8px) scale(1.02); | |
| box-shadow: var(--shadow-xl); | |
| border-color: var(--border-strong); | |
| } | |
| .showcase-card-img { | |
| height: 240px; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .showcase-card-img canvas { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| .showcase-card-overlay { | |
| position: absolute; | |
| inset: 0; | |
| background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); | |
| display: flex; | |
| align-items: flex-end; | |
| padding: 24px; | |
| opacity: 0; | |
| transition: opacity var(--transition-base); | |
| } | |
| .showcase-card:hover .showcase-card-overlay { | |
| opacity: 1; | |
| } | |
| .showcase-card-overlay-text { | |
| color: #fff; | |
| font-family: var(--font-display); | |
| font-weight: 700; | |
| font-size: 1.1rem; | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| transform: translateY(10px); | |
| transition: transform var(--transition-base); | |
| } | |
| .showcase-card:hover .showcase-card-overlay-text { | |
| transform: translateY(0); | |
| } | |
| .showcase-card-body { | |
| padding: 28px; | |
| } | |
| .showcase-card-title { | |
| font-family: var(--font-display); | |
| font-size: 1.15rem; | |
| font-weight: 700; | |
| margin-bottom: 6px; | |
| letter-spacing: -0.3px; | |
| } | |
| .showcase-card-type { | |
| font-size: 0.8rem; | |
| color: var(--text-tertiary); | |
| font-weight: 500; | |
| } | |
| /* βββ About βββ */ | |
| .about-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 80px; | |
| align-items: center; | |
| } | |
| @media (max-width: 768px) { | |
| .about-grid { | |
| grid-template-columns: 1fr; | |
| gap: 48px; | |
| } | |
| } | |
| .about-visual { | |
| position: relative; | |
| } | |
| .about-visual-main { | |
| width: 100%; | |
| aspect-ratio: 4/5; | |
| border-radius: 24px; | |
| object-fit: cover; | |
| box-shadow: var(--shadow-xl); | |
| position: relative; | |
| z-index: 1; | |
| background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card)); | |
| } | |
| .about-visual-accent { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| top: 20px; | |
| left: 20px; | |
| border-radius: 24px; | |
| border: 2px solid var(--rose); | |
| opacity: 0.3; | |
| z-index: 0; | |
| } | |
| .about-visual-floater { | |
| position: absolute; | |
| bottom: -24px; | |
| right: -24px; | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: 16px; | |
| padding: 20px 24px; | |
| box-shadow: var(--shadow-lg); | |
| z-index: 2; | |
| min-width: 200px; | |
| } | |
| .about-floater-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.7rem; | |
| color: var(--text-tertiary); | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| margin-bottom: 8px; | |
| } | |
| .about-floater-value { | |
| font-family: var(--font-display); | |
| font-size: 1.8rem; | |
| font-weight: 800; | |
| background: linear-gradient(135deg, var(--rose), var(--amber)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .about-stats-grid { | |
| display: grid; | |
| grid-template-columns: repeat(2, 1fr); | |
| gap: 20px; | |
| margin-top: 40px; | |
| } | |
| .about-stat-card { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: 16px; | |
| padding: 24px; | |
| transition: all var(--transition-base); | |
| } | |
| .about-stat-card:hover { | |
| border-color: var(--border-strong); | |
| box-shadow: var(--shadow-md); | |
| transform: translateY(-2px); | |
| } | |
| .about-stat-value { | |
| font-family: var(--font-display); | |
| font-size: 2rem; | |
| font-weight: 800; | |
| color: var(--text-primary); | |
| line-height: 1; | |
| margin-bottom: 6px; | |
| } | |
| .about-stat-label { | |
| font-size: 0.8rem; | |
| color: var(--text-tertiary); | |
| font-weight: 500; | |
| } | |
| .skill-bar-row { | |
| margin-top: 8px; | |
| } | |
| .skill-bar-top { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| margin-bottom: 8px; | |
| } | |
| .skill-bar-name { | |
| font-size: 0.9rem; | |
| font-weight: 600; | |
| color: var(--text-primary); | |
| } | |
| .skill-bar-pct { | |
| font-family: var(--font-mono); | |
| font-size: 0.75rem; | |
| color: var(--text-tertiary); | |
| font-weight: 600; | |
| } | |
| .skill-bar-track { | |
| width: 100%; | |
| height: 6px; | |
| background: var(--bg-secondary); | |
| border-radius: 3px; | |
| overflow: hidden; | |
| } | |
| .skill-bar-fill { | |
| height: 100%; | |
| border-radius: 3px; | |
| background: linear-gradient(90deg, var(--rose), var(--amber)); | |
| width: 0%; | |
| transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1); | |
| } | |
| /* βββ Testimonials βββ */ | |
| .testimonials-track { | |
| display: flex; | |
| gap: 24px; | |
| overflow-x: auto; | |
| scroll-snap-type: x mandatory; | |
| scroll-behavior: smooth; | |
| padding-bottom: 16px; | |
| -webkit-overflow-scrolling: touch; | |
| scrollbar-width: none; | |
| } | |
| .testimonials-track::-webkit-scrollbar { | |
| display: none; | |
| } | |
| .testimonial-card { | |
| flex: 0 0 420px; | |
| scroll-snap-align: start; | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: 20px; | |
| padding: 36px; | |
| position: relative; | |
| transition: all var(--transition-base); | |
| } | |
| .testimonial-card:hover { | |
| box-shadow: var(--shadow-lg); | |
| border-color: var(--border-strong); | |
| } | |
| .testimonial-quote-icon { | |
| font-size: 3rem; | |
| color: var(--rose-soft); | |
| line-height: 1; | |
| margin-bottom: 8px; | |
| } | |
| .testimonial-text { | |
| font-size: 1.05rem; | |
| color: var(--text-secondary); | |
| line-height: 1.8; | |
| font-style: italic; | |
| margin-bottom: 28px; | |
| } | |
| .testimonial-author { | |
| display: flex; | |
| align-items: center; | |
| gap: 14px; | |
| } | |
| .testimonial-avatar { | |
| width: 48px; | |
| height: 48px; | |
| border-radius: 12px; | |
| object-fit: cover; | |
| background: linear-gradient(135deg, var(--rose-soft), var(--amber-soft)); | |
| display: grid; | |
| place-items: center; | |
| font-family: var(--font-display); | |
| font-weight: 700; | |
| font-size: 1.1rem; | |
| color: var(--rose); | |
| flex-shrink: 0; | |
| } | |
| .testimonial-name { | |
| font-family: var(--font-display); | |
| font-weight: 700; | |
| font-size: 0.95rem; | |
| color: var(--text-primary); | |
| } | |
| .testimonial-role { | |
| font-size: 0.8rem; | |
| color: var(--text-tertiary); | |
| margin-top: 2px; | |
| } | |
| .testimonial-nav { | |
| display: flex; | |
| justify-content: center; | |
| gap: 12px; | |
| margin-top: 40px; | |
| } | |
| .testimonial-dot { | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background: var(--border-strong); | |
| border: none; | |
| cursor: pointer; | |
| transition: all var(--transition-base); | |
| } | |
| .testimonial-dot.active { | |
| background: var(--rose); | |
| width: 28px; | |
| border-radius: 4px; | |
| } | |
| /* βββ CTA βββ */ | |
| .cta-section { | |
| padding: 120px 24px; | |
| } | |
| .cta-box { | |
| max-width: 1100px; | |
| margin: 0 auto; | |
| background: linear-gradient(135deg, var(--rose), var(--amber)); | |
| border-radius: 32px; | |
| padding: 80px 48px; | |
| text-align: center; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .cta-box::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%); | |
| } | |
| .cta-title { | |
| font-family: var(--font-display); | |
| font-size: clamp(2rem, 5vw, 3.2rem); | |
| font-weight: 900; | |
| color: #fff; | |
| margin-bottom: 16px; | |
| position: relative; | |
| letter-spacing: -1px; | |
| } | |
| .cta-desc { | |
| font-size: 1.15rem; | |
| color: rgba(255,255,255,0.85); | |
| margin-bottom: 40px; | |
| max-width: 520px; | |
| margin-left: auto; | |
| margin-right: auto; | |
| position: relative; | |
| line-height: 1.7; | |
| } | |
| .cta-btn { | |
| background: #fff; | |
| color: var(--rose); | |
| font-family: var(--font-body); | |
| font-size: 0.95rem; | |
| font-weight: 700; | |
| padding: 16px 40px; | |
| border-radius: 14px; | |
| text-decoration: none; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 10px; | |
| transition: all var(--transition-base); | |
| position: relative; | |
| box-shadow: 0 4px 20px rgba(0,0,0,0.15); | |
| } | |
| .cta-btn:hover { | |
| transform: translateY(-3px); | |
| box-shadow: 0 8px 30px rgba(0,0,0,0.2); | |
| } | |
| /* βββ Footer βββ */ | |
| .footer { | |
| border-top: 1px solid var(--border); | |
| padding: 80px 24px 40px; | |
| background: var(--bg-secondary); | |
| } | |
| .footer-grid { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: 2fr 1fr 1fr 1fr; | |
| gap: 48px; | |
| margin-bottom: 64px; | |
| } | |
| @media (max-width: 768px) { | |
| .footer-grid { | |
| grid-template-columns: 1fr 1fr; | |
| gap: 40px; | |
| } | |
| } | |
| @media (max-width: 480px) { | |
| .footer-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| .footer-brand { | |
| font-family: var(--font-display); | |
| font-size: 1.5rem; | |
| font-weight: 800; | |
| color: var(--text-primary); | |
| margin-bottom: 16px; | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| } | |
| .footer-desc { | |
| color: var(--text-secondary); | |
| font-size: 0.9rem; | |
| line-height: 1.7; | |
| margin-bottom: 24px; | |
| } | |
| .footer-socials { | |
| display: flex; | |
| gap: 10px; | |
| } | |
| .footer-social { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 10px; | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| display: grid; | |
| place-items: center; | |
| color: var(--text-secondary); | |
| text-decoration: none; | |
| transition: all var(--transition-fast); | |
| font-size: 0.9rem; | |
| } | |
| .footer-social:hover { | |
| background: var(--rose-soft); | |
| color: var(--rose); | |
| border-color: color-mix(in srgb, var(--rose) 20%, transparent); | |
| transform: translateY(-2px); | |
| } | |
| .footer-col-title { | |
| font-family: var(--font-display); | |
| font-size: 0.85rem; | |
| font-weight: 700; | |
| color: var(--text-primary); | |
| margin-bottom: 20px; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| } | |
| .footer-link { | |
| display: block; | |
| color: var(--text-secondary); | |
| text-decoration: none; | |
| font-size: 0.9rem; | |
| padding: 6px 0; | |
| transition: all var(--transition-fast); | |
| } | |
| .footer-link:hover { | |
| color: var(--rose); | |
| padding-left: 4px; | |
| } | |
| .footer-bottom { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| padding-top: 32px; | |
| border-top: 1px solid var(--border); | |
| } | |
| .footer-copyright { | |
| font-size: 0.8rem; | |
| color: var(--text-tertiary); | |
| } | |
| .footer-credits { | |
| font-size: 0.75rem; | |
| color: var(--text-tertiary); | |
| } | |
| .footer-credits a { | |
| color: var(--rose); | |
| text-decoration: none; | |
| font-weight: 600; | |
| } | |
| .footer-credits a:hover { | |
| text-decoration: underline; | |
| } | |
| @media (max-width: 768px) { | |
| .footer-bottom { | |
| flex-direction: column; | |
| gap: 12px; | |
| text-align: center; | |
| } | |
| } | |
| /* βββ Reveal Animations βββ */ | |
| .reveal { | |
| opacity: 0; | |
| transform: translateY(40px); | |
| transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); | |
| } | |
| .reveal.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .reveal-delay-1 { transition-delay: 0.1s; } | |
| .reveal-delay-2 { transition-delay: 0.2s; } | |
| .reveal-delay-3 { transition-delay: 0.3s; } | |
| .reveal-delay-4 { transition-delay: 0.4s; } | |
| /* βββ Toast βββ */ | |
| .toast { | |
| position: fixed; | |
| bottom: 28px; | |
| right: 28px; | |
| background: var(--bg-card); | |
| color: var(--text-primary); | |
| padding: 16px 24px; | |
| border-radius: 14px; | |
| box-shadow: var(--shadow-xl); | |
| border: 1px solid var(--border); | |
| font-size: 0.9rem; | |
| font-weight: 500; | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| z-index: 9999; | |
| transform: translateY(100px); | |
| opacity: 0; | |
| transition: all var(--transition-bounce); | |
| } | |
| .toast.show { | |
| transform: translateY(0); | |
| opacity: 1; | |
| } | |
| .toast-icon { | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 8px; | |
| background: var(--teal-soft); | |
| color: var(--teal); | |
| display: grid; | |
| place-items: center; | |
| font-size: 0.8rem; | |
| flex-shrink: 0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Navigation --> | |
| <nav class="nav-bar" id="navbar"> | |
| <div class="nav-inner"> | |
| <a href="#" class="nav-logo"> | |
| <div class="nav-logo-mark"><i class="fa-solid fa-fire"></i></div> | |
| Phoenix | |
| </a> | |
| <div class="nav-links" id="navLinks"> | |
| <a href="#work" class="nav-link">Work</a> | |
| <a href="#services" class="nav-link">Services</a> | |
| <a href="#about" class="nav-link">About</a> | |
| <a href="#stories" class="nav-link">Stories</a> | |
| </div> | |
| <div class="nav-actions"> | |
| <button class="theme-btn" id="themeToggle" aria-label="Toggle theme"> | |
| <i class="fa-solid fa-moon"></i> | |
| </button> | |
| <button class="mobile-toggle" id="mobileToggle" aria-label="Toggle menu"> | |
| <i class="fa-solid fa-bars"></i> | |
| </button> |