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

:root {
  --bg:        #0a0f1a;
  --surface:   #111827;
  --border:    #1e3a5f;
  --accent:    #2563eb;
  --accent-hi: #60a5fa;
  --text:      #e2e8f0;
  --muted:     #64748b;
  --url:       #0ea5e9;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.frame {
  border: 1px solid var(--border);
  padding: 3.5rem 4rem;
  max-width: 540px;
  width: 100%;
  position: relative;
}

.frame::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 32px; height: 32px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.frame::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 32px; height: 32px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.wordmark {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.tld { color: var(--accent-hi); }

.rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}

.descriptor {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.url-badge {
  margin-top: 2.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--url);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.build-tag {
  font-size: 10px;
  opacity: 0.4;
  margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace;
}

@media (max-width: 480px) {
  .frame { padding: 2.5rem 2rem; }
  .wordmark { font-size: 1.875rem; }
}