/* The app's tokens (Transporter/Resources/Styles/DesignTokens.xaml): navy primary on a warm off-white,
   Manrope for headings, Inter for the rest, and a 12 px radius — the app has no circles and no pills. */
:root {
  --primary: #002046;
  --primary-container: #1b365d;
  --on-primary: #ffffff;
  --primary-fixed: #d6e3ff;
  --background: #fcf9f8;
  --surface-lowest: #ffffff;
  --on-surface: #1c1b1b;
  --on-surface-variant: #5b5f66;
  --outline: #d9dbe0;
  --error: #ba1a1a;
  --radius: 12px;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--on-surface);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .brand { font-family: Manrope, Inter, system-ui, sans-serif; letter-spacing: -0.01em; }

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
}
.brand img { width: 40px; height: 40px; }

.card {
  background: var(--surface-lowest);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

h1 { margin: 0; font-size: 26px; line-height: 1.2; color: var(--primary); }
h2 { margin: 0; font-size: 18px; }
p { margin: 0; }
.muted { color: var(--on-surface-variant); font-size: 15px; }

.fact { display: flex; flex-direction: column; gap: 2px; }
.fact .label { font-size: 13px; color: var(--on-surface-variant); text-transform: uppercase; letter-spacing: 0.04em; }
.fact .value { font-size: 18px; font-weight: 600; }

.actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.button {
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
.button.primary { background: linear-gradient(135deg, var(--primary), var(--primary-container)); color: var(--on-primary); }
.button.secondary { background: var(--primary-fixed); color: var(--primary); }
.button.ghost { background: transparent; color: var(--primary); border-color: var(--outline); }
.button[hidden] { display: none; }

.status { color: var(--error); font-weight: 600; }
.hint { font-size: 14px; color: var(--on-surface-variant); }

ul.features { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
ul.features li { padding-left: 22px; position: relative; }
ul.features li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 3px; background: var(--primary); }

footer { margin-top: auto; font-size: 13px; color: var(--on-surface-variant); }
footer a { color: inherit; }

@media (prefers-color-scheme: dark) {
  :root {
    --background: #131313;
    --surface-lowest: #1e1e1e;
    --on-surface: #e5e2e1;
    --on-surface-variant: #a9adb5;
    --outline: #3a3d44;
    --primary: #aec7f7;
    --primary-container: #1b365d;
    --on-primary: #002046;
    --primary-fixed: #1b365d;
  }
  .button.secondary { color: #d6e3ff; }
  .button.primary { color: #ffffff; background: linear-gradient(135deg, #1b365d, #2c4a78); }
}
