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

:root {
  --font-sans: 'Noto Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Noto Sans Mono', ui-monospace, monospace;

  --color-bg: #F1F1EF;
  --color-text: #1A1A1A;
  --color-accent: #CE725F;
  --color-muted: #8A8A8A;
  
  --transition: 0.3s ease;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
}

.brand-mark {
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 24px;
  animation: breathing 4s infinite ease-in-out alternate;
}

@keyframes breathing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

.brand-name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
}

.tagline {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 40px;
}

.bio-container {
  max-width: 400px;
  margin: 0 auto;
}

.bio-text {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  border: 1px solid var(--color-muted);
  border-radius: 100px;
  opacity: 0.7;
}

.footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.attribution {
  font-size: 0.75rem;
  margin-top: 4px;
  opacity: 0.7;
}
