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

:root {
    --bg-0: #050505;
    --bg-1: #0a0a0a;
    --bg-2: #0f0f0f;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);
    --t1: #f5f5f5;
    --t2: #929292;
    --t3: #565656;
    --accent: #56FB6F;
    --accent-dim: #4BDC61;
    --accent-glow: rgba(86, 251, 111, 0.12);
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
    --sans: 'Inter', system-ui, sans-serif
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll
}

body {
    background: var(--bg-0);
    color: var(--t1);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg-0)
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .15);
    border-radius: 0
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .25)
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .15) var(--bg-0)
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 0;
    transition: background .3s ease, border .3s ease;
    border-bottom: 1px solid transparent
}

.nav.nav--scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border)
}

.nav__inner {
    max-width: 1364px;
    margin: 0 auto;
    padding: 0 36px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav__logo {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--t1);
    text-decoration: none
}

.nav__logo span {
    color: var(--accent)
}

.nav__links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: center
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav__link {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--t3);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 4px;
    position: relative;
    transition: color .3s ease, background .3s ease
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .3s ease, left .3s ease
}

.nav__link:hover {
    color: var(--t2)
}

.nav__link:hover::after {
    width: 100%;
    left: 0
}

.nav__cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: #000;
    background: var(--accent);
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s
}

.nav__cta:hover {
    box-shadow: 0 0 20px rgba(86, 251, 111, .3)
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(86, 251, 111, .08) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 70%)
}

.hero__radial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    border-radius: 50% !important;
    border: 1px solid rgba(86, 251, 111, .04);
    opacity: .5
}

.hero__radial:nth-child(2) {
    width: 900px;
    height: 900px;
    border-color: rgba(86, 251, 111, .06)
}

.hero__radial:nth-child(3) {
    width: 600px;
    height: 600px;
    border-color: rgba(86, 251, 111, .08)
}

.hero__inner {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding-top: 60px
}

.hero__visual {
    display: flex;
    align-items: center;
    overflow: hidden
}

@keyframes pcb-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 12px rgba(86, 251, 111, .05));
    }

    50% {
        filter: drop-shadow(0 0 18px rgba(86, 251, 111, .15)) drop-shadow(0 0 10px rgba(86, 251, 111, .05));
    }
}

.hero__pcb {
    width: 95%;
    max-width: none;
    height: auto;
    margin-left: -10%;
    animation: pcb-pulse 5s ease-in-out infinite
}

.hero__info {
    padding: 0
}

.hero__logo {
    height: 28px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1)
}

.hero__title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 18px
}

.hero__title em {
    color: var(--accent);
    font-style: normal
}

.hero__sub {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.8;
    color: var(--t2);
    max-width: 400px;
    margin-bottom: 32px
}

.hero__btns {
    display: flex;
    gap: 14px
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all .25s
}

.btn--fill {
    background: var(--accent);
    color: #000
}

.btn--fill:hover {
    box-shadow: 0 0 24px rgba(86, 251, 111, .35);
    transform: translateY(-1px)
}

.btn--ghost {
    color: var(--t2);
    border: 1px solid var(--border)
}

.btn--ghost:hover {
    color: var(--t1);
    border-color: var(--border-hover)
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.hero__scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--accent-dim), transparent);
    animation: scrollAnim 2s ease-in-out infinite
}

.hero__scroll-text {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--t3)
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.badge {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 6px 14px;
    border: 1px solid var(--accent-glow);
    background: rgba(86, 251, 111, .03)
}

.sect {
    padding: 120px 60px;
    position: relative
}

.sect--border {
    border-top: none
}

.sect__inner {
    max-width: 1100px;
    margin: 0 auto
}

.sect__tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
    opacity: .8
}

.sect__h {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px
}

.sect__p {
    font-size: 14px;
    color: var(--t3);
    max-width: 450px;
    margin-bottom: 48px
}

.fw {
    padding: 0;
    display: grid;
    grid-template-columns: 3px 1fr;
    border: 1px solid rgba(86, 251, 111, .15);
    background: linear-gradient(135deg, rgba(86, 251, 111, .03), transparent 50%);
    overflow: hidden
}

