@font-face {
  font-family: Caveat;
  src: url('/assets/fonts/Caveat-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: BadScript;
  src: url('./assets/fonts/BadScript-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: MarckScript;
  src: url('./assets/fonts/MarckScript-Regular.ttf') format('truetype');
  font-display: swap;
}

:root {
  --paper: #f8f7f2;
  --white: #fff;
  --ink: #23362c;
  --muted: #606b60;
  --green: #355440;
  --dark: #243c2e;
  --accent: #dfe9a9;
  --border: #dcded5;
  --radius: 12px;
  --sans: 'Segoe UI',Arial,sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button,input,textarea {
  font: inherit;
}

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

button,a,input,textarea,summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,summary:focus-visible {
  outline: 3px solid #718636;
  outline-offset: 5px;
}

[hidden] {
  display: none!important;
}

::selection {
  background: #dfe9a9;
  color: #23362c;
}

.container {
  width: calc(100% - 96px);
  max-width: 1200px;
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.handwritten {
  font-family: Caveat,cursive;
  font-weight: 400;
}

h1,h2,h3,p {
  margin: 0;
}

h1,h2,h3 {
  font-weight: 600;
}

h2 {
  font-size: 48px;
  line-height: 1.13;
  letter-spacing: -1.8px;
}

h3 {
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.5px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 50;
  padding: 10px 18px;
  background: var(--accent);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  transition: background .18s,transform .18s;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
}

.button span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.button--dark {
  background: var(--green);
  color: #fff;
}

.button--dark:hover {
  background: var(--dark);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
  gap: 18px;
}

.button--outline {
  border-color: #ccd2c5;
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: #eef1e6;
}

.button--light {
  background: var(--accent);
  color: var(--dark);
}

.button--light:hover {
  background: #edf2cd;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  padding-block: 10px;
  border-bottom: 1px solid #a9b3a1;
}

.text-link span {
  font-size: 22px;
  font-weight: 400;
}

.text-link:hover {
  color: #607330;
  border-color: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,247,242,.96);
  border-bottom: 1px solid rgba(220,222,213,.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.9px;
  flex-shrink: 0;
}

.brand-caption {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 7px;
  color: #65705f;
}

.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  font-family: Georgia,serif;
  letter-spacing: -5px;
  font-size: 26px;
  padding-right: 6px;
  font-style: italic;
  width: 45px;
  height: 46px;
  border-radius: 12px 12px 12px 3px;
  background: var(--green);
  color: var(--accent);
}

.brand-mark>span {
  position: absolute;
  top: 1px;
  right: 5px;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 13px;
}

.site-nav>a:not(.button) {
  padding-block: 12px;
  color: #59624f;
}

.site-nav>a:not(.button):hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 676px;
  padding-block: 65px 70px;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

h1 {
  font-size: 76px;
  line-height: 1.09;
  letter-spacing: -3.5px;
  font-weight: 500;
}

.hero-script {
  position: relative;
  white-space: nowrap;
  font-size: 1.19em;
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -2px;
  display: inline-block;
}

.hero-script:after {
  content: '';
  position: absolute;
  left: 5px;
  right: 2px;
  bottom: -5px;
  height: 9px;
  border-bottom: 2px solid #a7b47d;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-description {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 31px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.hero-footnote {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #707867;
  margin-top: 16px;
}

.small-check {
  font-size: 15px;
  color: var(--green);
}

.middot {
  padding-inline: 3px;
}

.hero-visual {
  min-width: 0;
  position: relative;
  height: 525px;
  margin-left: 12px;
}

.notebook-back {
  position: absolute;
  top: 14px;
  left: 54px;
  width: 348px;
  height: 482px;
  border-radius: 6px 14px 14px 6px;
  background: #59715a;
  transform: rotate(-9deg);
  box-shadow: inset 9px 0 12px #2f50382b,0 20px 35px #23362c15;
  border-left: 8px solid #4a644d;
}

.notebook-back:after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid #92a58355;
  border-radius: 4px;
}

.notebook-back>span {
  position: absolute;
  top: 31px;
  left: 26px;
  color: #e4e9d3;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.notebook-back>i {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 8px;
  background: #334d3870;
}

.hero-paper {
  position: absolute;
  margin: 0;
  left: 110px;
  top: 42px;
  width: 338px;
  background: #fff;
  transform: rotate(6deg);
  box-shadow: 0 20px 38px #28362b26,0 1px 3px #28362b12;
}

.hero-paper img {
  width: 100%;
  aspect-ratio: 800/1131;
  object-fit: cover;
}

.paper-label {
  position: absolute;
  top: 15px;
  left: 24px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  letter-spacing: .8px;
  color: #7d897c;
}

.hero-paper figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  font-size: 8px;
  letter-spacing: .2px;
  color: #7a8676;
  text-align: center;
}

.hero-sticky {
  position: absolute;
  right: -8px;
  top: 12px;
  background: #e5ebbd;
  padding: 12px 20px 14px;
  transform: rotate(9deg);
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 8px 16px #26392d10;
}

.hero-sticky:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 52px;
  width: 49px;
  height: 17px;
  background: #eff0dbb3;
  transform: rotate(-6deg);
}

