@import url('/components/theme/skyrock.css');

/* Landing / hero — SkyRock admin style. "We create technology to help humanity." */

.main-introduction {
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 48px 24px;
    width: 100%;
}

.main-introduction-logo {
    position: static;
    width: min(20rem, 72vw);
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.45));
}

.main-introduction-eyebrow {
    margin: 0.4rem 0 0;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
}

.main-introduction-intro {
    margin: 0;
    font-size: clamp(1.8rem, 5.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    max-width: 20ch;
}

.main-introduction-sub {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    max-width: 40rem;
}

.main-introduction-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.8rem;
}

.goToOptions {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--metalFont);
    background: linear-gradient(-145deg, #dcdcdc, #c0c0c0, #e8e8e8, #b0b0b0, #f5f5f5);
    padding: 0.7rem 1.5rem;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    z-index: 2;
    transition: filter 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.goToOptions:hover { filter: brightness(1.05); }

.goToOptions.ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--line-2);
    box-shadow: none;
}
.goToOptions.ghost:hover { background: rgba(255, 255, 255, 0.1); filter: none; }
