:root{
    --bg: #0b0f18;
    --bg2:#0f1628;

    --card: rgba(255,255,255,.08);
    --card2: rgba(255,255,255,.04);
    --border: rgba(255,255,255,.14);

    --text: #eef2ff;
    --muted: rgba(238,242,255,.72);

    --red: #e10000;           /* фирменный красный “lab” */
    --red2:#b30000;

    --shadow: 0 18px 70px rgba(0,0,0,.55);
    --radius: 22px;

    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
    margin:0;
    font-family:var(--font);
    color:var(--text);
    background: linear-gradient(160deg, var(--bg), var(--bg2));
    overflow-x:hidden;
}

a{ color: inherit; }
a:hover{ opacity:.92; }

.bg{
    position:fixed;
    inset:0;
    pointer-events:none;
    overflow:hidden;
}

.noise{
    position:absolute;
    inset:-80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
    opacity:.10;
    mix-blend-mode: overlay;
}

.glow{
    position:absolute;
    width:900px;
    height:900px;
    border-radius:50%;
    filter: blur(20px);
    opacity:.35;
}
.glow--red{
    left:-220px;
    top:-220px;
    background: radial-gradient(circle at 35% 35%, rgba(225,0,0,.55), transparent 62%);
}
.glow--dark{
    right:-260px;
    bottom:-300px;
    background: radial-gradient(circle at 40% 40%, rgba(0,0,0,.7), transparent 66%);
    opacity:.55;
}

.wrap{
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:26px;
}

.card{
    width:min(980px, 100%);
    background: linear-gradient(180deg, var(--card), var(--card2));
    border:1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow:hidden;
    position:relative;
}

.top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:26px 26px 16px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.brand__logo{
    width:180px;
    border-radius:4px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.06);
    overflow:hidden;
    flex:0 0 auto;
    display:grid;
    place-items:center;
}
.brand__logo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.brand__text{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}
.brand__name{
    font-size:18px;
    font-weight:800;
    letter-spacing:.2px;
}
.brand__name--red{
    color: var(--red);
}
.brand__meta{
    margin-top:6px;
    font-size:12px;
    color: var(--muted);
    letter-spacing: .6px;
    text-transform: uppercase;
}

.status{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:999px;
    background: rgba(255,255,255,.06);
    border:1px solid var(--border);
    color: var(--muted);
    font-size:13px;
    white-space:nowrap;
}
.status__dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(225,0,0,.16);
    animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse{
    0%,100%{ transform:scale(1); opacity:1; }
    50%{ transform:scale(1.12); opacity:.82; }
}

.content{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:0;
    border-top:1px solid rgba(255,255,255,.10);
}
@media (max-width: 860px){
    .content{ grid-template-columns:1fr; }
}

.left{
    padding:28px 28px 26px;
}
.right{
    padding:28px;
    border-left:1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
@media (max-width: 860px){
    .right{ border-left:none; border-top:1px solid rgba(255,255,255,.10); }
}

h1{
    margin:0 0 10px;
    font-size: clamp(28px, 4.5vw, 46px);
    letter-spacing: -0.7px;
}

.lead{
    margin:0 0 18px;
    color: var(--muted);
    font-size:16px;
    line-height:1.6;
    max-width: 60ch;
}

.bullets{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin: 10px 0 18px;
}

.pill{
    padding:10px 12px;
    border-radius:999px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.06);
    color: rgba(238,242,255,.78);
    font-size:13px;
    white-space:nowrap;
}

.actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top: 10px;
}

.btn{
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 14px;
    border-radius:14px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.07);
    color: var(--text);
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    user-select:none;
}
.btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.22);
}
.btn:active{ transform: translateY(0); }

.btn--red{
    background: linear-gradient(180deg, rgba(225,0,0,.98), rgba(179,0,0,.80));
    border-color: rgba(225,0,0,.70);
    box-shadow: 0 14px 46px rgba(225,0,0,.22);
}
.btn--red:hover{
    background: linear-gradient(180deg, rgba(225,0,0,1), rgba(179,0,0,.86));
}

.btn--ghost{
    background: transparent;
}

.tiny{
    margin:16px 0 0;
    color: rgba(238,242,255,.58);
    font-size:12px;
    line-height:1.55;
}

.box{
    padding:16px;
    border-radius:16px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.05);
}

.box + .box{ margin-top:12px; }

.box__title{
    font-weight:800;
    font-size:13px;
    letter-spacing:.2px;
    margin-bottom:10px;
}

.kv{
    display:grid;
    grid-template-columns: 110px 1fr;
    gap:10px 12px;
    font-size:14px;
}
.k{ color: rgba(238,242,255,.70); }
.v{ color: rgba(238,242,255,.95); overflow-wrap:anywhere; }
.v a{ color: rgba(238,242,255,.95); text-decoration:none; border-bottom:1px dashed rgba(238,242,255,.35); }
.v a:hover{ border-bottom-color: rgba(238,242,255,.6); }

.list{
    margin:0;
    padding-left:18px;
    color: var(--muted);
    line-height:1.65;
    font-size:14px;
}

.footer{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 18px;
    border-top:1px solid rgba(255,255,255,.10);
    color: rgba(238,242,255,.62);
    font-size:12px;
}
.sep{ opacity:.6; }
.muted{ opacity:.75; }
