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

:root {
    --black: #060608;
    --surface: #0d0d12;
    --surface2: #12121a;
    --border: rgba(255, 255, 255, 0.07);
    --border-bright: rgba(255, 255, 255, 0.14);
    --white: #f5f5f0;
    --white-dim: rgba(245, 245, 240, 0.55);
    --white-muted: rgba(245, 245, 240, 0.28);
    --accent: #e8ff47;
    --accent-dim: rgba(232, 255, 71, 0.15);
    --accent-glow: rgba(232, 255, 71, 0.35);
    --red: #ff3b3b;
    --font-display: "Syne", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
}

/* ── CUSTOM CURSOR ── */
#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
    transform: translate(-50%, -50%);
}
#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(232, 255, 71, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s ease,
        height 0.3s ease,
        border-color 0.3s ease;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
}

/* ── NOISE OVERLAY ── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.4;
}

/* ── SECTION COMMON ── */
section {
    padding: 120px 48px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--accent);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
}
h2 em {
    font-style: normal;
    color: var(--accent);
}
