:root {
    --bg: #ffffff;
    --text: #111;
    --muted: #666;
    --accent: #111;
    --border: #e5e5e5;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

.screen {
    height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.logo {
    height: 32px;
    margin-bottom: 48px;
}

h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: var(--muted);
    max-width: 420px;
}

/* ACTIONS */
.actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.store-buttons {
display: flex;
    gap: 12px;

}

.store-buttons img {
    width: 100%;
    height: 60px;
    cursor: pointer;
    display: block;
}

.btn {
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
}

.btn-dark {
    background: var(--accent);
    color: #fff;
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
}

/* QR */
.qr {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

.qr img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 6px;
}

/* MOCKUP */
.mockup img {
   max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }
}

@media (max-width: 860px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mockup {
        display: none; /* щоб не зʼявився скрол */
    }
}
