.welcome-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-topbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
}

.welcome-topbar__logo {
    height: 40px;
}

.demo-settings-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.demo-settings-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 34, 30, 0.45);
    z-index: 100;
}

.demo-settings-overlay[hidden] {
    display: none;
}

.demo-settings-panel {
    width: 100%;
    max-width: 420px;
    margin: 24px;
    padding: 24px;
    background: var(--gf-white);
    border-radius: 10px;
    box-shadow: 0 20px 48px rgba(36, 34, 30, 0.24);
    text-align: left;
}

.demo-settings-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.demo-settings-panel__header h2 {
    margin: 0;
    font-size: 1.2em;
}

.demo-settings-panel__close {
    background: none;
    border: none;
    padding: 0;
    font-size: 1.4em;
    line-height: 1;
    color: var(--gf-neutral-500);
    cursor: pointer;
}

.demo-settings-panel__close:hover {
    color: var(--gf-neutral-900);
}

.demo-settings-form__row {
    display: block;
    margin-bottom: 20px;
}

.demo-settings-form__label {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.demo-settings-form__desc {
    display: block;
    font-size: 0.85em;
    color: var(--gf-neutral-500);
    margin-bottom: 10px;
}

.demo-settings-form__input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-settings-form__input input {
    width: 100px;
    padding: 6px 10px;
    border: 1px solid var(--gf-neutral-200);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
}

.demo-settings-form__actions {
    display: flex;
    justify-content: flex-end;
}

.welcome-hero {
    width: 100%;
    max-width: 960px;
    margin: 40px 24px;
    text-align: center;
}

.welcome-hero h1 {
    margin: 0 0 4px;
    font-size: 2em;
}

.welcome-hero .page__subtitle {
    margin-top: 6px;
    margin-bottom: 32px;
}

.welcome-cases {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
}

.welcome-case {
    flex: 1;
    min-width: 0;
    max-width: 300px;
    padding: 32px 24px;
    background: var(--gf-white);
    border: 1px solid var(--gf-neutral-100);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(36, 34, 30, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.welcome-case:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(36, 34, 30, 0.12);
}

.welcome-case__icon {
    font-size: 2.4em;
    margin-bottom: 12px;
}

.welcome-case__title {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 8px;
    color: var(--gf-green-800);
}

.welcome-case__desc {
    font-size: 0.9em;
    color: var(--gf-neutral-500);
}