.hero-sticky svg {
  position: absolute;
  bottom: -40px;
  right: 1px;
  width: 74px;
  fill: none;
  stroke: #6b7d47;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.hero-mascot {
  position: absolute;
  left: 8px;
  bottom: 3px;
  display: flex;
  align-items: flex-end;
  gap: 1px;
  transform: rotate(-12deg);
}

.hero-mascot img {
  width: 58px;
  filter: drop-shadow(3px 8px 5px #23362c18);
}

.hero-mascot>span {
  font-family: Caveat,cursive;
  font-size: 25px;
  transform: rotate(10deg);
  white-space: nowrap;
  margin-bottom: 8px;
  margin-left: -4px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.proof-strip>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid var(--border);
  padding-inline: 14px;
}

.proof-strip>div:first-child {
  border-left: 0;
}

.proof-strip strong {
  font-weight: 500;
  font-size: 25px;
  white-space: nowrap;
  letter-spacing: -1px;
}

.proof-strip strong span {
  font-size: 15px;
  letter-spacing: 0;
}

.proof-strip>div>span:last-child {
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 100px;
}

.proof-symbol {
  font-size: 40px;
  line-height: 1;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 46px;
}

.section-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #727b63;
  margin-bottom: 20px;
}

.section-heading>p {
  max-width: 320px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 5px;
}

.section-heading>.text-link {
  margin-bottom: 6px;
}

.demo-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.demo-controls {
  padding: 35px 36px;
}

.demo-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.demo-label-row>span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

textarea {
  display: block;
  width: 100%;
  height: 178px;
  resize: vertical;
  border: 1px solid #dce0d7;
  border-radius: 8px;
  background: #fafbf8;
  padding: 17px;
  color: #465047;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100px;
  max-height: 400px;
}

textarea:focus {
  border-color: var(--green);
}

.demo-fieldset {
  border: 0;
  margin: 25px 0 0;
  padding: 0;
  min-width: 0;
}

.demo-fieldset legend {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}

