
:root {
    --bg: #f7f5fb;
    --bg-alt: #ffffff;
    --text: #222222;
    --text-soft: #555555;
    --accent: #8c6bd6;
    --accent-soft: #ece4ff;
    --border-soft: #e0d9f2;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.04);
    --radius-large: 18px;
    --radius-medium: 12px;
    --max-width: 960px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top left, #f0ecff 0, #f7f5fb 40%, #ffffff 100%);
    color: var(--text);
    line-height: 1.8;
    font-size: 18px;
	display: grid;
}
a {
	text-decoration: none;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(247, 245, 251, 0.88);
    border-bottom: 1px solid rgba(220, 210, 250, 0.7);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1.5rem;
}
.site-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.03em;
	text-transform: uppercase;
}
.site-subtitle {
    font-size: 1rem;
    color: var(--text-soft);
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 18px;
}
.main-nav a {
    text-decoration: none;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--text-soft);
    transition: 0.2s ease;
}
.main-nav a:hover {
    border-color: var(--border-soft);
    background: var(--accent-soft);
    color: var(--accent);
}
.btn-primary {
    margin-top: 0.4rem;
    background: linear-gradient(135deg, #8c6bd6, #b382ff);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline:hover {
    background: var(--accent-soft);
}
.section {
    padding: 2.5rem 0;
}
.section-alt {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(230, 222, 250, 0.9);
    border-bottom: 1px solid rgba(230, 222, 250, 0.9);
}
.section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}
section h2 {
  font-weight: 400;
}
.section p {
    color: var(--text-soft);
}
.section-intro {
    margin-bottom: 1.4rem;
}
/* Footer */
.site-footer {
    padding: 1.8rem 0 2rem;
    font-size: 0.85rem;
    color: var(--text-soft);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Responsives Design */
@media (max-width: 992px) {

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
	.site-header {
		margin: 0 6px 0 6px;
}
}

@media (max-width: 480px) {
	.site-title {
        font-size: 1.4rem;
    }
    .main-nav {
        font-size: 16px;
        gap: 0.4rem;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
	}



