.hero { position: relative; z-index: 1; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 0 8vw; padding-top: 6rem; }
.hero-eyebrow { font-size: .75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .8s .3s var(--ease) forwards; }
.hero-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(3.2rem, 9vw, 8rem); line-height: .95; letter-spacing: -.04em; opacity: 0; animation: fadeUp .9s .45s var(--ease) forwards; }
.hero-name .line2 { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.hero-desc { max-width: 480px; margin-top: 2rem; font-size: 1.05rem; font-weight: 300; line-height: 1.7; color: var(--muted); opacity: 0; animation: fadeUp .9s .65s var(--ease) forwards; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2.5rem; opacity: 0; animation: fadeUp .9s .8s var(--ease) forwards; }
.btn-primary { padding: .75rem 1.8rem; border-radius: 999px; background: var(--accent); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: .9rem; border: none; cursor: pointer; text-decoration: none; box-shadow: 0 0 28px var(--glow); transition: transform .2s var(--ease-back), box-shadow .2s; }
.btn-primary:hover { transform: scale(1.06); box-shadow: 0 0 44px var(--glow); }
.btn-outline { padding: .75rem 1.8rem; border-radius: 999px; background: transparent; color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: .9rem; border: 1px solid var(--border); cursor: pointer; text-decoration: none; transition: border-color .2s, background .2s, transform .2s var(--ease-back); }
.btn-outline:hover { border-color: var(--accent); background: var(--surface); transform: scale(1.04); }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 8vw; display: flex; flex-direction: row; align-items: center; gap: .6rem; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); opacity: 0; animation: fadeUp .9s 1.1s var(--ease) forwards; text-decoration: none; }
.scroll-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; animation: bounce 2s ease-in-out infinite; transition: border-color .2s, background .2s; }
.hero-scroll-hint:hover .scroll-arrow { border-color: var(--accent); background: rgba(124,106,255,.1); }
.scroll-arrow svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.hero-scroll-hint:hover { color: var(--accent); }
.hero-scroll-hint:hover .scroll-arrow svg { stroke: var(--accent); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.blob-1 { width: 600px; height: 600px; top: -100px; right: -80px; background: radial-gradient(circle, rgba(124,106,255,.18), transparent 70%); }
.blob-2 { width: 400px; height: 400px; top: 300px; left: -60px; background: radial-gradient(circle, rgba(255,106,106,.12), transparent 70%); }
[data-theme="light"] .blob-1 { background: radial-gradient(circle, rgba(92,72,255,.22), transparent 70%); }
[data-theme="light"] .blob-2 { background: radial-gradient(circle, rgba(232,68,90,.16), transparent 70%); }