.font-options {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.font-options label,.paper-options label {
  position: relative;
  cursor: pointer;
}

.font-options input,.paper-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.font-options label>span {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #dce0d7;
  border-radius: 8px;
  padding: 9px 5px 11px;
  background: #fff;
  transition: background .15s,border-color .15s;
}

.font-options b {
  font-size: 32px;
  line-height: 1.35;
  font-weight: 400;
  height: 45px;
}

.font-options small {
  font-size: 10px;
  color: var(--muted);
}

.font-neat {
  font-family: Caveat,cursive;
}

.font-classic {
  font-family: BadScript,cursive;
}

.font-female {
  font-family: MarckScript,cursive;
}

.font-options input:checked+span,.paper-options input:checked+span {
  background: #eff3e7;
  border-color: #718664;
  box-shadow: 0 0 0 1px #718664;
  color: var(--green);
}

.font-options input:focus-visible+span,.paper-options input:focus-visible+span {
  outline: 3px solid #718636;
  outline-offset: 4px;
}

.paper-options {
  display: flex;
  gap: 8px;
}

.paper-options label {
  flex: 1;
  text-align: center;
}

.paper-options span {
  display: block;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 12px;
  white-space: nowrap;
}

.reset-button {
  border: 0;
  background: none;
  color: #69745e;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  min-height: 30px;
}

.reset-button span {
  font-size: 20px;
}

.reset-button:hover {
  color: var(--ink);
}

.demo-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #ebece2;
  background-image: radial-gradient(#b6bfb21f .6px,transparent .6px);
  background-size: 5px 5px;
  border-left: 1px solid var(--border);
}

.demo-paper {
  position: relative;
  width: 100%;
  min-height: 435px;
  background-color: #fffefa;
  box-shadow: 0 8px 22px #354d351a;
  padding: 39px 27px 52px 44px;
  color: #314f7c;
  transform: rotate(1.4deg);
  font-family: Caveat,cursive;
}

.demo-paper[data-paper=grid] {
  background-image: linear-gradient(#9db3c62a 1px,transparent 1px),linear-gradient(90deg,#9db3c62a 1px,transparent 1px);
  background-size: 19px 19px;
}

.demo-paper[data-paper=lined] {
  background-image: linear-gradient(#9db3c640 1px,transparent 1px);
  background-size: 100% 38px;
  background-position: 0 21px;
}

.demo-paper:not([data-paper=plain]):before {
  content: '';
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d8938f88;
}

.demo-paper-date {
  font-family: Caveat,cursive;
  font-size: 21px;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: #b6c68c;
  text-underline-offset: 7px;
  text-decoration-thickness: 7px;
  text-decoration-skip-ink: none;
}

#demo-output {
  font-size: 28px;
  line-height: 1.36;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.demo-paper[data-font=classic] #demo-output {
  font-family: BadScript,cursive;
  font-size: 21px;
  line-height: 1.82;
}

.demo-paper[data-font=female] #demo-output {
  font-family: MarckScript,cursive;
  font-size: 25px;
  line-height: 1.52;
}

.page-number {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  color: #738091;
}

.demo-preview-caption {
  font-size: 10px;
  color: #5e6d56;
  letter-spacing: .4px;
  padding-top: 23px;
}

.demo-note {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 850px;
}

.process-section {
  background: #efeee7;
  border-block: 1px solid #e2e3d8;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 52px;
}

.steps li {
  position: relative;
  padding-right: 15px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #bac3ad;
  border-radius: 50%;
  font-family: Caveat,cursive;
  font-size: 28px;
  background: #efeee7;
  margin-bottom: 24px;
}

.steps li:not(:last-child):after {
  content: '';
  position: absolute;
  top: 24px;
  left: 70px;
  right: -28px;
  height: 1px;
  background: #cdd2c3;
}

.steps h3 {
  font-size: 21px;
  margin-bottom: 13px;
}

.steps p {
  font-size: 15px;
  color: var(--muted);
  max-width: 285px;
  line-height: 1.75;
}

.step-tag {
  display: block;
  font-size: 11px;
  letter-spacing: .2px;
  color: #576542;
  margin-top: 25px;
}

.muted-heading {
  color: #89907c;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}

.own-feature {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  padding: 33px 35px 0;
  border-radius: var(--radius);
  background: #e8edde;
  overflow: hidden;
  min-height: 560px;
}

.feature-index {
  font-size: 9px;
  letter-spacing: 2px;
  color: #667956;
}

.own-feature h3 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-block: 18px;
}

.own-feature p {
  font-size: 15px;
  color: #6b755e;
  line-height: 1.7;
  max-width: 350px;
}

.own-feature .text-link {
  font-size: 13px;
  margin-top: 18px;
}

.alphabet-paper {
  background: #fffdf5;
  background-image: linear-gradient(#c7d6d535 1px,transparent 1px),linear-gradient(90deg,#c7d6d535 1px,transparent 1px);
  background-size: 20px 20px;
  transform: rotate(-5deg);
  margin: 40px 0 -25px 38px;
  padding: 25px 25px 40px;
  box-shadow: 0 3px 18px #314e3b16;
}

.alphabet-label {
  font-size: 8px;
  letter-spacing: 2px;
  color: #6b7e66;
}

.alphabet-paper p {
  font-family: MarckScript,cursive;
  color: #405985;
  font-size: 33px;
  line-height: 1.5;
  letter-spacing: 3px;
  margin-block: 12px 16px;
  white-space: nowrap;
}

.alphabet-note {
  font-size: 22px;
  line-height: 1.1;
  color: #70804d;
  display: block;
}

.feature-list {
  padding-top: 1px;
}

.feature-list article {
  display: flex;
  gap: 23px;
  padding: 24px 0 27px;
  border-bottom: 1px solid var(--border);
}

.feature-list article:first-child {
  padding-top: 3px;
}

.feature-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feature-icon {
  flex: none;
  width: 32px;
  height: 36px;
  font-size: 36px;
  line-height: 1;
  display: block;
  color: var(--green);
}

svg.feature-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon--letters {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -1.7px;
  line-height: 2;
}

.feature-list h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.feature-list p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 360px;
}

.feature-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 22px;
}

