:root {
  --jumbo-yellow: #FBC707;
  --ink: #1a1a1a;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.card {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.logo-wrap {
  margin-bottom: 40px;
}

.logo-wrap img {
  width: 100%;
  max-width: 340px;
  height: auto;
}

.bar {
  height: 6px;
  width: 72px;
  background: var(--jumbo-yellow);
  margin: 0 auto 32px;
  border-radius: 3px;
}

h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.4;
}

p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: #333;
}

.desk {
  margin-top: 32px;
  font-size: 15px;
  color: #666;
}

.desk strong {
  color: var(--ink);
}
