:root {
  color: #171717;
  background: #f7f5f0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f7f5f0;
}

a {
  color: inherit;
}

.paneo-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.paneo-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.paneo-brand {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.paneo-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.paneo-nav a {
  text-decoration: none;
  color: #55524b;
}

.paneo-nav a:hover {
  color: #171717;
}

.paneo-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.paneo-prose {
  max-width: 720px;
}

.paneo-prose h1 {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: 0;
}

.paneo-prose p {
  margin: 0 0 18px;
  color: #4b4740;
  font-size: 18px;
  line-height: 1.7;
}

.paneo-waitlist {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid #ded8cc;
  border-radius: 8px;
  background: #fffdfa;
}

.paneo-waitlist input,
.paneo-waitlist button {
  min-height: 42px;
  border-radius: 6px;
  font: inherit;
}

@media (max-width: 640px) {
  .paneo-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .paneo-nav {
    flex-wrap: wrap;
  }

  .paneo-main {
    padding-top: 44px;
  }

  .paneo-prose h1 {
    font-size: 42px;
  }
}