.pricing-section {
  background: #efeee7;
  border-block: 1px solid #e2e3d8;
}

.free-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 32px;
  border: 1px solid #bfcaaa;
  background: #e4ebd4;
  border-radius: var(--radius);
}

.free-plan-title>span {
  font-size: 23px;
  color: #647847;
}

.free-plan h3 {
  font-size: 23px;
  margin-top: 7px;
}

.free-plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #59654f;
  font-size: 13px;
  line-height: 2.15;
}

.free-plan li b {
  font-weight: 600;
  color: var(--ink);
  margin-right: 4px;
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 49px;
}

.pricing-top h3 {
  font-size: 18px;
  font-weight: 500;
}

.price-tabs {
  display: flex;
  border: 1px solid #d6dacb;
  border-radius: 9px;
  padding: 4px;
  gap: 3px;
}

.price-tabs button {
  border: 0;
  background: transparent;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 12px;
  color: #65715a;
  min-height: 36px;
}

.price-tabs button[aria-pressed=true] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px #26372c0d;
}

.price-status {
  font-size: 11px;
  color: var(--muted);
  margin-block: 16px;
}

.price-products {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.price-card {
  min-width: 0;
  padding: 28px;
  background: #f9faf5;
  border: 1px solid #daddd0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card__title {
  font-size: 20px;
}

.price-card__description {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
  min-height: 44px;
}

.price-card__amount {
  padding-block: 17px 24px;
}

.price-card__amount strong {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.price-card__amount>span {
  font-size: 20px;
  color: #6d7662;
}

.price-card>.button {
  width: 100%;
  margin-top: auto;
  font-size: 12px;
  gap: 14px;
  min-height: 45px;
  padding: 10px;
}

.purchase-explainer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px dashed #cbd1bf;
  border-radius: 8px;
}

.purchase-icon {
  font-size: 25px;
  line-height: 1.3;
  color: #63734e;
}

.purchase-explainer p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}

.purchase-explainer b {
  font-weight: 600;
  color: #4d5c45;
}

.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
}

.faq-intro>p:not(.section-index) {
  font-size: 15px;
  color: var(--muted);
  margin-top: 22px;
}

.faq-intro>img {
  width: 57px;
  margin: 26px 0 0 13px;
  transform: rotate(-14deg);
}

.faq-list {
  padding-top: 34px;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary>span {
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  color: #738062;
  transition: transform .2s;
}

.faq-list details[open] summary>span {
  transform: rotate(45deg);
}

.faq-list details>p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 23px;
  padding-right: 36px;
}

.closing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 65px 40px 53px;
  background: var(--green);
  color: #fff;
  border-radius: 15px;
  text-align: center;
}

.closing-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image: linear-gradient(#cedfbb 1px,transparent 1px),linear-gradient(90deg,#cedfbb 1px,transparent 1px);
  background-size: 35px 35px;
  mask-image: linear-gradient(90deg,#000,transparent 35%,transparent 65%,#000);
}

.closing-note {
  font-size: 28px;
  color: #d8e5a9;
  margin-bottom: 22px;
}

.closing-section h2 {
  font-size: 41px;
  line-height: 1.25;
  letter-spacing: -1.4px;
}

.closing-section>.button {
  margin-top: 31px;
}

.closing-caption {
  font-size: 10px;
  letter-spacing: .2px;
  color: #b6c4a8;
  margin-top: 13px;
}

.site-footer {
  padding-block: 59px 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 37px;
}

.footer-top nav {
  display: flex;
  gap: 25px;
  font-size: 12px;
  color: #65705c;
}

.footer-top nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #626c5b;
  letter-spacing: .1px;
}

@media(min-width:1400px) {
  .hero {
    gap: 55px;
    min-height: 704px;
  }

  .hero-visual {
    margin-left: 32px;
  }

  .hero-sticky {
    right: 0;
  }

  .hero-paper {
    width: 353px;
    left: 100px;
  }

  .notebook-back {
    width: 367px;
    height: 499px;
    left: 36px;
  }

  .hero-mascot {
    left: 0;
  }
}

