@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    color-scheme: dark;
    --bg: #0b0d15;
    --text: #f5f7ff;
    --muted: #9da5bb;
    --line: rgba(255, 255, 255, .1);
    --accent: #8b7cff;
    --cyan: #61d9ff;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); }
body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    font-family: 'Manrope', Arial, sans-serif;
    background: radial-gradient(circle at 50% -10%, #202442 0, var(--bg) 48rem);
}
body::before {
    position: fixed;
    inset: 0;
    z-index: -3;
    content: '';
    opacity: .25;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.background-glow { position: fixed; z-index: -2; width: 32rem; height: 32rem; border-radius: 50%; filter: blur(90px); opacity: .16; pointer-events: none; animation: float 12s ease-in-out infinite; }
.background-glow-one { top: 8%; left: -16rem; background: #6457ee; }
.background-glow-two { right: -15rem; bottom: 4%; background: #29bce7; animation-delay: -5s; }
.landing { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 74px 0 28px; }
.hero { text-align: center; animation: reveal .8s ease both; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 15px; color: white; font: 700 25px 'Space Grotesk', sans-serif; background: linear-gradient(135deg, #8d7dff, #3c9de8); box-shadow: 0 12px 40px rgba(102, 92, 255, .3); }
.brand-name { margin: 0; letter-spacing: .42em; font-size: 11px; font-weight: 800; color: #b8b4ff; }
.hero-kicker, .card-eyebrow { margin: 34px 0 15px; color: var(--cyan); text-transform: uppercase; letter-spacing: .22em; font-size: 10px; font-weight: 800; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
h1 { margin: 0; font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: -.055em; }
.hero-subtitle { margin: 27px 0 0; color: var(--muted); font-size: 15px; }
.hero-signature { margin: 13px 0 0; color: #d9d4ff; font-size: 13px; font-style: italic; }
.projects { margin-top: 94px; }
.section-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 23px; }
.section-heading h2 { margin: 0; color: #aeb5ca; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.section-line { height: 1px; flex: 1; background: var(--line); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { position: relative; display: flex; min-height: 355px; flex-direction: column; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(150deg, rgba(34, 38, 62, .9), rgba(15, 17, 28, .88)); box-shadow: 0 20px 70px rgba(0,0,0,.18); transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .45s, box-shadow .45s; animation: reveal .8s ease both; }
.project-card:nth-child(2) { animation-delay: .12s; } .project-card:nth-child(3) { animation-delay: .24s; }
.project-card:hover { transform: translateY(-9px); border-color: rgba(139, 124, 255, .62); box-shadow: 0 30px 80px rgba(47, 37, 128, .3); }
.project-card-css { background: radial-gradient(circle at 100% 0, rgba(97, 217, 255, .15), transparent 42%), linear-gradient(150deg, rgba(42, 45, 86, .96), rgba(15, 17, 28, .9)); }
.project-card-soon-alt { background: radial-gradient(circle at 100% 0, rgba(255, 137, 207, .1), transparent 45%), linear-gradient(150deg, rgba(48, 37, 63, .9), rgba(15, 17, 28, .9)); }
.card-shine { position: absolute; top: -30%; left: -45%; width: 45%; height: 170%; transform: rotate(25deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent); transition: left .7s; }
.project-card:hover .card-shine { left: 120%; }
.card-topline { display: flex; justify-content: space-between; color: #737b95; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.card-status { display: flex; align-items: center; gap: 7px; color: #a8aec3; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.card-status i { display: block; width: 6px; height: 6px; border-radius: 50%; background: #6aefb1; box-shadow: 0 0 12px #6aefb1; }
.project-card:not(.project-card-css) .card-status i { background: #777f99; box-shadow: none; }
.card-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 47px 0 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; color: #d6d1ff; font-size: 25px; letter-spacing: .13em; background: rgba(255,255,255,.07); }
.project-card-css .card-icon { color: #80e5ff; background: linear-gradient(135deg, rgba(112,98,255,.45), rgba(69,203,232,.17)); }
.card-eyebrow { margin: 0 0 8px; color: #858ba3; font-size: 9px; letter-spacing: .16em; }
.project-card-css .card-eyebrow { color: var(--cyan); }
.project-card h3 { margin: 0; font-size: 27px; letter-spacing: -.04em; }
.card-description { max-width: 280px; margin: 12px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.card-action { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding: 13px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #e9eaff; text-decoration: none; font-size: 12px; font-weight: 700; background: rgba(255,255,255,.06); transition: background .25s, border-color .25s; }
a.card-action:hover { border-color: rgba(130, 215, 255, .65); background: rgba(107, 197, 255, .14); }
.card-action b { color: var(--cyan); font-size: 19px; font-weight: 400; }.card-action-disabled { color: #737a91; }.card-action-disabled b { color: #737a91; }
.footer { display: flex; justify-content: center; gap: 12px; margin-top: 70px; color: #697188; font-size: 11px; }.footer-dot { color: #7063ed; }
@keyframes reveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(25px, -20px); } }
@media (max-width: 800px) { .landing { width: min(100% - 30px, 580px); padding-top: 48px; } .projects { margin-top: 65px; } .project-grid { grid-template-columns: 1fr; } .project-card { min-height: 330px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