.fw__bar {
    background: var(--accent)
}

.fw__body {
    padding: 36px 40px
}

.fw__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.fw__chip {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent)
}

.fw__chip svg {
    width: 18px;
    height: 18px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fw__title {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px
}

.fw__desc {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t2);
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 20px
}

.fw__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px
}

.fw__list li {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 2
}

.fw__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    flex-shrink: 0
}



.specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border)
}

.spec {
    background: var(--bg-1);
    padding: 32px;
    transition: background .25s
}

.spec:hover {
    background: var(--bg-2)
}

.spec__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.spec__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.spec__label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--t3);
    text-transform: uppercase;
    margin-bottom: 6px
}

.spec__val {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px
}

.spec__name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--t1)
}

.spec__desc {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t2);
    line-height: 1.7
}



.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--bg-1)
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(82deg);
    transition: transform .4s, filter .3s
}

.gallery__item:hover img {
    transform: scale(1.05);
    filter: hue-rotate(82deg) brightness(1.1)
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent 40%);
    pointer-events: none;
    transition: opacity .3s
}

.gallery__item:hover::after {
    opacity: .3
}

.gallery__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--t1);
    z-index: 1
}

.gallery__zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .1);
    opacity: 0;
    transition: opacity .3s;
    z-index: 1
}

.gallery__zoom svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2
}

.gallery__item:hover .gallery__zoom {
    opacity: 1
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center
}

.lightbox.is-open {
    display: flex
}

.lightbox__img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    filter: hue-rotate(180deg);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: border-color .2s
}

.lightbox__close:hover {
    border-color: var(--accent)
}

.lightbox__close svg {
    width: 20px;
    height: 20px;
    stroke: var(--t1);
    fill: none;
    stroke-width: 2
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: border-color .2s
}

.lightbox__nav:hover {
    border-color: var(--accent)
}

.lightbox__nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--t1);
    fill: none;
    stroke-width: 2
}

.lightbox__nav--prev {
    left: 24px
}

.lightbox__nav--next {
    right: 24px
}

.lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    letter-spacing: 2px
}

.chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border)
}

.chip-card {
    background: var(--bg-1);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: background .25s
}

.chip-card:hover {
    background: var(--bg-2)
}

.chip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity .2s
}

.chip-card:hover::before {
    opacity: 1
}

.chip-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-glow);
    background: rgba(86, 251, 111, .03);
    margin-bottom: 16px
}

.chip-card__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.chip-card__name {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 4px
}

.chip-card__role {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px
}

.chip-card__desc {
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.7;
    color: var(--t3)
}

.split-l {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border)
}

.split-l__hero {
    background: var(--bg-1);
    padding: 48px 40px;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.split-l__hero::after {
    content: '1PC';
    position: absolute;
    right: 16px;
    bottom: 8px;
    font-family: var(--mono);
    font-size: 100px;
    font-weight: 900;
    color: var(--accent);
    opacity: .03;
    line-height: 1
}

.split-l__badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 4px 10px;
    margin-bottom: 16px;
    width: fit-content
}

.split-l__badge--user {
    color: var(--accent);
    background: rgba(86, 251, 111, .06);
    border: 1px solid var(--accent-glow)
}

.split-l__badge--dev {
    color: #4d9fff;
    background: rgba(77, 159, 255, .06);
    border: 1px solid rgba(77, 159, 255, .15)
}

.split-l__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3
}

.split-l__text {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.9;
    color: var(--t2)
}

.split-l__text code {
    background: rgba(86, 251, 111, .08);
    border: 1px solid var(--accent-glow);
    padding: 1px 6px;
    font-size: 11px;
    color: var(--accent)
}

.split-l__sub {
    background: var(--bg-1);
    padding: 32px;
    transition: background .25s
}

.split-l__sub:hover {
    background: var(--bg-2)
}

.split-l__sub-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px
}

.split-l__sub-text {
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.8;
    color: var(--t2)
}

.details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border)
}

.detail {
    background: var(--bg-1);
    padding: 32px
}

.detail__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border)
}

