/* Smart Split — shared web styles.
   Matches the mobile app's real visual language: brand blue #1E90FF (used on every
   primary button/link in the app), white backgrounds, black body text, system font
   stack, 10-14px corner radii on cards/buttons. Deliberately not using constants/theme.ts
   (#0a7ea4) -- that file is unused Expo-template scaffolding; #1E90FF is the color the
   app's screens actually use everywhere. */

:root {
  --brand-blue: #1E90FF;
  --text-primary: #000;
  --text-secondary: #555;
  --text-muted: #666;
  --success-green: #27833D;
  --error-red: #b00020;
  --border-color: #eee;
  --card-bg: #f8f8fa;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.card {
  width: 100%;
  max-width: 440px;
  text-align: center;
}

.wordmark {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.wordmark-hero {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 12px;
}

p.lede {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 28px;
}

p.body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

.status-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  background: var(--brand-blue);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

.btn:active {
  opacity: 0.85;
}

.btn-secondary {
  display: inline-block;
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 18px;
  padding: 8px;
}

.note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 18px;
}

.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
  text-align: left;
}

.platform-card .label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.platform-card .status {
  font-size: 14px;
  color: var(--text-muted);
}

footer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  text-decoration: underline;
}
