/* Building Angel — lift & shift of the original GoDaddy WSB site */
:root {
  --ink: #333333;
  --muted: #8a8a8a;
  --rule: #e6e6e6;
  --bg: #ffffff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  width: 100%;
}
.wordmark {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  margin: 0 0 2.5rem;
  color: var(--ink);
}
.logo {
  width: min(360px, 72%);
  height: auto;
  display: block;
}
/* Interior text pages (privacy policy, etc.) */
.content {
  flex: 1 0 auto;
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: left;
  width: 100%;
}
.content .wordmark {
  font-size: clamp(2rem, 7vw, 3rem);
  text-align: center;
  margin-bottom: 2.5rem;
}
.content h1 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
}
.content h2 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
  margin: 2rem 0 0.5rem;
}
.content p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
footer {
  flex-shrink: 0;
  border-top: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
footer nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 400;
}
footer nav a:hover { color: var(--ink); }
.copyright {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  footer { flex-direction: column; text-align: center; }
  footer nav { justify-content: center; }
}
