:root {
    --bg: #090611;
    --bg-soft: #120d1d;
    --panel: rgba(19, 22, 39, 0.78);
    --panel-strong: rgba(10, 12, 24, 0.92);
    --text: #f6f0ff;
    --text-soft: #bcb4d9;
    --line: rgba(125, 249, 255, 0.22);
    --cyan: #7df9ff;
    --pink: #ff4fd8;
    --lime: #d7ff54;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    --max: 76rem;
    --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(255, 79, 216, 0.18), transparent 26%),
        radial-gradient(circle at top right, rgba(125, 249, 255, 0.22), transparent 25%),
        radial-gradient(circle at bottom center, rgba(215, 255, 84, 0.12), transparent 28%),
        linear-gradient(180deg, #05030b 0%, #0a0814 48%, #090611 100%);
}

img { display: block; max-width: 100%; height: auto; }

a {
    color: var(--cyan);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover { color: var(--lime); }

:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 3px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip:focus {
    left: 1rem;
    top: 1rem;
    padding: 0.65rem 0.95rem;
    background: var(--pink);
    color: #090611;
    z-index: 1000;
}

.top-bar {
    position: relative;
    z-index: 5;
    background: rgba(7, 7, 15, 0.84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.top-bar__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1rem;
}

.top-bar__inner .muted {
    margin-right: auto;
    color: var(--text-soft);
}

.theme-picker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.theme-picker__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-soft);
}

.theme-picker__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.theme-picker__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 249, 255, 0.35);
    background: rgba(125, 249, 255, 0.08);
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(125, 249, 255, 0.06);
}

.theme-picker__link:hover,
.theme-picker__link.is-active {
    background: rgba(255, 79, 216, 0.16);
    border-color: rgba(255, 79, 216, 0.45);
    color: #fff;
}

.top-bar a:last-child {
    color: #fff;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 1rem 1.25rem 0;
}

.site-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: grid;
    gap: 1rem;
    align-items: center;
    background: rgba(10, 12, 24, 0.72);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-block;
    max-width: min(100%, 25rem);
}

.brand__logo {
    width: 100%;
    max-height: 4rem;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(125, 249, 255, 0.22));
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.nav-burger {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(125, 249, 255, 0.08);
    color: var(--cyan);
    font-size: 1.25rem;
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.primary-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.nav-toggle:checked ~ .primary-nav {
    max-height: 28rem;
}

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav > ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-nav a {
    display: block;
    padding: 0.8rem 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.primary-nav .submenu {
    margin: 0 0 0.85rem;
    padding: 0 0 0 1rem;
    border-left: 2px solid rgba(125, 249, 255, 0.22);
}

.primary-nav .submenu a {
    padding: 0.3rem 0;
    color: var(--text-soft);
    font-weight: 500;
}

.slm img {
    width: clamp(8rem, 18vw, 12rem);
    filter: drop-shadow(0 0 16px rgba(125, 249, 255, 0.2));
}

@media (min-width: 980px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .nav-burger { display: none; }

    .primary-nav {
        max-height: none;
        overflow: visible;
        justify-self: center;
    }

    .primary-nav > ul {
        display: flex;
        gap: 1.2rem 1.6rem;
    }

    .primary-nav > ul > li {
        position: relative;
        border-top: 0;
    }

    .primary-nav > ul > li > a {
        padding: 0.35rem 0;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.88rem;
    }

    .primary-nav .submenu {
        display: none;
        position: absolute;
        left: 0;
        top: calc(100% + 0.6rem);
        min-width: 18rem;
        margin: 0;
        padding: 1rem;
        border-radius: 1rem;
        border-left: 0;
        background: var(--panel-strong);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .primary-nav > ul > li:hover .submenu,
    .primary-nav > ul > li:focus-within .submenu {
        display: block;
    }
}

.hero {
    padding: clamp(2rem, 5vw, 4rem) 1.25rem 2rem;
}

.hero__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 920px) {
    .hero__inner {
        grid-template-columns: 1fr 0.88fr;
    }
}

.hero__kicker {
    margin: 0 0 0.75rem;
    font-size: 0.86rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--lime);
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    max-width: 10ch;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 28px rgba(125, 249, 255, 0.12);
}

.hero__lead {
    max-width: 36ch;
    color: var(--text-soft);
    font-size: 1.12rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.82rem;
    font-weight: 700;
}

.btn--primary {
    background: linear-gradient(135deg, var(--pink), #ff7eaf);
    color: #090611;
    box-shadow: 0 12px 26px rgba(255, 79, 216, 0.28);
}

.btn--ghost {
    border: 1px solid rgba(125, 249, 255, 0.36);
    background: rgba(125, 249, 255, 0.08);
    color: var(--cyan);
}

.hero__visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 79, 216, 0.14), rgba(125, 249, 255, 0.08)),
        var(--panel);
    border: 1px solid var(--line);
    min-height: 24rem;
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: var(--shadow);
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: calc(var(--radius) - 8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero__portrait {
    position: relative;
    z-index: 1;
    width: min(100%, 29rem);
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

.hero__stamp {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    width: min(42%, 11rem);
    padding: 0.7rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(125, 249, 255, 0.22);
    backdrop-filter: blur(8px);
}

.stats {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem 2.75rem;
    display: grid;
    gap: 1rem;
}

@media (min-width: 760px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--lime);
}

.section,
.showcase,
.cta-row,
.about {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.section {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

.section--muted {
    background: linear-gradient(180deg, transparent, rgba(125, 249, 255, 0.03));
}

.section__inner,
.showcase,
.cta-row,
.about__inner {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.section h2,
.showcase h2,
.cta-card h2,
.about h2 {
    margin-top: 0;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
}

.section__inner--wide {
    max-width: var(--max);
}

.section__eyebrow {
    margin: 0 0 0.55rem;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 700;
}

.section__lead {
    max-width: 42rem;
    color: var(--text-soft);
}

.highlight {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 79, 216, 0.14), rgba(125, 249, 255, 0.06));
    border: 1px solid rgba(255, 79, 216, 0.22);
    box-shadow: var(--shadow);
}

.highlight a { color: var(--lime); }

.service-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 920px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.service-card__eyebrow {
    margin: 0 0 0.45rem;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 700;
}

.service-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.45rem;
}

.service-band__grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 920px) {
    .service-band__grid {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .service-band--alt .service-band__grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.service-band__media {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.service-band__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.05);
}

.service-band__panel {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 1.7rem;
    box-shadow: var(--shadow);
}

.service-band__meta {
    margin: -0.15rem 0 1rem;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
}

.service-list li + li {
    margin-top: 0.7rem;
}

.quote-card {
    margin-top: 1.5rem;
    padding: 1.1rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 79, 216, 0.24);
    background: rgba(255, 79, 216, 0.08);
}

