:root {
  color-scheme: light;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --sand: #d9c7a6;
  --gold: #c9a46a;
  --ink: #202329;
  --graphite: #1c1c1c;
  --muted: #6f716d;
  --line: rgba(32, 35, 41, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(247, 243, 234, 0.96)),
    var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

.construction-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(28px, 5vw, 64px);
}

.construction-panel {
  display: grid;
  justify-items: center;
  width: min(100%, 820px);
  text-align: center;
}

.construction-logo {
  display: block;
  margin-bottom: clamp(48px, 8vw, 76px);
}

.construction-logo img {
  width: clamp(260px, 42vw, 430px);
  height: auto;
  filter: drop-shadow(0 22px 42px rgba(20, 20, 20, 0.07));
}

.construction-copy {
  display: grid;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: #3d403e;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.capability-line {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-transform: uppercase;
}

.beta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 38px;
  border-radius: 4px;
  padding: 0 26px;
  background: var(--graphite);
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.13);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.beta-button:hover,
.beta-button:focus-visible {
  background: #050505;
  transform: translateY(-2px);
}

.beta-button svg {
  width: 18px;
  height: 18px;
}

.beta-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

footer {
  margin-top: clamp(58px, 9vw, 88px);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .construction-page {
    align-items: start;
    padding: 34px 18px;
  }

  .construction-panel {
    min-height: calc(100svh - 68px);
    align-content: center;
  }

  .construction-logo {
    margin-bottom: 44px;
  }

  .eyebrow {
    gap: 10px;
    font-size: 0.66rem;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 24px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .subtitle {
    margin-top: 22px;
  }

  .capability-line {
    font-size: 0.72rem;
  }

  .beta-button {
    width: min(100%, 340px);
  }
}
