:root {
  --ink: #071426;
  --cream: #f4eddc;
  --orange: #f39b18;
  --teal: #20b7b0;
  --red: #e34f32;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; }
body { margin: 0; background: var(--ink); color: var(--cream); font-family: Arial, Helvetica, sans-serif; }

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 36px 36px;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.8) .6px, transparent .6px);
  background-size: 7px 7px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 70%);
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.spotlight { position: absolute; z-index: -1; width: 38rem; height: 38rem; border-radius: 50%; filter: blur(90px); opacity: .13; }
.spotlight-one { top: -20rem; left: -8rem; background: var(--orange); }
.spotlight-two { right: -16rem; bottom: -20rem; background: var(--teal); }

.masthead {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(12px, 2.3vh, 22px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark { color: var(--cream); text-decoration: none; font: 900 1rem/1 var(--mono); letter-spacing: .18em; display: flex; align-items: center; gap: 10px; }
.wordmark-dot, .status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.status-pill { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(244,237,220,.23); border-radius: 999px; padding: 8px 12px; color: rgba(244,237,220,.72); font: 600 .66rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 6px; height: 6px; background: var(--teal); box-shadow: 0 0 12px var(--teal); animation: pulse 1.8s ease-in-out infinite; }

.hero {
  width: min(1100px, calc(100% - 40px));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(8px, 1.5vh, 16px) 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(6px, 1.2vh, 12px);
  text-align: center;
}

.headline-block, .coming-soon { min-width: 0; }
.headline-block { align-self: end; }
.eyebrow, .kicker { margin: 0 0 12px; color: var(--orange); font: 800 .68rem/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 0 auto; font-size: clamp(2rem, 4.5vw, 4rem); line-height: .91; letter-spacing: -.06em; text-wrap: balance; }
h1 span { display: block; color: var(--orange); }

.hero-art { position: relative; align-self: center; width: fit-content; max-width: min(920px, 94%); min-width: 0; margin: 0 auto; padding: 8px; border: 1px solid rgba(244,237,220,.25); background: rgba(244,237,220,.06); box-shadow: 0 24px 70px rgba(0,0,0,.42); transform: rotate(-.35deg); }
.hero-art::after { content: "EXHIBIT A"; position: absolute; right: 14px; bottom: 14px; padding: 7px 9px; background: var(--red); color: #fff; font: 900 .62rem/1 var(--mono); letter-spacing: .12em; transform: rotate(-3deg); }
.hero-art img { display: block; width: auto; max-width: 100%; max-height: min(48dvh, 520px); object-fit: contain; }
.tape { position: absolute; z-index: 2; width: 68px; height: 21px; background: rgba(244,237,220,.72); box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.tape-left { left: -22px; top: 22px; transform: rotate(-36deg); }
.tape-right { right: -23px; top: 23px; transform: rotate(38deg); }

.coming-soon { align-self: start; max-width: 850px; margin: 0 auto; text-align: center; }
.coming-soon h2 { margin: 0; font-size: clamp(1.4rem, 2.4vw, 2.4rem); line-height: .98; letter-spacing: -.05em; text-wrap: balance; }
.coming-soon > p:last-child { max-width: 700px; margin: clamp(7px, 1.2vh, 12px) auto 0; color: rgba(244,237,220,.67); font-size: clamp(.78rem, .92vw, 1rem); line-height: 1.45; text-wrap: balance; }

footer { width: min(1280px, calc(100% - 40px)); margin: 0 auto; padding: clamp(10px, 1.7vh, 16px) 0; display: flex; align-items: center; gap: 16px; color: rgba(244,237,220,.5); font: 600 .62rem/1.25 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.footer-rule { flex: 1; height: 1px; background: rgba(244,237,220,.1); }

@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }

@media (max-width: 980px) {
  .hero { width: min(760px, calc(100% - 32px)); padding: 4px 0 8px; grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr) auto; gap: clamp(7px, 1.2vh, 12px); text-align: center; }
  .headline-block { align-self: end; }
  .eyebrow, .kicker { margin-bottom: 7px; }
  h1 { max-width: 740px; margin: 0 auto; font-size: clamp(1.9rem, 5.8vw, 3.3rem); }
  .hero-art { align-self: center; width: fit-content; max-width: min(720px, 94%); margin: 0 auto; padding: 6px; }
  .hero-art img { width: auto; max-width: 100%; max-height: min(39dvh, 390px); }
  .coming-soon { align-self: start; max-width: 680px; margin: 0 auto; }
  .coming-soon h2 { font-size: clamp(1.45rem, 4vw, 2.35rem); }
  .coming-soon > p:last-child { max-width: 620px; margin: 9px auto 0; font-size: .82rem; line-height: 1.35; }
}

@media (max-width: 640px) {
  .masthead, footer { width: calc(100% - 24px); }
  .masthead { padding: 10px 0; }
  .wordmark { font-size: .82rem; }
  .status-pill { padding: 7px 9px; font-size: .53rem; }
  .hero { width: calc(100% - 24px); grid-template-rows: auto minmax(0, 1fr) auto; }
  .eyebrow, .kicker { font-size: .55rem; }
  h1 { font-size: clamp(1.65rem, 8.3vw, 2.5rem); }
  .hero-art { max-width: 96%; }
  .hero-art img { max-height: 32dvh; }
  .hero-art::after { right: 8px; bottom: 8px; padding: 5px 6px; font-size: .43rem; }
  .tape { width: 48px; height: 15px; }
  .tape-left { left: -16px; top: 17px; }
  .tape-right { right: -16px; top: 17px; }
  .coming-soon h2 { font-size: clamp(1.25rem, 6.2vw, 1.75rem); }
  .coming-soon > p:last-child { margin-top: 7px; font-size: .72rem; line-height: 1.28; }
  footer { padding: 8px 0 10px; gap: 8px; font-size: .5rem; }
}

@media (max-height: 700px) {
  .masthead { padding-top: 7px; padding-bottom: 7px; }
  .hero { gap: 5px; padding-top: 2px; padding-bottom: 4px; }
  .eyebrow, .kicker { margin-bottom: 5px; }
  .hero-art img { max-height: 31dvh; }
  .coming-soon > p:last-child { margin-top: 5px; }
  footer { padding-top: 6px; padding-bottom: 7px; }
}

@media (max-height: 520px) and (min-width: 650px) {
  .hero { width: min(900px, calc(100% - 32px)); grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr) auto; gap: 3px; text-align: center; }
  h1 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); }
  .hero-art { width: fit-content; max-width: 76%; }
  .hero-art img { width: auto; max-width: 100%; max-height: 38dvh; }
  .coming-soon { text-align: center; }
  .coming-soon h2 { font-size: clamp(1rem, 2vw, 1.45rem); }
  .coming-soon > p:last-child { font-size: .62rem; line-height: 1.2; }
}

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