:root {
  --ink: #031e28;
  --sun: #fabe4a;
  --paper: #f6f2e9;
  --muted: #a8b5b5;
  --line: rgba(246, 242, 233, 0.22);
}

* { box-sizing: border-box; }

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

body {
  background: var(--ink);
  color: var(--paper);
  font-family: "Space Grotesk", sans-serif;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 64%, rgba(250, 190, 74, 0.035) 64% 64.2%, transparent 64.2%),
    var(--ink);
}

.topbar, .footer {
  width: min(1280px, calc(100% - 88px));
  margin: 0 auto;
}

.topbar {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: block; width: 96px; }
.brand img { display: block; width: 100%; filter: brightness(0) invert(1); }

.status, .eyebrow, .progress-label, .coordinates, .mark-number {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.status { color: var(--muted); font-size: 10px; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 5px rgba(250, 190, 74, .12); }

.hero {
  position: relative;
  flex: 1;
  width: min(1280px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  align-items: center;
  min-height: 580px;
}

.hero-copy { position: relative; z-index: 1; padding: 72px 0; }
.eyebrow { color: var(--sun); font-size: 11px; margin: 0 0 32px; }
h1 { margin: 0; font-size: clamp(4.4rem, 8vw, 8.5rem); line-height: .86; letter-spacing: -.07em; font-weight: 600; }
h1 em { color: var(--sun); font-style: normal; }
.intro { max-width: 340px; margin: 38px 0 46px; color: var(--muted); font-size: 16px; line-height: 1.55; }

.progress-wrap { width: min(100%, 350px); }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 10px; color: var(--muted); }
.progress-label strong { color: var(--paper); font-weight: 400; }
.progress-track { height: 5px; background: rgba(246, 242, 233, .15); }
.progress-track span { display: block; width: 72%; height: 100%; background: var(--sun); }

.hero-mark { position: relative; width: min(40vw, 520px); aspect-ratio: 1; justify-self: end; border: 1px solid var(--line); border-radius: 50%; }
.hero-mark::before, .hero-mark::after { content: ""; position: absolute; background: var(--line); }
.hero-mark::before { width: 1px; height: 140%; top: -20%; left: 50%; }
.hero-mark::after { height: 1px; width: 140%; left: -20%; top: 50%; }
.mark-ring { position: absolute; border: 1px solid rgba(250, 190, 74, .5); border-radius: 50%; }
.ring-one { inset: 18%; }
.ring-two { inset: 36%; border-color: rgba(246, 242, 233, .32); }
.mark-cross { position: absolute; z-index: 1; background: var(--sun); }
.cross-one { width: 2px; height: 68%; top: 16%; left: calc(50% - 1px); }
.cross-two { width: 68%; height: 2px; top: calc(50% - 1px); left: 16%; }
.mark-number { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--ink); background: var(--sun); padding: 10px 12px; font-size: 10px; }
.corner { position: absolute; z-index: 2; width: 18px; height: 18px; border-color: var(--sun); }
.corner-top { top: -9px; right: 16%; border-top: 2px solid; border-right: 2px solid; }
.corner-bottom { bottom: -9px; left: 16%; border-bottom: 2px solid; border-left: 2px solid; }

.footer { display: flex; justify-content: space-between; align-items: center; height: 92px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer p { margin: 0; }
.yellow-dot { color: var(--sun); font-size: 24px; line-height: 0; }
.coordinates { font-size: 9px; }

@media (max-width: 700px) {
  .topbar, .hero, .footer { width: min(100% - 40px, 1280px); }
  .topbar { height: 86px; }
  .brand { width: 76px; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: auto; }
  .hero-copy { padding: 62px 0 44px; }
  .eyebrow { margin-bottom: 24px; }
  h1 { font-size: 3.15rem; }
  .intro { margin: 30px 0 38px; font-size: 14px; }
  .hero-mark { align-self: center; width: min(76vw, 360px); margin: 20px 0 66px; }
  .footer { height: 82px; font-size: 11px; }
  .coordinates { display: none; }
}