:root {
    --text: #0a0a0a;
    --text-muted: #6b7280;
    --accent: #2563eb;
    --accent-light: #dbeafe;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(180deg, #e8f0fe 0%, #f0f4ff 30%, #ffffff 100%);
}

/* ── Page ── */
.page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 440px;
}

/* ── Globe ── */
.globe {
    width: 96px;
    height: 96px;
    margin-bottom: 0.5rem;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 24px rgba(37, 99, 235, 0.25));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Typography ── */
h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

/* ── Section label ── */
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 0.65rem;
    align-self: center;
}

/* ── App card ── */
.app-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e5eb;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.app-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.app-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.app-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.app-info h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.app-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.arrow-icon {
    color: var(--text-muted);
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.app-card:hover .arrow-icon {
    transform: translateX(3px);
    color: var(--accent);
}

/* ── Email button ── */
.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 99px;
    background: var(--accent);
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.email-btn svg {
    flex-shrink: 0;
}

.email-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ── Footer ── */
footer {
    position: absolute;
    bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .page {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.65rem;
    }

    .globe {
        width: 80px;
        height: 80px;
    }

    .app-card {
        padding: 0.875rem 1rem;
    }
}
