:root {
  color-scheme: light;
  --ink: #171817;
  --muted: #5d635d;
  --paper: #f7f5ef;
  --surface: #fffdf8;
  --line: #d9d2c3;
  --green: #2f6f5e;
  --coral: #d95f43;
  --violet: #514f9d;
  --gold: #c99b33;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 245, 239, 1));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 96px));
  overflow: hidden;
  background: var(--surface);
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 760px;
  padding: clamp(32px, 8vw, 84px);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 10px;
  border: 1px solid rgba(47, 111, 94, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7rem, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7rem, 1.7rem);
  line-height: 1.35;
}

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

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

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

.button.secondary {
  background: rgba(255, 253, 248, 0.82);
}

.status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.status > div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 253, 248, 0.86);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 20px, 1120px);
    padding: 10px 0;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding: 28px 22px;
  }

  h1 {
    font-size: clamp(3rem, 4.2rem, 4.2rem);
  }

  .lede {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

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