@media(max-width:1150px) and (min-width:900px) {
  .container {
    width: calc(100% - 64px);
  }

  .site-nav {
    gap: 17px;
    font-size: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 40px;
    height: 42px;
  }

  .brand-caption {
    font-size: 8px;
    letter-spacing: 1px;
  }

  h1 {
    font-size: 64px;
  }

  .hero {
    gap: 10px;
  }

  .hero-visual {
    height: 460px;
    margin-left: 0;
  }

  .notebook-back {
    left: 28px;
    width: 290px;
    height: 410px;
  }

  .hero-paper {
    left: 70px;
    width: 290px;
  }

  .hero-sticky {
    right: -2px;
    font-size: 21px;
  }

  .hero-mascot {
    bottom: -6px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    padding-inline: 17px;
    font-size: 13px;
  }

  .hero-actions .text-link {
    font-size: 13px;
  }

  .hero-description {
    font-size: 16px;
  }

  .proof-strip>div {
    gap: 10px;
    padding-inline: 10px;
  }

  .proof-strip strong {
    font-size: 22px;
  }

  .proof-strip>div>span:last-child {
    font-size: 10px;
  }

  .demo-controls {
    padding: 28px;
  }

  .demo-preview {
    padding: 30px;
  }

  .features-layout {
    gap: 40px;
  }

  .free-plan {
    gap: 18px;
    padding: 28px;
  }

  .free-plan .button {
    padding-inline: 17px;
  }

  .free-plan-title>span {
    font-size: 20px;
  }

  .free-plan h3 {
    font-size: 21px;
  }

  .free-plan ul {
    font-size: 12px;
  }
}

