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

:root {
  --orange: #FF9500;
  --bg: #0a0a0a;
  --fg: #f0f0f0;
  --muted: #666;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main.under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.wordmark {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.dot {
  color: var(--orange);
}

.etymology {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: -0.25rem;
}

.ipa {
  font-style: italic;
  color: var(--fg);
  opacity: 0.85;
}

.sep {
  margin: 0 0.45em;
  opacity: 0.5;
}

.meaning {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--fg);
  max-width: 32ch;
  line-height: 1.5;
  opacity: 0.92;
}

.tagline {
  font-size: 0.95rem;
  color: var(--fg);
  letter-spacing: 0.01em;
  opacity: 0.72;
  margin-top: 0.25rem;
  max-width: 38ch;
  line-height: 1.5;
}

.tagline em {
  font-style: italic;
  opacity: 1;
  color: var(--orange);
}

.status {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* Long-form document layout (privacy, terms, support) */

main.document {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  line-height: 1.6;
  font-size: 1rem;
}

.document-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wordmark-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.wordmark-link .wordmark {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.document-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.document-header .effective {
  color: var(--muted);
  font-size: 0.9rem;
}

main.document section {
  margin-bottom: 2rem;
}

main.document h2 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

main.document p {
  color: var(--fg);
  margin-bottom: 0.85rem;
}

main.document p:last-child {
  margin-bottom: 0;
}

main.document strong {
  color: var(--fg);
  font-weight: 600;
}

main.document em {
  font-style: italic;
}

main.document ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.85rem 0;
}

main.document ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}

main.document ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

main.document a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 149, 0, 0.3);
  transition: border-bottom-color 120ms ease;
}

main.document a:hover {
  border-bottom-color: var(--orange);
}

.document-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}
