:root {
  --navy: #0b1f3a;
  --cream: #f4ead7;
  --muted: #cdbf9f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--navy);
  color: var(--cream);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.card {
  width: min(760px, 100%);
  text-align: center;
  border: 1px solid rgba(244, 234, 215, 0.28);
  padding: 64px 36px;
}

.logo-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 22px;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(34px, 6vw, 68px);
  margin: 0;
  font-weight: 500;
}

.tagline {
  margin: 22px 0 30px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
}

.story {
  max-width: 560px;
  margin: 0 auto 18px;
  font-size: 20px;
  line-height: 1.55;
}

.founder {
  max-width: 560px;
  margin: 0 auto 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.actions a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 4px;
  font-size: 15px;
}

.actions a:hover {
  color: white;
}

@media (max-width: 600px) {
  .card {
    padding: 48px 24px;
  }

  .story {
    font-size: 18px;
  }
}
