:root {
  --bg: #0f140f;
  --panel-line: rgba(255, 255, 255, 0.10);
  --text: #f3f1e8;
  --muted: #c3c5bb;
  --olive: #8f9a63;
  --olive-soft: #a7b374;
  --footer: #8f9387;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;

  background: var(--bg);
  color: var(--text);

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  display: grid;
  place-items: center;

  padding: 28px;
}

.shell {
  width: min(980px, 100%);
}

.brand {
  margin: 0 0 42px 0;
  padding: 0;
}

.brand-logo {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.panel {
  border-top: 1px solid var(--panel-line);

  padding-top: 46px;
}

.eyebrow {
  margin: 0 0 18px;

  color: var(--olive-soft);

  text-transform: uppercase;

  letter-spacing: 0.16em;

  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;

  max-width: 900px;

  font-size: clamp(52px, 8vw, 94px);

  line-height: 0.95;

  letter-spacing: -0.055em;

  font-weight: 800;
}

.copy {
  margin: 30px 0 0;

  max-width: 700px;

  color: var(--muted);

  font-size: clamp(19px, 2vw, 24px);

  line-height: 1.55;

  font-weight: 400;
}

.status {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 38px;

  padding: 12px 16px;

  border: 1px solid var(--panel-line);

  border-radius: 999px;

  color: var(--muted);

  font-size: 14px;

  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--olive);

  flex: 0 0 auto;
}

.footer {
  margin-top: 84px;

  padding-top: 22px;

  border-top: 1px solid var(--panel-line);

  color: var(--footer);

  font-size: 13px;
}


/* --------------------------------------------------
   Mobile
   -------------------------------------------------- */

@media (max-width: 640px) {

  body {
    padding: 22px;
  }

  .brand {
    margin-bottom: 32px;
  }

  .brand-logo {
    width: 220px;
  }

  .panel {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .copy {
    font-size: 18px;
  }

  .status {
    margin-top: 30px;
  }

  .footer {
    margin-top: 56px;
  }

}