/* Landing page (/) — small standalone stylesheet. Chrome colours come
   from theme.css so the light/dark toggle in the top-right works here
   the same way it does on /admin. */
@import url("theme.css");

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  transition: background var(--ease), color var(--ease);
}

.stack {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--text-strong);
}

.subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.status {
  display: inline-block;
  background: #238636;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 3px rgba(35, 134, 54, 0.18);
}

.info {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.8;
  align-self: stretch;
}

.info span { color: var(--muted); }

.explainer {
  align-self: stretch;
  text-align: left;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-left: 3px solid #f0883e;
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
}

.explainer p { margin-bottom: 0.6rem; }
.explainer p:last-child { margin-bottom: 0; }

.explainer .tag {
  display: inline-block;
  color: #f0883e;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.explainer .pron {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.explainer .pron dt { color: var(--muted); }
.explainer .pron dd { margin: 0; }

.explainer .ipa {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--text-strong);
}

a { color: var(--accent); text-decoration: none; }

.info-link { margin-top: 1rem; }
