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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(125, 226, 209, 0.08), transparent 26%),
        radial-gradient(circle at 80% 0%, rgba(138, 146, 255, 0.10), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(255, 211, 143, 0.06), transparent 18%),
        linear-gradient(180deg, #05080f 0%, #04070d 42%, #09111d 100%);
    color: var(--text);
    font-family: Bahnschrift, "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(125, 226, 209, 0.26);
    color: #ffffff;
}

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

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 700;
}

p {
    margin: 0;
    color: var(--text-secondary);
}

code {
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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