:root {
    --color-cyan: #22d3ee;
    --color-purple: #a855f7;
    --color-text-primary: #ffffff;
    --color-text-secondary: #9ca3af;
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Segoe UI Symbol', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 900;
}

p {
    line-height: 1.5;
}

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

.gradient-text {
    background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 3rem;
    }
}