@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --ink: #151515;
  --paper: #e9e7df;
  --muted: #9b9a92;
  --line: rgba(233, 231, 223, 0.18);
  --acid: #d4f946;
  --coral: #f27c64;
  --mono: 'DM Mono', monospace;
  --display: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  content: '';
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.page-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: auto;
  padding: 28px clamp(24px, 5vw, 76px) 22px;
}

.site-header, .site-footer, .panel-topline, .panel-bottomline, .phase, .footer-signal { display: flex; align-items: center; }
.site-header { justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.brand, .header-note, .eyebrow, .panel-topline, .panel-bottomline, .phase, .micro-label, .site-footer { font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.brand { color: var(--paper); font-size: 12px; text-decoration: none; }
.header-note { display: flex; gap: 9px; align-items: center; margin: 0; color: var(--muted); font-size: 10px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(212, 249, 70, .12); animation: pulse 2.4s infinite; }

.hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(56px, 10vw, 170px); align-items: end; flex: 1; padding: clamp(72px, 13vh, 160px) 0 clamp(86px, 12vh, 150px); }
.eyebrow { display: flex; gap: 15px; align-items: center; margin: 0 0 28px; color: var(--coral); font-size: 11px; }
.eyebrow span { color: var(--muted); }
h1 { max-width: 820px; margin: 0; color: var(--paper); font-size: clamp(54px, 8.5vw, 128px); font-weight: 600; letter-spacing: -.07em; line-height: .88; }
h1 em { color: var(--acid); font-style: normal; }
.intro { max-width: 410px; margin: 36px 0 24px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--paper); font-family: var(--mono); font-size: 11px; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; }
.text-link span, button span { color: var(--acid); font-size: 16px; transition: transform .2s ease; }
.text-link:hover span, button:hover span { transform: translate(3px, -3px); }

.progress-panel { padding: 26px; border: 1px solid var(--line); background: rgba(233, 231, 223, .035); }
.panel-topline, .panel-bottomline { justify-content: space-between; font-size: 10px; }
.panel-topline { color: var(--paper); }
.panel-topline span:last-child { color: var(--acid); font-size: 14px; }
.progress-track { height: 7px; margin: 18px 0 12px; overflow: hidden; background: rgba(233, 231, 223, .12); }
.progress-fill { display: block; width: 0; height: 100%; background: var(--acid); animation: fill-progress 1.6s .25s cubic-bezier(.22, 1, .36, 1) forwards; }
.panel-bottomline { color: var(--muted); font-size: 9px; }
.blinking-cursor { margin-left: 2px; color: var(--acid); animation: blink 1s steps(1) infinite; }
.phase-list { margin-top: 52px; }
.phase { gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.phase-mark { width: 15px; color: var(--muted); font-size: 15px; }
.phase-state { margin-left: auto; font-size: 9px; }
.phase.is-done { color: var(--paper); }
.phase.is-done .phase-mark { color: var(--coral); }
.phase.is-active { color: var(--acid); }
.phase.is-active .phase-mark { color: var(--acid); }

.lower-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 26px 0 48px; border-top: 1px solid var(--line); }
.quote-block { display: flex; gap: 16px; }
.quote-mark { color: var(--coral); font-size: 36px; line-height: .7; }
blockquote { margin: 0; color: var(--paper); font-size: 19px; line-height: 1.25; }
.notify-block { justify-self: end; width: min(100%, 390px); }
.micro-label { margin: 0 0 12px; color: var(--muted); font-size: 9px; }
.notify-form { display: flex; border-bottom: 1px solid var(--paper); }
.notify-form input { flex: 1; min-width: 0; padding: 11px 0; border: 0; outline: 0; color: var(--paper); background: transparent; font: 12px var(--mono); }
.notify-form input::placeholder { color: #686861; }
.notify-form button { display: inline-flex; gap: 10px; align-items: center; padding: 0 0 0 16px; border: 0; color: var(--paper); background: transparent; cursor: pointer; font: 10px var(--mono); text-transform: uppercase; white-space: nowrap; }
.form-message { min-height: 15px; margin: 9px 0 0; color: var(--acid); font: 10px var(--mono); }
.site-footer { justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #686861; font-size: 9px; }
.footer-signal { gap: 3px; }
.footer-signal i { display: block; width: 3px; height: 7px; background: var(--acid); }
.footer-signal i:nth-child(2) { height: 11px; opacity: .7; }
.footer-signal i:nth-child(3) { height: 15px; opacity: .45; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@keyframes fill-progress { to { width: 68%; } }
@keyframes pulse { 50% { opacity: .45; } }
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 760px) {
  .page-shell { padding: 22px 20px 18px; }
  .hero { display: block; padding: 76px 0 92px; }
  h1 { font-size: clamp(54px, 15vw, 90px); }
  .intro { margin-top: 30px; }
  .progress-panel { margin-top: 72px; }
  .lower-grid { grid-template-columns: 1fr; gap: 38px; padding-bottom: 42px; }
  .notify-block { justify-self: stretch; width: 100%; }
  .site-footer { align-items: flex-start; flex-wrap: wrap; gap: 14px 24px; }
  .footer-signal { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
