:root {
  color-scheme: light;
  --ink: #162033;
  --muted: #5f6b7a;
  --line: #d9e1ea;
  --surface: #ffffff;
  --wash: #f4f7fb;
  --blue: #1c5fd8;
  --teal: #00857a;
  --accent: #e24b35;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(28, 95, 216, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
}

.construction-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.construction-shell::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--accent));
}

.construction-panel {
  width: min(760px, 100%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(22, 32, 51, 0.12);
  padding: clamp(28px, 6vw, 58px);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  display: block;
  width: min(220px, 48vw);
  height: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-left: 4px solid var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
}

.message-block {
  padding: clamp(42px, 7vw, 72px) 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--teal);
}

h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--muted);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.contact-row span {
  color: var(--muted);
  font-weight: 700;
}

.contact-row a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .construction-shell {
    padding: 18px;
    align-items: stretch;
  }

  .construction-panel {
    min-height: calc(100vh - 36px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
  }

  .brand-row,
  .contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: min(190px, 72vw);
  }
}
