:root {
  --paper: #f6f4e9;
  --ink: #244c3a;
  --muted: #56654f;
  --line: #d5d8c7;
  --orange: #a34226;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
a,
button {
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.18s;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.65;
  letter-spacing: 0.07em;
}
h3 {
  font-size: 20px;
  line-height: 1.65;
}
p {
  overflow-wrap: anywhere;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 104px));
  margin-inline: auto;
}
.section {
  padding-block: 105px;
}
.eyebrow {
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 24px;
}
.small {
  font-size: 11px;
}
.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 20;
}
.skip:focus {
  top: 12px;
}
.sample-bar {
  min-height: 30px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 36px;
  font-size: 10px;
  letter-spacing: 0.07em;
  gap: 16px;
}
.sample-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 111px;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: Georgia, serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.logo-symbol {
  width: 29px;
  height: 29px;
  display: inline-block;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
}
.logo-symbol:after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  height: 1.5px;
  top: 12px;
  transform: rotate(-40deg);
  background: var(--ink);
}
.logo-note {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: 8px;
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 19px;
  border-radius: 2px;
  display: flex;
  gap: 30px;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 45px;
  padding-top: 40px;
}
.hero-copy {
  padding: 28px 0 0 0;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  margin-bottom: 27px;
}
.eyebrow > span {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--orange);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(45px, 4.8vw, 69px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.line-word {
  position: relative;
}
.line-word:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 112%;
  background: var(--orange);
  bottom: 0;
  left: -5%;
  transform: rotate(-6deg);
}
.hero-description {
  margin-top: 29px;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 17px 24px;
  font-size: 13px;
}
.button.primary {
  background: var(--ink);
  color: var(--paper);
}
.button.primary:hover {
  background: #173628;
  transform: translateY(-2px);
}
.hero .button {
  margin-top: 32px;
  min-width: 260px;
}
.hero-small {
  margin-top: 12px;
  color: var(--muted);
}
.hero-art {
  background: #eeefdf;
  border-radius: 120px 120px 3px 3px;
  padding: 44px 20px 24px;
  align-self: center;
  position: relative;
}
.diagram-label,
.diagram-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding-inline: 18px;
}
.diagram-label {
  padding-inline: 30px;
}
.workflow-art {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 2px;
}
.workflow-art text {
  font-family: var(--sans);
}
.diagram-foot {
  font-size: 10px;
  line-height: 1.8;
}
.hand-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  transform: rotate(-9deg);
}
.hero-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 25px 0 27px;
  margin-top: 62px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.hero-bottom a {
  font-family: Georgia, serif;
  font-size: 9px;
}
.friction {
  background: #e9ecdf;
}
.friction-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.friction-list article {
  display: flex;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid #cbd1bd;
}
.friction-list article:first-child {
  padding-top: 2px;
}
.friction-list article > span {
  font-family: Georgia, serif;
  color: var(--orange);
  font-size: 13px;
  padding-top: 4px;
}
.friction-list h3 {
  font-size: 19px;
}
.friction-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.section-heading > p:last-child {
  margin-top: 22px;
  color: var(--muted);
  line-height: 2;
}
.approach .section-heading {
  text-align: center;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  margin-top: 70px;
}
.paper-map {
  padding: 35px 34px 24px;
  background: #fffdf6;
  border: 1px solid #e5e5d7;
  transform: rotate(-2deg);
  box-shadow: 10px 13px 0 #e7e9d9;
}
.paper-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 10px;
}
.paper-top b {
  font-family: Georgia, serif;
  letter-spacing: 0.1em;
}
.map-step {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #9eaf95;
  border-radius: 2px;
  padding: 13px;
}
.map-step > span {
  font-family: Georgia, serif;
  font-size: 11px;
  color: var(--orange);
}
.map-step b {
  font-weight: 500;
  font-size: 14px;
}
.map-step small {
  margin-left: auto;
  background: #ebeedf;
  padding: 2px 9px;
  font-size: 9px;
}
.map-link {
  padding: 9px 0;
  text-align: center;
  font-size: 14px;
  position: relative;
}
.map-link em {
  font-style: normal;
  font-size: 9px;
  position: absolute;
  left: calc(50% + 20px);
  top: 13px;
  white-space: nowrap;
  color: var(--muted);
}
.paper-note {
  font-size: 10px;
  text-align: center;
  margin-top: 23px;
}
.approach-copy h3 {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 24px;
}
.approach-copy p {
  color: var(--muted);
  margin-top: 15px;
  font-size: 13px;
  line-height: 2.1;
}
.text-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 35px;
  border-bottom: 1px solid var(--ink);
  padding-block: 10px;
  font-size: 12px;
  margin-top: 22px;
}
.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.deliverables {
  background: var(--ink);
  color: var(--paper);
}
.horizontal {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.horizontal > p:last-child {
  margin: 0;
}
.deliverables .horizontal > p {
  color: #d0dac8;
  font-size: 12px;
}
.delivery-list {
  margin-top: 57px;
  border-top: 1px solid #57705b;
}
.delivery-list article {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr 160px;
  align-items: center;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid #57705b;
}
.delivery-num {
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: italic;
  color: #b4c99e;
}
.delivery-list h3 {
  font-size: 18px;
}
.delivery-list p {
  font-size: 12px;
  color: #d0dac8;
}
.format {
  font-size: 9px;
  border: 1px solid #76916f;
  border-radius: 30px;
  padding: 5px 10px;
  text-align: center;
}
.scope-note {
  margin-top: 20px;
  font-size: 10px;
  color: #d0dac8;
}
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 0;
  margin: 50px 0 0;
}
.process-list li {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid #a7b396;
}
.process-list li:before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 0;
}
.process-list li > span {
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.process-list h3 {
  font-size: 18px;
  margin-top: 16px;
}
.process-list p {
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  margin-top: 13px;
}
.plans {
  background: #e9ecdf;
}
.plans .horizontal > p {
  font-size: 12px;
}
.price-notice {
  font-size: 10px;
  color: var(--muted);
  margin: 34px 0 20px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan {
  background: #f5f6ec;
  border: 1px solid #c7cfba;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.plan.selected {
  border-color: var(--ink);
  box-shadow: inset 0 4px var(--ink);
}
.plan-type {
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.plan h3 {
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: 0.1em;
}
.plan h3 span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 7px;
}
.price {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1.4;
  margin-top: 24px;
  white-space: nowrap;
}
.price small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  margin-top: 4px;
}
.plan-description {
  font-size: 12px;
  margin-top: 22px;
}
.plan ul {
  list-style: none;
  padding: 20px 0 27px;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.plan li {
  padding: 5px 0 5px 18px;
  position: relative;
}
.plan li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
}
.plan-button {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 12px 13px;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  margin-top: auto;
}
.plan-button:hover,
.plan-button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}
.plan-status {
  font-size: 11px;
  margin-top: 25px;
}
.plans .text-link {
  margin-top: 3px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 65px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  padding: 25px 30px 25px 28px;
  position: relative;
  font-size: 13px;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 23px;
  font-family: Georgia, serif;
  color: var(--orange);
}
summary:after {
  content: "+";
  position: absolute;
  right: 1px;
  font-size: 20px;
  font-weight: 400;
  top: 20px;
}
details[open] summary:after {
  content: "−";
}
details p {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 12px;
}
.contact {
  background: #e9ecdf;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
}
.contact-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.7;
}
.contact-heading > p:last-of-type {
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
}
.contact-line {
  width: 270px;
  max-width: 90%;
  margin: 27px 0 0;
  color: var(--orange);
}
.contact-line svg {
  width: 100%;
  height: auto;
}
.form-panel {
  background: #f9f9f0;
  padding: 35px;
  border: 1px solid #d4dac8;
}
.demo-notice {
  padding: 16px 18px;
  background: #e9ecdf;
  border-left: 2px solid var(--ink);
  margin-bottom: 28px;
}
.demo-notice b {
  font-size: 12px;
}
.demo-notice p {
  font-size: 11px;
  line-height: 1.9;
  margin-top: 4px;
}
.field {
  margin-bottom: 19px;
}
.field label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 8px;
}
.field label span {
  font-size: 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0 5px;
  border-radius: 2px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid #aab59d;
  border-radius: 2px;
  background: #fffef8;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}
input::placeholder,
textarea::placeholder {
  color: #74816d;
  font-size: 12px;
}
textarea {
  resize: vertical;
}
.field-help {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
}
.form-submit {
  width: 100%;
  margin-top: 5px;
}
.reset-button {
  display: block;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--muted);
  padding: 3px 0;
  font-size: 11px;
  margin: 17px auto 0;
}
.reset-button:hover {
  color: var(--orange);
}
.form-footnote {
  font-size: 10px;
  color: var(--muted);
  margin-top: 17px;
}
.form-status {
  font-size: 12px;
  margin-top: 12px;
}
.form-status:empty {
  display: none;
}
.noscript-notice {
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 15px;
}
#review h3 {
  font-family: var(--serif);
  font-size: 26px;
}
.review-note {
  font-size: 12px;
  margin-top: 14px;
}
#review-content {
  margin: 24px 0;
}
#review-content dt {
  font-size: 10px;
  color: var(--muted);
  padding-top: 12px;
}
#review-content dd {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 6px 0 14px;
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
#edit-form {
  width: 100%;
  font-size: 12px;
}
footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding-block: 48px 30px;
}
footer .logo {
  font-size: 30px;
}
footer > p {
  font-size: 10px;
}
footer > a:last-of-type {
  margin-left: auto;
  font-size: 11px;
}
footer small {
  width: 100%;
  font-size: 9px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 6px;
}
@media (min-width: 900px) {
  .hero-copy {
    animation: enter 0.7s ease both;
  }
  .hero-art {
    animation: enter 0.9s 0.12s ease both;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 70px);
  }
  .hero {
    gap: 25px;
  }
  h1 {
    font-size: clamp(40px, 5vw, 58px);
  }
  .hero-art {
    padding: 30px 10px 20px;
  }
  .logo-note {
    display: none;
  }
  .approach-grid {
    gap: 60px;
  }
  .delivery-list article {
    grid-template-columns: 40px 1fr 1.2fr;
    gap: 20px;
  }
  .format {
    grid-column: 2;
  }
  .plan {
    padding: 23px 20px;
  }
  .contact-grid {
    gap: 50px;
  }
  .price {
    font-size: 30px;
  }
  .friction-layout {
    gap: 55px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .section {
    padding-block: 75px;
  }
  .site-header {
    height: 95px;
  }
  .site-header nav {
    gap: 20px;
  }
  .hero {
    padding-top: 10px;
    gap: 20px;
  }
  .hero-copy {
    padding-top: 20px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  h1 {
    font-size: 40px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero .button {
    min-width: 0;
    font-size: 11px;
    padding: 14px 17px;
    gap: 18px;
  }
  .hero-small {
    font-size: 9px;
  }
  .hero-art {
    border-radius: 90px 90px 3px 3px;
  }
  .diagram-label {
    font-size: 7px;
    padding-inline: 18px;
  }
  .diagram-foot {
    font-size: 8px;
    padding-inline: 8px;
  }
  .hand-note {
    font-size: 15px;
  }
  .hero-bottom {
    margin-top: 42px;
    font-size: 9px;
  }
  .friction-layout {
    gap: 30px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .friction h2 {
    font-size: 28px;
  }
  .friction-list article {
    gap: 18px;
  }
  .friction-list h3 {
    font-size: 16px;
  }
  .friction-list p {
    font-size: 12px;
  }
  .approach-grid {
    gap: 35px;
  }
  .paper-map {
    padding: 24px 20px;
  }
  .paper-top {
    flex-direction: column;
    gap: 5px;
  }
  .map-step {
    padding: 10px 8px;
    gap: 7px;
  }
  .map-step b {
    font-size: 11px;
  }
  .map-step small {
    font-size: 8px;
    padding: 2px 4px;
  }
  .map-link em {
    font-size: 8px;
    left: calc(50% + 10px);
  }
  .paper-note {
    font-size: 8px;
  }
  .approach-copy h3 {
    font-size: 25px;
  }
  .approach-copy p {
    font-size: 12px;
  }
  .horizontal {
    gap: 25px;
  }
  .horizontal h2 {
    font-size: 29px;
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .plan-grid {
    gap: 12px;
  }
  .plan {
    padding: 20px 14px;
  }
  .plan h3 {
    font-size: 30px;
  }
  .plan h3 span {
    font-size: 10px;
  }
  .plan-type {
    font-size: 7px;
  }
  .price {
    font-size: 27px;
  }
  .plan-description {
    font-size: 10px;
  }
  .plan ul {
    font-size: 10px;
  }
  .plan-button {
    font-size: 10px;
    padding: 12px 8px;
  }
  .faq {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq h2 {
    font-size: 29px;
  }
  .contact-grid {
    gap: 30px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .form-panel {
    padding: 23px;
  }
  .contact-heading h2 {
    font-size: 37px;
  }
  .contact-heading > p:last-of-type {
    font-size: 12px;
  }
  .demo-notice {
    padding: 13px;
  }
  .form-panel input,
  .form-panel select,
  .form-panel textarea {
    font-size: 16px;
  }
  .form-panel select {
    padding: 12px 5px;
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .sample-bar {
    padding: 6px 14px;
    font-size: 8px;
    gap: 8px;
  }
  .sample-bar a {
    font-size: 8px;
  }
  .site-header {
    height: 84px;
  }
  .logo {
    font-size: 30px;
    gap: 10px;
  }
  .logo-symbol {
    width: 24px;
    height: 24px;
  }
  .logo-symbol:after {
    top: 10px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    font-size: 10px;
    padding: 8px 12px;
    gap: 20px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 9px;
    gap: 0;
  }
  .hero-copy {
    padding: 15px 0 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(40px, 10.7vw, 60px);
    line-height: 1.5;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 23px;
  }
  .hero .button {
    font-size: 12px;
    padding: 16px 20px;
    min-width: 260px;
    margin-top: 25px;
  }
  .hero-small {
    font-size: 10px;
  }
  .hero-art {
    margin-top: 42px;
    padding: 29px 10px 21px;
    width: 100%;
    border-radius: 95px 95px 3px 3px;
  }
  .diagram-label {
    font-size: 8px;
    padding-inline: 26px;
  }
  .diagram-foot {
    font-size: 9px;
    padding-inline: 15px;
  }
  .hand-note {
    font-size: 19px;
  }
  .hero-bottom {
    width: 100%;
    margin-top: 32px;
    font-size: 8px;
    gap: 10px;
    padding: 20px 0;
  }
  .hero-bottom a {
    font-size: 7px;
    text-align: right;
  }
  .section {
    padding-block: 65px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .friction-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .friction h2 {
    font-size: 29px;
  }
  .friction h2 br:nth-of-type(2) {
    display: none;
  }
  .friction-list article {
    padding-block: 24px;
  }
  .friction-list h3 {
    font-size: 17px;
  }
  .friction-list p {
    font-size: 12px;
  }
  .approach .section-heading {
    text-align: left;
  }
  h2 {
    font-size: 29px;
  }
  .section-heading > p:last-child {
    font-size: 12px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 43px;
  }
  .paper-map {
    width: calc(100% - 16px);
    margin-inline: auto;
    padding: 26px 23px;
  }
  .paper-top {
    flex-direction: row;
    font-size: 9px;
  }
  .map-step {
    padding: 12px;
    gap: 13px;
  }
  .map-step b {
    font-size: 13px;
  }
  .map-step small {
    font-size: 9px;
    padding: 2px 7px;
  }
  .map-link em {
    font-size: 9px;
    left: calc(50% + 13px);
  }
  .paper-note {
    font-size: 9px;
  }
  .approach-copy h3 {
    font-size: 27px;
  }
  .horizontal {
    display: block;
  }
  .horizontal > p:last-child {
    margin-top: 22px;
    font-size: 12px;
  }
  .delivery-list {
    margin-top: 33px;
  }
  .delivery-list article {
    grid-template-columns: 37px 1fr;
    gap: 13px 18px;
    padding-block: 27px;
  }
  .delivery-num {
    font-size: 29px;
  }
  .delivery-list h3 {
    font-size: 18px;
  }
  .delivery-list p {
    grid-column: 2;
    font-size: 12px;
  }
  .format {
    justify-self: start;
    font-size: 8px;
  }
  .scope-note {
    font-size: 10px;
  }
  .process-list {
    gap: 35px 25px;
    margin-top: 37px;
  }
  .process-list h3 {
    font-size: 16px;
  }
  .process-list p {
    font-size: 11px;
  }
  .process-list li > span {
    font-size: 9px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .plan {
    padding: 27px;
  }
  .plan-type {
    font-size: 9px;
  }
  .plan h3 {
    font-size: 34px;
  }
  .plan h3 span {
    font-size: 12px;
  }
  .price {
    font-size: 36px;
    margin-top: 20px;
  }
  .plan-description {
    font-size: 12px;
  }
  .plan ul {
    font-size: 12px;
    padding-bottom: 22px;
  }
  .plan-button {
    font-size: 12px;
    padding: 14px 18px;
  }
  .price-notice {
    font-size: 10px;
    margin-top: 28px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  summary {
    font-size: 12px;
    padding-block: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-heading h2 {
    font-size: 36px;
  }
  .contact-heading h2 br:last-child {
    display: none;
  }
  .contact-heading > p:last-of-type {
    font-size: 12px;
    margin-top: 20px;
  }
  .contact-line {
    display: none;
  }
  .form-panel {
    padding: 22px;
  }
  .field label {
    font-size: 12px;
  }
  .form-panel select {
    font-size: 13px;
    line-height: 1.7;
    padding: 12px 8px;
  }
  .demo-notice p {
    font-size: 10px;
  }
  .form-submit {
    font-size: 12px;
    gap: 10px;
  }
  .form-footnote {
    font-size: 9px;
  }
  footer {
    gap: 18px;
    padding-top: 35px;
  }
  footer > p {
    font-size: 9px;
  }
  footer > a:last-of-type {
    font-size: 10px;
    width: 100%;
    margin-left: 0;
  }
  footer small {
    font-size: 9px;
    margin-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
