:root {
    --bg: #060816;
    --bg-soft: #0e1330;
    --panel: rgba(17, 24, 49, 0.68);
    --panel-border: rgba(127, 240, 255, 0.18);
    --text: #eef3ff;
    --muted: #9daacf;
    --cyan: #58e6ff;
    --pink: #ff6bd6;
    --green: #59f7a2;
    --yellow: #ffd86b;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(88, 230, 255, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 107, 214, 0.18), transparent 28%),
        linear-gradient(180deg, #090b19 0%, #060816 42%, #05060f 100%);
    color: var(--text);
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

body { overflow-x: hidden; }

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        linear-gradient(transparent 0, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
        radial-gradient(circle, rgba(255, 255, 255, 0.25) 0.5px, transparent 0.7px);
    background-size: 100% 5px, 18px 18px;
    mix-blend-mode: soft-light;
}

.page {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 60px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--pink));
    box-shadow: 0 0 32px rgba(88, 230, 255, 0.45);
}

.topbar-badge,
.chip {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    backdrop-filter: blur(16px);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.panel {
    position: relative;
    border: 1px solid var(--panel-border);
    background: var(--panel);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-copy { padding: 34px; }

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(89, 247, 162, 0.9);
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 8vw, 82px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(90deg, #d8fdff 0%, #58e6ff 35%, #ff6bd6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    margin: 0;
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(88, 230, 255, 0.25), rgba(255, 107, 214, 0.28));
    box-shadow: 0 16px 34px rgba(88, 230, 255, 0.18);
}

.btn-secondary { background: rgba(255, 255, 255, 0.05); }

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
}

.hero-panel {
    padding: 28px;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.72;
}

.orb-cyan {
    width: 150px;
    height: 150px;
    top: -34px;
    right: -20px;
    background: radial-gradient(circle, rgba(88, 230, 255, 0.9), transparent 70%);
}

.orb-pink {
    width: 180px;
    height: 180px;
    bottom: -64px;
    left: -20px;
    background: radial-gradient(circle, rgba(255, 107, 214, 0.82), transparent 70%);
}

.status-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.status-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.status-title {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.status-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(89, 247, 162, 0.14);
    border: 1px solid rgba(89, 247, 162, 0.35);
    color: #d7ffe9;
}

.status-value::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(89, 247, 162, 0.9);
}

.metric-grid,
.stack-grid {
    display: grid;
    gap: 14px;
}

.metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stack-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.metric,
.stack-item,
.command-item {
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
}

.metric-label,
.mini-label {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    word-break: break-word;
}

.panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 26px;
}

.panel { padding: 24px; }

.panel h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.panel p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.command-list { display: grid; gap: 12px; }

.command-name {
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-note {
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    font-size: 14px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 960px) {
    .hero,
    .panels {
        grid-template-columns: 1fr;
    }

    .stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .page { width: min(100% - 20px, 1180px); }
    .topbar { flex-direction: column; align-items: flex-start; }
    .hero-copy,
    .hero-panel,
    .panel {
        padding: 20px;
        border-radius: 22px;
    }

    .metric-grid,
    .stack-grid {
        grid-template-columns: 1fr;
    }
}
