:root { --bg: #050505; --surf: #101010; --bord: #242424; --prim: #f10c45;--accent: #b40833;--text: #f5f5f0; --sub: #a9a39a; --w: 1100px; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
::-webkit-scrollbar { display: none; }
body { background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, sans-serif; line-height: 1.6; font-weight: 400; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
.container { max-width: var(--w); margin: 0 auto; padding: 0 20px; }
.section { padding: 5rem 0; border-top: 1px solid var(--bord); }
.flex { display: flex; } .items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .text-sub { color: var(--sub); } 
nav { position: fixed; top: 0; width: 100%; background: rgba(0,0,0,0.9); border-bottom: 1px solid var(--bord); z-index: 100; height: 70px; display: flex; align-items: center; backdrop-filter: blur(10px); }
.logo { font-family: 'Space Mono', monospace; font-size: 1.25rem; font-weight: 400; display: flex; align-items: center; letter-spacing: -0.5px; color: var(--text); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding-bottom: 2px; line-height: 1.2; }
.logo span { color: var(--prim); margin-left: 2px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-item { font-size: 0.9rem; font-weight: 400; color: var(--sub); } .nav-item:hover { color: var(--prim); }
.nav-cta { background: var(--text); color: #000; padding: 8px 16px; font-size: 0.9rem; font-weight: 500; } .nav-cta:hover { background: var(--prim); color: #000; }
.mobile-toggle { display: none; background: none; border: 1px solid var(--bord); color: var(--text); cursor: pointer; padding: 5px 10px; font-size: 0.8rem; font-weight: 400; text-transform: uppercase; }
.hero { padding: 160px 0 80px; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
.hero-text { flex: 1; }
.hero-img { flex: 0 0 300px; width: 300px; display: flex; justify-content: center; }
.hero-img img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 0 20px rgba(60, 223, 255, 0.1)); }
h1 { font-size: 3.5rem; line-height: 1.1; font-weight: 400; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--prim); }
p { margin-bottom: 1rem; color: var(--sub); }
.hero-btns { display: flex; gap: 1rem; margin-top: 2rem; }
.btn { border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-weight: 500; cursor: pointer; text-transform: uppercase; border: 1px solid transparent; transition: all 0.2s ease; font-size: 0.85rem; letter-spacing: 0.05em; }
.btn-prim { background: var(--prim); color: #000; border: 1px solid var(--prim); } .btn-prim:hover { background: transparent; color: var(--prim); }
.btn-out { border-color: var(--bord); color: #fff; } .btn-out:hover { border-color: var(--prim); color: var(--prim); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.card { border-radius: 12px; background: var(--surf); border: 1px solid var(--bord); padding: 2.5rem; display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s; height: 100%; } 
.card:hover { border-color: var(--prim); transform: translateY(-2px); }
.card:hover h3 { color: var(--prim); }
.learn-more { margin-top: auto; color: var(--prim); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 5px; }
.learn-more:hover { text-decoration: underline; }
footer { background: var(--bg); border-top: 1px solid var(--bord); padding: 2.5rem 0; font-size: 0.9rem; color: var(--sub); }
.foot-content { display: flex; justify-content: space-between; align-items: flex-end; }

.foot-brand { margin-bottom: 0; }
.foot-brand-text { font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 400; margin-bottom: 5px; color: var(--text); letter-spacing: -0.5px; }

.foot-contact-section { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; }

.foot-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.foot-link { display: inline-flex; align-items: center; color: var(--text); font-weight: 500; font-size: 0.9rem; background: var(--surf); border: 1px solid var(--bord); padding: 10px 20px; border-radius: 50px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } 
.foot-link:hover { color: var(--prim); border-color: var(--prim); }


@media (max-width: 768px) { h1 { font-size: 2.5rem; } .grid-3, .grid-2 { grid-template-columns: 1fr; } .nav-links { display: none; } .mobile-toggle { display: block; } .hero-inner { flex-direction: column; text-align: center; gap: 2rem; }.hero-btns { flex-direction: column; justify-content: center; } .hero-img { width: 150px; flex: auto; order: -1; margin-bottom: 1rem; } .foot-content { flex-direction: column; align-items: flex-start; gap: 2.5rem; } .foot-contact-section { align-items: flex-start; width: 100%; } .foot-links { justify-content: flex-start; width: 100%; flex-direction: column; gap: 0.75rem; } .foot-link { justify-content: center; width: 100%; }  }