.detail__head svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.detail__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase
}

.detail__item {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--t2);
    line-height: 2.2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    margin: 0 -8px;
    transition: color .2s, background .2s
}

.detail__item:hover {
    color: var(--t1);
    background: rgba(255, 255, 255, .02)
}

.detail__item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    opacity: .4;
    flex-shrink: 0;
    transition: opacity .2s
}

.detail__item:hover::before {
    opacity: 1
}

.detail__note {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t3);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.cta {
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden
}


.cta__content {
    position: relative;
    z-index: 2;
    padding: 160px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.cta__tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
    opacity: .8
}

.cta__h {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px
}

.cta__p {
    font-size: 14px;
    color: var(--t1);
    margin-bottom: 40px;
    max-width: 520px
}

.cta__card {
    margin-top: 48px;
    padding: 28px 36px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    max-width: 520px;
    text-align: left
}

.cta__card-title {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--t1)
}

.cta__card-title span {
    color: var(--accent)
}

.cta__card-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.cta__card-chip {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 5px 12px;
    border: 1px solid rgba(86, 251, 111, .2);
    background: rgba(86, 251, 111, .05)
}

.cta__card-desc {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t2);
    line-height: 1.7
}

.specs--3col {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0
}



#hyperContainer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cta__overlay {
    display: none
}

.footer {
    border-top: 1px solid var(--border);
    padding: 32px 60px
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer__copy {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--t2)
}

.footer__links {
    display: flex;
    gap: 20px;
    align-items: center
}

.footer__link {
    font-size: 11px;
    color: var(--t2);
    text-decoration: none;
    transition: color .25s;
    display: flex;
    align-items: center;
    gap: 4px
}

.footer__link:hover {
    color: var(--t1)
}

.footer__link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    vertical-align: middle
}

/* SCROLL REVEAL */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0)
}

[data-reveal] .reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

[data-reveal].is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0)
}



/* GRADIENT CIRCLES */
.gradient-circle {
    position: absolute;
    pointer-events: none;
    left: -250px;
    bottom: -100px;
    z-index: 0;
    width: 500px;
    height: 500px;
    border-radius: 70%;
    background-image: linear-gradient(45deg, #56FB6F, #4BDC61);
    opacity: .06;
    filter: blur(120px)
}

.gradient-circle.two {
    opacity: .04;
    left: auto;
    top: -200px;
    right: -200px;
    bottom: auto;
    background-image: linear-gradient(45deg, #56FB6F, #3ac950)
}

/* MOBILE */
@media(max-width:768px) {
    .nav {
        padding: 0 16px
    }

    .nav__inner {
        padding: 12px 0
    }

    .nav__logo {
        font-size: 12px;
        letter-spacing: 1px
    }

    .nav__links {
        gap: 0
    }

    .nav__link {
        display: none
    }

    .nav__cta {
        font-size: 10px;
        padding: 7px 14px
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding-top: 70px
    }

    .hero__visual {
        justify-content: center;
        padding: 0 16px
    }



    .hero__info {
        padding: 32px 24px 60px;
        text-align: center
    }

    .hero__logo {
        height: 22px
    }

    .hero__title {
        font-size: 28px;
        letter-spacing: -1px
    }

    .hero__sub {
        margin: 0 auto 24px;
        font-size: 11px
    }

    .hero__btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px
    }

    .badge-row {
        justify-content: center
    }

    .badge {
        font-size: 9px;
        padding: 5px 10px
    }

    .sect {
        padding: 60px 20px
    }

    .sect__h {
        font-size: 22px
    }

    .sect__p {
        font-size: 13px
    }

    .fw__body {
        padding: 24px 20px
    }

    .fw__list {
        grid-template-columns: 1fr
    }

    .fw__desc {
        font-size: 11px
    }



    .specs,
    .chips,
    .details,
    .gallery {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 60px 20px
    }

    .footer {
        padding: 20px
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s
}

.loader.is-hidden {
    opacity: 0;
    pointer-events: none
}

.loader__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: .3;
        transform: scale(.8)
    }

    50% {
        opacity: 1;
        transform: scale(1.2)
    }
}