:root {
    --bg: #f6f6f3;
    --surface: #ffffffb8;
    --text: #111111;
    --text-muted: #707070;
    --border: rgba(17, 17, 17, 0.09);
    --shadow: 0 17px 45px #00000009;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
        linear-gradient(135deg, #ffffff 0%, #f2f2ef 52%, #e8e8e4 100%);
    display: flex;
    flex-direction: column;
}

.page-shell {
    width: min(100%, 1180px);
    margin: auto;
    padding: 36px 24px 24px;
}

.hero-card {
    background: var(--surface);
    border: 1px solid #ffffffcc;
    border-radius: 36px;
    box-shadow: var(--shadow);
    padding: 42px 56px 56px;
    backdrop-filter: blur(16px);
}

.hero-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.hero-note {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.brand-logo {
    width: min(360px, 82vw);
    display: block;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

h1 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 0.90;
    font-weight: 500;
    letter-spacing: -0.045em;
    max-width: 15ch;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
    padding-top: 1rem;
}

.intro {
    max-width: 560px;
    margin: 30px auto 0;
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: center;
    text-wrap: pretty;
}

.intro a {
    color: inherit;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    font-weight: bold;
}

.actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 720px;
    margin: 40px auto 0;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 140px;
    padding: 30px 22px 24px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fffffff5, #0000000e);
    border: 1px solid #22222224;
    border-radius: 22px;
    cursor: pointer;
    transition: transform 200ms ease, color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.action-card:hover,
.action-card:focus-visible {
    transform: translateY(-4px);
    color: #000000;
    border-color: #00000047;
    background: linear-gradient(180deg, #ffffff, #0000000e);
}

.action-card:focus-visible {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    outline: none;
}

.action-label {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.55rem;
    color: inherit;
}

.action-text {
    font-family: "Trebuchet MS", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

.site-footer {
    padding: 0 24px 90px;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.32rem;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.5);
}

@media (max-width: 720px) {
    .hero-card {
        padding: 28px 24px 32px;
    }

    .hero-topline {
        flex-direction: column;
        gap: 12px;
    }

    .brand-logo {
        width: min(300px, 84vw);
    }

    .actions {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
