:root {
  --bg: #226dcf;
  --ink: #fff;
  --muted: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.22);
  --hot: #ff9f1c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.16), transparent 34rem),
    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.8rem;
  text-align: center;
}

.logo {
  width: clamp(190px, 36vw, 350px);
  border-radius: 2rem;
  display: block;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.24);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.one-liner {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

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: 700;
}

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;
  background: rgba(255, 255, 255, 0.1);
}

.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;
}

#quote-spent {
  color: var(--hot);
}

#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;
  }
}
