:root {
    --bg-page: #000000;
    --bg-page-soft: #020304;
    --surface: #06090f;
    --surface-strong: #090d15;
    --border: rgba(255, 255, 255, 0.14);
    --border-soft: rgba(255, 255, 255, 0.08);
    --text-main: #f3f6ff;
    --text-muted: #aab2c8;
    --text-soft: #cfd6ea;
    --glow: rgba(198, 214, 255, 0.2);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 20%, rgba(200, 214, 255, 0.1), transparent 40%),
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.06), transparent 35%),
        linear-gradient(175deg, var(--bg-page) 0%, #010101 40%, var(--bg-page-soft) 100%);
}

.landing {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 34px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.background-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 75%);
    opacity: 0.2;
    pointer-events: none;
}

.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.background-glow-left {
    width: 260px;
    height: 260px;
    left: -88px;
    bottom: 14%;
    background: radial-gradient(circle, rgba(190, 212, 255, 0.26) 0%, rgba(190, 212, 255, 0) 76%);
}

.background-glow-right {
    width: 300px;
    height: 300px;
    right: -90px;
    top: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 76%);
}

.hero-shell {
    width: min(1100px, 100%);
    background: linear-gradient(175deg, rgba(9, 11, 16, 0.97) 0%, rgba(4, 6, 9, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: clamp(24px, 3.4vw, 44px);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.09), transparent 44%);
    opacity: 0.5;
}

.hero-shell:hover {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
        0 36px 100px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 34px var(--glow);
    transform: translateY(-2px);
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(26px, 5vw, 40px);
    position: relative;
    z-index: 1;
}

.brand {
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    font-size: 0.96rem;
}

.mini-link {
    text-decoration: none;
    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.mini-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.46);
    background-color: rgba(255, 255, 255, 0.08);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr minmax(260px, 0.9fr);
    gap: clamp(20px, 3.2vw, 34px);
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 16px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.05);
    color: #d8def0;
    border-radius: 999px;
    padding: 8px 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 600;
}

h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(2.1rem, 5.8vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.role-line {
    margin: 12px 0 0;
    color: #dbe2f5;
    font-size: clamp(1rem, 2.2vw, 1.24rem);
    font-weight: 600;
    line-height: 1.5;
}

.lead {
    margin: 18px 0 34px;
    max-width: 55ch;
    color: var(--text-muted);
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.64;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    text-decoration: none;
    color: #f8faff;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    background: linear-gradient(140deg, #0f141f 0%, #1a2231 100%);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 28px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta::after {
    content: "";
    position: absolute;
    inset: -35%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
    transform: translateX(-135%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.cta:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 36px rgba(0, 0, 0, 0.65);
}

.cta:hover::after {
    transform: translateX(135%);
}

.cta:active {
    transform: translateY(0);
}

.status-panel {
    background: linear-gradient(180deg, rgba(10, 14, 22, 0.95) 0%, rgba(6, 9, 14, 0.98) 100%);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.status-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 24px rgba(192, 209, 255, 0.12);
}

.panel-title {
    margin: 0;
    color: #e6ecff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 600;
}

.status-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.status-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.02);
}

.status-dot {
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background-color: #f7f9ff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.status-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.status-key {
    color: #c8d0e6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-state {
    color: #f0f4ff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.panel-footer {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .status-panel {
        max-width: 540px;
    }
}

@media (max-width: 600px) {
    .hero-shell {
        border-radius: 22px;
    }

    .lead {
        margin-bottom: 28px;
    }
}
