:root {
  --bg: #0a0a0a;
  --bg-elev: #131313;
  --bg-elev-2: #1a1a1a;
  --fg: #fafafa;
  --fg-mute: #a1a1a1;
  --fg-dim: #6b6b6b;
  --border: #1f1f1f;
  --accent: #dfdacd;
  --accent-dim: rgba(223, 218, 205, 0.12);
  --success: #7dd99e;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; transition: opacity 0.18s; }
a:hover { opacity: 0.7; }

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #141415;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial Black', Impact, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.brand-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
}

.header-email { color: var(--fg-mute); }

.header-logout {
  color: var(--accent);
  font-weight: 500;
}

.app-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.card {
  max-width: 480px;
  width: 100%;
}

.eyebrow {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.card h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1rem;
  color: var(--fg-mute);
  margin: 0 0 2rem;
  line-height: 1.55;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.18s, background 0.18s;
  border: 1px solid transparent;
  text-align: center;
  line-height: 1.2;
}

.btn-google {
  background: #fff;
  color: #3c4043;
}

.btn-google:hover { opacity: 0.92; }

.legal {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 1.5rem;
  line-height: 1.55;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .status-grid { grid-template-columns: 1fr; }
}

.status-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.status-label {
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.status-value {
  font-size: 14px;
  font-weight: 500;
}

.status-ok { color: var(--success); }
.status-pending { color: var(--fg-mute); }

.loading {
  color: var(--fg-mute);
  font-size: 14px;
}
