/* ================== RESET & BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg0: #050B18;
    --bg1: #0B1630;
    --bg2: #0E1B3A;
    --ink: #E9F1FF;
    --mut: #93A5C7;
    --dim: #5F6F92;
    --eb: #2E6BFF;
    --cy: #26D6E4;
    --tq: #17C8B4;
    --line: rgba(125, 170, 255, .13);
    --line2: rgba(125, 170, 255, .24);
    --grad: linear-gradient(120deg, #2E6BFF, #26D6E4);
    --r: 18px;
    --ff: 'Vazirmatn', sans-serif;
    --fe: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg0);
    color: var(--ink);
    font-family: var(--ff);
    font-size: 15.5px;
    line-height: 1.95;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

::selection {
    background: rgba(38, 214, 228, .28);
    color: #fff
}

::-webkit-scrollbar {
    width: 9px
}

::-webkit-scrollbar-track {
    background: var(--bg0)
}

::-webkit-scrollbar-thumb {
    background: #1A2A4E;
    border-radius: 9px
}

::-webkit-scrollbar-thumb:hover {
    background: #26D6E4
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit
}

input, select, textarea {
    font-family: inherit
}

.en {
    font-family: var(--fe);
    letter-spacing: .02em
}

.container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(18px, 4vw, 42px)
}

main {
    min-height: 60vh
}

/* ================== BACKGROUND FX ================== */
.bgfx {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(1100px 600px at 85% -8%, rgba(46, 107, 255, .14), transparent 60%),
    radial-gradient(900px 500px at 8% 30%, rgba(38, 214, 228, .07), transparent 60%),
    radial-gradient(1200px 800px at 50% 110%, rgba(14, 27, 58, .9), transparent 60%),
    var(--bg0)
}

.bgfx::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(122, 160, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(122, 160, 255, .045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 75%)
}

/* ================== TYPOGRAPHY & SHARED ================== */
.kick {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--fe);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cy)
}

.kick::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    flex: none
}

.kick .kn {
    color: var(--dim);
    letter-spacing: .14em
}

h2.sec {
    font-size: clamp(1.65rem, 3.4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.4;
    margin: 14px 0 10px
}

.sec-sub {
    color: var(--mut);
    max-width: 640px;
    font-size: 1.02rem
}

.sec-head {
    margin-bottom: clamp(30px, 5vw, 54px)
}

.sec-head.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.sec-head.center .kick {
    justify-content: center
}

.grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 28px;
    border-radius: 13px;
    font-weight: 700;
    font-size: .98rem;
    transition: .35s cubic-bezier(.2, .7, .2, 1);
    border: 1px solid transparent;
    white-space: nowrap
}

.btn svg {
    width: 18px;
    height: 18px
}

.btn.p {
    background: var(--grad);
    color: #03101F;
    box-shadow: 0 10px 34px rgba(46, 107, 255, .35)
}

.btn.p:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(38, 214, 228, .4);
    filter: brightness(1.08)
}

.btn.g {
    border-color: var(--line2);
    color: var(--ink);
    background: rgba(11, 22, 48, .4)
}

.btn.g:hover {
    border-color: var(--cy);
    color: var(--cy);
    background: rgba(38, 214, 228, .06)
}

.btn.sm {
    height: 40px;
    padding: 0 20px;
    font-size: .88rem;
    border-radius: 10px
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cy);
    font-weight: 700;
    font-size: .95rem;
    transition: .3s
}

.link-arrow svg {
    width: 17px;
    height: 17px;
    transition: .3s
}

.link-arrow:hover {
    gap: 13px
}

[dir=rtl] .link-arrow svg {
    transform: scaleX(-1)
}

section.block {
    padding: clamp(62px, 9vw, 108px) 0;
    position: relative
}

.hairline {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line2) 20%, var(--line2) 80%, transparent)
}

/* ================== HEADER ================== */
header.site {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 100;
    transition: .4s
}

header.site .hin {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 76px;
    max-width: 1340px;
    margin-inline: auto;
    padding-inline: clamp(16px, 3vw, 36px)
}

header.site.scrolled {
    background: rgba(5, 11, 24, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none
}

.brand .bm {
    width: 40px;
    height: 40px;
    flex: none
}

.brand .bt {
    line-height: 1.25
}

.brand .bt b {
    display: block;
    font-size: 1.08rem;
    font-weight: 800
}

.brand .bt span {
    display: block;
    font-family: var(--fe);
    font-size: 9.5px;
    letter-spacing: .24em;
    color: var(--mut);
    text-transform: uppercase
}

nav.main {
    display: flex;
    gap: 2px;
    margin-inline-start: auto
}

nav.main a {
    padding: 8px 12px;
    font-size: .92rem;
    color: var(--mut);
    border-radius: 9px;
    transition: .25s;
    position: relative
}

nav.main a:hover {
    color: var(--ink);
    background: rgba(38, 214, 228, .06)
}

nav.main a.on {
    color: var(--cy)
}

nav.main a.on::after {
    content: '';
    position: absolute;
    bottom: 2px;
    inset-inline: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad)
}

.hact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none
}

.lang-tg {
    display: flex;
    align-items: center;
    border: 1px solid var(--line2);
    border-radius: 9px;
    overflow: hidden;
    font-family: var(--fe);
    font-size: 11.5px;
    font-weight: 700
}

.lang-tg button {
    padding: 6px 11px;
    color: var(--mut);
    transition: .25s
}

.lang-tg button.on {
    background: rgba(38, 214, 228, .12);
    color: var(--cy)
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line2);
    border-radius: 10px
}

.burger svg {
    width: 20px;
    height: 20px
}

/* mobile drawer */
.mmenu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4, 9, 20, .9);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 26px clamp(22px, 6vw, 40px);
    opacity: 0;
    pointer-events: none;
    transition: .35s
}

.mmenu.open {
    opacity: 1;
    pointer-events: auto
}

