*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background: #eceff1;
  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: min(100%, 42rem);
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.06), 0 8px 24px rgb(0 0 0 / 0.04);
}

@media (min-width: 640px) {
  .card {
    padding: 3rem 2.5rem;
  }
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 2rem;
  margin: 0;
  font-weight: inherit;
}

@media (min-width: 640px) {
  .brand {
    flex-direction: row;
    align-items: center;
  }
}

.brand__acronym {
  align-self: center;
  color: #737373;
  font-size: clamp(4.125rem, 21vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .brand__acronym {
    font-size: clamp(3rem, 12vw, 4.5rem);
    letter-spacing: 0.02em;
  }
}

.brand__details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .brand__details {
    padding-top: 0.5rem;
    text-align: left;
  }
}

.brand__name {
  color: #111;
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand__title {
  color: #dc2626;
  font-size: clamp(0.875rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  background: #c41e3a;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cta__icon {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.cta:hover {
  background: #a01830;
}

.cta-placeholder {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .contact {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .contact > * + *::before {
    color: #bbb;
    content: "|";
    font-weight: 400;
    margin: 0 0.875rem;
  }
}

.contact a {
  color: #c41e3a;
  font-weight: 600;
  text-decoration: none;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.contact__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.contact a:hover {
  text-decoration: underline;
}

.contact > span {
  color: #555;
}
