:root {
  --paper: #f4f0e7;
  --paper-deep: #e9e3d8;
  --ink: #11110f;
  --ink-soft: #2d2d29;
  --muted: #68675f;
  --line: rgba(17, 17, 15, 0.18);
  --line-light: rgba(244, 240, 231, 0.18);
  --signal: #ff5633;
  --signal-soft: #ffbea8;
  --acid: #d9ff52;
  --white: #fffefa;
  --shadow: 0 32px 80px rgba(17, 17, 15, 0.16);
  --shell: min(1240px, calc(100% - 64px));
  --font-sans:
    Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

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

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(244, 240, 231, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  padding: 150px 0 0;
}

.hero-grid {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(56px, 7vw, 110px);
}

.hero-copy {
  padding: 52px 0 72px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 8px;
  background: var(--signal);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 38px;
  font-size: clamp(58px, 6.25vw, 94px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--signal);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  box-shadow: 8px 8px 0 var(--signal);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.hero-board {
  position: relative;
  min-height: 590px;
  padding: 30px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.hero-board::before {
  position: absolute;
  top: 0;
  right: 18%;
  width: 62px;
  height: 100%;
  background: var(--signal);
  content: "";
  opacity: 0.12;
  transform: skewX(-12deg);
}

.hero-board::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(244, 240, 231, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(244, 240, 231, 0.035),
    0 0 0 84px rgba(244, 240, 231, 0.02);
  content: "";
}

.hero-board__top,
.hero-board__foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line-light);
}

.live-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(217, 255, 82, 0.12);
}

.hero-board__type {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 250px;
  align-items: flex-end;
  gap: 14px;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line-light);
}

.hero-board__type span {
  color: var(--signal);
  font-size: clamp(130px, 13vw, 190px);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.76;
}

.hero-board__type strong {
  padding-bottom: 10px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 850;
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
}