.mmenu .mtop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px
}

.mmenu nav {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mmenu nav a {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--mut);
    transition: .25s
}

.mmenu nav a:hover, .mmenu nav a.on {
    color: var(--cy);
    background: rgba(38, 214, 228, .07)
}

.mmenu .mcta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

/* ================== HERO ================== */
.hero {
    padding: clamp(120px, 16vh, 170px) 0 0;
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns:1.02fr .98fr;
    gap: clamp(20px, 4vw, 60px);
    align-items: center
}

.hero h1 {
    font-size: clamp(2.7rem, 6.2vw, 4.6rem);
    font-weight: 900;
    line-height: 1.28;
    margin: 20px 0 8px;
    letter-spacing: -.01em
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--cy);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.hero-sub i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dim);
    flex: none
}

.hero-p {
    color: var(--mut);
    max-width: 520px;
    margin: 18px 0 20px;
    font-size: 1.05rem
}

.slogan-rot {
    position: relative;
    height: 34px;
    overflow: hidden;
    border-inline-start: 2px solid var(--cy);
    padding-inline-start: 16px;
    margin-bottom: 28px
}

.slogan-rot span {
    position: absolute;
    inset-inline-start: 16px;
    font-weight: 700;
    color: #BFD3F5;
    opacity: 0;
    transform: translateY(14px);
    transition: .6s;
    font-size: 1.02rem
}

.slogan-rot span.on {
    opacity: 1;
    transform: none
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.hero-meta {
    display: flex;
    gap: 22px;
    margin-top: 34px;
    flex-wrap: wrap
}

.hero-meta .hm {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--mut);
    font-size: .9rem
}

.hero-meta svg {
    width: 16px;
    height: 16px;
    color: var(--cy)
}

.hero-3d {
    position: relative;
    min-height: 520px
}

.hero-3d .gwrap {
    position: absolute;
    inset: 0;
    cursor: grab
}

.hero-3d .gwrap:active {
    cursor: grabbing
}

.hero-3d .gwrap canvas {
    display: block
}

.hero-3d .halo {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 107, 255, .16), transparent 65%);
    filter: blur(10px);
    pointer-events: none
}

.hero-3d .orbit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    animation: spin 60s linear infinite
}

.hero-3d .orbit::before {
    content: '';
    position: absolute;
    inset: 14%;
    border: 1px dashed rgba(125, 170, 255, .18);
    border-radius: 50%
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 12px;
    background: rgba(11, 22, 48, .72);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line2);
    font-size: .82rem;
    font-weight: 600;
    color: #C6D8F7;
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}

.chip svg {
    width: 14px;
    height: 14px;
    color: var(--cy)
}

.chip.c1 {
    top: 9%;
    inset-inline-end: 6%;
    animation-delay: -1s
}

.chip.c2 {
    top: 34%;
    inset-inline-start: 0;
    animation-delay: -3s
}

.chip.c3 {
    bottom: 20%;
    inset-inline-end: 0;
    animation-delay: -5s
}

.chip.c4 {
    bottom: 6%;
    inset-inline-start: 16%;
    animation-delay: -2.2s
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-13px)
    }
}

.scroll-hint {
    display: flex;
    justify-content: center;
    padding: 34px 0 8px
}

.scroll-hint .sh {
    width: 25px;
    height: 42px;
    border: 1.5px solid var(--line2);
    border-radius: 14px;
    position: relative
}

.scroll-hint .sh::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 3px;
    background: var(--cy);
    animation: shd 1.8s infinite
}

@keyframes shd {
    0% {
        transform: translateY(0);
        opacity: 1
    }
    70% {
        transform: translateY(14px);
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

/* ticker */
.ticker {
    direction: ltr;
    border-block: 1px solid var(--line);
    padding: 15px 0;
    overflow: hidden;
    margin-top: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
}

.ticker .tin {
    display: flex;
    gap: 0;
    width: max-content;
    animation: tick 36s linear infinite
}

.ticker:hover .tin {
    animation-play-state: paused
}

.ticker .ti {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-inline: 26px;
    color: var(--mut);
    font-weight: 600;
    font-size: .92rem;
    white-space: nowrap
}

.ticker .ti::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(38, 214, 228, .5)
}

@keyframes tick {
    to {
        transform: translateX(-50%)
    }
}

/* ================== INTRO / ABOUT BLOCK ================== */
.split {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center
}

.netbox {
    position: relative;
    aspect-ratio: 1.12/1;
    border-radius: 24px;
    background: linear-gradient(160deg, var(--bg1), rgba(5, 11, 24, .4));
    border: 1px solid var(--line);
    overflow: hidden
}

.netbox canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.netbox .nbtag {
    position: absolute;
    bottom: 16px;
    inset-inline-start: 18px;
    font-family: var(--fe);
    font-size: 10px;
    letter-spacing: .22em;
    color: var(--dim);
    text-transform: uppercase
}

.facts {
    display: flex;
    gap: 0;
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden
}

.facts .f {
    flex: 1;
    padding: 18px 10px;
    text-align: center;
    border-inline-start: 1px solid var(--line)
}

.facts .f:first-child {
    border: none
}

.facts .f b {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--cy)
}

.facts .f span {
    color: var(--mut);
    font-size: .82rem
}

/* ================== BENTO (محورها) ================== */
.bento {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.bcard {
    position: relative;
    background: linear-gradient(165deg, rgba(14, 27, 58, .75), rgba(5, 11, 24, .55));
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 26px;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1), border-color .4s;
    transform-style: preserve-3d;
    will-change: transform
}

.bcard.big {
    grid-column: span 2;
    grid-row: span 1
}

.bcard::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform .5s
}

.bcard:hover::before, .bcard:hover {
    border-color: rgba(38, 214, 228, .4)
}

.bcard:hover::before {
    transform: scaleX(1)
}

