:root {
    --orange: #ff6500;
    --orange-2: #ff8a38;
    --orange-3: #ffb27a;
    --black: #090909;
    --black-2: #101010;
    --black-3: #161616;
    --white: #ffffff;
    --white-2: #f7f7f5;
    --white-3: #eeeeeb;
    --gray: #777;
    --gray-2: #aaa;
    --border: rgba(0,0,0,.09);
    --ease: cubic-bezier(.16,1,.3,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--black);
    background: #fff;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
h1, h2, h3, h4, h5, h6 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -.045em;
}
a { text-decoration: none; }
::selection { color: white; background: var(--orange); }

.cursor-dot {
    position: fixed; width: 7px; height: 7px; left: 0; top: 0;
    background: var(--orange); border-radius: 50%;
    pointer-events: none; z-index: 99999; transform: translate(-50%,-50%);
}
.cursor-ring {
    position: fixed; width: 34px; height: 34px; left: 0; top: 0;
    border: 1px solid rgba(255,101,0,.5); border-radius: 50%;
    pointer-events: none; z-index: 99998; transform: translate(-50%,-50%);
    transition: width .25s ease, height .25s ease, background .25s ease;
}
body.cursor-active .cursor-ring {
    width: 55px; height: 55px; background: rgba(255,101,0,.07);
}
@media (max-width: 991px) {
    .cursor-dot, .cursor-ring { display: none; }
}
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    z-index: 10001;
    background: linear-gradient(90deg, var(--orange), #ffb27a, var(--orange));
    box-shadow: 0 0 15px rgba(255,101,0,.7);
}
.navbar {
    position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
    width: min(1200px, calc(100% - 30px));
    padding: 9px 10px; z-index: 5000;
    background: rgba(255,255,255,.76);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(0,0,0,.08); border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    transition: .35s var(--ease);
}
.navbar.scrolled { top: 10px; box-shadow: 0 20px 70px rgba(0,0,0,.13); }
.brand {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--black); font-family: "Space Grotesk", sans-serif;
    font-weight: 700; font-size: 1.15rem; letter-spacing: -.06em;
}
.brand-symbol {
    position: relative; width: 35px; height: 35px;
    display: grid; place-items: center; color: white;
    background: var(--black); border-radius: 10px; overflow: hidden;
}
.brand-symbol::before {
    content: ""; position: absolute; width: 20px; height: 20px;
    border: 2px solid var(--orange); border-radius: 50%;
    animation: brandOrbit 4s linear infinite;
}
.brand-symbol i { position: relative; z-index: 2; font-size: 13px; }
@keyframes brandOrbit { to { transform: rotate(360deg); } }
.nav-link {
    color: #555 !important; font-size: .78rem; font-weight: 600;
    padding: 10px 14px !important; transition: .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }
.nav-cta {
    color: white !important; background: var(--black);
    border-radius: 11px; padding: 10px 16px !important;
    transition: .3s var(--ease);
}
.nav-cta:hover {
    color: white !important; background: var(--orange); transform: translateY(-2px);
}
.btn-main, .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0; border-radius: 12px; padding: 14px 20px;
    font-size: .82rem; font-weight: 700; cursor: pointer;
}
.btn-main { background: var(--orange); color: #fff; }
.btn-secondary { background: #111; color: #fff; }
.section-label {
    margin-bottom: 12px; color: var(--orange);
    font-family: "DM Mono", monospace; font-size: .65rem;
    letter-spacing: .12em; text-transform: uppercase;
}
.section-title {
    max-width: 820px; font-size: clamp(2.5rem, 5vw, 5.2rem); line-height: .92;
}
.section-description { max-width: 650px; color: #777; line-height: 1.8; }
footer {
    padding: 65px 0 25px; border-top: 1px solid rgba(0,0,0,.08); background: white;
}
.footer-description { max-width: 350px; color: #777; font-size: .8rem; line-height: 1.8; }
.footer-title {
    margin-bottom: 17px; font-family: "DM Mono", monospace; font-size: .6rem;
    color: #aaa; text-transform: uppercase; letter-spacing: .1em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #666; font-size: .78rem; transition: .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
    margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--border);
    color: #aaa; font-family: "DM Mono", monospace; font-size: .55rem;
}
.reveal {
    opacity: 0; transform: translateY(45px) scale(.98);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
@media (max-width: 575px) {
    .navbar { width: calc(100% - 16px); top: 9px; }
}
