:root {
  color-scheme: light;
  --motto-cream: #f7f2e8;
  --motto-paper: #fffdf8;
  --motto-section-warm: #fbf8f0;
  --motto-white: #ffffff;
  --motto-ink: #1f201e;
  --motto-muted: #686b64;
  --motto-green: #4f942f;
  --motto-green-dark: #2f6f25;
  --motto-green-soft: #eef6e6;
  --motto-yellow: #f8be21;
  --motto-line: rgba(31, 32, 30, 0.14);
  --motto-shadow: 0 22px 64px rgba(31, 32, 30, 0.09);
  --motto-sans: Inter, "Noto Sans JP", "Noto Sans KR", "Noto Sans Thai", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: var(--motto-cream);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--motto-ink);
  background: var(--motto-cream);
  font-family: var(--motto-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.motto-site {
  width: 100%;
  overflow: clip;
}

.motto-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 12px clamp(24px, 4.4vw, 72px);
  border-bottom: 1px solid rgba(31, 32, 30, 0.08);
  background: rgba(247, 242, 232, 0.96);
}

.motto-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.motto-brand-logo {
  display: block;
  width: 172px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.motto-primary-nav,
.motto-header-actions {
  display: flex;
  align-items: center;
}

.motto-primary-nav {
  justify-content: center;
  gap: clamp(18px, 2.6vw, 42px);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.motto-primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 7px;
  text-decoration-thickness: 2px;
}

.motto-primary-nav a:hover {
  text-decoration-line: underline;
  text-decoration-color: var(--motto-green);
}

.motto-header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.motto-language-picker {
  position: relative;
}

.motto-language-picker summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--motto-line);
  border-radius: 999px;
  color: var(--motto-ink);
  background: var(--motto-white);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.motto-language-picker summary::-webkit-details-marker {
  display: none;
}

.motto-language-icon,
.motto-language-chevron,
.motto-language-check {
  flex: 0 0 auto;
}

.motto-language-chevron {
  transition: transform 160ms ease;
}

.motto-language-picker[open] summary {
  border-color: var(--motto-green);
}

.motto-language-picker[open] .motto-language-chevron {
  transform: rotate(180deg);
}

.motto-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  max-height: min(560px, 75vh);
  overflow-y: auto;
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid var(--motto-line);
  border-radius: 16px;
  background: var(--motto-white);
  box-shadow: var(--motto-shadow);
}

.motto-language-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 650;
}

.motto-language-menu a:hover,
.motto-language-menu a[aria-current="page"] {
  background: var(--motto-green-soft);
  color: var(--motto-green-dark);
}

.motto-brand:focus-visible,
.motto-primary-nav a:focus-visible,
.motto-language-picker summary:focus-visible,
.motto-language-menu a:focus-visible,
.motto-footer a:focus-visible {
  outline: 3px solid rgba(79, 148, 47, 0.48);
  outline-offset: 4px;
}

.motto-hero {
  position: relative;
  isolation: isolate;
  min-height: 930px;
  padding: 52px clamp(24px, 4.4vw, 72px) 64px;
  background: var(--motto-cream);
}

.motto-hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.motto-hero-grid {
  width: min(1360px, 100%);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  gap: 18px 56px;
}

.motto-hero-beat {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 34px);
}

.motto-hero-beat span {
  position: relative;
  z-index: 2;
  max-width: 560px;
  font-size: clamp(58px, 6.5vw, 108px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.075em;
  overflow-wrap: anywhere;
}

.motto-hero-beat img {
  position: relative;
  z-index: 1;
  width: clamp(150px, 17vw, 250px);
  height: auto;
  flex: 0 0 auto;
}

.motto-hero-beat--speak {
  align-items: flex-start;
}

.motto-hero-beat--speak span {
  font-size: clamp(90px, 9.5vw, 154px);
}

.motto-hero-beat--speak img {
  margin-top: 72px;
}

.motto-hero-beat--notice {
  padding-top: 92px;
  justify-content: flex-end;
}

.motto-hero-beat--notice span {
  font-size: clamp(45px, 5.5vw, 86px);
}

.motto-hero-beat--learn {
  padding-left: 52px;
  align-items: flex-end;
}

.motto-hero-beat--make-yours {
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 10px;
}

.motto-hero-message {
  position: absolute;
  top: 52px;
  right: clamp(24px, 5.5vw, 92px);
  z-index: 3;
  width: min(340px, 30vw);
  display: grid;
  justify-items: start;
  gap: 20px;
}

.motto-hero-message p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 780;
  line-height: 1.65;
}

.motto-hero-message span {
  display: none;
}

