:root {
    --bg: #05070a;
    --bg-secondary: #0b0f1a;
    --purple: #7c3aed;
    --orange: #f97316;
    --accent-green: #34d399;
    --card: rgba(22, 28, 45, 0.6);
    --border: rgba(45, 55, 72, 0.5);
    --text-dim: #d2ddf0;
    --text-body: #f2f7ff;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 100px;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); }

p {
    color: var(--text-body);
    font-size: 1.08rem;
    line-height: 1.78;
    margin-bottom: 1.05rem;
}

p:last-child {
    margin-bottom: 0;
}

.highlight { color: var(--orange); }
