*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #1a1d21;
  --color-surface: #242830;
  --color-text: #e8eaed;
  --color-text-muted: #9aa0a8;
  --color-accent: #c45c26;
  --color-accent-light: #e07a3f;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.6;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 92, 38, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(196, 92, 38, 0.05) 0%, transparent 50%),
    var(--color-bg);
}

.placeholder__inner {
  text-align: center;
  max-width: 36rem;
}

.placeholder__logo {
  color: var(--color-accent);
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
}

.placeholder__logo svg {
  width: 100%;
  height: 100%;
}

.placeholder__domain {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.placeholder__text {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.placeholder__text strong {
  color: var(--color-accent-light);
  font-weight: 600;
}

.placeholder__divider {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.placeholder__sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}