.hero-board__steps {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-board__steps li {
  display: grid;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 42px 1fr;
}

.hero-board__steps span {
  color: var(--signal-soft);
  font-size: 9px;
  font-weight: 800;
}

.hero-board__steps p {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.hero-board__foot {
  padding-top: 25px;
  justify-content: flex-start;
  gap: 14px;
  color: rgba(244, 240, 231, 0.55);
}

.hero-board__foot i {
  width: 48px;
  height: 1px;
  background: var(--signal);
}

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

.capability-strip span {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.capability-strip span:last-child {
  border-right: 0;
}

.section {
  padding: 135px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 72px;
  grid-template-columns: 0.55fr 1.35fr 0.8fr;
  gap: 56px;
}

.section-id {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 10px;
}

.section-id span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--signal);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.section-id p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.section-kicker {
  margin-bottom: 20px;
}

.section-kicker::before {
  width: 26px;
  height: 2px;
  background: var(--signal);
  content: "";
}

.section-title h2,
.practice-head h2,
.method-title h2,
.insights-copy h2,
.about-copy h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1.06;
}

.section-summary {
  max-width: 330px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(244, 240, 231, 0.86);
}

.service-card--signal {
  background: var(--signal);
  color: var(--white);
}

.service-card--dark {
  background: var(--ink);
  color: var(--paper);
}

.service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-card__head i {
  font-size: 15px;
  font-style: normal;
}

.service-card h3 {
  margin: auto 0 22px;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.service-card p {
  min-height: 92px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-card--signal p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--dark p {
  color: rgba(244, 240, 231, 0.62);
}

.service-card strong {
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.section--practice {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.section--practice::before {
  position: absolute;
  top: -230px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(244, 240, 231, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(244, 240, 231, 0.025),
    0 0 0 140px rgba(244, 240, 231, 0.015);
  content: "";
}

.practice-head {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  margin-bottom: 74px;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 70px;
}

.section-kicker--light {
  color: rgba(244, 240, 231, 0.5);
}

.practice-head > p {
  margin: 0;
  color: rgba(244, 240, 231, 0.58);
  font-size: 13px;
  line-height: 1.85;
}

.practice-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-light);
}

.practice-item {
  display: grid;
  min-height: 172px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 70px 1.05fr 1fr auto;
  gap: 34px;
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.practice-item:hover {
  padding-inline: 22px;
  background: rgba(244, 240, 231, 0.035);
}

.practice-item__number {
  color: var(--signal);
  font-size: 10px;
  font-weight: 850;
}

.practice-item__title p {
  margin-bottom: 12px;
  color: rgba(244, 240, 231, 0.4);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.practice-item h3 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.practice-item__copy {
  margin: 0;
  color: rgba(244, 240, 231, 0.58);
  font-size: 13px;
  line-height: 1.85;
}

.practice-item__state {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-light);
  color: var(--acid);
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.section--method {
  background: var(--white);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 145px);
}

.method-title {
  align-self: start;
}

.method-title > p:last-child {
  max-width: 420px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.method-steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method-steps li {
  display: grid;
  min-height: 104px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 64px minmax(130px, 0.7fr) 1fr;
  gap: 24px;
}

.method-steps span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 850;
}

.method-steps strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section--insights {
  background: var(--acid);
}

.insights-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(65px, 9vw, 130px);
}

.insights-copy > p:not(.section-kicker) {
  max-width: 480px;
  margin: 34px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

.series-note {
  display: inline-flex;
  margin-top: 38px;
  padding: 10px 13px;
  border: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.term-board {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  grid-template-columns: repeat(2, 1fr);
}

.term-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.term-card--main {
  background: var(--ink);
  color: var(--paper);
}

.term-card > span {
  font-size: 8px;
  font-weight: 800;
}

.term-card > div {
  margin: auto 0;
}

.term-card p {
  margin-bottom: 7px;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.term-card strong {
  font-size: 13px;
}

.term-card small {
  color: currentColor;
  font-size: 10px;
  opacity: 0.58;
}

.section--about {
  background: var(--paper-deep);
}

.about-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(70px, 11vw, 150px);
}

.about-stamp {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 49.8%, var(--line) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, var(--line) 50%, transparent 50.2%);
  text-align: center;
}

.about-stamp::after {
  position: absolute;
  inset: 10%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.about-stamp span,
.about-stamp i {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-stamp strong {
  position: relative;
  z-index: 1;
  margin: 22px 0;
  color: var(--signal);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.about-lead {
  max-width: 680px;
  margin: 42px 0 24px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.6;
}

.about-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.closing {
  padding: 115px 0;
  background: var(--signal);
  color: var(--white);
}

.closing-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 0.55fr 1.25fr auto;
  gap: 50px;
}

.closing p {
  margin: 0 0 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.site-footer {
  padding: 35px 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner > div {
  display: grid;
  gap: 6px;
}

.footer-inner strong {
  font-size: 12px;
}

.footer-inner span,
.footer-inner p {
  margin: 0;
  color: rgba(244, 240, 231, 0.48);
  font-size: 8px;
  letter-spacing: 0.12em;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
    padding-bottom: 10px;
  }

  .hero-board {
    width: min(650px, 100%);
    margin: 0 auto 70px;
  }

  .section-heading {
    grid-template-columns: 0.45fr 1.3fr;
  }

  .section-summary {
    grid-column: 2;
    max-width: 560px;
    margin: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-item {
    grid-template-columns: 56px 0.9fr 1.1fr;
  }

  .practice-item__state {
    display: none;
  }

  .method-layout,
  .insights-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .term-board {
    max-width: 760px;
  }

  .about-stamp {
    width: min(440px, 100%);
  }

  .closing-inner {
    grid-template-columns: 1fr auto;
  }

  .closing-inner > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(calc(100% - 32px), 1240px);
  }

  body::before {
    background-size: 38px 38px;
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--ink);
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 8px 20px;
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 102px;
  }

  .hero-grid {
    min-height: auto;
    gap: 52px;
  }

  .hero-copy {
    padding: 38px 0 0;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 22px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(49px, 15vw, 70px);
    line-height: 0.99;
  }

  .hero-intro {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero-board {
    min-height: 510px;
    padding: 22px;
    margin-bottom: 48px;
  }

  .hero-board__type {
    min-height: 220px;
  }

  .hero-board__type span {
    font-size: clamp(118px, 42vw, 155px);
  }

  .hero-board__type strong {
    font-size: 34px;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-strip span {
    min-height: 66px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
  }

  .capability-strip span:nth-child(2) {
    border-right: 0;
  }

  .capability-strip span:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 48px;
  }

  .section-summary {
    grid-column: auto;
  }

  .section-title h2,
  .practice-head h2,
  .method-title h2,
  .insights-copy h2,
  .about-copy h2,
  .closing h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 350px;
    padding: 25px;
  }

  .service-card p {
    min-height: auto;
  }

  .practice-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .practice-item {
    min-height: auto;
    padding: 28px 0;
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .practice-item:hover {
    padding-inline: 0;
  }

  .practice-item__copy {
    grid-column: 2;
  }

  .method-layout,
  .insights-grid,
  .about-layout {
    gap: 58px;
  }

  .method-steps li {
    min-height: 96px;
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .method-steps p {
    grid-column: 2;
    margin-top: -26px;
  }

  .term-board {
    grid-template-columns: 1fr;
  }

  .term-card {
    min-height: 170px;
  }

  .about-stamp {
    width: 100%;
  }

  .about-lead {
    margin-top: 32px;
  }

  .closing {
    padding: 88px 0;
  }

  .closing-inner {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .closing-inner > p {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