.bcard .num {
    position: absolute;
    top: 20px;
    inset-inline-end: 22px;
    font-family: var(--fe);
    font-size: 2.1rem;
    font-weight: 700;
    color: rgba(125, 170, 255, .14)
}

.bcard .ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 214, 228, .08);
    border: 1px solid rgba(38, 214, 228, .22);
    margin-bottom: 20px;
    transition: .4s
}

.bcard .ico svg {
    width: 23px;
    height: 23px;
    color: var(--cy);
    transition: .4s
}

.bcard:hover .ico {
    background: rgba(38, 214, 228, .16);
    transform: translateY(-3px)
}

.bcard h3 {
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 9px
}

.bcard p {
    color: var(--mut);
    font-size: .94rem
}

.bcard .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px
}

.bcard .tags i {
    font-style: normal;
    font-size: .76rem;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1px solid var(--line);
    color: var(--dim)
}

.bcard.big h3 {
    font-size: 1.45rem
}

.bcard.big .art {
    margin-top: 22px;
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 44px
}

.bcard.big .art b {
    flex: 1;
    background: linear-gradient(180deg, rgba(38, 214, 228, .55), rgba(46, 107, 255, .2));
    border-radius: 4px 4px 0 0;
    animation: bar 2.6s ease-in-out infinite alternate
}

.bcard.big .art b:nth-child(2) {
    animation-delay: -.6s
}

.bcard.big .art b:nth-child(3) {
    animation-delay: -1.2s
}

.bcard.big .art b:nth-child(4) {
    animation-delay: -1.8s
}

.bcard.big .art b:nth-child(5) {
    animation-delay: -.3s
}

.bcard.big .art b:nth-child(6) {
    animation-delay: -.9s
}

@keyframes bar {
    from {
        height: 18%
    }
    to {
        height: 100%
    }
}

/* ================== EVENT CARDS ================== */
.ev-feat {
    display: grid;
    grid-template-columns:.92fr 1.08fr;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(150deg, rgba(14, 27, 58, .8), rgba(5, 11, 24, .6));
    transition: .45s
}

.ev-feat:hover {
    border-color: rgba(38, 214, 228, .45);
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45)
}

.ev-feat .pic {
    position: relative;
    min-height: 330px;
    overflow: hidden
}

.ev-feat .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
    filter: saturate(.85) brightness(.85)
}

.ev-feat:hover .pic img {
    transform: scale(1.06)
}

.ev-feat .pic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 30%, rgba(5, 11, 24, .9));
    mix-blend-mode: normal
}

[dir=rtl] .ev-feat .pic {
    order: 2
}

[dir=ltr] .ev-feat .pic {
    order: 2
}

.ev-feat .pic .code {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    z-index: 2;
    font-family: var(--fe);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .18em;
    color: #03101F;
    background: var(--grad);
    padding: 6px 13px;
    border-radius: 8px
}

.ev-feat .bd {
    padding: clamp(24px, 3.4vw, 42px);
    display: flex;
    flex-direction: column;
    gap: 15px
}

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.bdg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--line2);
    color: var(--mut)
}

.bdg .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tq);
    animation: pulse 1.8s infinite
}

.bdg.soon {
    color: #BFD3F5
}

.bdg.soon .dot {
    background: var(--dim);
    animation: none
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(23, 200, 180, .5)
    }
    55% {
        box-shadow: 0 0 0 7px rgba(23, 200, 180, 0)
    }
}

.ev-feat h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    font-weight: 800;
    line-height: 1.5
}

.ev-feat .en-t {
    font-family: var(--fe);
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--dim);
    text-transform: uppercase;
    line-height: 1.7
}

.ev-feat .mt {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--mut);
    font-size: .9rem
}

.ev-feat .mt span {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.ev-feat .mt svg {
    width: 15px;
    height: 15px;
    color: var(--cy)
}

.regbar {
    margin-top: 4px
}

.regbar .lab {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--mut);
    margin-bottom: 7px
}

.regbar .lab b {
    color: var(--cy)
}

.regbar .rail {
    height: 5px;
    border-radius: 5px;
    background: rgba(125, 170, 255, .12);
    overflow: hidden
}

.regbar .fill {
    height: 100%;
    border-radius: 5px;
    background: var(--grad);
    width: 0;
    transition: width 1.4s cubic-bezier(.2, .7, .2, 1)
}

.ev-row {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px
}

.ev-min {
    display: grid;
    grid-template-columns:150px 1fr;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(11, 22, 48, .5);
    transition: .4s;
    align-items: stretch
}

.ev-min:hover {
    border-color: rgba(38, 214, 228, .4);
    transform: translateY(-3px)
}

.ev-min .mp {
    position: relative;
    min-height: 170px;
    overflow: hidden
}

[dir=rtl] .ev-min .mp {
    order: 2
}

.ev-min .mp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.8) brightness(.8);
    transition: .8s
}

.ev-min:hover .mp img {
    transform: scale(1.07)
}

.ev-min .mb {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ev-min h4 {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.6
}

.ev-min .mm {
    display: flex;
    gap: 16px;
    color: var(--mut);
    font-size: .83rem;
    flex-wrap: wrap
}

.ev-min .mm span {
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.ev-min .mm svg {
    width: 14px;
    height: 14px;
    color: var(--cy)
}

.ev-min .mb .link-arrow {
    margin-top: auto;
    font-size: .88rem
}

/* ================== STATS ================== */
.stats-band {
    background: linear-gradient(180deg, rgba(11, 22, 48, .7), rgba(5, 11, 24, .4));
    border-block: 1px solid var(--line)
}

.stats-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr)
}

.stat {
    padding: 44px 14px;
    text-align: center;
    position: relative
}

.stat + .stat::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 26%;
    height: 48%;
    width: 1px;
    background: var(--line)
}

.stat b {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-family: var(--fe);
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3
}

.stat span {
    color: var(--mut);
    font-size: .92rem
}

