:root {
    --dark: #070812;
    --dark-2: #0e1020;
    --dark-3: #16182b;
    --pink: #ff0059;
    --pink-2: #ff4f8f;
    --cyan: #41f6ff;
    --white: #ffffff;
    --soft: #f6f7fb;
    --text: #111323;
    --muted: #8c90a6;
    --border: rgba(255,255,255,0.12);
    --light-border: #ebeef5;
    --shadow: 0 28px 80px rgba(7, 8, 18, 0.18);
    --glow: 0 0 24px rgba(255, 0, 89, 0.38), 0 0 70px rgba(255, 0, 89, 0.22);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Alatsi', Arial, sans-serif;
    background: var(--soft);
    color: var(--text);
    letter-spacing: 0.01em;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,0,89,0.16), transparent 32%),
        radial-gradient(circle at 85% 8%, rgba(65,246,255,0.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f6fb 55%, #eef1f7 100%);
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 8, 18, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 25px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    background:
        radial-gradient(circle at top left, #ff7cab, transparent 38%),
        linear-gradient(135deg, var(--pink), #7b0cff);
    box-shadow: var(--glow);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
}

.nav a {
    transition: 0.2s ease;
}

.nav a:hover {
    color: var(--white);
    text-shadow: 0 0 18px rgba(255,0,89,0.55);
}

.nav-button {
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--white) !important;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
}

.nav-button:hover {
    background: var(--pink);
    box-shadow: var(--glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-family: 'Alatsi', Arial, sans-serif;
    font-size: 15px;
    transition: 0.22s ease;
}

.btn-primary {
    color: white;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 35%),
        linear-gradient(135deg, var(--pink), #8f00ff);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(255,0,89,0.52), 0 0 90px rgba(255,0,89,0.26);
}

.btn-secondary {
    color: var(--dark);
    background: rgba(255,255,255,0.86);
    border: 1px solid var(--light-border);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255,0,89,0.35);
}

.full {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    text-shadow: 0 0 20px rgba(255,0,89,0.45);
}

.status-badge {
    display: inline-flex;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,0,89,0.12);
    color: var(--pink);
    border: 1px solid rgba(255,0,89,0.22);
    box-shadow: 0 0 24px rgba(255,0,89,0.14);
    font-size: 13px;
}

.site-footer {
    padding: 36px 0;
    background: var(--dark);
    color: rgba(255,255,255,0.58);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--light-border);
    border-radius: 17px;
    padding: 15px 16px;
    font: inherit;
    outline: none;
    background: white;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255,0,89,0.45);
    box-shadow: 0 0 0 4px rgba(255,0,89,0.10), 0 0 22px rgba(255,0,89,0.12);
}

label {
    display: block;
    margin: 14px 0 8px;
    color: var(--dark-2);
}

@media (max-width: 760px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
}