/* The placeholder's whole stylesheet. No @import, no webfont, no remote origin:
   this page must render identically from a domain, from a preview subpath and
   from file://, and it must not call out to anyone while a visitor reads it. */

:root {
  color-scheme: light dark;
  --ink: #2a2135;
  --muted: #6b6478;
  --canvas: #fbf8ff;
  --edge: #e4dcf3;
  --accent: #6333ad;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f3eefb;
    --muted: #b3a9c4;
    --canvas: #17131f;
    --edge: #33293f;
    --accent: #c4a6f0;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 1rem;
  background: var(--canvas);
  color: var(--ink);
  font-family: system-ui, -apple-system, 'Segoe UI', 'Apple SD Gothic Neo',
    'Noto Sans KR', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  line-height: 1.7;
  text-align: center;
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  z-index: 1;
}

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.languages {
  display: flex;
  gap: 0.25rem;
}

.languages a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--muted);
}

.languages a[aria-current='page'] {
  background: var(--edge);
  color: var(--ink);
}

main {
  max-width: 34rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

main:focus { outline: none; }

.mark {
  width: 96px;
  height: 96px;
  max-width: 40vw;
  height: auto;
}

.wordmark {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--muted);
}

h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.9rem, 7vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}

.body {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

footer {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  justify-content: center;
}

footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer small {
  font-size: 0.7rem;
  color: var(--muted);
}
