/*
  不可言 · AI 接单 介绍页
  纯静态、无依赖。手机优先，桌面端在 720px / 1000px 两个断点展开。
  视觉：白 / 浅灰两种底色交替，黑字 + 灰字两色标题，大圆角卡片，胶囊按钮。微信绿只用于「加微信」。
*/

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0066cc;
  --wx: #05843f;
  --wx-deep: #046c33;
  --dark: #000000;
  --on-dark: #f5f5f7;
  --on-dark-muted: #a1a1a6;
  --radius: 28px;
  --radius-sm: 18px;
  --wrap: 1040px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Helvetica Neue", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
  -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.share-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero h1 br {
  display: none;
}

h1 em,
h2 em {
  color: var(--muted);
  font-style: normal;
}

::selection {
  background: rgba(0, 102, 204, 0.18);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 8px;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

/* 按钮 */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn--wx {
  background: var(--wx);
  color: #fff;
}

.btn--wx:hover {
  background: var(--wx-deep);
}

.btn--line {
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--ink);
}

.btn--line:hover {
  border-color: var(--ink);
}

.btn--sm {
  min-height: 32px;
  padding: 0 14px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 48px;
  color: var(--blue);
  font-size: 17px;
}

.link:hover {
  text-decoration: underline;
}

/* 顶栏 */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.top-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
}

.brand {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  display: none;
}

.top-cta {
  margin-left: auto;
}

.menu {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
}

.menu span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease;
}

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

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

.nav.is-open {
  position: fixed;
  z-index: 49;
  top: 53px;
  right: 0;
  left: 0;
  display: grid;
  padding: 10px 20px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav.is-open a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}

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

/* 通用 */

.sec {
  padding: 72px 0;
}

.sec--alt {
  background: var(--bg-alt);
}

.sec--dark {
  background: var(--dark);
  color: var(--on-dark);
}

.sec-head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.sec h2 {
  font-size: clamp(30px, 6.4vw, 48px);
}

.honest-grid h2,
.contact-grid h2 {
  font-size: clamp(28px, 5.6vw, 40px);
}

.hero-cred,
.sub,
.hero-sub {
  text-wrap: balance;
}

.sec--dark h2 {
  color: #fff;
}

.sec--dark h2 em {
  color: var(--on-dark-muted);
}

