:root {
    --ink: #1a2332;
    --ink-soft: #4a5568;
    --mist: #e8eef4;
    --frost: rgba(255, 255, 255, 0.72);
    --frost-strong: rgba(255, 255, 255, 0.92);
    --line: rgba(26, 35, 50, 0.08);
    --accent: #0d7a6f;
    --accent-hover: #0a635a;
    --shadow: 0 12px 40px rgba(26, 35, 50, 0.08);
    --radius: 18px;
    --font: "Outfit", "Noto Sans SC", sans-serif;
}

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

html, body {
    min-height: 100%;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--mist);
    -webkit-font-smoothing: antialiased;
}

.page {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px 56px;
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(13, 122, 111, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 80%, rgba(70, 110, 160, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 70%, rgba(200, 170, 120, 0.12), transparent 50%),
    linear-gradient(165deg, #f4f7fb 0%, #e8eef4 45%, #dde6ef 100%);
    z-index: 0;
}

.page::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26, 35, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 50, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
    z-index: 0;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand {
    margin-bottom: 36px;
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand__logo {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 20px 48px rgba(26, 35, 50, 0.14);
    background: var(--frost-strong);
}

.brand__title {
    margin-top: 22px;
    font-size: clamp(1.65rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
}

.brand__subtitle {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.stores {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    background: var(--frost);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--ink);
    box-shadow: var(--shadow);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.store:nth-child(1) {
    animation-delay: 0.12s;
}

.store:nth-child(2) {
    animation-delay: 0.22s;
}

.store:nth-child(3) {
    animation-delay: 0.32s;
}

.store:hover {
    background: var(--frost-strong);
    border-color: rgba(13, 122, 111, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(26, 35, 50, 0.12);
}

.store:active {
    transform: translateY(0) scale(0.985);
}

.store__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

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

.store__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 2px;
}

.store__name {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.store__arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(13, 122, 111, 0.1);
    color: var(--accent);
    display: grid;
    place-items: center;
    transition: background 0.22s ease, color 0.22s ease;
}

.store:hover .store__arrow {
    background: var(--accent);
    color: #fff;
}

.store__arrow svg {
    width: 14px;
    height: 14px;
}

.footnote {
    margin-top: 28px;
    font-size: 0.78rem;
    color: rgba(74, 85, 104, 0.75);
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand,
    .store,
    .footnote {
        animation: none;
    }

    .store,
    .store__arrow {
        transition: none;
    }
}

@media (max-width: 380px) {
    .page {
        padding: 36px 18px 48px;
    }

    .brand__logo {
        width: 96px;
        height: 96px;
        border-radius: 24px;
    }

    .store {
        padding: 12px 14px;
        gap: 12px;
    }
}