:root {
  --ink: #16191d;
  --sun: #f5b932;
  --sun-wash: rgba(245, 185, 50, 0.10);
  --paper: #fafaf9;
  --muted: #6d7681;
  --line: #e6e4e0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(1400px 900px at 50% -5%, var(--sun-wash), transparent 65%),
    var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mark {
  width: 96px;
  height: 58px;
  display: block;
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 7vw, 46px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  padding: 6px 15px 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
}

.note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

/* Contact link — uncomment alongside the <a class="link"> in index.html
.link {
  margin-top: 34px;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s ease;
}
.link:hover { color: var(--ink); }
*/

:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 4px;
  border-radius: 4px;
}
