:root {
  color-scheme: light;
  background: #f7f3ea;
  color: #1b1a18;
  font-family: ui-serif, "Iowan Old Style", Charter, Georgia, Cambria, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.68;
  font-weight: 400;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 103, 255, 0.035), transparent 32%, transparent 68%, rgba(216, 66, 53, 0.035)),
    #f7f3ea;
}

body {
  color: #1b1a18;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

a {
  color: inherit;
}

.reading-page {
  width: min(100%, 820px);
  max-width: min(70ch, 820px);
  margin: 0 auto;
  padding: 44px clamp(28px, 5vw, 58px) 104px;
}

.agent-only-links {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2.4vw, 22px);
  margin: 0 0 54px;
  text-align: center;
}

.logo-mark {
  display: block;
  width: clamp(82px, 13vw, 114px);
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(22, 92, 64, 0.13));
}

.domain-line {
  display: inline-block;
  max-width: 100%;
  color: #265c46;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 3.8vw, 26px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-email {
  display: inline-block;
  color: #0067ff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  white-space: nowrap;
}

.site-title {
  width: min(100%, 720px);
  margin-top: clamp(4px, 1vw, 10px);
  padding: clamp(14px, 3.2vw, 24px) clamp(18px, 4vw, 38px);
  color: #184d34;
  background: #fff9bf;
  border: 1px solid rgba(24, 77, 52, 0.14);
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 8vw, 74px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.note {
  color: #1b1a18;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.56;
  text-align: left;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.note-title {
  margin: 0 0 0.82em;
  color: #171717;
  font-size: 1.55em;
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

.note p {
  margin: 0 0 1.08em;
}

.note p:last-child {
  margin-bottom: 0;
}

.note-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(54px, 8vw, 86px) 0;
  gap: 18px;
}

.note-separator::before,
.note-separator::after {
  content: "";
  flex: 1 1 0;
  height: 1px;
  max-width: 260px;
  background: linear-gradient(90deg, transparent, rgba(24, 77, 52, 0.44));
}

.note-separator::after {
  background: linear-gradient(90deg, rgba(24, 77, 52, 0.44), transparent);
}

.separator-mark {
  display: inline-grid;
  grid-template-columns: repeat(5, 10px);
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.separator-mark span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 103, 255, 0.72);
  border-radius: 50%;
  background: #fff9bf;
  box-shadow: 0 0 0 3px rgba(255, 249, 191, 0.78);
}

.separator-mark span:nth-child(2),
.separator-mark span:nth-child(4) {
  border-color: rgba(216, 66, 53, 0.72);
}

.separator-mark span:nth-child(3) {
  border-color: rgba(23, 143, 87, 0.78);
}

::selection {
  color: #050505;
  background: #ffe100;
}

@media (max-width: 700px) {
  .reading-page {
    padding: 30px 22px 76px;
  }

  .site-header {
    margin-bottom: 42px;
  }

  .site-email {
    font-size: 25px;
  }

  .site-title {
    font-size: 42px;
  }
}

@media (max-width: 430px) {
  .domain-line {
    font-size: 18px;
  }

  .note {
    font-size: 19px;
    line-height: 1.52;
  }
}
