/* =========================
   ROOT / VARIABLES
========================= */
:root {
    --bg: #080b12;
    --bg-soft: #0b1018;
    --surface: #101722;
    --surface-2: #131b28;

    --text: #f3f5f8;
    --muted: #8993a4;
    --muted-2: #5f697a;

    --blue: #3b82f6;
    --blue-light: #6da2ff;
    --violet: #765cf5;

    --border: rgba(255, 255, 255, .075);

    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
   SECTIONS / TYPOGRAPHY
========================= */
section {
    padding: 150px 0;
}

.section-label {
    color: #638fdc;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    max-width: 800px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.055em;
}

.section-description {
    max-width: 580px;
    margin-top: 23px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 14px;
}

/* =========================
   BUTTONS
========================= */
.primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 22px;

    border-radius: 999px;
    color: white;

    background: linear-gradient(100deg, var(--blue), var(--violet));

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 15px 45px rgba(59, 130, 246, .2);
    transition: .25s ease;
}

.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, .3);
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    gap: 0;
}

.logo-mark {
    color: var(--blue-light);
    font-size: 27px;
    font-weight: 700;
    margin-right: 3px;
    letter-spacing: -4px;
}

.logo-name {
    color: var(--text);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.logo-dev {
    color: var(--blue-light);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -1.2px;
}

/* =========================
   ANIMATIONS
========================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}