/* Unified Tech Designs · hosted domain status templates · 21 September 2026 */
:root {
  --sky: #54b9e5;
  --ink: #0a2540;
  --paper: #ffffff;
  --mist: #e7f1f7;
  --slate: #42566b;
  --display: "Avenir Next", "Trebuchet MS", sans-serif;
  --body: Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--paper); }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
  box-shadow: 0 0 0 3px var(--paper);
}

.skip-link {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: -999px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus { left: 12px; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer,
.status-wrap { width: min(100% - 40px, 1120px); margin-inline: auto; }

.site-header {
  min-height: 120px;
  display: flex;
  align-items: center;
  padding-block: 24px;
}

.brand { display: inline-flex; width: 210px; align-items: center; }
.brand img { display: block; width: 100%; height: auto; }

.status-wrap {
  display: grid;
  align-content: center;
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(32px, 9vh, 120px);
}

.domain-reference {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 4fr);
  gap: 24px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid #cbdce5;
}

.domain-reference span {
  color: var(--slate);
  font-size: .875rem;
  font-weight: 700;
}

.domain-reference strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.notice {
  padding: clamp(40px, 6vw, 88px);
  background: var(--mist);
}

h1, p { margin-top: 0; }

h1 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.05em;
}

.summary {
  max-width: 54ch;
  margin-bottom: 28px;
  color: var(--slate);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.contact-link {
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--sky);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-link:hover { text-decoration-color: var(--ink); }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-block: 28px 32px;
  border-top: 1px solid #cbdce5;
  color: var(--slate);
  font-size: .875rem;
}

.site-footer strong { color: var(--ink); }

@media (max-width: 760px) {
  .site-header { min-height: 96px; padding-block: 20px; }
  .brand { width: 178px; }
  .status-wrap { padding-block: 24px 48px; }
  .domain-reference { grid-template-columns: 1fr; gap: 6px; }
  .notice { padding: 48px 28px; }
  h1 { max-width: 12ch; font-size: clamp(2.6rem, 13vw, 4rem); }
}
