:root {
  color-scheme: dark;
  --ink: #e8e4da;
  --muted: #8c999c;
  --night: #050a0d;
  --cyan: #7ad6d0;
  --line: rgba(122, 214, 208, .2);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--night); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 90, 94, .18), transparent 28rem),
    linear-gradient(135deg, #05090c, #091317 58%, #05090c);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a { color: inherit; }
.site-header, footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header { padding: 30px 0; display: flex; align-items: center; justify-content: space-between; }
.wordmark { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 700; letter-spacing: .34em; }
.wordmark span { color: var(--cyan); margin-left: .5rem; font-weight: 400; }
.status { color: var(--muted); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.status i { display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); animation: pulse 2.8s ease-in-out infinite; }

main { width: min(1180px, calc(100% - 48px)); margin: auto; padding: 7vh 0 10vh; position: relative; }
.hero { max-width: 820px; }
.eyebrow, .signal p { color: var(--cyan); font-size: .7rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
h1 { margin: 22px 0 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.8rem, 9.7vw, 8.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .82; }
h1 em { color: transparent; -webkit-text-stroke: 1px rgba(232, 228, 218, .55); font-style: normal; }
.intro { max-width: 640px; color: #b8c0be; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.12rem, 2vw, 1.45rem); line-height: 1.65; }
.rule { width: min(520px, 70vw); height: 1px; margin: 38px 0 20px; background: linear-gradient(90deg, var(--line), transparent); }
.rule span { display: block; width: 26%; height: 1px; background: var(--cyan); box-shadow: 0 0 12px rgba(122, 214, 208, .5); animation: scan 5s ease-in-out infinite; }
.coming { color: var(--muted); font-size: .82rem; letter-spacing: .08em; }
.signal { position: absolute; right: 0; bottom: 7vh; width: 260px; padding: 22px 0 0 24px; border-left: 1px solid var(--line); }
.signal p { margin: 0 0 13px; }
.signal strong { display: block; margin-bottom: 9px; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; font-weight: 400; }
.signal span { color: var(--muted); font-size: .78rem; line-height: 1.6; }

footer { padding: 24px 0 30px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; gap: 24px; color: #718084; font-size: .72rem; letter-spacing: .06em; }
footer p { margin: 0; }
footer nav { display: flex; gap: 24px; }
footer a { text-decoration: none; }
footer a:hover, footer a:focus-visible { color: var(--cyan); }
.space span { position: fixed; border: 1px solid rgba(122,214,208,.1); border-radius: 50%; pointer-events: none; }
.space span:nth-child(1) { width: 44vw; height: 44vw; right: -27vw; top: 7vh; }
.space span:nth-child(2) { width: 34vw; height: 34vw; right: -22vw; top: 14vh; }
.space span:nth-child(3) { width: 3px; height: 3px; right: 11vw; top: 28vh; background: var(--cyan); box-shadow: 0 0 20px 5px rgba(122,214,208,.25); border: 0; }

.legal { max-width: 760px; padding-block: 7vh 12vh; }
.legal h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: .95; }
.legal h2 { margin-top: 2.5rem; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.legal p, .legal li { color: #aab4b4; line-height: 1.75; }
.placeholder { border-left: 1px solid var(--cyan); padding: 4px 0 4px 20px; color: var(--ink) !important; }

@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }
@keyframes scan { 50% { transform: translateX(280%); } }
@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 32px, 1180px); }
  .site-header { padding-top: 22px; }
  .status { font-size: .62rem; }
  main { padding-top: 9vh; }
  h1 { font-size: clamp(3.4rem, 18vw, 6rem); }
  .signal { position: static; margin-top: 64px; }
  footer { flex-direction: column; }
  footer nav { flex-wrap: wrap; gap: 14px 22px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; } }

