:root {
  --ink: #203b1d;
  --paper: #f7f5ec;
  --accent: #d8ec74;
  --soft-ink: #63715f;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  height: 100svh;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.brand {
  padding: 38px 0;
}

.brand img {
  display: block;
  width: min(410px, 52vw);
  height: auto;
}

.hero {
  width: min(800px, 72%);
  margin: auto 0;
  padding: 36px 0 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 236, 116, .24);
  animation: pulse 2.4s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 8.7vw, 126px);
  font-weight: 800;
  line-height: .87;
  letter-spacing: -.07em;
}

.intro {
  max-width: 610px;
  margin: 38px 0 30px;
  color: var(--soft-ink);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 17px 12px 12px;
  border: 1px solid rgba(32, 59, 29, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  font-size: 13px;
}

.status-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(32, 59, 29, .15);
  color: var(--soft-ink);
  font-size: 11px;
  letter-spacing: .04em;
}

footer p {
  margin: 0;
  padding-right: 8px;
  background: var(--paper);
  box-shadow: 8px 0 0 var(--paper);
}

.footer-note { color: var(--ink); font-weight: 650; }

.sun {
  position: fixed;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  border-radius: 100% 0 0 0;
  background: var(--accent);
  overflow: hidden;
}

.construction {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88%;
  color: var(--ink);
}

.construction svg {
  display: block;
  width: 100%;
  height: auto;
}

.structure {
  fill: none;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.structure .floor,
.structure .brick,
.structure .beam {
  fill: currentColor;
  stroke: none;
}

.structure .cable { stroke-width: 4; }
.structure .ground { stroke-width: 5; opacity: .35; }

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(216, 236, 116, 0); }
}

@media (max-width: 640px) {
  .page { width: min(100% - 32px, 1180px); }
  .brand { padding: 26px 0; }
  .brand img { width: min(310px, 90vw); }
  .hero {
    width: 100%;
    padding: 20px 0 32px;
  }
  .eyebrow { font-size: 10px; }
  h1 { font-size: clamp(45px, 12vw, 52px); letter-spacing: -.06em; }
  .intro { margin-top: 30px; }
  footer { flex-direction: column; gap: 8px; }
  .sun { width: min(78vw, 390px); }
  .construction { width: 92%; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .hero { width: 68%; }
  h1 { font-size: clamp(58px, 8vw, 80px); }
}

@media (max-width: 640px) and (max-height: 700px) {
  .sun { width: 62vw; }
  .construction { width: 94%; }
}

@media (max-height: 680px) and (min-width: 641px) {
  .brand { padding: 20px 0; }
  .brand img { width: min(340px, 48vw); }
  .hero { padding: 16px 0 24px; }
  .eyebrow { margin-bottom: 18px; }
  h1 { font-size: clamp(48px, 8vw, 84px); }
  footer { padding: 16px 0 18px; }
  .sun { width: min(39vw, 480px); }
}

@media (max-height: 320px) and (min-width: 560px) {
  .brand { padding: 9px 0; }
  .brand img { width: min(230px, 38vw); }
  .hero { padding: 3px 0 8px; }
  .eyebrow { margin-bottom: 8px; font-size: 9px; }
  h1 { font-size: clamp(34px, 5.8vw, 46px); line-height: .84; }
  footer { padding: 7px 0 8px; font-size: 9px; }
  .sun { width: min(34vw, 290px); }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow span { animation: none; }
}
