:root {
  --navy: #111f3f;
  --orange: #ff5a1f;
  --paper: #faf7ef;
  --muted: #657084;
  --line: #e7dfd1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17,31,63,.16);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,90,31,.18), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, var(--paper) 100%);
}
.construction {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 80px);
}
.panel {
  width: min(860px, 100%);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(32px, 7vw, 72px);
  box-shadow: var(--shadow);
}
.eyebrow {
  color: var(--orange);
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 14px;
}
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #33405f;
}
.note {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 700;
}
