:root {
  --bg: #ffffff;
  --text: #101820;
  --muted: #5f6872;
  --line: #d8dee4;
  --accent: #8b949e;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.03), rgba(255, 255, 255, 0) 18%),
    linear-gradient(90deg, rgba(16, 24, 32, 0.035) 0, rgba(16, 24, 32, 0.035) 1px, transparent 1px, transparent 100%),
    #ffffff;
  background-size: auto, min(100%, 132px) 100%, auto;
  background-position: 0 0, left center, 0 0;
}

.content {
  width: min(100%, 860px);
  animation: rise-in 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-family: "Bahnschrift", "Aptos", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.company-name {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.divider {
  width: 120px;
  height: 1px;
  margin: 30px 0;
  background: linear-gradient(90deg, var(--text) 0%, var(--accent) 100%);
}

.message,
.note {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
}

.message {
  color: var(--text);
  font-weight: 500;
}

.note {
  margin-top: 16px;
}

.brand-footer {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  width: min(100%, 260px);
}

.logo {
  display: block;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .page {
    padding: 28px 22px;
    background-size: auto, 72px 100%, auto;
  }

  .company-name {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .divider {
    margin: 24px 0;
  }

  .brand-footer {
    margin-top: 40px;
    width: 180px;
  }
}
