
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #0f172a;
    color: #e5e7eb;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.wrapper {
    max-width: 960px;
    width: 100%;
    padding: 24px;
    margin: auto;
}

.header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    padding-bottom: 16px;
}

.logo-block {
    flex: 0 0 auto;
}

.logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    border: 2px dashed rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.title-block h1 {
    font-size: 24px;
    font-weight: 700;
}

.subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 4px;
}

.main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .main {
        grid-template-columns: minmax(0, 1fr);
    }
}

.card {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.20), transparent 55%),
                radial-gradient(circle at bottom right, rgba(129, 140, 248, 0.20), transparent 60%),
                #020617;
    border-radius: 18px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(15, 23, 42, 0.9);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.9);
}

.card h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.label {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 10px;
}

.value {
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
}

.value.large {
    font-size: 32px;
    letter-spacing: 0.06em;
}

.status-text {
    margin-top: 12px;
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0.9;
}

.card.help ol {
    margin-left: 18px;
    margin-top: 8px;
    font-size: 13px;
    color: #d1d5db;
}

.card.help li + li {
    margin-top: 6px;
}

code {
    font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    color: #e0f2fe;
}

.footer {
    margin-top: 24px;
    font-size: 12px;
    text-align: center;
    color: #6b7280;
}

/* States */

body.has-dealer-id .status-text {
    color: #bbf7d0;
}

body.no-dealer-id .status-text {
    color: #fed7aa;
}
