
@font-face {
    font-family: "Orbitron";
    src: url("fonts/Orbitron/Orbitron-VariableFont_wght.ttf");
}
@font-face {
    font-family: "Inter";
    src: url("fonts/Inter/Inter-VariableFont_opsz\,wght.ttf");
}
@font-face {
    font-family: "JetBrains Mono";
    src: url("fonts/JetBrains_Mono/JetBrainsMono-VariableFont_wght.ttf");
}

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

:root {
    --cyan: #38d1ef;
    --cyan-dim: rgba(56, 209, 239, 0.12);
    --cyan-glow: rgba(56, 209, 239, 0.35);
    --bg: #141414;
    --bg-card: #1a1a1a;
    --bg-deep: #0d0d0d;
    --text: #e2e2e2;
    --muted: #777;
    --border: rgba(56, 209, 239, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── custom */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 2px;
}

/* ── SECTIONS ── */
section {
    padding: 100px 6vw;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--cyan);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}




/* Testing */
/* section {
    border: 1px solid white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
} */