@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600&family=Instrument+Serif&display=swap");

/*
 * Token subset lifted from dashboard/src/styles.scss (--ink/--bone/--signal
 * family). This page has no ThemeService, so light/dark follows the system
 * preference directly rather than a `data-theme` attribute.
 */
:root {
  --content-bg: #faf9f8;
  --panel: #ffffff;
  --rule: #dedede;
  --text: #2d2d2d;
  --text-2: #4e4947;
  --accent: #e04f00;
}

@media (prefers-color-scheme: dark) {
  :root {
    --content-bg: #16181b;
    --panel: #1f2226;
    --rule: #3a3d43;
    --text: #f5f5f6;
    --text-2: #bfc1c5;
    --accent: #ff7a45;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--content-bg);
  color: var(--text);
}

.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px 20px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 380px;
  padding: 40px 32px;
  background: var(--panel);
  border: 1px solid var(--rule);
  text-align: center;
}

.brand {
  display: flex;
  justify-content: center;
}

.wordmark {
  height: 28px;
  width: auto;
}

.wordmark-dark {
  display: none;
}
@media (prefers-color-scheme: dark) {
  .wordmark-light {
    display: none;
  }
  .wordmark-dark {
    display: block;
  }
}

.title {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}

.stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: var(--text);
  color: var(--panel);
  border: 1px solid var(--text);
  text-decoration: none;
}

.store-btn:hover {
  filter: brightness(1.1);
}

.store-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-eyebrow {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.store-name {
  font-size: 16px;
  font-weight: 600;
}

/* Highlighted when app.js detects the matching platform. */
.store-btn.is-primary {
  background: var(--accent);
  border-color: var(--accent);
}
