:root {
  --bg: #000;
  --ink: #f4f4f4;
  --muted: #8d8d8d;
  --line: rgba(255, 255, 255, 0.22);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover,
button:hover {
  text-decoration: underline;
}

.shell {
  width: min(920px, 100%);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 1.1rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  gap: 1rem;
}

.top,
nav,
footer,
.status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top {
  justify-content: center;
}

nav {
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  text-align: center;
}

.logo {
  width: clamp(180px, 38vw, 330px);
  display: block;
  filter: contrast(1.2);
}

.one-liner {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  text-transform: lowercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

article {
  min-width: 0;
  padding: 0.95rem;
  border-right: 1px solid var(--line);
}

article:last-child {
  border-right: 0;
}

article span,
small,
.status,
footer {
  color: var(--muted);
}

article span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(1.3rem, 4vw, 2.3rem);
  font-weight: 400;
}

small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

blockquote {
  margin: 0;
  padding: 1rem;
  border-left: 1px solid var(--ink);
  color: var(--ink);
  line-height: 1.45;
  text-transform: lowercase;
}

.status {
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  font-size: 0.85rem;
}

.status p {
  margin: 0;
}

button {
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

#ca-pill-addr {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .top,
  footer,
  .status {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  article:last-child {
    border-bottom: 0;
  }
}
