/*
  SteadyStack IT holding page
  HTML and CSS are intentionally split so the design is easy to edit later.
*/

:root {
  --colour-navy: #06155f;
  --colour-teal: #008f94;
  --colour-charcoal: #262626;
  --colour-muted: #667085;
  --colour-background: #ffffff;
  --colour-surface: #ffffff;
  --max-content-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--colour-background);
  color: var(--colour-charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.holding-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.brand-card {
  width: min(100%, var(--max-content-width));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
}

.tagline {
  margin: clamp(1.1rem, 3vw, 1.75rem) 0 0;
  color: var(--colour-navy);
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.status {
  margin: 0.6rem 0 0;
  color: var(--colour-muted);
  font-size: clamp(0.9rem, 1.9vw, 1rem);
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .holding-page {
    align-items: center;
    padding-inline: 1.25rem;
  }

  .logo {
    width: min(100%, 520px);
  }

  .tagline {
    max-width: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