/* ================== PLAN TEASER ================== */
.plan-tease {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: clamp(26px, 4vw, 60px);
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: clamp(28px, 4vw, 52px);
    background: radial-gradient(700px 400px at 80% 20%, rgba(46, 107, 255, .12), transparent 70%), linear-gradient(160deg, var(--bg1), rgba(5, 11, 24, .5));
    position: relative;
    overflow: hidden
}

.plan-tease .yrs {
    position: absolute;
    bottom: -18px;
    inset-inline-start: 30px;
    font-family: var(--fe);
    font-weight: 700;
    font-size: clamp(4rem, 9vw, 7rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(125, 170, 255, .16);
    letter-spacing: .04em;
    pointer-events: none
}

.plan-kpis {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.pkpi {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(5, 11, 24, .55);
    transition: .35s
}

.pkpi:hover {
    border-color: rgba(38, 214, 228, .4);
    transform: translateX(-6px)
}

[dir=ltr] .pkpi:hover {
    transform: translateX(6px)
}

.pkpi b {
    font-family: var(--fe);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cy);
    min-width: 96px;
    line-height: 1.2
}

.pkpi span {
    color: var(--mut);
    font-size: .92rem
}

/* ================== NEWS / EDITORIAL ================== */
.news-layout {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: 26px
}

.news-lead {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(11, 22, 48, .55);
    transition: .4s;
    display: flex;
    flex-direction: column
}

.news-lead:hover {
    border-color: rgba(38, 214, 228, .4);
    transform: translateY(-4px)
}

.news-lead .np {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/8.5
}

.news-lead .np img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) brightness(.8);
    transition: .9s
}

.news-lead:hover .np img {
    transform: scale(1.05)
}

.news-lead .nb {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.news-lead h3 {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.65
}

.news-lead p {
    color: var(--mut);
    font-size: .95rem
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(11, 22, 48, .4);
    overflow: hidden
}

.nitem {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
    transition: .3s;
    cursor: pointer;
    align-items: center
}

.nitem:first-child {
    border-top: none
}

.nitem:hover {
    background: rgba(38, 214, 228, .05)
}

.nitem .cat {
    flex: none;
    font-size: .72rem;
    font-weight: 700;
    color: var(--cy);
    border: 1px solid rgba(38, 214, 228, .3);
    padding: 4px 12px;
    border-radius: 16px;
    background: rgba(38, 214, 228, .06)
}

.nitem .tt {
    flex: 1
}

.nitem .tt b {
    display: block;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.7
}

.nitem .tt span {
    color: var(--dim);
    font-size: .8rem
}

.nitem svg {
    width: 16px;
    height: 16px;
    color: var(--dim);
    flex: none
}

.cat-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.ctab {
    padding: 8px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    color: var(--mut);
    font-size: .88rem;
    font-weight: 600;
    transition: .3s
}

.ctab:hover {
    color: var(--ink);
    border-color: var(--line2)
}

.ctab.on {
    background: var(--grad);
    color: #03101F;
    border-color: transparent
}

/* editorial articles */
.ed-grid {
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: clamp(26px, 4vw, 60px)
}

.ed-side {
    position: sticky;
    top: 110px;
    align-self: start
}

.ed-list {
    display: flex;
    flex-direction: column
}

.ed-item {
    display: grid;
    grid-template-columns:56px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 26px 6px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: .3s
}

.ed-item:hover {
    padding-inline: 16px;
    background: rgba(38, 214, 228, .03)
}

.ed-item .no {
    font-family: var(--fe);
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(125, 170, 255, .35)
}

.ed-item h4 {
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    font-weight: 800;
    line-height: 1.65;
    transition: .3s
}

.ed-item:hover h4 {
    color: var(--cy)
}

.ed-item .au {
    color: var(--mut);
    font-size: .86rem;
    margin-top: 5px
}

.ed-item .rm {
    color: var(--dim);
    font-size: .78rem;
    white-space: nowrap;
    font-family: var(--fe)
}

/* ================== CTA BAND ================== */
.cta-band {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: radial-gradient(700px 400px at 50% -20%, rgba(46, 107, 255, .18), transparent 70%),
    linear-gradient(180deg, rgba(11, 22, 48, .6), rgba(5, 11, 24, .2))
}

.cta-band .rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    pointer-events: none;
    opacity: .5
}

.cta-band .rings i {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(125, 170, 255, .14);
    border-radius: 50%;
    animation: spin 90s linear infinite
}

.cta-band .rings i:nth-child(2) {
    inset: 12%;
    animation-duration: 60s;
    animation-direction: reverse;
    border-color: rgba(38, 214, 228, .16)
}

.cta-band .rings i:nth-child(3) {
    inset: 26%;
    animation-duration: 110s
}

.cta-in {
    text-align: center;
    position: relative;
    padding: clamp(70px, 9vw, 110px) 20px
}

.cta-in h2 {
    font-size: clamp(2rem, 4.6vw, 3.3rem);
    font-weight: 900;
    margin: 16px 0 14px
}

.cta-in p {
    color: var(--mut);
    max-width: 560px;
    margin: 0 auto 34px;
    font-size: 1.05rem
}

/* ================== FOOTER ================== */
footer.site {
    background: #040910;
    border-top: 1px solid var(--line);
    padding-top: clamp(50px, 7vw, 80px);
    position: relative
}

footer.site::before {
    content: '';
    position: absolute;
    top: -1px;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(38, 214, 228, .5), transparent);
    width: 60%;
    margin-inline: auto
}

.fgrid {
    display: grid;
    grid-template-columns:1.4fr 1fr 1.1fr 1.2fr;
    gap: clamp(26px, 4vw, 50px);
    padding-bottom: 50px
}

.fcol h5 {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.fcol h5::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px
}

.fcol .fabout {
    color: var(--mut);
    font-size: .92rem;
    margin: 20px 0 22px
}

.socials {
    display: flex;
    gap: 10px
}