.quote-card__eyebrow {
    margin: 0 0 0.45rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
}

.quote-card blockquote {
    margin: 0;
    color: var(--text);
}

.showcase {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.showcase__header {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

.showcase__grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 920px) {
    .showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.showcase-card {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.showcase-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.showcase-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.05) contrast(1.06);
}

.showcase-card__body {
    padding: 1.35rem;
}

.showcase-card__eyebrow {
    margin: 0 0 0.4rem;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    font-weight: 700;
}

.cta-row {
    padding-top: 0;
    padding-bottom: 3rem;
}

.cta-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 920px) {
    .cta-grid {
        grid-template-columns: 0.85fr 1.15fr;
    }
}

.cta-art,
.cta-card {
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.cta-art {
    display: grid;
    place-items: center;
    min-height: 18rem;
    padding: 2rem;
}

.cta-art img {
    width: min(100%, 19rem);
    filter: drop-shadow(0 0 24px rgba(125, 249, 255, 0.18));
}

.cta-card {
    padding: 2rem;
}

.tag {
    display: inline-flex;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(215, 255, 84, 0.14);
    border: 1px solid rgba(215, 255, 84, 0.28);
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.cta-card__actions {
    margin-top: 1.25rem;
}

.note { color: var(--text-soft); }

.about {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
}

.about__inner {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 920px) {
    .about__inner {
        grid-template-columns: 18rem minmax(0, 1fr);
    }
}

.about__photo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.about__photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.site-footer {
    background: rgba(3, 4, 10, 0.92);
    border-top: 1px solid var(--line);
    padding: 2rem 1.25rem 2.4rem;
}

.site-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.site-footer__copyright {
    margin: 0;
    color: var(--text-soft);
}

.social {
    display: flex;
    gap: 0.8rem;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(125, 249, 255, 0.08);
    color: var(--cyan);
}

.social a:hover {
    background: rgba(255, 79, 216, 0.12);
    color: #fff;
}

.muted { opacity: 0.8; }

@media (min-width: 1220px) {
    body {
        padding-right: 20rem;
    }

    .top-bar {
        position: fixed;
        top: 1rem;
        left: 1rem;
        right: 21rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        box-shadow: var(--shadow);
    }

    .top-bar__inner {
        max-width: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-header {
        position: fixed;
        top: 1rem;
        right: 1rem;
        width: 18rem;
        padding: 0;
        z-index: 40;
    }

    .site-header__inner {
        max-width: none;
        height: calc(100vh - 2rem);
        padding: 1rem;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 1rem;
        border-radius: var(--radius);
    }

    .brand {
        max-width: none;
    }

    .nav-burger {
        display: none;
    }

    .primary-nav {
        max-height: none;
        overflow: visible;
    }

    .primary-nav > ul {
        display: grid;
        gap: 0.8rem;
    }

    .primary-nav > ul > li {
        border-top: 0;
        padding: 0.85rem 0.9rem;
        border-radius: 1rem;
        border: 1px solid rgba(125, 249, 255, 0.2);
        background: rgba(255, 255, 255, 0.03);
    }

    .primary-nav > ul > li > a {
        padding: 0;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.82rem;
    }

    .primary-nav .submenu {
        display: block;
        position: static;
        margin: 0.65rem 0 0;
        padding: 0.55rem 0 0 0.8rem;
        border-left: 2px solid rgba(255, 79, 216, 0.25);
    }

    .slm {
        margin-top: auto;
    }

    main {
        padding-top: 5rem;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero__inner {
        position: relative;
        grid-template-columns: minmax(0, 1fr);
        min-height: calc(100vh - 8rem);
        align-items: end;
    }

    .hero__inner > :first-child {
        max-width: 40rem;
    }

    .hero__visual {
        position: absolute;
        top: 1rem;
        right: 1rem;
        bottom: 0;
        width: min(42vw, 34rem);
        min-height: 0;
        border-top-right-radius: 3rem;
        border-top-left-radius: 3rem;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        opacity: 0.95;
    }

    .hero__portrait {
        width: 100%;
        max-height: 100%;
    }

    .stats {
        margin-top: -3rem;
        position: relative;
        z-index: 2;
    }

    .showcase__grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}
