:root {
  color-scheme: light;
  --ink: #071b2a;
  --muted: #607482;
  --line: #d9e2e7;
  --paper: #f7fafb;
  --white: #fff;
  --teal: #08a69b;
  --cyan: #18bee4;
  --lime: #6edb72;
  --danger: #c53b31;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  height: 76px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 34px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 251, 0.96);
  border-bottom: 1px solid rgba(7, 27, 42, 0.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  width: 292px;
}
.brand img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.site-header nav a:hover {
  color: var(--teal);
}
.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  background: #0c3347;
}
.button-small {
  min-height: 38px;
  padding: 0 15px;
}
.button-outline {
  color: var(--ink);
  background: transparent;
}
.button-outline:hover {
  color: #fff;
  background: var(--ink);
}
.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}
.button-light:hover {
  color: #fff;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 7vw, 112px) clamp(24px, 5vw, 88px) 72px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(600px, 1.22fr);
  gap: clamp(46px, 6vw, 104px);
  align-items: center;
  overflow: hidden;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--teal);
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.65);
}
.eyebrow.light span {
  background: var(--cyan);
}
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.3vw, 104px);
  line-height: 0.92;
  font-weight: 900;
}
.hero h1 em {
  color: var(--teal);
  font-style: normal;
}
.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.text-link {
  font-size: 14px;
  font-weight: 800;
}
.text-link span {
  margin-left: 8px;
  color: var(--teal);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin: 58px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.hero-metrics div {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
.hero-metrics div + div {
  padding-left: 24px;
}
.hero-metrics div:last-child {
  border: 0;
}
.hero-metrics dt {
  font-size: 24px;
  font-weight: 900;
}
.hero-metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-stage {
  position: relative;
  min-width: 0;
}
.app-shell {
  border: 1px solid #cbd8df;
  border-radius: 8px;
  overflow: hidden;
  background: #eef3f5;
  box-shadow: 0 28px 70px rgba(7, 27, 42, 0.18);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}
.window-bar {
  height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.window-brand,
.window-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.window-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(8, 166, 155, 0.18);
}
.window-brand strong {
  font-size: 13px;
}
.window-brand span,
.window-tools span {
  color: var(--muted);
  font-size: 10px;
}
.window-tools {
  gap: 13px;
}
.window-tools span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.window-tools b {
  font-size: 13px;
}
.app-body {
  min-height: 514px;
  display: grid;
  grid-template-columns: 58px 1fr;
}
.app-rail {
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-right: 1px solid var(--line);
}
.app-rail span {
  flex: 1;
}
.app-rail button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font-size: 16px;
}
.app-rail button.active {
  color: var(--teal);
  background: #e7f6f4;
}
.app-main {
  padding: 28px;
  min-width: 0;
}
.app-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.app-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 10px;
}
.app-heading h2 {
  margin: 0;
  font-size: 20px;
}
.online {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #28723e;
  background: #e8f7e9;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}
.online i {
  width: 7px;
  height: 7px;
  background: #43b85f;
  border-radius: 50%;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 14px;
}
.metric-grid article {
  padding: 15px;
  background: #fff;
  border: 1px solid #dbe4e9;
  border-radius: 5px;
}
.metric-grid span,
.metric-grid small {
  color: var(--muted);
  font-size: 9px;
}
.metric-grid strong {
  display: block;
  margin: 10px 0 2px;
  font-size: 22px;
}
.workspace-row {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 12px;
}
.channel-panel,
.conversation-panel {
  background: #fff;
  border: 1px solid #dbe4e9;
  border-radius: 5px;
  overflow: hidden;
}
.panel-title {
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7edef;
  font-size: 10px;
}
.panel-title span {
  color: #298a65;
}
.channels > div {
  padding: 10px 13px;
  display: grid;
  grid-template-columns: 26px 1fr 7px;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #edf1f3;
}
.channels img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
.channels span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.channels b {
  font-size: 9px;
}
.channels small {
  color: var(--muted);
  font-size: 8px;
}
.channels i,
.contact i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.contact {
  height: 55px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 31px 1fr 7px;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid #e7edef;
}
.avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #426c75;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}
.contact span {
  display: flex;
  flex-direction: column;
}
.contact b {
  font-size: 10px;
}
.contact small {
  color: var(--muted);
  font-size: 8px;
}
.messages {
  min-height: 187px;
  padding: 17px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #fafcfc;
}
.messages p {
  max-width: 78%;
  margin: 0;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 8px;
  line-height: 1.5;
}
.incoming {
  background: #fff;
  border: 1px solid #e3eaed;
}
.messages .translated {
  padding: 1px 10px;
  color: var(--teal);
  font-size: 7px;
}
.outgoing {
  align-self: flex-end;
  color: #fff;
  background: var(--teal);
}
.composer {
  margin: 0 10px 10px;
  padding: 9px 8px 9px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #dce5e8;
  border-radius: 4px;
}
.composer span {
  color: #8b9aa3;
  font-size: 7px;
}
.composer button {
  padding: 5px 7px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--ink);
  font-size: 7px;
}
.stage-note {
  position: absolute;
  right: -18px;
  bottom: -38px;
  width: 278px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(7, 27, 42, 0.22);
}
.stage-note span {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}
.stage-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}
.stage-note strong {
  display: block;
  font-size: 12px;
}

