@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;700&display=swap');

:root {
    --bg: #000000;
    --fg: #ffffff;
    --accent: #a100ff;
    --divider: rgba(255, 255, 255, 0.3);
    --muted: rgba(255, 255, 255, 0.5);
    --container: 1200px;
    --content: 1080px;
    --pad-x: 60px;
    --font: 'Unbounded', system-ui, sans-serif;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

p {
    line-height: normal;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 0 60px;
    border-radius: 60px;
    background: var(--accent);
    color: var(--fg);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0;
    transition: opacity .2s ease, transform .2s ease;
}

.btn:hover {
    opacity: .9;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--fg);
    color: var(--fg);
}

.site-header {
    width: 100%;
    padding: 10px var(--pad-x) 0;
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand__name {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-primary {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}

.nav-primary a {
    transition: color .2s ease;
}

.nav-primary a:hover {
    color: var(--accent);
}

.nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.nav-burger img {
    width: 26px;
    height: 18px;
    display: block;
    transition: transform .25s ease;
}

.nav-burger.is-open img {
    transform: rotate(90deg);
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--divider);
}

.site-footer {
    width: 100%;
    padding: 40px var(--pad-x);
    position: relative;
    overflow: hidden;
}

.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.site-footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__bottom {
    width: 100%;
    max-width: var(--content);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.socials a {
    width: 59.155px;
    height: 59.155px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.socials a:hover {
    transform: scale(1.08);
}

.socials img {
    width: 100%;
    height: 100%;
}

.copyright {
    font-weight: 400;
    font-size: 14px;
    color: var(--muted);
    white-space: nowrap;
}

.glow {
    position: absolute;
    width: 430px;
    height: 430px;
    pointer-events: none;
    z-index: 0;
}

.glow img {
    width: 100%;
    height: 100%;
    transform: scale(1.95);
    transform-origin: center;
}

.site-footer .glow {
    left: 385px;
    top: 48px;
}

@media (max-width: 900px) {
    :root {
        --pad-x: 20px;
    }

    .site-header__inner {
        padding-top: 0;
    }

    .nav-primary {
        display: none;
    }

    .nav-burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .brand__name {
        font-size: 18px;
    }

    .site-footer__row {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }

    .site-footer .nav-primary {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .copyright {
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    .site-footer .glow {
        left: auto;
        right: -130px;
        top: 106px;
    }
}

.section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--pad-x);
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--fg);
}

.contact {
    width: 100%;
}

.contact__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact__card {
    background: var(--accent);
    border-radius: 40px;
    padding: 20px 40px;
    width: 100%;
    max-width: var(--content);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    color: var(--fg);
    text-align: center;
}

.contact__card h2 {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
}

.contact__text {
    font-weight: 300;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact__buttons {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 825px;
    max-width: 100%;
}

.contact__pill {
    flex: 1;
    min-height: 70px;
    border: 1px solid var(--fg);
    border-radius: 60px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--fg);
    transition: background .2s ease;
}

.contact__pill:hover {
    background: rgba(255, 255, 255, .12);
}

.contact__pill--phone,
.contact__pill--email {
    flex: 0 1 auto;
    white-space: nowrap;
}

.policy {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.policy__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.policy .glow {
    left: -130px;
    top: 81px;
    z-index: 0;
}

.policy__title {
    width: 100%;
    max-width: var(--content);
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    color: var(--fg);
}

.policy__body {
    width: 100%;
    max-width: var(--content);
    color: var(--fg);
    font-weight: 300;
    font-size: 14px;
}

.policy__body p {
    margin-bottom: 20px;
}

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

@media (max-width: 900px) {
    .section-title {
        font-size: 28px;
    }

    .policy__inner {
        padding: 40px var(--pad-x);
        gap: 20px;
    }

    .policy__title {
        font-size: 28px;
    }

    .contact__inner {
        padding: 40px var(--pad-x);
    }

    .contact__card {
        padding: 20px 10px;
        border-radius: 40px;
    }

    .contact__card h2 {
        font-size: 28px;
    }

    .contact__buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contact__pill {
        width: 100%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
}

.reveal.is-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-revealed {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.btn {
    cursor: pointer;
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(161, 0, 255, .45);
}

.btn:active {
    transform: translateY(0);
}

.brand {
    transition: transform .25s ease;
}

.brand:hover {
    transform: translateY(-2px);
}

.brand__logo {
    transition: transform .35s ease;
}

.brand:hover .brand__logo {
    transform: rotate(-8deg) scale(1.05);
}

.nav-primary a {
    position: relative;
}

.nav-primary a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

.nav-primary a:hover::after {
    transform: scaleX(1);
}

.contact__pill {
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.contact__pill:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.nav-burger {
    transition: transform .25s ease, opacity .25s ease;
}

.nav-burger:hover {
    opacity: .8;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 30px);
    z-index: 9999;
    width: calc(100% - 40px);
    max-width: 1080px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cookie-banner__inner {
    background: var(--accent);
    border-radius: 40px;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    color: var(--fg);
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

.cookie-banner__title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--fg);
    margin: 0;
}

.cookie-banner__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: var(--fg);
    max-width: 900px;
}

.cookie-banner__actions {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    border: 0;
    background: #ffffff;
    color: #000000;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 44px;
    height: 56px;
    border-radius: 60px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cookie-banner__btn:hover {
    transform: translateY(-2px);
    background: #f2f2f2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.cookie-banner__btn:active {
    transform: translateY(0);
}

@media (max-width: 700px) {
    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .cookie-banner__inner {
        padding: 24px 22px;
        border-radius: 28px;
        gap: 16px;
    }

    .cookie-banner__title {
        font-size: 28px;
    }

    .cookie-banner__text {
        font-size: 13px;
    }

    .cookie-banner__actions {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__btn {
        padding: 0 28px;
        height: 50px;
        font-size: 13px;
        flex: 1;
        max-width: 160px;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: relative;
        z-index: 60;
    }

    .site-header__inner {
        position: relative;
    }

    .site-header .nav-primary.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, .95);
        border: 1px solid var(--divider);
        border-radius: 20px;
        padding: 16px 20px;
        gap: 14px;
        z-index: 60;
        font-size: 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
    }

    .site-header .nav-primary.is-open a {
        padding: 10px 4px;
        text-align: left;
    }
}
