:root {
  --bg: #fff7ef;
  --bg-accent: #ffd3ad;
  --card: rgba(255, 255, 255, 0.82);
  --text: #231b16;
  --muted: #6f6258;
  --line: rgba(112, 72, 39, 0.14);
  --accent: #ec8f42;
  --shadow: 0 24px 60px rgba(210, 130, 64, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 132, 0.4), transparent 28%),
    linear-gradient(180deg, #fff8f1 0%, #fff1e3 100%);
}

.construction-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.construction-card {
  width: min(100%, 620px);
  padding: 48px 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  text-align: center;
}

.dot {
  width: 18px;
  height: 18px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbe84, var(--accent));
  box-shadow: 0 0 0 10px rgba(236, 143, 66, 0.14);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.subcopy {
  margin: 0;
  color: #5f534a;
  font-size: 1.05rem;
  line-height: 1.6;
}
