:root {
    --blue: #00aaff;
    --blue-dark: #0066cc;
    --blue-glow: rgba(0, 170, 255, 0.3);
    --bg: #050810;
    --bg2: #0a0f1e;
    --bg3: #0d1428;
    --text: #c8d8f0;
    --text-dim: #5a7090;
    --mono: "Share Tech Mono", monospace;
    --display: "Oxanium", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a:visited {
    color: inherit;
}
a:focus,
a:focus-visible {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--display);
    overflow-x: hidden;
}

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 170, 255, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition:
        left 0.1s,
        top 0.1s;
}

/* SECTIONS */
section {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--blue);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.section-title .line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--blue);
    vertical-align: middle;
    margin-right: 12px;
    box-shadow: 0 0 10px var(--blue);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.4rem;
    border: 1px solid rgba(0, 170, 255, 0.4);
    color: var(--blue);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.2s;
    background: transparent;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn:hover {
    background: rgba(0, 170, 255, 0.1);
    border-color: var(--blue);
    box-shadow: 0 0 20px var(--blue-glow);
}

.btn-primary {
    background: rgba(0, 170, 255, 0.15);
    border-color: var(--blue);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s,
        transform 0.6s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* FOOTER */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 170, 255, 0.1);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dots {
    0%,
    20% {
        content: ".";
    }
    40%,
    60% {
        content: "..";
    }
    80%,
    100% {
        content: "...";
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
