:root {
  --cream: #f7f6e8;
  --white: #ffffff;
  --reed: #233f35;
  --frog: #527d3d;
  --lily: #b9d58c;
  --pond: #356e78;
  --earth: #806044;
  --sun: #e8be63;
  --night-pond: #142b28;
  --deep-water: #223f3a;

  --bg: var(--cream);
  --surface: var(--white);
  --surface-muted: #eaf0d9;
  --border: #dce3c4;
  --text: var(--reed);
  --text-muted: var(--earth);
  --text-subtle: #6a6e68;
  --action: var(--pond);
  --action-text: var(--white);
  --link: var(--pond);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--night-pond);
    --surface: var(--deep-water);
    --surface-muted: #2e4c46;
    --border: #3b5a53;
    --text: var(--cream);
    --text-muted: #cbd2c2;
    --text-subtle: #9daaa1;
    --action: var(--lily);
    --action-text: var(--night-pond);
    --link: var(--lily);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.85;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

header.site {
  padding: 24px 0;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.brand span {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.2px;
}

nav.site {
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: 15px;
}

nav.site a {
  color: var(--text-muted);
  text-decoration: none;
}

nav.site a:hover {
  color: var(--text);
}

main {
  flex: 1;
}

main.page {
  padding: 24px 0 64px;
}

main.page h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}

main.page .updated {
  color: var(--text-subtle);
  font-size: 14px;
  margin: 0 0 32px;
}

main.page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 8px;
}

main.page p,
main.page li {
  color: var(--text-muted);
  font-size: 16px;
}

main.page ul {
  padding-left: 20px;
}

main.page strong {
  color: var(--text);
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text-subtle);
}

footer.site nav {
  display: flex;
  gap: 16px;
}

footer.site a {
  color: var(--text-subtle);
  text-decoration: none;
}

footer.site a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Coming-soon hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}

.hero img.logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(35, 63, 53, 0.12);
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.hero .tagline {
  color: var(--text-muted);
  font-size: 18px;
  margin: 0 0 28px;
}

.pill {
  display: inline-block;
  background: var(--surface-muted);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

.hero .sub {
  color: var(--text-subtle);
  font-size: 15px;
  max-width: 420px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-top: 8px;
}

.button {
  display: inline-block;
  background: var(--action);
  color: var(--action-text);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 8px;
}