.platform-strip {
  padding: 30px clamp(24px, 5vw, 88px);
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.platform-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.platform-strip > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
}
.platform-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.platform-strip img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.section {
  padding: 112px clamp(24px, 7vw, 120px);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 64px;
}
.section-heading .eyebrow {
  align-self: start;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.12;
}
.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature-grid article {
  position: relative;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.feature-grid .feature-primary {
  grid-row: 1 / 3;
  padding: 44px;
  color: #fff;
  background: var(--ink);
}
.feature-index {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #91a1aa;
  font-size: 10px;
  font-weight: 900;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #b8c9cf;
  color: var(--teal);
  font-size: 24px;
}
.feature-grid h3 {
  margin: 0 0 18px;
  font-size: 23px;
}
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.feature-primary p {
  color: rgba(255, 255, 255, 0.62);
}
.feature-primary ul {
  margin: 34px 0 0;
  padding: 22px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
  font-size: 12px;
}
.feature-primary li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--lime);
}

.workflow-section {
  min-height: 760px;
  padding: 108px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(55px, 9vw, 150px);
  color: #fff;
  background: var(--ink);
}
.workflow-copy h2,
.security-title h2,
.download-section h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.08;
}
.workflow-list {
  margin-top: 70px;
}
.workflow-list article {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.workflow-list article > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}
.workflow-list h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.workflow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.75;
}
.workflow-visual {
  padding: 70px 0 0;
  position: relative;
}
.flow-card {
  width: min(480px, 88%);
  padding: 26px;
  background: #fff;
  color: var(--ink);
  border-left: 4px solid var(--cyan);
}
.flow-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.flow-card p {
  margin: 15px 0 0;
  font-size: 17px;
  line-height: 1.5;
}
.flow-source {
  margin-left: 0;
}
.flow-result {
  margin-left: 12%;
  border-left-color: var(--teal);
}
.flow-line {
  width: 60%;
  height: 64px;
  margin-left: 10%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}
