:root {
    --bg-primary: #0B0B0F;
    --bg-secondary: #161427;
    --bg-panel: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #C9CCDA;

    --brand-purple: #2D2A5A;
    --brand-yellow: #F4D03F;
    --brand-green: #A3E635;
    --brand-orange: #FF7A1A;
    --brand-blue: #3B82F6;

    --border-soft: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 0 30px rgba(59, 130, 246, 0.10);
    --shadow-accent: 0 0 28px rgba(255, 122, 26, 0.16);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1200px;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background:
        radial-gradient(circle at top, rgba(45, 42, 90, 0.35), transparent 25%),
        radial-gradient(circle at right, rgba(59, 130, 246, 0.12), transparent 20%),
        radial-gradient(circle at left bottom, rgba(163, 230, 53, 0.06), transparent 18%),
        var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.centered {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
}

.section-tag,
.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-yellow);
    margin-bottom: 10px;
}

.section-heading h2,
.hero-copy h1,
.site-footer h3,
.site-footer h4,
.confirmation-card h1 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.03em;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text-secondary);
    max-width: 760px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    padding: 0.95rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), #ff944d);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-secondary {
    background: rgba(163, 230, 53, 0.10);
    color: #fff;
    border-color: rgba(163, 230, 53, 0.16);
}

.btn-block {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(11, 11, 15, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
}

.brand-mark {
    font-size: 1.2rem;
}

.brand-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-desktop a {
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-soft);
    color: #fff;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem 1rem;
    background: rgba(11, 11, 15, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a {
    color: var(--text-secondary);
    font-weight: 600;
}

.confirmation-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 0;
}

.confirmation-card-wrap {
    display: flex;
    justify-content: center;
}

.confirmation-card {
    width: min(100%, 720px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.confirmation-card h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.confirmation-intro {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-footer {
    padding: 50px 0 20px;
    background: #09090c;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.footer-grid>div {
    min-width: 0;
}

.site-footer h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.site-footer h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.site-footer p,
.site-footer li a {
    color: var(--text-secondary);
}

.site-footer ul {
    display: grid;
    gap: 0.5rem;
}

.site-footer li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.site-footer li a:hover {
    color: var(--brand-orange);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: #8c93a8;
    font-size: 0.9rem;
}

@media (max-width: 900px) {

    .nav-desktop,
    .nav-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}