.sub {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.45;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

/* 首屏 */

.hero {
  padding: 56px 0 64px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(36px, 9vw, 72px);
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.45;
}

.hero-cred {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 26px;
}

.hero .wx {
  margin: 48px auto 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 44px auto 0;
}

.stats strong {
  display: block;
  font-size: clamp(22px, 5.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* 微信群聊模拟 */

.wx {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 32px;
  background: #ededed;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  line-height: 1.55;
  color: #1a1a1a;
  text-align: left;
}

.wx-bar {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.wx-back {
  font-size: 24px;
  line-height: 1;
  text-align: left;
}

.wx-title {
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wx-more {
  font-size: 16px;
  letter-spacing: -1px;
  text-align: right;
}

.wx-body {
  display: grid;
  gap: 12px;
  padding: 14px 12px 18px;
}

.wx-time {
  color: #9a9a9a;
  font-size: 11px;
  text-align: center;
}

.wx-msg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.wx-msg--me {
  justify-content: flex-end;
}

.wx-avatar {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 5px;
}

.wx-avatar--a { background: linear-gradient(140deg, #f6b17a, #e8734a); }
.wx-avatar--b { background: linear-gradient(140deg, #f9a8c9, #c86fa0); }
.wx-avatar--c { background: linear-gradient(140deg, #ffd27a, #e29a2e); }
.wx-avatar--d { background: linear-gradient(140deg, #9fd0ff, #5e93d6); }
.wx-avatar--me { background: linear-gradient(140deg, #4e4e56, #1f1f24); }

.wx-msg-main {
  display: grid;
  gap: 3px;
  max-width: 80%;
}

.wx-name {
  color: #8a8a8a;
  font-size: 11.5px;
  line-height: 1.3;
}

.wx-bubble {
  position: relative;
  padding: 8px 11px;
  border-radius: 6px;
  background: #fff;
  word-break: break-word;
}

.wx-bubble::before {
  position: absolute;
  top: 10px;
  left: -5px;
  width: 10px;
  height: 10px;
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.wx-bubble--me {
  background: #95ec69;
}

.wx-bubble--me::before {
  right: -5px;
  left: auto;
}

.wx-quote {
  display: block;
  margin-bottom: 6px;
  padding: 5px 8px;
  border-left: 2px solid #c9c9c9;
  border-radius: 3px;
  background: #f3f3f3;
  color: #777;
  font-size: 12px;
  line-height: 1.45;
}

/* 01 流程 */

.flow {
  display: grid;
  gap: 12px;
}

.flow li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 14px;
  padding: 22px 22px 22px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.flow-n {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.flow h3 {
  font-size: 19px;
}

.flow p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* 02 客户要什么 */

.orders {
  display: grid;
  gap: 14px;
}

.order {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: #fff;
}

.order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.tag {
  font-size: 15px;
  font-weight: 600;
}

.order-when {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.order-quote {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.prices {
  margin-top: 56px;
  text-align: center;
}

.prices-label {
  color: var(--muted);
  font-size: 15px;
}

.prices-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 10px 0 6px;
}

.prices-row li {
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.prices-row li::after {
  margin-left: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  content: "元";
}

.prices-note {
  color: var(--muted);
  font-size: 13px;
}

.search-demo {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

.search-demo-text {
  text-align: center;
}

.search-demo h3 {
  font-size: 22px;
}

.search-demo p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

/* 微信搜索结果模拟 */

.wxs {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  color: #1a1a1a;
  text-align: left;
}

.wxs-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #ededed;
}

.wxs-input {
  flex: 1;
  padding: 7px 12px;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
}

.wxs-input::before {
  margin-right: 8px;
  color: #999;
  content: "⌕";
}

.wxs-cancel {
  color: #576b95;
  font-size: 14px;
}

.wxs-label {
  padding: 10px 14px 4px;
  color: #999;
  font-size: 12px;
}

.wxs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
}

.wxs-list li + li {
  border-top: 1px solid #f0f0f0;
}

.wxs-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #cfd8e3 0 50%, #8ea3bd 50% 100%) 0 0 / 50% 50% no-repeat,
    linear-gradient(135deg, #f1d3b3 0 50%, #cf9a6c 50% 100%) 100% 0 / 50% 50% no-repeat,
    linear-gradient(135deg, #d9e5d0 0 50%, #93b285 50% 100%) 0 100% / 50% 50% no-repeat,
    linear-gradient(135deg, #e6d6ef 0 50%, #a98bc4 50% 100%) 100% 100% / 50% 50% no-repeat,
    #e9e9e9;
  box-shadow: inset 0 0 0 2px #e9e9e9;
}

.wxs-list b {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.wxs-list b i {
  color: #07c160;
  font-style: normal;
}

.wxs-list small {
  display: block;
  margin-top: 2px;
  color: #999;
  font-size: 12px;
  line-height: 1.3;
}

.blur {
  display: inline-block;
  height: 10px;
  margin-right: 2px;
  border-radius: 2px;
  background: repeating-linear-gradient(90deg, #d5d5d5 0 8px, #c3c3c3 8px 14px);
  vertical-align: -1px;
}

.blur.w2 { width: 34px; }
.blur.w3 { width: 62px; }
.blur.w4 { width: 92px; }

/* 03 八步 */

.steps {
  max-width: 720px;
  margin: 0 auto;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-n {
  padding-top: 2px;
  color: #c7c7cc;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

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

.steps p {
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}

.pill {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  vertical-align: 1px;
  white-space: nowrap;
}

/* 04 为什么是我 */

.bento {
  display: grid;
  gap: 14px;
}

.bento-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: #fff;
}

.bento-k {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.bento-card h3 {
  font-size: 22px;
}

.bento-card p:last-child {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}

.pits-line {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.offer {
  display: grid;
  gap: 20px;
  margin-top: 44px;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.offer h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}

.offer p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.offer .btn {
  justify-self: start;
}

.fit {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.fit-col {
  padding: 24px 26px;
  border-radius: var(--radius);
  background: #fff;
}

.fit-col h3 {
  font-size: 17px;
  color: var(--muted);
}

.fit-col ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.fit-col li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.5;
}

.fit-col li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}

.fit-yes li::before {
  color: var(--wx);
  content: "✓";
}

.fit-no li::before {
  color: var(--muted);
  content: "×";
}

/* 05 实话 */

.honest-grid {
  display: grid;
  gap: 32px;
}

.honest-p {
  margin-top: 18px;
  color: var(--on-dark-muted);
  font-size: 17px;
  line-height: 1.55;
}

.honest-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.honest-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
  line-height: 1.5;
}

.honest-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  content: "✓";
}

/* 06 常见问题 */

.faq-wrap {
  max-width: 760px;
}

.faq {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  position: relative;
  display: block;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

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

.faq summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  width: 24px;
  height: 24px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  content: "+";
  transition: transform 160ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 32px 22px 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

/* 07 加我 */

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-text {
  text-align: center;
}

.contact-text > p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.45;
}

.card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.card-label {
  color: var(--muted);
  font-size: 14px;
}

.card-value {
  font-size: 15px;
  font-weight: 500;
  word-break: break-all;
}

.card-value.is-shown {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.qr {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.qr img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
}

.qr p {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.card-alt {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.card-alt b {
  color: var(--ink);
}

.card-foot {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* 页脚 */

.foot {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.foot-row {
  display: grid;
  gap: 8px;
}

.foot-note,
.foot-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* 手机端悬浮按钮 + 提示 */

.sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

body.has-sticky {
  padding-bottom: 76px;
}

.toast {
  position: fixed;
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 60;
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.92);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toast.is-on {
  opacity: 1;
}

/* 断点 */

@media (min-width: 720px) {
  .sec {
    padding: 100px 0;
  }

  .hero {
    padding: 88px 0 96px;
  }

  .hero h1 br {
    display: inline;
  }

  .sec-head {
    margin-bottom: 56px;
  }

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

  .orders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .offer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 36px 40px;
  }

  .offer .btn {
    justify-self: end;
  }

  .fit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .foot-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
  }
}

@media (min-width: 1000px) {
  .nav {
    display: flex;
    gap: 28px;
    margin-left: 32px;
    color: var(--ink-2);
    font-size: 13px;
  }

  .nav a {
    transition: color 160ms ease;
  }

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

  .menu {
    display: none;
  }

  .hero .wx {
    margin-top: 56px;
  }

  .flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .flow li {
    grid-template-columns: 1fr;
    align-content: start;
    padding: 26px 24px 24px;
  }

  .flow-n {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .search-demo {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 64px;
    max-width: 900px;
    margin-inline: auto;
  }

  .search-demo-text {
    text-align: left;
  }

  .honest-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 72px;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 72px;
    align-items: center;
  }

  .contact-text {
    text-align: left;
  }

  .contact-text > p {
    margin-inline: 0;
  }

  .sticky {
    display: none;
  }

  body.has-sticky {
    padding-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