.flow-line i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.ai-suggestion {
  width: min(420px, 78%);
  margin: 34px 0 0 22%;
  padding: 24px;
  color: var(--ink);
  background: #e9f8f5;
  border: 1px solid #58c7b9;
}
.ai-suggestion b {
  color: var(--teal);
  font-size: 11px;
}
.ai-suggestion p {
  margin: 14px 0;
  font-size: 13px;
  line-height: 1.6;
}
.ai-suggestion button {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.pricing-section {
  background: #fff;
}
.section-heading.narrow {
  grid-template-columns: 0.65fr 1.2fr 1fr;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  min-height: 320px;
}
.loading {
  color: var(--muted);
}
.plan {
  position: relative;
  min-height: 350px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}
.plan.featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 900;
}
.plan small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}
.plan.featured small,
.plan.featured p {
  color: rgba(255, 255, 255, 0.58);
}
.plan h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0;
}
.plan-price strong {
  font-size: 42px;
}
.plan-price span {
  font-size: 12px;
}
.plan p {
  min-height: 50px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.plan .button {
  margin-top: auto;
  width: 100%;
}
.plan.featured .button {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.security-section {
  padding: 104px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 90px;
  color: #fff;
  background: #0c3347;
}
.security-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.security-points article {
  padding: 15px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}
.security-points b {
  color: var(--cyan);
  font-size: 11px;
}
.security-points h3 {
  margin: 48px 0 16px;
  font-size: 18px;
}
.security-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.8;
}

.support-section {
  background: #f3f7f7;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.support-grid article {
  min-height: 245px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.support-grid article > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}
.support-grid h3 {
  margin: 38px 0 14px;
  font-size: 20px;
}
.support-grid p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.support-grid a {
  margin-top: auto;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.download-section {
  padding: 88px clamp(24px, 7vw, 120px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  color: #fff;
  background: var(--teal);
}
.download-section p:last-child {
  max-width: 600px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.8;
}
.download-section .button {
  min-width: 245px;
}
footer {
  min-height: 154px;
  padding: 30px clamp(24px, 5vw, 88px);
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-top: 1px solid var(--line);
}
footer img {
  width: 255px;
}
footer p,
footer span {
  color: var(--muted);
  font-size: 11px;
}

dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  overflow: auto;
}
dialog::backdrop {
  background: rgba(7, 27, 42, 0.72);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: #edf2f4;
  font-size: 22px;
  cursor: pointer;
}
.dialog-heading {
  padding: 35px 38px 25px;
  border-bottom: 1px solid var(--line);
}
.dialog-heading h2 {
  margin: 0;
  font-size: 28px;
}
#order-content {
  padding: 30px 38px 38px;
}
.order-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.order-summary h3 {
  margin: 0 0 7px;
  font-size: 20px;
}
.order-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.order-summary strong {
  font-size: 27px;
}
.order-pay {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px 0;
}
.qr-box {
  width: 180px;
  height: 180px;
  padding: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
}
.qr-box img {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.pay-fields label {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}
.copy-row {
  margin-top: 7px;
  display: grid;
  grid-template-columns: 1fr 38px;
  border: 1px solid var(--line);
}
.copy-row code {
  padding: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
}
.copy-row button {
  border: 0;
  border-left: 1px solid var(--line);
  background: #f2f6f7;
  cursor: pointer;
}
.transaction-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
}
.transaction-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}
.transaction-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: 0;
}
.transaction-form input:focus {
  border-color: var(--teal);
}
.transaction-form .button {
  min-height: 42px;
}
.order-status {
  margin: 18px 0 0;
  padding: 13px;
  color: #8b5b00;
  background: #fff8e7;
  font-size: 12px;
}
.order-status.success {
  color: #217447;
  background: #eaf8ef;
}
.license-result {
  margin-top: 20px;
  padding: 18px;
  background: #eaf8ef;
  border-left: 3px solid #39a762;
}
.license-result strong {
  display: block;
  margin-bottom: 8px;
  color: #217447;
}
.license-result code {
  word-break: break-all;
}
.order-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.error-message {
  color: var(--danger);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .product-stage {
    max-width: 820px;
  }
  .section-heading,
  .section-heading.narrow {
    grid-template-columns: 1fr 1.2fr;
  }
  .section-heading > p:last-child {
    grid-column: 2;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid .feature-primary {
    grid-row: span 2;
  }
  .workflow-section,
  .security-section {
    grid-template-columns: 1fr;
  }
  .workflow-visual {
    max-width: 760px;
  }
  .platform-strip {
    grid-template-columns: 1fr;
  }
  .security-points {
    padding-top: 20px;
  }
}

 param($m) "@media (max-width: 760px) {" + $m.Groups[1].Value + ".brand {`r`n    width: 214px;`r`n  }" 
  .site-header > .button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0;
  }
  .site-header > .button::after {
    content: "下载";
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    padding: 52px 18px 70px;
    gap: 58px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-metrics {
    gap: 0;
  }
  .hero-metrics div {
    padding-right: 10px;
  }
  .hero-metrics div + div {
    padding-left: 12px;
  }
  .hero-metrics dt {
    font-size: 19px;
  }
  .app-shell {
    width: 760px;
    transform: scale(0.46);
    transform-origin: top left;
  }
  .product-stage {
    height: 300px;
  }
  .stage-note {
    right: 0;
    bottom: -8px;
    width: 240px;
  }
  .platform-strip {
    padding: 26px 18px;
  }
  .platform-strip > div {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }
  .section {
    padding: 80px 18px;
  }
  .section-heading,
  .section-heading.narrow {
    display: block;
    margin-bottom: 42px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading > p:last-child {
    margin-top: 24px;
  }
  .feature-grid {
    display: block;
    border-top: 1px solid var(--line);
  }
  .feature-grid article {
    min-height: 260px;
  }
  .feature-grid .feature-primary {
    min-height: 470px;
  }
  .workflow-section {
    padding: 80px 18px;
    gap: 20px;
  }
  .workflow-copy h2,
  .security-title h2,
  .download-section h2 {
    font-size: 40px;
  }
  .workflow-visual {
    padding-top: 44px;
  }
  .flow-card {
    width: 95%;
  }
  .flow-result {
    margin-left: 5%;
  }
  .ai-suggestion {
    width: 90%;
    margin-left: 10%;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .security-section {
    padding: 80px 18px;
    gap: 45px;
  }
  .security-points {
    grid-template-columns: 1fr;
  }
  .security-points article {
    padding: 25px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }
  .security-points h3 {
    margin-top: 20px;
  }
  .download-section {
    padding: 70px 18px;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .download-section .button {
    min-width: 0;
    width: 100%;
  }
  footer {
    padding: 36px 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  footer img {
    width: 235px;
  }
  .order-pay {
    grid-template-columns: 1fr;
  }
  .qr-box {
    margin: 0 auto;
  }
  #order-content,
  .dialog-heading {
    padding-left: 20px;
    padding-right: 20px;
  }
  .transaction-form div {
    grid-template-columns: 1fr;
  }
}

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