.socials button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mut);
    transition: .3s
}

.socials button:hover {
    border-color: var(--cy);
    color: var(--cy);
    background: rgba(38, 214, 228, .07);
    transform: translateY(-3px)
}

.socials svg {
    width: 17px;
    height: 17px
}

.fcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fcol ul a {
    color: var(--mut);
    font-size: .92rem;
    transition: .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.fcol ul a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(38, 214, 228, .4);
    transition: .25s
}

.fcol ul a:hover {
    color: var(--cy)
}

.fcol ul a:hover::before {
    background: var(--cy);
    box-shadow: 0 0 8px rgba(38, 214, 228, .8)
}

.nl {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
    margin-top: 8px;
    background: rgba(11, 22, 48, .6)
}

.nl input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--ink);
    padding: 13px 16px;
    font-size: .9rem;
    min-width: 0
}

.nl input::placeholder {
    color: var(--dim)
}

.nl button {
    background: var(--grad);
    color: #03101F;
    padding: 0 18px;
    display: flex;
    align-items: center;
    transition: .3s
}

.nl button:hover {
    filter: brightness(1.1)
}

.nl svg {
    width: 17px;
    height: 17px
}

.fmeta {
    color: var(--dim);
    font-size: .8rem;
    margin-top: 14px;
    line-height: 1.9
}

.fbot {
    border-top: 1px solid var(--line);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--dim);
    font-size: .84rem;
    align-items: center
}

.fbot .fadmin {
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 6px 14px;
    transition: .3s;
    font-size: .78rem;
    display: inline-flex;
    gap: 8px;
    align-items: center
}

.fbot .fadmin:hover {
    color: var(--cy);
    border-color: var(--line2)
}

.fbot .fadmin svg {
    width: 13px;
    height: 13px
}

/* ================== FORMS ================== */
.fgrid2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.fld {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.fld label {
    font-size: .86rem;
    color: var(--mut);
    font-weight: 600
}

.fld input, .fld select, .fld textarea {
    background: rgba(5, 11, 24, .7);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--ink);
    outline: none;
    transition: .3s;
    font-size: .94rem;
    width: 100%
}

.fld textarea {
    resize: vertical;
    min-height: 120px
}

.fld input:focus, .fld select:focus, .fld textarea:focus {
    border-color: var(--cy);
    box-shadow: 0 0 0 3px rgba(38, 214, 228, .12)
}

.fld select option {
    background: var(--bg1)
}

.form-card {
    background: linear-gradient(160deg, rgba(14, 27, 58, .7), rgba(5, 11, 24, .5));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(24px, 3.4vw, 40px)
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.info-item .ii {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 214, 228, .08);
    border: 1px solid rgba(38, 214, 228, .22)
}

.info-item .ii svg {
    width: 20px;
    height: 20px;
    color: var(--cy)
}

.info-item b {
    display: block;
    font-size: .95rem;
    margin-bottom: 3px
}

.info-item span {
    color: var(--mut);
    font-size: .9rem
}

/* ================== PAGE HERO (inner) ================== */
.phero {
    padding: clamp(120px, 15vh, 160px) 0 clamp(40px, 5vw, 64px);
    position: relative;
    overflow: hidden
}

.phero .glow {
    position: absolute;
    top: -40%;
    inset-inline-start: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 107, 255, .16), transparent 65%);
    pointer-events: none
}

.phero h1 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 900;
    line-height: 1.35;
    margin: 16px 0 12px
}

.phero .lead {
    color: var(--mut);
    max-width: 640px;
    font-size: 1.06rem
}

.crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--dim);
    font-size: .84rem;
    margin-bottom: 8px
}

.crumbs a:hover {
    color: var(--cy)
}

/* ================== EVENT PAGE ================== */
.ev-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(130px, 16vh, 180px) 0 0
}

.ev-hero .evbg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 500px at 78% 12%, color-mix(in srgb, var(--acc) 16%, transparent), transparent 65%),
    radial-gradient(600px 400px at 15% 80%, rgba(46, 107, 255, .1), transparent 70%)
}

.ev-hero .grids {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(125, 170, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 170, 255, .05) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 0, #000, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 0, #000, transparent 80%)
}

.ev-grid {
    display: grid;
    grid-template-columns:1.1fr .9fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    position: relative
}

.ev-code {
    font-family: var(--fe);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--acc);
    border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
    background: color-mix(in srgb, var(--acc) 10%, transparent);
    padding: 7px 16px;
    border-radius: 22px
}

.ev-hero h1 {
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 900;
    line-height: 1.4;
    margin: 20px 0 6px
}

.ev-hero .en-title {
    font-family: var(--fe);
    font-size: clamp(.95rem, 1.6vw, 1.2rem);
    font-weight: 500;
    color: var(--acc);
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.8
}

.ev-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin: 24px 0 30px;
    color: var(--mut)
}

.ev-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .94rem
}

.ev-meta svg {
    width: 17px;
    height: 17px;
    color: var(--acc)
}

.ev-3d {
    position: relative;
    min-height: 430px
}

.ev-3d .gwrap {
    position: absolute;
    inset: 0;
    cursor: grab
}

.ev-3d .gwrap:active {
    cursor: grabbing
}

.count {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.cbox {
    flex: 1;
    min-width: 88px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 10px;
    background: rgba(5, 11, 24, .55);
    backdrop-filter: blur(8px)
}

.cbox b {
    display: block;
    font-family: var(--fe);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--acc);
    line-height: 1.3
}

.cbox span {
    color: var(--mut);
    font-size: .82rem
}

.cd-note {
    color: var(--dim);
    font-size: .85rem;
    margin-top: 12px
}

.topic-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    background: rgba(11, 22, 48, .5);
    transition: .4s;
    position: relative;
    overflow: hidden
}

.topic-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    height: 2px;
    background: var(--acc);
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: .45s
}

.topic-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--acc) 45%, transparent)
}

