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

:root {
  --bg:        #0a0612;
  --border:    #3b1f5e;
  --accent:    #a855f7;
  --accent-hi: #e9d5ff;
  --text:      #f3e8ff;
  --muted:     #9ca3af;
  --url:       #c084fc;
}

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: 480px;
  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.25rem;
  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;
}

.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;
}

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