:root {
    --bg: #05080d;
    --panel: #0a1119;
    --panel-2: #0d1722;
    --text: #f5f8fb;
    --muted: #93a4b5;
    --blue: #00b7ff;
    --blue-2: #1476c9;
    --line: rgba(255, 255, 255, 0.10);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 80% 25%, rgba(0, 183, 255, 0.12), transparent 34%),
        radial-gradient(circle at 10% 75%, rgba(20, 118, 201, 0.09), transparent 28%),
        var(--bg);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

img,
svg {
    display: block;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-content: center;
    gap: 18px;
    background: #030609;
    transition: opacity .55s ease, visibility .55s ease;
}

.intro.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.intro p {
    margin: 0;
    color: #dceef7;
    font: 800 17px/1 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: .30em;
    text-align: center;
}

.intro__mark {
    display: flex;
    justify-content: center;
    gap: 7px;
    transform: skewX(-22deg);
}

.intro__mark span {
    width: 13px;
    height: 42px;
    background: var(--blue);
    box-shadow: 0 0 20px rgba(0, 183, 255, .48);
    animation: introBars .75s ease-in-out infinite alternate;
}

.intro__mark span:nth-child(2) { animation-delay: .12s; }
.intro__mark span:nth-child(3) { animation-delay: .24s; }

@keyframes introBars {
    from { transform: scaleY(.52); opacity: .45; }
    to { transform: scaleY(1); opacity: 1; }
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

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

.brand-mini img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(0, 183, 255, .34);
}

.brand-mini span {
    display: grid;
    gap: 3px;
}

.brand-mini strong {
    font: 800 20px/1 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: .04em;
}

.brand-mini small {
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .28em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 36px);
    margin-left: auto;
    margin-right: clamp(18px, 3vw, 44px);
}

.header-nav a {
    position: relative;
    padding: 12px 0;
    color: #a8bac8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.header-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
    color: #fff;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-contact {
    padding: 11px 17px;
    border: 1px solid rgba(0, 183, 255, .45);
    border-radius: 999px;
    color: #dff7ff;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.header-contact:hover {
    transform: translateY(-2px);
    background: rgba(0, 183, 255, .10);
}

.hero {
    min-height: calc(100vh - 166px);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
    align-items: center;
    gap: clamp(40px, 6vw, 105px);
    padding: 60px 0 50px;
}

.hero__content {
    max-width: 720px;
}

.country-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 183, 255, .22);
    border-radius: 999px;
    background: rgba(0, 183, 255, .07);
    color: #c9efff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.country-flag {
    font-size: 17px;
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--blue);
    font: 800 14px/1 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: .28em;
}

h1 {
    max-width: 760px;
    margin: 0;
    font: italic 900 clamp(58px, 7vw, 108px)/.88 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: -.035em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--primary {
    color: #001019;
    background: var(--blue);
    box-shadow: 0 14px 34px rgba(0, 183, 255, .22);
}

.button--primary:hover {
    box-shadow: 0 18px 44px rgba(0, 183, 255, .32);
}

.button--primary svg {
    width: 20px;
    fill: currentColor;
}

.button--ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
    color: #ecf5fa;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, .07);
}

.button--ghost svg {
    width: 18px;
    flex: 0 0 auto;
    fill: currentColor;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 44px;
}

.quick-info article {
    min-width: 0;
    display: flex;
    gap: 12px;
    padding: 17px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.quick-info article > span {
    flex: 0 0 auto;
    color: var(--blue);
    font: 800 13px/1 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.quick-info article div {
    display: grid;
    gap: 6px;
}

.quick-info strong {
    font-size: 12px;
    line-height: 1.25;
}

.quick-info small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.hero__visual {
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
}

.hero-tiktok-card {
    position: relative;
    z-index: 2;
    width: min(100%, 615px);
    min-height: 610px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: clamp(24px, 4vw, 42px);
    background:
        radial-gradient(circle at 88% 5%, rgba(0,183,255,.13), transparent 32%),
        linear-gradient(145deg, rgba(13,23,34,.98), rgba(5,9,14,.99));
    box-shadow: var(--shadow);
}

.hero-tiktok-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 4px 4px 16px;
}

.hero-tiktok-card__header > div {
    display: grid;
    gap: 5px;
}

.hero-tiktok-card__header span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .18em;
}

.hero-tiktok-card__header h2 {
    margin: 0;
    color: #f4f9fc;
    font: italic 900 clamp(21px, 2vw, 30px)/1 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.hero-tiktok-card__header a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(0,183,255,.32);
    border-radius: 999px;
    color: #c9efff;
    font-size: 10px;
    font-weight: 800;
    transition: background .2s ease, border-color .2s ease;
}

.hero-tiktok-card__header a:hover {
    border-color: rgba(0,183,255,.68);
    background: rgba(0,183,255,.09);
}

.hero-tiktok-card__embed {
    min-height: 525px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
}

.hero-tiktok-card__embed .tiktok-embed {
    width: 100% !important;
    max-width: 720px !important;
    min-width: 288px !important;
    margin: 0 auto !important;
}

