:root {
  color-scheme: dark;
  --bg: #071018;
  --line: rgba(190, 230, 234, 0.18);
  --text: #f5fbff;
  --muted: #adc1c8;
  --cyan: #63e6d3;
  --amber: #ffb545;
  --violet: #d875ff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.2), #071018 78%),
    radial-gradient(circle at 80% 18%, rgba(216, 117, 255, 0.18), transparent 32%),
    radial-gradient(circle at 20% 32%, rgba(99, 230, 211, 0.16), transparent 30%),
    var(--bg);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.9), rgba(7, 16, 24, 0.52), rgba(7, 16, 24, 0.88)),
    linear-gradient(180deg, rgba(7, 16, 24, 0.14), var(--bg) 95%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

#liquidity-field {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.coming-soon {
  width: min(720px, calc(100% - 32px));
  padding: 48px 0;
  text-align: center;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(99, 230, 211, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(99, 230, 211, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.brand-mark::before {
  inset: 9px;
  border: 2px solid rgba(255, 181, 69, 0.82);
  border-top-color: transparent;
}

.brand-mark::after {
  width: 10px;
  height: 10px;
  background: var(--violet);
  box-shadow: 0 0 18px rgba(216, 117, 255, 0.8);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.96;
}

.lede {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.status-line {
  margin: 28px auto 0;
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 17px;
  border: 1px solid rgba(99, 230, 211, 0.45);
  border-radius: 8px;
  background: rgba(99, 230, 211, 0.16);
  color: #eafffb;
  font-weight: 800;
}

.error-page .coming-soon {
  width: min(520px, calc(100% - 32px));
}