.topic-card:hover::after {
    transform: scaleX(1)
}

.topic-card b {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px
}

.topic-card b .tn {
    font-family: var(--fe);
    color: var(--acc);
    font-size: .85rem;
    opacity: .8
}

.topic-card p {
    color: var(--mut);
    font-size: .9rem
}

/* speakers */
.sp-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.sp-card {
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: rgba(11, 22, 48, .5);
    transition: .4s;
    cursor: pointer
}

.sp-card:hover {
    border-color: color-mix(in srgb, var(--acc) 45%, transparent);
    transform: translateY(-4px)
}

.avatar {
    width: 64px;
    height: 64px;
    flex: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fe);
    font-weight: 700;
    font-size: 1.25rem;
    color: #03101F;
    position: relative
}

.avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25)
}

.sp-card .sd h4 {
    font-size: 1.02rem;
    font-weight: 800
}

.sp-card .sd .rr {
    color: var(--cy);
    font-size: .85rem;
    margin: 3px 0
}

.sp-card .sd .oo {
    color: var(--mut);
    font-size: .83rem
}

.cm-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 14px
}

.cm-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(11, 22, 48, .4);
    transition: .3s
}

.cm-item:hover {
    border-color: var(--line2)
}

.cm-item .avatar {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 1rem
}

.cm-item b {
    font-size: .94rem;
    display: block
}

.cm-item span {
    color: var(--mut);
    font-size: .8rem
}

/* schedule */
.sch-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: wrap
}

.sch-tab {
    padding: 10px 26px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--mut);
    font-weight: 700;
    transition: .3s;
    font-size: .95rem
}

.sch-tab.on {
    background: color-mix(in srgb, var(--acc) 14%, transparent);
    border-color: color-mix(in srgb, var(--acc) 50%, transparent);
    color: var(--acc)
}

.tl {
    position: relative;
    padding-inline-start: 34px
}

.tl::before {
    content: '';
    position: absolute;
    inset-inline-start: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--acc), rgba(125, 170, 255, .1))
}

.tl-item {
    position: relative;
    padding: 0 0 30px
}

.tl-item::before {
    content: '';
    position: absolute;
    inset-inline-start: -30px;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg0);
    border: 2.5px solid var(--acc);
    box-shadow: 0 0 12px color-mix(in srgb, var(--acc) 55%, transparent)
}

.tl-item .tm {
    font-family: var(--fe);
    color: var(--acc);
    font-weight: 700;
    font-size: .9rem
}

.tl-item .knd {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    border: 1px solid var(--line);
    color: var(--mut);
    padding: 3px 11px;
    border-radius: 14px;
    margin-inline-start: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.tl-item .knd svg {
    width: 12px;
    height: 12px
}

.tl-item h4 {
    font-size: 1.08rem;
    font-weight: 800;
    margin: 8px 0 4px
}

.tl-item p {
    color: var(--mut);
    font-size: .9rem
}

/* papers */
.paper-item {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 16px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(11, 22, 48, .45);
    margin-bottom: 14px;
    transition: .35s
}

.paper-item:hover {
    border-color: var(--line2)
}

.paper-item h4 {
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 6px
}

.paper-item .pa {
    color: var(--mut);
    font-size: .86rem
}

.paper-item .pm {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: center
}

.st-pill {
    font-size: .74rem;
    font-weight: 700;
    padding: 4px 13px;
    border-radius: 14px
}

.st-pill.ok {
    color: var(--tq);
    background: rgba(23, 200, 180, .1);
    border: 1px solid rgba(23, 200, 180, .35)
}

.st-pill.rev {
    color: var(--cy);
    background: rgba(38, 214, 228, .1);
    border: 1px solid rgba(38, 214, 228, .3)
}

.st-pill.sub {
    color: var(--mut);
    border: 1px solid var(--line)
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--cy);
    border: 1px solid rgba(38, 214, 228, .3);
    padding: 8px 16px;
    border-radius: 10px;
    transition: .3s
}

.pdf-btn:hover {
    background: rgba(38, 214, 228, .1)
}

.pdf-btn svg {
    width: 15px;
    height: 15px
}

/* sponsors */
.spt {
    margin-bottom: 34px
}

.spt h6 {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--mut);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 16px
}

.spt h6::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line)
}

.spn-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.spn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 74px;
    flex: 1;
    min-width: 170px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(11, 22, 48, .4);
    font-weight: 800;
    font-size: 1rem;
    color: #C3D4F2;
    transition: .35s;
    cursor: default
}

.spn:hover {
    border-color: var(--line2);
    color: var(--ink);
    background: rgba(14, 27, 58, .7)
}

.spn .sl {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad)
}

/* gallery */
.gal-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 14px
}

.gal {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--line)
}

.gal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) brightness(.85);
    transition: .7s
}

.gal:hover img {
    transform: scale(1.09);
    filter: saturate(1) brightness(1)
}

.gal .cap {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 26px 16px 12px;
    background: linear-gradient(0deg, rgba(4, 9, 20, .9), transparent);
    font-size: .82rem;
    color: #D5E3F8;
    opacity: 0;
    transition: .4s
}

.gal:hover .cap {
    opacity: 1
}

.vid-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid var(--line)
}

.vid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55) saturate(.8)
}

