:root {
    --accent: #ff7a18;
    --blue: #5cc8ff;
    --text: #f8fafc;
    --muted: #cbd5e1;
    --dim: #94a3b8;
    --panel-soft: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.10);
}

section {
    padding: 28px 0;
}

.store-hero {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.04;
    max-width: 14ch;
}

.hero-lead,
.section-head,
.store-card p,
.callout-card p,
.callout-note,
.empty-store-card p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-points span,
.meta-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.store-callout {
    display: grid;
    gap: 14px;
}

.store-actions-top {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.callout-card,
.callout-note,
.store-card,
.empty-store-card {
    background: var(--panel-soft);
    border: 1px solid var(--border);
    border-radius: 22px;
    backdrop-filter: blur(12px);
}

.callout-card {
    padding: 22px;
}

.callout-topline {
    margin-bottom: 10px;
    color: var(--dim);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.callout-card h3,
.section-head h2,
.store-card h3,
.empty-store-card h3 {
    margin: 0 0 12px;
}

.callout-note,
.empty-store-card {
    padding: 20px 22px;
}

.store-grid-section {
    padding-top: 24px;
}

.section-head {
    max-width: 58ch;
    margin-bottom: 22px;
}

.section-head h2 {
    margin-top: 14px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.store-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.store-preview {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.store-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    font-weight: 700;
}

.store-meta-row,
.store-subline,
.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.meta-pill {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.meta-pill.muted,
.store-subline {
    color: var(--dim);
}

.store-subline {
    justify-content: space-between;
    font-size: 13px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #ffb11b);
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(255, 122, 24, 0.25);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text);
}

code {
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff7ed;
}

@media (max-width: 980px) {
    .store-hero,
    .store-grid {
        grid-template-columns: 1fr;
    }
}