.hero-tiktok-card__embed iframe {
    width: 100% !important;
    max-width: 100% !important;
}

.visual-card {
    position: relative;
    z-index: 2;
    width: min(100%, 615px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: clamp(24px, 4vw, 42px);
    background: var(--panel);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
    animation: floatCard 6s ease-in-out infinite;
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0,183,255,.08);
    pointer-events: none;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card__shine {
    position: absolute;
    z-index: 3;
    inset: -40% auto auto -70%;
    width: 48%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transform: rotate(23deg);
    animation: shine 5.5s ease-in-out infinite;
    pointer-events: none;
}

.visual-card__status {
    position: absolute;
    z-index: 4;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(3, 8, 13, .82);
    backdrop-filter: blur(10px);
    color: #e6f8ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(0, 183, 255, .45);
    animation: pulse 1.8s infinite;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(0, 183, 255, .17);
    border-radius: 50%;
    pointer-events: none;
}

.orbit--one {
    width: 112%;
    aspect-ratio: 1;
    animation: spin 26s linear infinite;
}

.orbit--two {
    width: 82%;
    aspect-ratio: 1;
    border-color: rgba(255,255,255,.10);
    animation: spin 18s linear infinite reverse;
}

.site-footer {
    padding: 54px 0 22px;
    border-top: 1px solid var(--line);
    color: #899baa;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(180px, .8fr));
    gap: clamp(34px, 6vw, 84px);
    padding-bottom: 44px;
}

.footer-brand p {
    max-width: 400px;
    margin: 22px 0 0;
    color: #708393;
    font-size: 13px;
    line-height: 1.65;
}

.footer-column h2 {
    margin: 0;
    color: #f5f8fb;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 17px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    display: grid;
    gap: 5px;
}

.footer-column li span {
    color: #607485;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-column li strong,
.footer-column li a {
    color: #b8c7d2;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.footer-column li a {
    transition: color .2s ease;
}

.footer-column li a:hover {
    color: var(--blue);
}

.footer-bottom {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: #5e7283;
    font-size: 10px;
    letter-spacing: .05em;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #dff7ff;
}

@keyframes floatCard {
    0%, 100% { transform: rotate(1.5deg) translateY(0); }
    50% { transform: rotate(.5deg) translateY(-12px); }
}

@keyframes shine {
    0%, 58% { left: -70%; }
    78%, 100% { left: 135%; }
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 10px rgba(0, 183, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 183, 255, 0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
    .header-nav {
        gap: 18px;
        margin-right: 22px;
    }

    .hero {
        grid-template-columns: 1fr 430px;
        gap: 42px;
    }

    .quick-info {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 490px;
    }

    .hero-tiktok-card {
        min-height: 540px;
        padding: 14px;
    }

    .hero-tiktok-card__embed {
        min-height: 475px;
    }

}

@media (max-width: 840px) {
    .page-shell {
        width: min(100% - 28px, 720px);
    }

    .site-header {
        min-height: 78px;
    }

    .header-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 46px 0 34px;
    }

    .hero__content {
        max-width: none;
    }

    h1 {
        font-size: clamp(54px, 15vw, 86px);
    }

    .quick-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__visual {
        min-height: auto;
        padding: 20px 0 55px;
    }

    .visual-card {
        width: min(100%, 570px);
    }

    .hero-tiktok-card {
        width: min(100%, 570px);
    }

    .orbit--one { width: 105%; }

    .footer-grid {
        grid-template-columns: 1.15fr 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 620px) {
    .page-shell {
        width: min(100% - 16px, 720px);
    }

    body::before {
        background-size: 28px 28px;
    }

    .brand-mini img {
        width: 40px;
        height: 40px;
    }

    .brand-mini strong {
        font-size: 17px;
    }

    .header-contact {
        padding: 9px 13px;
        font-size: 11px;
    }

    .country-pill {
        margin-bottom: 23px;
    }

    h1 {
        font-size: clamp(50px, 16.8vw, 73px);
        line-height: .90;
    }

    .hero__lead {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .button {
        width: 100%;
    }

    .quick-info {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .quick-info article {
        padding: 15px;
    }

    .quick-info strong { font-size: 13px; }
    .quick-info small { font-size: 11px; }

    .visual-card {
        border-radius: 24px;
        transform: none;
        animation: floatMobile 5s ease-in-out infinite;
    }

    .visual-card__status {
        right: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
        font-size: 8px;
        letter-spacing: .10em;
    }

    .hero-tiktok-card {
        min-height: 520px;
        padding: 8px;
        border-radius: 24px;
    }

    .hero-tiktok-card__header {
        padding: 8px 5px 14px;
    }

    .hero-tiktok-card__header h2 {
        font-size: 20px;
    }

    .hero-tiktok-card__header a {
        padding: 8px 10px;
        font-size: 9px;
    }

    .hero-tiktok-card__embed {
        min-height: 455px;
        border-radius: 18px;
    }

    .site-footer {
        padding-top: 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 36px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        min-height: 92px;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        text-align: center;
    }

    .footer-links {
        gap: 18px;
    }

    @keyframes floatMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
