:root { --bg: #f7f8fb; --card: #fff; --text: #172033; --muted: #687083; --border: #e1e5ee; --accent: #0d6efd; --warn: #fff8e1; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); }
.hero { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 32px clamp(18px, 5vw, 72px); background: #101828; color: #fff; }
.hero h1 { margin: 0; font-size: clamp(28px, 5vw, 48px); }
.hero p { max-width: 760px; color: #d0d5dd; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: #7da7ff; font-weight: 700; }
.container { width: min(1180px, calc(100% - 32px)); margin: 28px auto 80px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 10px 25px rgba(16, 24, 40, .04); margin-bottom: 18px; }
.hidden { display: none !important; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
label { display: grid; gap: 6px; color: var(--muted); font-size: 14px; margin: 10px 0; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 11px 12px; font: inherit; color: var(--text); background: #fff; }
textarea { min-height: 90px; resize: vertical; }
.checkbox { display: flex; align-items: center; flex-direction: row; gap: 8px; }
.checkbox input { width: auto; }
button, .button { border: 0; border-radius: 999px; padding: 11px 18px; background: var(--accent); color: #fff; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.secondary { background: #edf2ff; color: #1e3a8a; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.status { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.tabs { display: flex; gap: 8px; overflow-x: auto; margin: 18px 0; }
.tabs button { background: #fff; color: var(--muted); border: 1px solid var(--border); white-space: nowrap; }
.tabs button.active { background: var(--accent); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.warning { background: var(--warn); }
.message { color: var(--muted); }
.documents { list-style: none; padding: 0; }
.documents li { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); padding: 10px 0; }
.badge { border-radius: 999px; padding: 4px 10px; background: #eef2ff; color: #1e3a8a; font-size: 12px; }
.google-btn { width: 100%; background: #fff; color: #1f1f1f; border: 1px solid var(--border); gap: 10px; padding: 12px 18px; font-weight: 600; }
.google-btn:hover { background: #f7f8fb; }
.google-btn svg { flex-shrink: 0; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 12px; color: var(--muted); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
@media (max-width: 720px) { .hero, .status { flex-direction: column; align-items: flex-start; } }
