:root {
  color-scheme: light;
  --paper: #f7f2e8;
  --ink: #1f2523;
  --muted: #69736d;
  --line: #d9d1c1;
  --teal: #16746b;
  --teal-dark: #0d504d;
  --coral: #dc6047;
  --gold: #e3b448;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(31, 37, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(31, 37, 35, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 37, 35, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 64px);
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid rgba(31, 37, 35, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
nav,
.hero-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0;
}

nav {
  gap: 8px;
}

nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  padding: 132px clamp(20px, 5vw, 64px) 64px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.secondary {
  background: transparent;
}

.button.secondary:hover {
  background: var(--white);
}

.signal-panel {
  position: relative;
  min-height: 480px;
  padding: clamp(22px, 4vw, 36px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 116, 107, 0.12), transparent 42%),
    linear-gradient(45deg, transparent 0 54%, rgba(220, 96, 71, 0.18) 54% 58%, transparent 58%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.signal-panel::before,
.signal-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 62%;
  height: 16px;
  background: var(--gold);
  transform: rotate(-28deg);
}

.signal-panel::before {
  top: 31%;
  left: -14%;
}

.signal-panel::after {
  right: -16%;
  bottom: 28%;
  background: var(--coral);
}

.panel-topline,
.status-grid,
.omega-mark {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill {
  padding: 6px 10px;
  background: #dff3e5;
  color: #24583a;
}

.omega-mark {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
}

.omega-mark span {
  position: absolute;
  width: min(64%, 260px);
  aspect-ratio: 1;
  border: 28px solid var(--ink);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.omega-mark strong {
  padding-top: 210px;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.status-grid div {
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.92);
}

dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  font-weight: 800;
}

.updates {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  padding: 56px clamp(20px, 5vw, 64px) 84px;
  background: var(--ink);
  color: var(--white);
}

.updates .eyebrow,
.updates p {
  color: #cbd6cf;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.updates > p {
  max-width: 720px;
  margin: 0;
  align-self: end;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  background: var(--ink);
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: #cbd6cf;
}

footer a {
  font-weight: 800;
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .hero,
  .updates {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    max-width: 10ch;
  }

  .signal-panel {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  nav a {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.5rem);
  }

  .button {
    width: 100%;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .omega-mark strong {
    padding-top: 190px;
  }
}
