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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body {
    background: #ffffff;
    color: #4a4a5a;
    overflow-x: clip;
    line-height: 1.7;
}

body.dark-page {
    background: #0a0f1a;
    color: #ffffff;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #1a1a2e;
    margin-bottom: 2rem;
    line-height: 1.2;
}

h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.blink-in-text {
    display: block;
}

.blink-in-text .char {
    display: inline;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

/* Honeypot for spam protection — positioned off-screen so real users never
   see it, but bots that iterate over form fields will fill it in. Server
   rejects requests where this field has any value. */
.form-hp {
    position: absolute !important;
    left: -5000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    tab-index: -1;
}
