﻿html {
    scroll-behavior: smooth
}

:root {
    --bg: #050509;
    --bg2: #08080f;
    --panel: #0d0d16;
    --text: #f8f8fb;
    --muted: #9d9daa;
    --purple: #a855f7;
    --pink: #e933ff;
    --cyan: #16d9ff;
    --line: rgba(255,255,255,.10);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter,Arial,sans-serif;
}

.fw-black {
    font-weight: 900
}

.text-secondary {
    color: var(--muted) !important
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(5,5,9,.80);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    min-height: 72px
}

.navbar-brand {
    color: #fff !important
}

.brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg,var(--purple),var(--cyan));
    box-shadow: 0 0 22px rgba(168,85,247,.30);
    font-weight: 900;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.8px
}

    .brand-name strong, .footer-brand strong {
        color: #c084fc
    }

.nav-link {
    color: #dedee7 !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

    .nav-link:hover {
        color: #c084fc !important
    }

.btn-neon {
    color: #fff !important;
    border: 0;
    background: linear-gradient(90deg,#7c3aed,#c026d3);
    box-shadow: 0 0 30px rgba(168,85,247,.24);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2px;
}

    .btn-neon:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 42px rgba(168,85,247,.45);
    }

.hero-section {
    min-height: 790px;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 78% 42%,rgba(168,85,247,.23),transparent 31%), radial-gradient(circle at 12% 90%,rgba(22,217,255,.10),transparent 28%), var(--bg);
}

    .hero-section:before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .5;
        background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
        background-size: 50px 50px;
        mask-image: linear-gradient(to bottom,#000,transparent);
    }

.hero-grid {
    min-height: 718px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    color: #c084fc;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

.hero-title {
    font-family: Oswald,sans-serif;
    font-size: clamp(60px,7vw,94px);
    line-height: .90;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-weight: 700;
}

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

.hero-lead {
    color: #c5c5d0;
    font-size: 17px;
    max-width: 540px;
    margin: 25px 0 32px;
}

.hero-media {
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    background: #0c0c12;
}

    .hero-media img, .featured-image img, .gallery-tile img, .social-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.glow-frame {
    border: 1px solid rgba(168,85,247,.35);
    box-shadow: 0 0 70px rgba(168,85,247,.11);
}

.usp-strip {
    background: #090910;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.usp-item {
    min-height: 90px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--line);
}

.usp-icon {
    font-size: 24px
}

.usp-item strong {
    display: block;
    font-size: 10px
}

.usp-item small {
    display: block;
    color: var(--muted);
    font-size: 10px
}

.section-padding {
    padding: 110px 0
}

.section-heading {
    max-width: 820px;
    margin: 0 auto
}

.section-title {
    font-size: clamp(36px,5vw,58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 15px;
    max-width: 700px;
    margin: 17px auto 0
}

.services-grid {
    margin-top: 55px
}

.service-card {
    overflow: hidden;
    background: linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-7px);
        border-color: rgba(168,85,247,.55);
        box-shadow: 0 20px 55px rgba(0,0,0,.45),0 0 30px rgba(168,85,247,.12);
    }

.service-image {
    height: 205px;
    overflow: hidden;
    background: #08080d
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s
    }

.service-card:hover .service-image img {
    transform: scale(1.05)
}

.service-number {
    color: #c084fc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.featured-section {
    padding: 110px 0;
    background: linear-gradient(135deg,#09090f,#14091b,#060b12);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.featured-image {
    height: 540px;
    border-radius: 20px;
    overflow: hidden
}

.check-list li {
    font-size: 13px;
    margin: 10px 0
}

    .check-list li:before {
        content: "✓";
        color: var(--cyan);
        font-weight: 900;
        margin-right: 10px
    }

.step-card {
    padding: 10px 20px 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #08080e;
    border: 2px solid var(--purple);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 0 28px rgba(168,85,247,.25);
}

.gallery-section {
    padding: 105px 0;
    background: #08080e
}

.gallery-tile {
    height: 235px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #0b0b12;
}

.gallery-tall {
    height: 484px
}

.gallery-tile img {
    transition: .4s
}

.gallery-tile:hover img {
    transform: scale(1.04)
}

.social-promo-section {
    padding: 105px 0
}

.social-poster {
    max-width: 370px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden
}

    .social-poster img {
        display: block
    }

.cta-section {
    padding: 110px 0;
    border-top: 1px solid var(--line);
    background: radial-gradient(circle at 50% 50%,rgba(168,85,247,.24),transparent 55%), #08080e;
}

.cta-title {
    font-family: Oswald,sans-serif;
    font-size: clamp(54px,8vw,92px);
    line-height: .88;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-section p {
    max-width: 650px
}

.site-footer {
    padding: 45px 0;
    background: #030306;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

    .social-btn:hover {
        border-color: var(--purple);
        color: #c084fc
    }

.footer-line {
    border-color: var(--line)
}

.loading-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    align-content: center;
    background: #050509;
}

.loading-logo {
    font-size: 25px;
    font-weight: 900
}

    .loading-logo span {
        color: #c084fc
    }

#blazor-error-ui {
    background: #fee;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,.2);
    display: none;
    left: 0;
    padding: .6rem 1.25rem .7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: .75rem;
        top: .5rem
    }

@media(max-width:991.98px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 70px 0
    }

    .hero-section {
        min-height: auto
    }

    .hero-media {
        height: 440px
    }

    .usp-item {
        border-bottom: 1px solid var(--line)
    }
}

@media(max-width:767.98px) {
    .section-padding, .featured-section, .gallery-section, .social-promo-section, .cta-section {
        padding: 75px 0
    }

    .hero-title {
        font-size: 58px
    }

    .hero-media {
        height: 350px
    }

    .featured-image {
        height: 380px
    }

    .gallery-tall, .gallery-tile {
        height: 260px
    }

    .usp-item {
        border-right: 0
    }
}
