:root {
  color-scheme: light;
  --sans: "IBM Plex Sans", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  --ink: #37413b;
  --muted: rgba(55, 65, 59, 0.44);
  --paper: #f9fbf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f1f4f0;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.home {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 24%, rgba(116, 140, 126, 0.04), transparent 36%),
    var(--paper);
}

.home-shell {
  position: relative;
  min-height: 100vh;
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.home-nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.home-nav > a {
  color: rgba(55, 65, 59, 0.62);
}

.home-nav nav {
  display: flex;
  gap: 22px;
}

.origin-copy {
  position: absolute;
  left: 0;
  top: 54%;
  margin: 0;
  color: rgba(55, 65, 59, 0.86);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.75;
}

.thoughts-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 18%, rgba(116, 140, 126, 0.035), transparent 36%),
    var(--paper);
}

.thoughts-shell {
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
  padding: 56px 0 120px;
}

.thought-note {
  max-width: 680px;
  margin-top: clamp(96px, 16vh, 168px);
}

.thought-header p,
.draft-note h2 {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.thought-header h1 {
  margin: 18px 0 0;
  color: rgba(55, 65, 59, 0.86);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.35;
}

.distilled {
  margin-top: clamp(56px, 9vh, 88px);
}

.distilled p {
  margin: 0;
  color: rgba(55, 65, 59, 0.78);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.9;
}

.draft-note {
  margin-top: clamp(72px, 12vh, 112px);
  padding-top: 22px;
  border-top: 1px solid rgba(55, 65, 59, 0.08);
}

.draft-note p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(55, 65, 59, 0.66);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.05;
}

@media (max-width: 760px) {
  .home-shell {
    width: min(100% - 32px, 680px);
    padding-top: 42px;
  }

  .home-nav nav {
    gap: 14px;
  }

  .origin-copy {
    top: 52%;
    font-size: 27px;
  }

  .thoughts-shell {
    width: min(100% - 32px, 680px);
    padding-top: 42px;
  }

  .thought-note {
    margin-top: 96px;
  }

  .draft-note p {
    font-size: 14px;
  }

}
