/* The State Files: coming-soon page. Palette mirrors thegafiles.com. */
:root {
  --black: #000000;
  --surface: #141414;
  --line: #2e2e2e;
  --white: #ffffff;
  --off-white: #e8e8e8;
  --gray-light: #b0b0b0;
  --gray-mid: #787878;
  --gold: #c9a227;
  --radius: 4px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  color: var(--off-white);
  background: var(--black);
  line-height: 1.6;
}

.wrap {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 18vh 1.25rem 3rem;
}

.brand { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; letter-spacing: .03em; color: var(--gray-light); margin: 0 0 2.5rem; }
.brand .brand-the { color: var(--gray-mid); font-weight: 400; }
.brand span:not(.brand-the) { font-weight: 400; }

h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.lede { font-size: 1.15rem; color: var(--gray-light); margin: 0 0 2rem; max-width: 36em; }

.status {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: .35rem .9rem;
  margin: 0 0 3.5rem;
}
.dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .3; } }

.first { border-top: 1px solid var(--line); padding-top: 2rem; }
.first h2 { font-family: var(--serif); font-size: 1.25rem; color: var(--white); margin: 0 0 .5rem; }
.first p { color: var(--gray-light); margin: 0 0 1.25rem; }

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  padding: .7rem 1.4rem;
  border-radius: var(--radius);
  letter-spacing: .03em;
}
.btn:hover { background: var(--off-white); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.foot { border-top: 1px solid var(--line); padding: 1.25rem; text-align: center; font-size: .85rem; color: var(--gray-mid); }
.foot p { margin: 0; }

@media (prefers-reduced-motion: reduce) { .dot { animation: none; } }
