/* Bend Privacy Alliance — "coming soon" splash.
   Consumes the design-system tokens (linked via /styles.css); no hard-coded brand hexes.
   Just the seal + a tracked-caps "Coming soon" pill, on the document-cream field. */

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

.brandmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.brandmark__seal {
  width: clamp(150px, 32vw, 230px);
  height: auto;
  display: block;
}

/* Theme toggle — a quiet circular control, top-right, on the card surface.
   Themed from tokens so it reads correctly in both light and dark. */
.theme-toggle {
  position: fixed;
  top: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--text-strong);
  background: var(--surface-card);
  border: var(--border-thin) solid var(--border-hairline);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}
.theme-toggle:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.theme-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring-focus);
}

.theme-toggle__icon { display: none; }
/* Show the icon for the theme you'll switch TO. */
.theme-toggle[data-effective="light"] .theme-toggle__icon--moon { display: block; }
.theme-toggle[data-effective="dark"]  .theme-toggle__icon--sun  { display: block; }

/* The pill — restrained: white field, warm hairline, navy tracked caps. */
.soon {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps-lg);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-strong);
  background: var(--surface-card);
  border: var(--border-thin) solid var(--border-hairline);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-5);
}