@media(max-width:899px) {
  html {
    scroll-padding-top: 87px;
  }

  .container {
    width: calc(100% - 44px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 41px;
    height: 43px;
  }

  .brand-caption {
    font-size: 8px;
    letter-spacing: 1.25px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: transparent;
  }

  .menu-toggle>span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s;
  }

  .menu-toggle[aria-expanded=true]>span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded=true]>span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    padding: 15px 22px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 25px #243c2e0c;
    align-items: stretch;
    gap: 3px;
  }

  .site-nav[data-open=true] {
    display: flex;
    flex-direction: column;
  }

  .site-nav>a:not(.button) {
    padding: 11px 4px;
    font-size: 15px;
  }

  .site-nav .button {
    margin-top: 10px;
    align-self: flex-start;
  }

  .hero {
    grid-template-columns: minmax(0,1fr);
    gap: 27px;
    padding-block: 47px 42px;
    min-height: 0;
    max-width: 630px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: 66px;
    letter-spacing: -2.6px;
  }

  .hero-script {
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.75;
    max-width: 500px;
    margin-top: 27px;
  }

  .hero-actions {
    margin-top: 25px;
    gap: 25px;
  }

  .hero-footnote {
    font-size: 11px;
  }

  .hero-visual {
    height: 465px;
    margin: 0 auto;
    width: 455px;
    max-width: 100%;
  }

  .hero-paper {
    width: 297px;
    left: 93px;
    top: 34px;
  }

  .notebook-back {
    width: 306px;
    height: 427px;
    left: 43px;
    top: 15px;
  }

  .hero-sticky {
    font-size: 23px;
    right: 0;
    top: 4px;
  }

  .hero-mascot {
    bottom: 0;
    left: 9px;
  }

  .hero-mascot img {
    width: 48px;
  }

  .hero-mascot>span {
    font-size: 22px;
  }

  .proof-strip {
    grid-template-columns: repeat(2,1fr);
    padding-block: 0;
  }

  .proof-strip>div {
    min-height: 91px;
    justify-content: flex-start;
    padding: 18px 20px;
    gap: 17px;
  }

  .proof-strip>div:nth-child(3) {
    border-left: 0;
  }

  .proof-strip>div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .proof-strip>div>span:last-child {
    max-width: none;
    font-size: 11px;
  }

  .proof-strip strong {
    font-size: 25px;
  }

  .section {
    padding-block: 75px;
  }

  h2 {
    font-size: 40px;
    letter-spacing: -1.3px;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 32px;
  }

  .section-heading>p {
    font-size: 14px;
  }

  .section-index {
    font-size: 9px;
    margin-bottom: 15px;
    letter-spacing: 1.8px;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .demo-controls {
    padding: 28px;
  }

  .demo-preview {
    padding: 40px;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .demo-paper {
    max-width: 420px;
    min-height: 450px;
  }

  .demo-note {
    font-size: 11px;
  }

  .demo-fieldset {
    margin-top: 22px;
  }

  .font-options small {
    font-size: 11px;
  }

  .paper-options span {
    font-size: 13px;
  }

  .steps {
    gap: 25px;
  }

  .steps li {
    padding-right: 0;
  }

  .steps h3 {
    font-size: 18px;
  }

  .steps p {
    font-size: 13px;
  }

  .step-tag {
    font-size: 10px;
  }

  .steps li:not(:last-child):after {
    right: -5px;
  }

  .features-layout {
    gap: 30px;
  }

  .own-feature {
    padding: 25px 24px 0;
  }

  .own-feature h3 {
    font-size: 31px;
  }

  .own-feature p {
    font-size: 13px;
  }

  .own-feature .text-link {
    font-size: 12px;
  }

  .alphabet-paper {
    margin-left: 0;
    padding: 20px 18px 40px;
  }

  .alphabet-paper p {
    font-size: 25px;
    letter-spacing: 1.5px;
  }

  .alphabet-note {
    font-size: 20px;
  }

  .feature-list article {
    gap: 14px;
    padding-block: 19px;
  }

  .feature-list h3 {
    font-size: 18px;
  }

  .feature-list p {
    font-size: 13px;
  }

  .feature-icon {
    width: 27px;
  }

  .free-plan {
    flex-wrap: wrap;
    gap: 22px;
  }

  .free-plan-title {
    flex: 1;
    min-width: 200px;
  }

  .free-plan ul {
    font-size: 12px;
  }

  .free-plan .button {
    min-height: 47px;
    font-size: 13px;
  }

  .pricing-top {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .price-card {
    padding: 22px 18px;
  }

  .price-card__title {
    font-size: 18px;
  }

  .price-card__amount strong {
    font-size: 37px;
  }

  .price-card>.button {
    font-size: 11px;
    gap: 10px;
  }

  .price-products {
    gap: 12px;
  }

  .faq-section {
    grid-template-columns: .75fr 1.25fr;
    gap: 30px;
  }

  .faq-list {
    padding-top: 26px;
  }

  .faq-list summary {
    font-size: 14px;
    padding-block: 19px;
  }

  .faq-list details>p {
    font-size: 12px;
    padding-right: 0;
  }

  .closing-section {
    padding: 47px 26px 40px;
  }

  .closing-section h2 {
    font-size: 31px;
  }

  .closing-note {
    font-size: 24px;
  }

  .footer-top {
    align-items: flex-start;
  }

  .footer-top nav {
    gap: 15px;
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 9px;
    gap: 12px;
  }
}

@media(max-width:599px) {
  h1 {
    font-size: 45px;
    letter-spacing: -1.9px;
  }

  .hero {
    gap: 32px;
    padding-top: 40px;
  }

  .hero-script {
    font-size: 1.26em;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 25px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    font-size: 12px;
    gap: 18px;
    padding: 13px 16px;
    min-height: 49px;
  }

  .hero-actions .text-link {
    font-size: 12px;
    gap: 9px;
  }

  .hero-footnote {
    font-size: 10px;
    margin-top: 14px;
  }

  .hero-visual {
    height: 366px;
    max-width: 345px;
  }

  .notebook-back {
    width: 241px;
    height: 335px;
    left: 21px;
  }

  .hero-paper {
    width: 232px;
    left: 75px;
    top: 31px;
  }

  .paper-label {
    left: 16px;
    right: 12px;
    top: 10px;
    font-size: 4px;
  }

  .hero-paper figcaption {
    font-size: 6px;
    bottom: 7px;
  }

  .hero-sticky {
    font-size: 20px;
    padding: 10px 14px;
    right: -1px;
    top: -4px;
  }

  .hero-sticky svg {
    width: 49px;
    right: -5px;
    bottom: -27px;
  }

  .hero-sticky:before {
    left: 30px;
    width: 40px;
    height: 15px;
  }

  .hero-mascot {
    left: 0;
    bottom: 0;
  }

  .hero-mascot img {
    width: 40px;
  }

  .hero-mascot>span {
    font-size: 19px;
  }

  .proof-strip>div {
    padding: 18px 12px;
    min-height: 88px;
    gap: 12px;
  }

  .proof-strip strong {
    font-size: 23px;
  }

  .proof-strip strong span {
    font-size: 12px;
  }

  .proof-strip>div>span:last-child {
    font-size: 10px;
    max-width: 80px;
  }

  .proof-symbol {
    font-size: 34px;
  }

  .section {
    padding-block: 64px;
  }

  h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .section-heading {
    display: block;
    margin-bottom: 27px;
  }

  .section-heading>p {
    margin-top: 21px;
    font-size: 14px;
    max-width: 290px;
  }

  .section-heading>p br {
    display: none;
  }

  .section-heading>.text-link {
    margin-top: 17px;
    font-size: 13px;
  }

  .demo-controls {
    padding: 22px 19px;
  }

  .demo-label-row {
    font-size: 13px;
  }

  .demo-label-row>span {
    font-size: 10px;
  }

  textarea {
    font-size: 16px;
    padding: 13px;
    line-height: 1.65;
    height: 184px;
  }

  .font-options {
    gap: 7px;
  }

  .font-options small {
    font-size: 9px;
  }

  .font-options label>span {
    padding-block: 7px 10px;
  }

  .font-options b {
    font-size: 30px;
    height: 42px;
  }

  .paper-options span {
    padding: 8px 5px;
    font-size: 11px;
  }

  .demo-preview {
    padding: 30px 22px 24px;
  }

  .demo-paper {
    padding: 31px 17px 48px 35px;
    min-height: 393px;
    transform: rotate(1deg);
  }

  .demo-paper-date {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .demo-paper:not([data-paper=plain]):before {
    left: 23px;
  }

  #demo-output {
    font-size: 25px;
    line-height: 1.52;
  }

  .demo-paper[data-font=classic] #demo-output {
    font-size: 19px;
    line-height: 2;
  }

  .demo-paper[data-font=female] #demo-output {
    font-size: 23px;
    line-height: 1.65;
  }

  .demo-preview-caption {
    font-size: 9px;
    padding-top: 19px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 35px;
  }

  .steps li {
    padding-left: 67px;
    min-height: 142px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 41px;
    height: 41px;
    font-size: 25px;
  }

  .steps li:not(:last-child):after {
    top: 56px;
    left: 20px;
    width: 1px;
    height: calc(100% - 35px);
    right: auto;
  }

  .steps h3 {
    font-size: 21px;
    padding-top: 4px;
    margin-bottom: 10px;
  }

  .steps p {
    font-size: 14px;
    max-width: none;
  }

  .step-tag {
    margin-top: 12px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .own-feature {
    min-height: 510px;
    padding: 29px 28px 0;
  }

  .own-feature h3 {
    font-size: 36px;
  }

  .own-feature p {
    font-size: 14px;
  }

  .own-feature .text-link {
    font-size: 13px;
  }

  .alphabet-paper {
    margin-top: 32px;
    margin-left: 20px;
    max-width: 300px;
  }

  .alphabet-paper p {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .alphabet-note {
    font-size: 22px;
  }

  .feature-list article {
    gap: 22px;
    padding-block: 23px;
  }

  .feature-list h3 {
    font-size: 20px;
  }

  .feature-list p {
    font-size: 14px;
    line-height: 1.7;
  }

  .feature-icon {
    width: 30px;
  }

  .feature-note {
    font-size: 10px;
    line-height: 1.75;
  }

  .free-plan {
    padding: 27px 24px;
    display: block;
  }

  .free-plan-title>span {
    font-size: 23px;
  }

  .free-plan h3 {
    font-size: 23px;
  }

  .free-plan ul {
    margin-block: 19px 23px;
    font-size: 12px;
    line-height: 2.2;
  }

  .free-plan .button {
    width: 100%;
  }

  .pricing-top h3 {
    font-size: 17px;
  }

  .price-tabs {
    width: 100%;
  }

  .price-tabs button {
    flex: 1;
    padding: 9px 11px;
  }

  .price-status {
    font-size: 10px;
    line-height: 1.7;
  }

  .price-products {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .price-card {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 14px;
  }

  .price-card__title {
    font-size: 20px;
    grid-column: 1;
    grid-row: 1;
  }

  .price-card__description {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
    margin-top: 8px;
    min-height: 36px;
  }

  .price-card__amount {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    padding: 0;
  }

  .price-card__amount strong {
    font-size: 34px;
  }

  .price-card__amount>span {
    font-size: 15px;
  }

  .price-card>.button {
    grid-column: 1 / 3;
    margin-top: 20px;
    min-height: 44px;
    font-size: 12px;
  }

  .purchase-explainer {
    padding: 17px;
    gap: 12px;
    margin-top: 22px;
  }

  .purchase-explainer p {
    font-size: 11px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-intro {
    position: relative;
  }

  .faq-intro>img {
    position: absolute;
    right: 22px;
    top: 27px;
    width: 40px;
    margin: 0;
  }

  .faq-intro>p:not(.section-index) {
    font-size: 14px;
    margin-top: 18px;
  }

  .faq-list {
    padding-top: 31px;
  }

  .faq-list summary {
    font-size: 15px;
    padding-block: 20px;
    gap: 18px;
  }

  .faq-list details>p {
    font-size: 13px;
    line-height: 1.8;
  }

  .closing-section {
    padding: 38px 21px 32px;
    border-radius: 11px;
  }

  .closing-note {
    font-size: 23px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .closing-section h2 {
    font-size: 30px;
    line-height: 1.23;
    letter-spacing: -.9px;
  }

  .closing-section h2 br {
    display: none;
  }

  .closing-section .button {
    font-size: 13px;
    padding-inline: 20px;
    margin-top: 27px;
    gap: 18px;
  }

  .closing-caption {
    font-size: 9px;
  }

  .site-footer {
    padding-block: 41px 22px;
  }

  .footer-top {
    display: block;
    padding-bottom: 27px;
  }

  .footer-top nav {
    margin-top: 27px;
    flex-wrap: wrap;
    gap: 14px 20px;
    font-size: 11px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 9px;
  }

  .footer-bottom>span:nth-child(2) {
    margin-left: auto;
  }

  .footer-bottom>a {
    width: 100%;
  }
}

@media(max-width:359px) {
  .container {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    padding-inline: 12px;
    gap: 10px;
  }

  .hero-actions .text-link {
    font-size: 11px;
  }

  .hero-visual {
    height: 338px;
  }

  .hero-paper {
    width: 211px;
    left: 67px;
  }

  .notebook-back {
    width: 221px;
    height: 310px;
    left: 20px;
  }

  .hero-sticky {
    font-size: 18px;
  }

  .proof-strip>div {
    padding-inline: 8px;
    gap: 8px;
  }

  .proof-strip strong {
    font-size: 20px;
  }

  .demo-controls {
    padding-inline: 16px;
  }

  .demo-preview {
    padding-inline: 17px;
  }

  .price-card {
    padding: 21px;
  }

  .price-card__amount strong {
    font-size: 29px;
  }

  .price-card__title {
    font-size: 18px;
  }
}

.sample-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 8px;
  color: var(--green);
  font-size: 12px;
  border-bottom: 1px solid #a9b3a1;
}

.sample-download:hover {
  color: #607330;
}

.price-products:has(>.price-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.hero-visual {
  width: 100%;
}

@media(min-width:600px) and (max-width:749px) {
  .price-products {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .own-feature {
    min-height: 520px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 25px;
    align-items: center;
  }

  .alphabet-paper {
    margin: 0 -55px 0 0;
  }

  .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .feature-list article,.feature-list article:first-child {
    padding-top: 15px;
  }

  .feature-list article:nth-last-child(2) {
    border-bottom: 0;
  }

  .footer-top nav {
    flex-direction: column;
  }
}

@media(max-width:599px) {
  .price-products:has(>.price-card:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }
}

@media(max-width:899px) {
  .hero-visual {
    width: min(100%,455px);
  }
}

@media(max-width:599px) {
  .hero-visual {
    width: min(100%,345px);
  }

  .section-heading>p br:after {
    content: ' ';
  }

  .section-heading>p br {
    display: contents;
  }
}

@media(max-width:359px) {
  .hero-paper {
    left: 55px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,*:before,*:after {
    animation: none!important;
    transition: none!important;
  }
}