.vid-card .pl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(5, 11, 24, .7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(38, 214, 228, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s
}

.vid-card:hover .pl {
    background: var(--grad);
    transform: translate(-50%, -50%) scale(1.1)
}

.vid-card .pl svg {
    width: 24px;
    height: 24px;
    color: #03101F
}

.vid-card .vc {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 16px;
    font-weight: 700;
    font-size: .92rem
}

.vid-card .vd {
    position: absolute;
    bottom: 16px;
    inset-inline-end: 16px;
    font-family: var(--fe);
    font-size: .78rem;
    color: var(--cy)
}

/* reading page */
.read-wrap {
    max-width: 800px;
    margin-inline: auto
}

.read-wrap .rbody p {
    color: #C9D8F2;
    font-size: 1.05rem;
    margin-bottom: 22px
}

.read-wrap .rbody p:first-of-type {
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 500;
    border-inline-start: 3px solid var(--cy);
    padding-inline-start: 20px
}

.au-box {
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    background: rgba(11, 22, 48, .5);
    margin: 34px 0
}

/* plan7 */
.p7-kpis {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.p7k {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 24px;
    background: rgba(11, 22, 48, .5);
    transition: .4s;
    position: relative;
    overflow: hidden
}

.p7k:hover {
    transform: translateY(-4px);
    border-color: rgba(38, 214, 228, .4)
}

.p7k b {
    font-family: var(--fe);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cy);
    display: block;
    line-height: 1.3
}

.p7k span {
    color: var(--mut);
    font-size: .9rem
}

.p7k .gl {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(38, 214, 228, .14), transparent 70%)
}

.chart-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(24px, 3vw, 40px);
    background: rgba(11, 22, 48, .5)
}

.chart-card h4 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 6px
}

.chart-card .ch-sub {
    color: var(--mut);
    font-size: .86rem;
    margin-bottom: 28px
}

.bar-row {
    margin-bottom: 22px
}

.bar-row .bl {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    margin-bottom: 8px
}

.bar-row .bl b {
    color: var(--cy);
    font-family: var(--fe)
}

.rail2 {
    height: 9px;
    border-radius: 9px;
    background: rgba(125, 170, 255, .1);
    overflow: hidden;
    position: relative
}

.rail2 .f1 {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    background: rgba(125, 170, 255, .3);
    border-radius: 9px
}

.rail2 .f2 {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    background: var(--grad);
    border-radius: 9px;
    width: 0;
    transition: width 1.5s cubic-bezier(.2, .7, .2, 1)
}

.legend {
    display: flex;
    gap: 24px;
    margin-top: 26px;
    font-size: .82rem;
    color: var(--mut);
    flex-wrap: wrap
}

.legend i {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-style: normal
}

.legend i::before {
    content: '';
    width: 14px;
    height: 8px;
    border-radius: 4px;
    background: rgba(125, 170, 255, .3)
}

.legend i.l2::before {
    background: var(--grad)
}

.radar-wrap {
    display: flex;
    justify-content: center
}

.radar-poly {
    transform-origin: 220px 220px;
    animation: radarIn 1.4s cubic-bezier(.2, .7, .2, 1) both
}

@keyframes radarIn {
    from {
        transform: scale(.1);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.mstone {
    display: grid;
    grid-template-columns:120px 1fr;
    gap: 24px;
    padding: 0 0 36px;
    position: relative
}

.mstone::before {
    content: '';
    position: absolute;
    inset-inline-start: 56px;
    top: 10px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--cy), rgba(125, 170, 255, .08))
}

.mstone .yr {
    font-family: var(--fe);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cy);
    text-align: center;
    position: relative;
    z-index: 2
}

.mstone .yr i {
    display: block;
    font-style: normal;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg0);
    border: 3px solid var(--cy);
    margin: 8px auto 0;
    box-shadow: 0 0 14px rgba(38, 214, 228, .5)
}

.mstone .mb2 h4 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 6px
}

.mstone .mb2 p {
    color: var(--mut);
    font-size: .92rem
}

/* ================== ADMIN ================== */
.adm-wrap {
    display: grid;
    grid-template-columns:250px 1fr;
    gap: 0;
    min-height: 100vh;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(8, 15, 32, .6)
}

.adm-side {
    background: rgba(5, 11, 24, .8);
    border-inline-end: 1px solid var(--line);
    padding: 26px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.adm-side .as-h {
    padding: 10px 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px
}

.adm-side .as-h b {
    font-size: 1rem
}

.adm-side .as-h span {
    display: block;
    font-size: .72rem;
    color: var(--dim);
    font-family: var(--fe);
    letter-spacing: .16em
}

.atab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    color: var(--mut);
    font-size: .92rem;
    font-weight: 600;
    transition: .25s;
    text-align: start;
    width: 100%
}

.atab svg {
    width: 17px;
    height: 17px
}

.atab:hover {
    color: var(--ink);
    background: rgba(38, 214, 228, .06)
}

.atab.on {
    background: rgba(38, 214, 228, .1);
    color: var(--cy)
}

.adm-main {
    padding: clamp(20px, 3vw, 36px);
    min-width: 0
}

.adm-main h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px
}

.adm-main .am-sub {
    color: var(--mut);
    font-size: .9rem;
    margin-bottom: 28px
}

.astats {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px
}

.astat {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    background: rgba(11, 22, 48, .6)
}

.astat b {
    font-family: var(--fe);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cy);
    display: block;
    line-height: 1.4
}

.astat span {
    color: var(--mut);
    font-size: .85rem
}

.atable {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem
}

.atable th {
    text-align: start;
    color: var(--dim);
    font-weight: 600;
    font-size: .8rem;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line2);
    white-space: nowrap
}

.atable td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    color: #C9D8F2;
    vertical-align: middle
}

.atable tr:hover td {
    background: rgba(38, 214, 228, .03)
}

.tbl-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: auto;
    background: rgba(11, 22, 48, .4)
}

.rowact {
    display: flex;
    gap: 8px
}

.iact {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mut);
    transition: .25s
}

.iact svg {
    width: 15px;
    height: 15px
}

.iact:hover {
    color: var(--cy);
    border-color: rgba(38, 214, 228, .4)
}

.iact.danger:hover {
    color: #FF8E8E;
    border-color: rgba(255, 110, 110, .4)
}

.login-card {
    max-width: 420px;
    margin: 60px auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 40px;
    background: linear-gradient(160deg, rgba(14, 27, 58, .8), rgba(5, 11, 24, .6));
    text-align: center
}

