:root {
  color-scheme: light;
  --background: #f4ebe1;
  --surface: #fffaf3;
  --surface-soft: #eee6dc;
  --text: #4a4a4a;
  --muted: #777067;
  --green: #7f9278;
  --accent: #d08c60;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
}

a {
  color: #4f6a57;
  font-weight: 650;
}

.page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero {
  padding: 16px 0 28px;
}

.mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.eyebrow {
  margin: 22px 0 8px;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 9vw, 82px);
  line-height: 1;
  font-weight: 500;
}

.intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.45;
}

.panel {
  margin-top: 18px;
  padding: 28px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
}

h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 650;
}

h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  font-weight: 650;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.note {
  margin-top: 14px;
  font-size: 14px;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 880px);
    padding-top: 32px;
  }

  .panel {
    padding: 22px;
    border-radius: 18px;
  }
}
