:root {
    color-scheme: dark;
    --black: #080B0F;
    --near-black: #1A1A1F;
    --graphite: #2A2A31;
    --neutral: #F5F5F7;
    --muted: #A7B0BE;
    --dim: #687386;
    --purple: #6E2CFF;
    --violet: #8A55FF;
    --soft-violet: #C084FC;
    --cyan: #00F0FF;
    --green: #00FF9D;
    --orange: #FF7A00;
    --line: rgba(245, 245, 247, 0.13);
    --line-strong: rgba(0, 240, 255, 0.35);
    --panel: rgba(26, 26, 31, 0.78);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--black);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--neutral);
    background:
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px),
        linear-gradient(140deg, #080B0F 0%, #101119 42%, #15101D 100%);
    background-size: 72px 72px, 72px 72px, auto;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(115deg, transparent 0%, rgba(110, 44, 255, 0.18) 38%, transparent 39%),
        linear-gradient(78deg, transparent 0%, rgba(255, 122, 0, 0.08) 66%, transparent 67%);
}

a {
    color: inherit;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    min-height: 88svh;
    padding: 28px 0 64px;
}

.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 92px;
}

.masthead-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(8, 11, 15, 0.74);
    box-shadow: 0 0 28px rgba(0, 240, 255, 0.12);
}

.brand-mark svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--cyan);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.brand-text,
h1,
h2 {
    margin: 0;
    font-family: Orbitron, Inter, sans-serif;
    letter-spacing: 0;
}

.brand-text {
    font-size: 1.15rem;
    font-weight: 700;
}

.status-pill {
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(192, 132, 252, 0.42);
    border-radius: 8px;
    color: var(--soft-violet);
    background: rgba(26, 26, 31, 0.7);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-link {
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--cyan);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    font-size: 4.15rem;
    line-height: 1.05;
}

.lede {
    max-width: 670px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.75;
}

.signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.signal-list span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--neutral);
    background: rgba(42, 42, 49, 0.58);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-logo-panel {
    display: grid;
    min-height: 420px;
    place-items: center;
}

.hero-logo-panel img {
    width: min(100%, 420px);
    height: auto;
    filter: drop-shadow(0 0 34px rgba(192, 132, 252, 0.26));
}

.detail-band {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
    gap: 40px;
    align-items: start;
    padding: 34px 0 54px;
    border-top: 1px solid var(--line);
}

.detail-band h2 {
    max-width: 520px;
    font-size: 1.7rem;
    line-height: 1.24;
}

.company-panel {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    max-width: 660px;
}

.company-panel img {
    width: 96px;
    height: 96px;
    border: 1px solid rgba(192, 132, 252, 0.24);
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 34px rgba(192, 132, 252, 0.12);
}

.company-panel p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.company-panel a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.company-panel a:hover,
.site-footer a:hover {
    color: var(--neutral);
}

.site-footer {
    display: flex;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 28px;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 0.86rem;
}

.site-footer a {
    color: var(--dim);
    text-decoration: none;
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
        padding-bottom: 44px;
    }

    .masthead {
        margin-bottom: 58px;
    }

    .hero-grid,
    .detail-band {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.7rem;
    }

    .lede {
        font-size: 1.04rem;
    }
}

@media (max-width: 560px) {
    .site-shell,
    .site-footer {
        width: min(100% - 28px, 1180px);
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .masthead {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 48px;
    }

    .masthead-actions {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 6px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .company-panel {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 16px;
    }

    .hero-logo-panel {
        min-height: 260px;
        place-items: start center;
    }

    .hero-logo-panel img {
        width: min(100%, 300px);
    }

    .company-panel img {
        width: 72px;
        height: 72px;
    }
}