.login-card .hint {
    font-size: .8rem;
    color: var(--dim);
    border: 1px dashed var(--line2);
    border-radius: 10px;
    padding: 10px;
    margin-top: 18px;
    line-height: 2
}

.mini-chart {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: rgba(11, 22, 48, .5);
    margin-bottom: 28px
}

.mini-chart h5 {
    font-size: .95rem;
    margin-bottom: 16px;
    color: var(--mut)
}

/* ================== MODAL / TOAST / LIGHTBOX ================== */
.modal-ov {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(3, 7, 15, .8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: mIn .3s forwards
}

@keyframes mIn {
    to {
        opacity: 1
    }
}

.modal-c {
    width: min(640px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #0A142C;
    border: 1px solid var(--line2);
    border-radius: 22px;
    padding: clamp(24px, 4vw, 38px);
    transform: translateY(24px) scale(.97);
    animation: mcIn .4s cubic-bezier(.2, .7, .2, 1) forwards
}

@keyframes mcIn {
    to {
        transform: none
    }
}

.modal-c .m-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px
}

.modal-c h3 {
    font-size: 1.3rem;
    font-weight: 800
}

.modal-c .m-sub {
    color: var(--mut);
    font-size: .9rem;
    margin-top: 4px
}

.mclose {
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: 10px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mut);
    transition: .25s
}

.mclose:hover {
    color: var(--ink);
    border-color: var(--line2)
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(2, 5, 11, .94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    animation: mIn .3s
}

.lightbox img {
    max-width: 92%;
    max-height: 82vh;
    border-radius: 16px;
    border: 1px solid var(--line2)
}

.lightbox .lcap {
    margin-top: 16px;
    color: var(--mut)
}

#toasts {
    position: fixed;
    bottom: 26px;
    inset-inline-start: 26px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.toast {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0C1730;
    border: 1px solid rgba(38, 214, 228, .35);
    border-radius: 14px;
    padding: 15px 20px;
    min-width: 290px;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    animation: tIn .45s cubic-bezier(.2, .7, .2, 1)
}

@keyframes tIn {
    from {
        transform: translateY(20px);
        opacity: 0
    }
}

.toast.out {
    transition: .4s;
    opacity: 0;
    transform: translateY(12px)
}

.toast .ti {
    width: 36px;
    height: 36px;
    flex: none;
    border-radius: 10px;
    background: rgba(23, 200, 180, .14);
    display: flex;
    align-items: center;
    justify-content: center
}

.toast .ti svg {
    width: 18px;
    height: 18px;
    color: var(--tq)
}

.toast b {
    display: block;
    font-size: .92rem
}

.toast span {
    color: var(--mut);
    font-size: .82rem
}

/* ================== REVEAL & UTILS ================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s, transform .9s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--d, 0s)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.d1 {
    --d: .08s
}

.d2 {
    --d: .16s
}

.d3 {
    --d: .24s
}

.d4 {
    --d: .32s
}

.mt40 {
    margin-top: 40px
}

.mt24 {
    margin-top: 24px
}

.glass {
    background: rgba(11, 22, 48, .55);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line)
}

.two-col-list {
    columns: 2;
    column-gap: 40px
}

.two-col-list li {
    break-inside: avoid
}

.check-li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--mut);
    padding: 9px 0;
    font-size: .95rem;
    list-style: none
}

.check-li svg {
    width: 17px;
    height: 17px;
    color: var(--tq);
    flex: none;
    margin-top: 6px
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1080px) {
    nav.main {
        display: none
    }

    .burger {
        display: flex
    }

    .hact .btn {
        display: none
    }

    .hero-grid {
        grid-template-columns:1fr
    }

    .hero-3d {
        min-height: 380px
    }

    .split, .ed-grid, .news-layout {
        grid-template-columns:1fr
    }

    .ed-side {
        position: static
    }

    .ev-grid {
        grid-template-columns:1fr
    }

    .ev-3d {
        min-height: 320px
    }

    .sp-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .gal-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .fgrid {
        grid-template-columns:1fr 1fr
    }

    .adm-wrap {
        grid-template-columns:1fr
    }

    .adm-side {
        flex-direction: row;
        flex-wrap: wrap;
        border-inline-end: none;
        border-bottom: 1px solid var(--line)
    }

    .adm-side .as-h {
        width: 100%;
        padding-bottom: 8px
    }
}

@media (max-width: 820px) {
    .bento {
        grid-template-columns:1fr 1fr
    }

    .bcard.big {
        grid-column: span 2
    }

    .ev-feat {
        grid-template-columns:1fr
    }

    .ev-feat .pic {
        min-height: 240px
    }

    .ev-row {
        grid-template-columns:1fr
    }

    .stats-grid {
        grid-template-columns:1fr 1fr
    }

    .stat + .stat::before {
        display: none
    }

    .stat {
        border: 1px solid var(--line);
        border-radius: 16px;
        margin: 6px
    }

    .plan-tease {
        grid-template-columns:1fr
    }

    .p7-kpis {
        grid-template-columns:1fr
    }

    .chips-hide-m .chip {
        display: none
    }

    .cm-grid {
        grid-template-columns:1fr
    }

    .fgrid {
        grid-template-columns:1fr
    }
}

@media (max-width: 620px) {
    .bento {
        grid-template-columns:1fr
    }

    .bcard.big {
        grid-column: span 1
    }

    .sp-grid {
        grid-template-columns:1fr
    }

    .gal-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .fgrid2 {
        grid-template-columns:1fr
    }

    .ed-item {
        grid-template-columns:34px 1fr
    }

    .ed-item .rm {
        display: none
    }

    .mstone {
        grid-template-columns:74px 1fr;
        gap: 12px
    }

    .mstone::before {
        inset-inline-start: 34px
    }

    .paper-item {
        grid-template-columns:1fr
    }

    .astats {
        grid-template-columns:1fr 1fr
    }

    .two-col-list {
        columns: 1
    }
}