[data-locale="ja"] .motto-hero-beat--speak span,
[data-locale="zh"] .motto-hero-beat--speak span,
[data-locale="zh-TW"] .motto-hero-beat--speak span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

[data-locale="en"] .motto-hero-beat span,
[data-locale="id"] .motto-hero-beat span,
[data-locale="th"] .motto-hero-beat span {
  font-size: clamp(42px, 4.8vw, 76px);
  letter-spacing: -0.05em;
}

[data-locale="ko"] .motto-hero-beat span {
  font-size: clamp(48px, 5.4vw, 84px);
}

.motto-comparison {
  padding: clamp(74px, 8vw, 122px) clamp(24px, 6vw, 96px) clamp(82px, 9vw, 138px);
  border-top: 1px solid var(--motto-line);
  background: var(--motto-section-warm);
}

.motto-section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.motto-section-heading > p {
  margin: 0 0 12px;
  color: var(--motto-green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motto-section-heading h2,
.motto-flow-copy > h2,
.motto-confidence h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.motto-expression-comparison {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.motto-expression-panel {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 36px 42px;
  overflow: hidden;
  border: 1px solid rgba(31, 32, 30, 0.08);
  border-radius: 34px;
}

.motto-expression-panel--original {
  background: #f5f5f2;
}

.motto-expression-panel--natural {
  background: var(--motto-green-soft);
}

.motto-expression-panel > p {
  width: fit-content;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 3px solid currentColor;
  color: var(--motto-muted);
  font-size: 17px;
  font-weight: 850;
}

.motto-expression-panel--natural > p {
  color: var(--motto-green-dark);
}

.motto-expression-panel blockquote {
  position: relative;
  z-index: 2;
  max-width: 78%;
  margin: 0;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--motto-white);
  box-shadow: 0 14px 36px rgba(31, 32, 30, 0.08);
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 820;
  line-height: 1.55;
}

.motto-expression-panel--natural blockquote {
  color: var(--motto-green-dark);
  text-decoration-line: underline;
  text-decoration-color: var(--motto-yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
  text-decoration-skip-ink: none;
}

.motto-expression-panel img {
  position: absolute;
  right: 10px;
  bottom: -18px;
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.motto-learning-bridge {
  width: min(860px, 100%);
  margin: 42px auto 0;
  color: var(--motto-green-dark);
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 880;
  line-height: 1.5;
  text-align: center;
}

.motto-flow-copy {
  width: min(1280px, 100%);
  margin: 104px auto 0;
}

.motto-flow-copy > h2 {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.motto-flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.motto-flow-step {
  position: relative;
  min-width: 0;
  padding: 24px 20px 28px;
  border-left: 1px solid var(--motto-line);
  text-align: center;
}

.motto-flow-step:last-child {
  border-right: 1px solid var(--motto-line);
}

.motto-flow-step-index {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--motto-white);
  background: var(--motto-green);
  font-size: 14px;
  font-weight: 900;
}

.motto-flow-step img {
  width: 190px;
  height: 190px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.motto-flow-step h3 {
  margin: 0 0 10px;
  color: var(--motto-green-dark);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 900;
  line-height: 1.35;
}

.motto-flow-step p {
  margin: 0;
  color: var(--motto-muted);
  font-size: 14px;
  line-height: 1.8;
}

.motto-subscription {
  padding: clamp(76px, 9vw, 140px) clamp(24px, 7vw, 112px);
  color: var(--motto-white);
  background: #2f5728;
}

.motto-subscription-inner {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
  margin: 0 auto;
}

.motto-subscription-copy > p:first-child {
  margin: 0 0 16px;
  color: #d6ecbb;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.motto-subscription h2 {
  max-width: 680px;
}

.motto-subscription-intro {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.9;
}

.motto-subscription-table-wrap {
  min-width: 0;
  padding: 18px 22px 24px;
  border-radius: 32px;
  color: var(--motto-ink);
  background: var(--motto-paper);
  box-shadow: 0 24px 60px rgba(16, 39, 13, 0.22);
}

.motto-subscription-table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: separate;
}

.motto-subscription-table th:first-child {
  width: 56%;
}

.motto-subscription-table th:not(:first-child) {
  width: 22%;
  text-align: center;
}

.motto-subscription-table thead th {
  height: 62px;
  padding: 10px 14px;
  color: var(--motto-muted);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
}

.motto-subscription-table tbody th,
.motto-subscription-table tbody td {
  min-height: 64px;
  padding: 16px 14px;
  border-top: 1px solid var(--motto-line);
}

.motto-subscription-table tbody th {
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 680;
  line-height: 1.55;
  text-align: left;
}

.motto-subscription-table tbody td {
  text-align: center;
}

.motto-subscription-table .motto-subscription-column {
  border-color: rgba(79, 148, 47, 0.26);
  color: var(--motto-green-dark);
  background: var(--motto-green-soft);
}

.motto-subscription-table thead .motto-subscription-column {
  border-radius: 18px 18px 0 0;
}

.motto-subscription-table tbody tr:last-child .motto-subscription-column {
  border-radius: 0 0 18px 18px;
}

.motto-availability {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
}

.motto-availability img {
  width: 28px;
  height: 28px;
}

.motto-subscription-pricing {
  margin: 20px 4px 0;
  padding-top: 18px;
  border-top: 1px solid var(--motto-line);
  color: var(--motto-muted);
  font-size: 14px;
  line-height: 1.75;
}

.motto-store-cta {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  margin: clamp(64px, 7vw, 96px) auto 0;
  padding-top: clamp(40px, 5vw, 68px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  scroll-margin-top: 110px;
}

.motto-store-cta-copy {
  display: flex;
  align-items: flex-end;
  gap: clamp(18px, 3vw, 42px);
}

.motto-store-cta-copy > div {
  min-width: 0;
}

.motto-store-cta-copy p {
  margin: 0 0 12px;
  color: #d6ecbb;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.motto-store-cta h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.18;
}

[data-locale="ja"] .motto-store-cta h2 {
  max-width: 10em;
}

.motto-store-cta-characters {
  width: clamp(96px, 10vw, 150px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(16, 39, 13, 0.18));
}

.motto-store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.motto-store-badge {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
}

.motto-store-badge img {
  display: block;
  width: auto;
  height: 50px;
}

.motto-store-badge--google img {
  height: 74px;
}

.motto-footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 28px clamp(24px, 5vw, 80px);
  background: var(--motto-white);
}

.motto-footer-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.motto-footer-brand img {
  display: block;
  width: 100px;
  height: auto;
}

.motto-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--motto-muted);
  font-size: 13px;
  font-weight: 650;
}

.motto-footer nav a:hover {
  color: var(--motto-green-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.motto-footer small {
  color: var(--motto-muted);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .motto-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .motto-primary-nav {
    gap: 18px;
    font-size: 13px;
  }

  [data-locale="ja"] .motto-store-cta h2 {
    max-width: 6.2em;
  }

  .motto-hero {
    min-height: 850px;
  }

  .motto-hero-grid {
    min-height: 700px;
  }

  .motto-hero-message {
    width: 270px;
  }

  .motto-flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 0;
  }

  .motto-flow-step:nth-child(2) {
    border-right: 1px solid var(--motto-line);
  }
}

@media (min-width: 821px) {
  .motto-hero {
    height: min(clamp(640px, 52vw, 780px), calc(100svh - 88px));
    min-height: 0;
    padding-block: clamp(28px, 3vw, 44px);
  }

  .motto-hero-background {
    object-fit: contain;
  }

  .motto-hero-grid {
    width: min(1080px, calc(100% - 96px));
    height: 100%;
    min-height: 0;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px clamp(24px, 3vw, 44px);
  }

  .motto-hero-beat img {
    width: clamp(120px, 12vw, 190px);
  }

  .motto-hero-beat--speak span {
    font-size: clamp(70px, 8vw, 110px);
  }

  .motto-hero-beat--speak img {
    margin-top: clamp(20px, 4vw, 44px);
  }

  .motto-hero-beat--notice {
    padding-top: clamp(30px, 5vw, 56px);
  }

  .motto-hero-beat--notice span {
    font-size: clamp(38px, 4.5vw, 62px);
  }

  .motto-hero-beat--learn {
    padding-left: clamp(16px, 2vw, 28px);
  }

  .motto-hero-beat--make-yours {
    padding-bottom: 0;
  }

  .motto-hero-message {
    top: clamp(28px, 3vw, 44px);
    right: clamp(72px, 12vw, 190px);
    width: min(280px, 24vw);
  }

  .motto-hero-message p {
    font-size: clamp(15px, 1.35vw, 20px);
    line-height: 1.5;
  }

  [data-locale="en"] .motto-hero-beat span,
  [data-locale="id"] .motto-hero-beat span,
  [data-locale="th"] .motto-hero-beat span {
    font-size: clamp(36px, 4vw, 58px);
  }

  [data-locale="ko"] .motto-hero-beat span {
    font-size: clamp(40px, 4.5vw, 64px);
  }
}

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

  .motto-header {
    position: relative;
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand actions" "nav nav";
    padding: 10px 18px 14px;
  }

  .motto-brand {
    grid-area: brand;
  }

  .motto-header-actions {
    grid-area: actions;
  }

  .motto-primary-nav {
    grid-area: nav;
    justify-content: safe flex-end;
    gap: 22px;
    padding-top: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .motto-hero {
    min-height: auto;
    padding: 30px 18px 42px;
  }

  .motto-hero-background {
    opacity: 0.42;
  }

  .motto-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: clamp(12px, 3vw, 22px);
  }

  .motto-hero-beat,
  .motto-hero-beat--speak,
  .motto-hero-beat--notice,
  .motto-hero-beat--learn,
  .motto-hero-beat--make-yours {
    min-height: clamp(132px, 34vw, 190px);
    padding: 0;
    justify-content: space-between;
    align-items: center;
  }

  .motto-hero-beat:nth-child(even) {
    flex-direction: row-reverse;
  }

  .motto-hero-beat span,
  .motto-hero-beat--speak span,
  [data-locale="ja"] .motto-hero-beat--speak span,
  [data-locale="zh"] .motto-hero-beat--speak span,
  [data-locale="zh-TW"] .motto-hero-beat--speak span,
  [data-locale="en"] .motto-hero-beat span,
  [data-locale="id"] .motto-hero-beat span,
  [data-locale="th"] .motto-hero-beat span,
  [data-locale="ko"] .motto-hero-beat span {
    max-width: 64%;
    font-size: clamp(34px, 8.8vw, 54px);
    line-height: 1.04;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
  }

  .motto-hero-beat img,
  .motto-hero-beat--speak img {
    width: min(31vw, 168px);
    margin: 0;
  }

  .motto-hero-message {
    position: static;
    width: min(620px, 100%);
    margin: 30px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--motto-line);
  }

  .motto-hero-message p {
    font-size: clamp(17px, 4.5vw, 23px);
  }

  .motto-hero-message span {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--motto-white);
    background: var(--motto-green);
    font-size: 14px;
    font-weight: 850;
  }

  .motto-expression-comparison {
    grid-template-columns: 1fr;
  }

  .motto-subscription-inner {
    grid-template-columns: 1fr;
  }

  .motto-store-cta {
    grid-template-columns: 1fr;
  }

  .motto-store-badges {
    justify-content: flex-start;
  }

  .motto-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .motto-brand-logo {
    width: 148px;
    height: 42px;
  }

  .motto-language-picker summary {
    min-width: 0;
    max-width: 170px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .motto-language-current {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .motto-primary-nav {
    font-size: 12px;
  }

  .motto-comparison {
    padding-inline: 18px;
  }

  .motto-subscription {
    padding: 70px 18px;
  }

  .motto-subscription-inner {
    gap: 38px;
  }

  .motto-store-cta {
    margin-top: 54px;
    padding-top: 38px;
  }

  .motto-store-cta-copy {
    align-items: center;
  }

  .motto-store-cta-characters {
    width: 88px;
  }

  .motto-store-badge img {
    height: 42px;
  }

  .motto-store-badge--google img {
    height: 63px;
  }

  .motto-subscription-table-wrap {
    padding: 8px 10px 18px;
    border-radius: 24px;
  }

  .motto-subscription-table th:first-child {
    width: 52%;
  }

  .motto-subscription-table th:not(:first-child) {
    width: 24%;
  }

  .motto-subscription-table thead th,
  .motto-subscription-table tbody th,
  .motto-subscription-table tbody td {
    padding-inline: 8px;
  }

  .motto-subscription-table tbody th {
    font-size: 13px;
  }

  .motto-expression-panel {
    min-height: 310px;
    padding: 28px 24px;
    border-radius: 26px;
  }

  .motto-expression-panel blockquote {
    max-width: 90%;
    padding: 18px;
    font-size: 20px;
  }

  .motto-expression-panel img {
    width: 150px;
    height: 150px;
  }

  .motto-flow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .motto-flow-step,
  .motto-flow-step:nth-child(2),
  .motto-flow-step:last-child {
    display: grid;
    grid-template-columns: 116px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 18px;
    padding: 24px 8px;
    border: 0;
    border-top: 1px solid var(--motto-line);
    text-align: left;
  }

  .motto-flow-step:last-child {
    border-bottom: 1px solid var(--motto-line);
  }

  .motto-flow-step-index {
    top: 18px;
    left: 8px;
  }

  .motto-flow-step img {
    grid-row: 1 / 3;
    width: 116px;
    height: 116px;
    margin: 0;
  }

  .motto-flow-step h3 {
    align-self: end;
    font-size: 20px;
  }

  .motto-flow-step p {
    align-self: start;
  }
}

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