:root {
    --bg: #060b1f;
    --surface: #0b1436;
    --surface2: #0a1230;
    --text: #ecf3ff;
    --muted: #a9b9dd;
    --line: rgba(236, 243, 255, .14);

    --blue: #2f7bff;
    --cyan: #00d7ff;
    --indigo: #6d5bff;

    --shadow: 0 16px 44px rgba(0, 0, 0, .40);
    --r: 18px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(47, 123, 255, .22), transparent 55%),
        radial-gradient(900px 520px at 88% 10%, rgba(0, 215, 255, .16), transparent 55%),
        radial-gradient(900px 520px at 55% 120%, rgba(109, 91, 255, .14), transparent 60%),
        var(--bg);
    line-height: 1.6;
}

a {
    color: var(--cyan);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(6, 11, 31, .75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand strong {
    letter-spacing: .7px;
}

.brand span {
    color: var(--muted);
    font-size: 12px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav a {
    color: var(--text);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.nav a:hover {
    text-decoration: none;
    border-color: var(--line);
    background: rgba(236, 243, 255, .05);
}

.main {
    padding: 18px 0 42px;
}

.hero {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background:
        linear-gradient(135deg, rgba(47, 123, 255, .22), rgba(0, 215, 255, .10)),
        rgba(236, 243, 255, .02);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
}

@media (max-width: 920px) {
    .header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.hero-text {
    padding: 18px;
}

.hero-text h1 {
    margin: 0 0 8px;
    font-size: 28px;
}

.hero-text p {
    margin: 0;
    color: var(--muted);
}

.actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(236, 243, 255, .04);
    color: var(--text);
}

.btn:hover {
    text-decoration: none;
    border-color: rgba(0, 215, 255, .45);
    background: rgba(0, 215, 255, .12);
}

.hero-media {
    border-left: 1px solid var(--line);
    background: rgba(0, 0, 0, .20);
}

@media (max-width: 920px) {
    .hero-media {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}

.hero-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.col-12 {
    grid-column: span 12;
}

.col-8 {
    grid-column: span 8;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

@media (max-width: 920px) {

    .col-8,
    .col-6,
    .col-4 {
        grid-column: span 12;
    }
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background:
        linear-gradient(180deg, rgba(236, 243, 255, .05), transparent 60%),
        var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card .hd {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    background: rgba(0, 0, 0, .14);
}

.card .bd {
    padding: 14px;
}

.kv {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(236, 243, 255, .04);
    color: var(--muted);
    font-size: 12px;
}

.tiles {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.tile {
    grid-column: span 4;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    background: rgba(236, 243, 255, .03);
}

@media (max-width: 920px) {
    .tile {
        grid-column: span 12;
    }
}

.tile img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background: rgba(0, 0, 0, .25);
}

.tile .cap {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 13px;
}

.people {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.person {
    grid-column: span 6;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    background: rgba(236, 243, 255, .03);
}

@media (max-width: 920px) {
    .person {
        grid-column: span 12;
    }
}

.person-head {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, .12);
}

.avatar {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(236, 243, 255, .18);
}

.person h3 {
    margin: 0;
    font-size: 16px;
}

.person p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.person-body {
    padding: 12px;
}

.links a {
    margin-right: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.video {
    grid-column: span 6;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    background: rgba(0, 0, 0, .18);
}

@media (max-width: 920px) {
    .video {
        grid-column: span 12;
    }
}

.video video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 18px 0 26px;
    color: var(--muted);
    font-size: 13px;
}