/* Tokens copied from osfiskal-dashboard packages/ui/src/styles.css so the
   holding page and the dashboard render the same ink. */
:root {
  --color-title: #202125;
  --color-body: #666666;
  --color-warning-bg: #fffbeb;
  --color-warning-text: #b45309;
  --color-warning-dot: #f59e0b;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-title);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: 100%;
  max-width: 72rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

/* Sized by HEIGHT so the cap is the number that matters; the 417x68 artwork
   sets the width. 26px on a phone, 36px from tablet up. */
.logo {
  height: clamp(1.625rem, 5vw, 2.25rem);
  width: auto;
  display: block;
  margin: 0 auto;
}

.headline {
  margin: clamp(2rem, 6vw, 3.5rem) 0 0;
  font-size: clamp(1.625rem, 5.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: clamp(1.25rem, 4vw, 1.75rem) 0 0;
  padding: 0.4375rem 0.875rem;
  border-radius: 9999px;
  background: var(--color-warning-bg);
  color: var(--color-warning-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: none;
  border-radius: 50%;
  background: var(--color-warning-dot);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: clamp(1.75rem, 5vw, 2.5rem) 0 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.contact a {
  color: var(--color-title);
  text-decoration: none;
}

/* No underlines here, so hover carries the affordance instead. */
.contact a:hover {
  color: var(--color-warning-text);
}

.contact a:focus-visible {
  outline: 2px solid var(--color-warning-dot);
  outline-offset: 3px;
  border-radius: 2px;
}

.contact .sep {
  color: #d4d4d4;
  user-select: none;
}

.copyright {
  margin: clamp(2.5rem, 8vw, 4rem) 0 0;
  color: var(--color-body);
  font-size: 0.8125rem;
  line-height: 1.5;
}
