:root {
  --ink: #061b42;
  --text: #365172;
  --muted: #6b7f9c;
  --line: #dbe9fb;
  --blue: #1f6fff;
  --blue-dark: #1459df;
  --green: #16bd82;
  --orange: #ff9823;
  --purple: #785cff;
  --cyan: #20bdd5;
  --shadow: 0 16px 42px rgba(31, 93, 170, 0.12);
  --soft-shadow: 0 10px 26px rgba(31, 93, 170, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #edf6ff 54%, #ffffff 100%);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  line-height: 1.52;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(1520px, calc(100% - 120px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 62px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e1eaf6;
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: 300px 1fr 128px;
  align-items: center;
  width: min(1748px, calc(100% - 88px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand strong {
  color: #10264a;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.logo-cube {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0f63ff, #61bbff);
  transform: rotate(30deg);
}

.logo-cube::before {
  position: absolute;
  inset: 8px;
  content: "";
  background: #ffffff;
  border-radius: 5px;
}

.logo-cube::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 14px;
  height: 14px;
  content: "";
  background: #0f63ff;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3vw, 52px);
  color: #152b4d;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--blue);
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--blue);
  border-radius: 3px 3px 0 0;
}

.trial-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(180deg, #2d7cff, #155ee8);
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(31, 110, 255, 0.24);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 274px;
  padding: 10px 0 10px;
  border-bottom: 1px solid #dfeafb;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 91% 24%, rgba(30, 111, 255, 0.16), transparent 20%),
    linear-gradient(150deg, #ffffff 0%, #f4f9ff 48%, #dcecff 100%);
}

.hero-bg::before {
  position: absolute;
  right: -120px;
  top: -130px;
  width: 690px;
  height: 470px;
  content: "";
  background:
    repeating-linear-gradient(150deg, rgba(30, 111, 255, 0.12) 0 2px, transparent 2px 48px),
    radial-gradient(circle at 70% 35%, rgba(30, 111, 255, 0.12), transparent 56%);
  border-radius: 50%;
}

.hero-bg .grain {
  position: absolute;
  width: 92px;
  height: 92px;
  opacity: 0.56;
  background-image: radial-gradient(#89b9ff 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

.hero-bg .grain.one {
  left: 46%;
  top: 44%;
}

.hero-bg .grain.two {
  right: 7%;
  top: 20%;
}

.hero-bg .orbit {
  position: absolute;
  left: 58%;
  bottom: 4%;
  width: 290px;
  height: 72px;
  border-top: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.hero-copy,
.device-stage {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #aaceff;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(31, 110, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
}

.eyebrow::before {
  width: 16px;
  height: 16px;
  content: "";
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue) 0 22%, transparent 24%);
}

.hero-copy h1 {
  margin: 18px 0 0;
  color: #071a3c;
  font-size: clamp(2.5rem, 2.75vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-copy h1 span {
  display: inline;
}

.hero-copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #435c7d;
  font-size: 1.04rem;
  font-weight: 700;
}

.mobile-only {
  display: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 58px;
  margin-top: 22px;
}

.hero-points span {
  color: #263f61;
  font-weight: 900;
}

.hero-points span::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  content: "";
  vertical-align: -4px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 43%, var(--blue) 44% 56%, transparent 57%) center / 12px 12px no-repeat;
}

.device-stage {
  position: relative;
  height: 252px;
}

.laptop {
  position: absolute;
  right: 120px;
  top: 2px;
  bottom: auto;
  width: 510px;
}

.laptop-screen {
  display: grid;
  grid-template-columns: 74px 1fr;
  overflow: hidden;
  height: 226px;
  padding: 8px;
  background: #111722;
  border: 7px solid #080b10;
  border-radius: 13px 13px 5px 5px;
  box-shadow: 0 24px 52px rgba(10, 41, 92, 0.22);
}

.laptop-screen aside {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 8px 7px;
  color: #b8c7dc;
  background: #152033;
  border-radius: 4px 0 0 4px;
  font-size: 0.55rem;
  font-weight: 800;
}

.laptop-screen aside strong {
  color: #ffffff;
  font-size: 0.58rem;
}

.laptop-screen aside span {
  padding: 5px 5px;
  border-radius: 4px;
}

.laptop-screen aside .active {
  color: #ffffff;
  background: var(--blue);
}

.screen-content {
  min-width: 0;
  overflow: hidden;
  padding: 10px 12px;
  background: #f7fbff;
  border-radius: 0 4px 4px 0;
}

.screen-content > strong {
  display: block;
  margin-bottom: 7px;
  color: #172b4d;
  font-size: 0.72rem;
  font-weight: 900;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-stats article {
  min-height: 54px;
  padding: 8px 9px;
  background: #ffffff;
  border: 1px solid #e5eef9;
  border-radius: 6px;
}

.mini-stats span,
.mini-stats em {
  display: block;
  color: #6a7d98;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 800;
}

.mini-stats b {
  display: block;
  color: #0f1e35;
  font-size: 0.86rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.mini-stats em {
  color: #10a776;
}

.mini-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr;
  gap: 8px;
  margin-top: 8px;
}

.mini-panels section {
  min-height: 105px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e5eef9;
  border-radius: 6px;
}

.line-panel svg {
  width: 100%;
  height: 92px;
}

.line-panel path {
  fill: none;
  stroke: #e8eff8;
}

.line-panel polyline {
  fill: none;
  stroke: #2f7bff;
  stroke-width: 3;
}

.donut-panel {
  display: grid;
  place-items: center;
}

.donut-panel i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 55%, transparent 56%),
    conic-gradient(#2f7bff 0 48%, #70aaff 48% 76%, #ff9f27 76% 91%, #ff6c7b 91% 100%);
}

.bar-panel {
  display: flex;
  align-items: end;
  gap: 13px;
  padding: 24px 18px 12px;
}

.bar-panel i {
  flex: 1;
  background: linear-gradient(180deg, #317dff, #1f66e8);
  border-radius: 4px 4px 0 0;
}

.bar-panel i:nth-child(1) { height: 48%; }
.bar-panel i:nth-child(2) { height: 74%; }
.bar-panel i:nth-child(3) { height: 42%; }
.bar-panel i:nth-child(4) { height: 58%; }

.laptop-base {
  width: 560px;
  height: 16px;
  margin-left: -20px;
  background: linear-gradient(180deg, #d4dbe6, #9fa8b7);
  border-radius: 0 0 50% 50%;
}

.phone {
  position: absolute;
  right: 8px;
  top: 72px;
  bottom: auto;
  width: 116px;
  height: 204px;
  padding: 20px 12px 12px;
  background: #ffffff;
  border: 7px solid #0a0d12;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(10, 41, 92, 0.24);
}

.phone-top {
  position: absolute;
  top: 8px;
  left: 36px;
  width: 45px;
  height: 7px;
  background: #0a0d12;
  border-radius: 999px;
}

.phone strong,
.phone span,
.phone b,
.phone em {
  display: block;
}

.phone strong {
  font-size: 0.64rem;
}

.phone span {
  margin-top: 14px;
  color: #6a7d98;
  font-size: 0.48rem;
  font-weight: 800;
}

.phone b {
  font-size: 0.86rem;
  line-height: 1.25;
}

.phone em {
  color: #10a776;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 900;
}

.phone-line {
  height: 34px;
  margin-top: 3px;
  background:
    linear-gradient(160deg, transparent 42%, #2f7bff 43% 47%, transparent 48%) center / 92px 34px no-repeat;
}

.phone-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 6px;
}

.phone-apps i {
  height: 15px;
  background: #eaf2ff;
  border-radius: 5px;
}

.phone-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 38px;
  margin-top: 6px;
}

.phone-bars i {
  flex: 1;
  background: linear-gradient(180deg, #2f7bff, #8cbdff);
  border-radius: 3px 3px 0 0;
}

.phone-bars i:nth-child(1) { height: 40%; }
.phone-bars i:nth-child(2) { height: 68%; }
.phone-bars i:nth-child(3) { height: 52%; }
.phone-bars i:nth-child(4) { height: 84%; }

.float-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d7e7fb;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(31, 93, 170, 0.14);
}

.float-icon.pie {
  left: 0;
  top: 18px;
}

.float-icon.pie::before {
  width: 29px;
  height: 29px;
  content: "";
  border-radius: 50%;
  background: conic-gradient(#2f7bff 0 25%, #8ebcff 25% 100%);
}

.float-icon.bars {
  right: -48px;
  top: 116px;
}

.float-icon.bars::before {
  width: 7px;
  height: 28px;
  content: "";
  background: #2f7bff;
  border-radius: 4px 4px 0 0;
  box-shadow: -12px 10px 0 #8ebcff, 12px -6px 0 #61a1ff;
}

.scene-section {
  padding: 8px 0 0;
  background: #ffffff;
}

.scene-section h2,
.fit-section h2,
.flow-section h2 {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: 1.42rem;
  line-height: 1.2;
  font-weight: 900;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px;
  margin-top: 8px;
}

.scenario-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 108px;
  gap: 14px;
  align-items: center;
  height: 122px;
  min-height: 122px;
  padding: 11px 15px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfeafb;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.scene-icon,
.fit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #eef5ff;
}

.scene-icon::before,
.scene-icon::after,
.scene-art::before,
.scene-art::after,
.fit-icon::before,
.fit-icon::after,
.growth-art::before,
.growth-art::after {
  position: absolute;
  content: "";
}

.scene-icon.trade::before {
  width: 34px;
  height: 28px;
  background: var(--blue);
  border-radius: 8px;
}

.scene-icon.trade::after {
  top: 12px;
  width: 22px;
  height: 14px;
  border: 4px solid #ffffff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.scene-icon.service {
  background: #e9fbf4;
}

.scene-icon.service::before {
  width: 34px;
  height: 28px;
  background: var(--green);
  clip-path: path("M17 27 C8 20 1 15 3 8 C5 1 13 1 17 7 C21 1 29 1 31 8 C33 15 26 20 17 27 Z");
}

.scene-icon.project {
  background: #fff5e7;
}

.scene-icon.project::before {
  width: 36px;
  height: 32px;
  background: var(--orange);
  clip-path: polygon(43% 0, 57% 0, 60% 18%, 78% 18%, 82% 48%, 68% 48%, 68% 100%, 32% 100%, 32% 48%, 18% 48%, 22% 18%, 40% 18%);
}

.scene-icon.agency {
  background: #f2edff;
}

.scene-icon.agency::before {
  top: 12px;
  width: 26px;
  height: 26px;
  background: var(--purple);
  border-radius: 50%;
}

.scene-icon.agency::after {
  bottom: 10px;
  width: 40px;
  height: 20px;
  background: linear-gradient(180deg, #9a80ff, var(--purple));
  border-radius: 20px 20px 8px 8px;
}

.scene-icon.team {
  background: #eaf2ff;
}

.scene-icon.team::before {
  width: 18px;
  height: 18px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: -18px 8px 0 #7fb2ff, 18px 8px 0 #5c9dff;
}

.scene-icon.team::after {
  bottom: 10px;
  width: 42px;
  height: 18px;
  background: linear-gradient(180deg, #78adff, var(--blue));
  border-radius: 18px 18px 7px 7px;
}

.scene-icon.mobile {
  background: #e9fbff;
}

.scene-icon.mobile::before {
  width: 27px;
  height: 42px;
  border: 5px solid var(--cyan);
  border-radius: 8px;
}

.scene-copy {
  min-width: 0;
}

.scene-copy strong,
.fit-grid strong {
  display: block;
  color: #172b4d;
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 900;
}

.scene-copy p,
.fit-grid p {
  margin: 5px 0 0;
  color: #5f738e;
  font-size: 0.68rem;
  line-height: 1.32;
  font-weight: 700;
}

.scene-copy ul {
  display: grid;
  gap: 1px;
  margin: 5px 0 0;
  padding-left: 16px;
  color: #2068e6;
  font-size: 0.62rem;
  line-height: 1.24;
  font-weight: 800;
}

.scene-art {
  position: relative;
  display: block;
  width: 108px;
  height: 70px;
  opacity: 0.92;
}

.scene-art.boxes::before {
  right: 30px;
  bottom: 12px;
  width: 52px;
  height: 36px;
  background:
    linear-gradient(135deg, #ffbb63 0 50%, #ff9d2b 51%) left bottom / 24px 24px no-repeat,
    linear-gradient(135deg, #ffc776 0 50%, #f5a43c 51%) 26px 5px / 28px 28px no-repeat,
    #eaf2ff;
  border-radius: 8px;
}

.scene-art.boxes::after {
  right: 0;
  top: 4px;
  width: 48px;
  height: 64px;
  background: linear-gradient(180deg, #ffffff, #dceaff);
  border: 1px solid #c9ddfb;
  border-radius: 8px;
  transform: rotate(-8deg);
}

.scene-art.desk::before {
  right: 8px;
  bottom: 8px;
  width: 70px;
  height: 48px;
  background: #dfeaff;
  border-radius: 50% 50% 12px 12px;
}

.scene-art.desk::after {
  right: 42px;
  top: 12px;
  width: 26px;
  height: 26px;
  background: #3f7dff;
  border-radius: 50%;
  box-shadow: 18px 14px 0 10px #b9d3ff;
}

.scene-art.crane::before {
  right: 52px;
  top: 8px;
  width: 6px;
  height: 58px;
  background: var(--orange);
  box-shadow: 22px 20px 0 #dfeaff, 48px 12px 0 #c8ddfb;
}

.scene-art.crane::after {
  right: 22px;
  top: 8px;
  width: 76px;
  height: 5px;
  background: var(--orange);
  transform: rotate(8deg);
}

.scene-art.clipboard::before {
  right: 20px;
  top: 8px;
  width: 58px;
  height: 62px;
  background: #ffffff;
  border: 4px solid #78aaff;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(31, 93, 170, 0.16);
}

.scene-art.clipboard::after {
  right: 40px;
  top: 30px;
  width: 7px;
  height: 28px;
  background: #2f7bff;
  border-radius: 4px 4px 0 0;
  box-shadow: 13px -8px 0 #88baff, 26px 8px 0 #2f7bff;
}

.scene-art.people::before {
  right: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: #3a7cff;
  border-radius: 50%;
  box-shadow: -26px 10px 0 #94bdff, -54px 10px 0 #6ca6ff;
}

.scene-art.people::after {
  right: 12px;
  bottom: 12px;
  width: 92px;
  height: 28px;
  background: linear-gradient(180deg, #dceaff, #b9d3ff);
  border-radius: 24px;
}

.scene-art.phone-art::before {
  right: 32px;
  top: 5px;
  width: 42px;
  height: 68px;
  background:
    linear-gradient(#2f7bff 0 12px, transparent 12px),
    linear-gradient(90deg, #dfeaff 0 16px, transparent 16px 24px, #dfeaff 24px 40px) center 24px / 40px 16px no-repeat,
    #ffffff;
  border: 5px solid #163d84;
  border-radius: 11px;
}

.fit-section {
  padding-top: 10px;
  background: linear-gradient(180deg, #ffffff, #f1f8ff);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.fit-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #dfeafb;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.fit-icon.fast {
  background: #eaf2ff;
}

.fit-icon.fast::before {
  width: 36px;
  height: 36px;
  background: var(--blue);
  clip-path: polygon(50% 0, 78% 0, 60% 38%, 86% 38%, 34% 100%, 46% 56%, 18% 56%);
}

.fit-icon.connect {
  background: #e8fbf5;
}

.fit-icon.connect::before {
  width: 36px;
  height: 36px;
  border: 4px solid var(--green);
  border-radius: 50%;
}

.fit-icon.connect::after {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: -18px 0 0 var(--green), 18px 0 0 var(--green), 0 -18px 0 var(--green), 0 18px 0 var(--green);
}

.fit-icon.risk {
  background: #fff0e6;
}

.fit-icon.risk::before {
  width: 36px;
  height: 42px;
  background: #ff7d28;
  clip-path: polygon(50% 0, 90% 16%, 82% 72%, 50% 100%, 18% 72%, 10% 16%);
}

.fit-icon.risk::after {
  width: 16px;
  height: 10px;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(-45deg);
}

.flow-section {
  padding: 8px 0 0;
  background: #f8fbff;
}

.flow-track {
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr 38px 1fr 38px 1fr 38px 1.25fr;
  align-items: center;
  margin-top: 7px;
  padding: 0 58px;
  min-height: 54px;
  background: #ffffff;
  border: 1px solid #dfeafb;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(31, 93, 170, 0.07);
}

.flow-track i {
  width: 30px;
  height: 12px;
  background: linear-gradient(90deg, #c8dcff, #8cb8ff);
  clip-path: polygon(0 35%, 70% 35%, 70% 0, 100% 50%, 70% 100%, 70% 65%, 0 65%);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  color: #203a5e;
  font-size: 1rem;
  font-weight: 900;
}

.flow-step::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 900;
}

.flow-step small {
  grid-column: 2;
  margin-top: -6px;
  color: #6a7d98;
  font-size: 0.62rem;
  font-weight: 800;
}

.flow-step.customer::before { content: "客"; background: var(--blue); }
.flow-step.order::before { content: "单"; background: var(--green); }
.flow-step.contract::before { content: "合"; background: var(--purple); }
.flow-step.invoice::before { content: "票"; background: var(--orange); }
.flow-step.payment::before { content: "款"; background: #2f7bff; }
.flow-step.board::before { content: "图"; background: #4d8dff; }

.trial-banner {
  padding-top: 8px;
  background: #f8fbff;
}

.trial-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 70px;
  padding: 0 210px 0 64px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(100deg, #1e73ff 0%, #267dff 54%, #63adff 100%);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(31, 110, 255, 0.22);
}

.trial-inner h2 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.14;
  font-weight: 900;
}

.trial-inner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.trial-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
}

.trial-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 42px;
  border-radius: 7px;
  font-weight: 900;
}

.consult-btn {
  color: var(--blue);
  background: #ffffff;
}

.free-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.growth-art {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 160px;
  height: 70px;
  opacity: 0.82;
}

.growth-art::before {
  right: 10px;
  bottom: 8px;
  width: 10px;
  height: 26px;
  background: #9ed0ff;
  border-radius: 5px 5px 0 0;
  box-shadow: -18px 10px 0 #80bdff, -36px 17px 0 #6babff, -54px 24px 0 #8fd0ff;
}

.growth-art::after {
  right: 4px;
  bottom: 24px;
  width: 130px;
  height: 40px;
  border-top: 5px solid #d9efff;
  border-right: 5px solid #d9efff;
  border-radius: 0 28px 0 0;
  transform: rotate(-15deg);
}

.site-footer {
  padding: 18px 0 8px;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(340px, 1fr) 92px;
  gap: 72px;
  align-items: start;
}

.footer-brand p,
.footer-col a,
.footer-contact span,
.qr-card p,
.copyright {
  color: #6a7d98;
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-brand p {
  max-width: 280px;
  margin: 10px 0 0;
}

.social-dots {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.social-dots i {
  width: 24px;
  height: 24px;
  background: #c8d2df;
  border-radius: 50%;
}

.footer-col,
.footer-contact {
  display: grid;
  gap: 5px;
}

.footer-col strong,
.footer-contact strong {
  margin-bottom: 4px;
  color: #1d3150;
  font-size: 0.84rem;
  font-weight: 900;
}

.footer-contact span {
  display: block;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.qr-code {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 78px;
  height: 78px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #dfe9f8;
  border-radius: 8px;
}

.qr-code i {
  background: #13294b;
  border-radius: 2px;
}

.qr-code i:nth-child(2),
.qr-code i:nth-child(6),
.qr-code i:nth-child(8) {
  background: #e5eef9;
}

.qr-card p {
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.copyright {
  margin: 8px 0 0;
  text-align: center;
}

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

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

@media (max-width: 1500px) {
  .page-shell {
    width: min(1360px, calc(100% - 52px));
  }

  .header-inner {
    width: min(1360px, calc(100% - 52px));
  }

  .scenario-card {
    grid-template-columns: 62px 1fr 92px;
  }

  .trial-inner {
    padding-right: 160px;
  }
}

@media (max-width: 1200px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-toggle {
    display: grid;
    place-content: center;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 62px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: auto;
    padding: 13px 14px;
  }

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

  .trial-button {
    display: none;
  }

  .hero-layout,
  .scenario-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .device-stage {
    height: 320px;
  }

  .laptop {
    left: 0;
    right: auto;
  }

  .phone {
    right: 0;
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .flow-track i {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .page-shell,
  .header-inner {
    width: calc(100% - 28px);
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .nav-toggle {
    position: fixed;
    top: 11px;
    right: auto;
    left: min(calc(100vw - 54px), 336px);
    z-index: 70;
    border-color: #b9d2f8;
  }

  .hero-section {
    padding-top: 18px;
  }

  .eyebrow {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .hero-copy h1 {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    font-size: 1.64rem;
  }

  .hero-copy h1 span {
    display: block;
  }

  .hero-copy p {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-all;
  }

  .mobile-only {
    display: initial;
  }

  .hero-points {
    display: grid;
    gap: 12px;
  }

  .device-stage {
    height: auto;
    margin-top: 24px;
    overflow: hidden;
  }

  .laptop,
  .phone {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .laptop {
    width: 100%;
    max-width: 100%;
  }

  .laptop-screen {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 100%;
  }

  .laptop-screen aside,
  .laptop-base,
  .phone,
  .float-icon {
    display: none;
  }

  .mini-stats,
  .mini-panels {
    grid-template-columns: 1fr;
  }

  .scene-section h2,
  .fit-section h2,
  .flow-section h2 {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    font-size: 1.2rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-all;
  }

  .scenario-card {
    grid-template-columns: 54px 1fr;
    min-height: auto;
  }

  .scene-art {
    display: none;
  }

  .fit-grid article {
    padding: 14px 16px;
  }

  .flow-step {
    grid-template-columns: 42px 1fr;
  }

  .trial-inner {
    display: grid;
    padding: 22px;
  }

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

  .trial-actions a {
    width: 100%;
  }

  .growth-art {
    display: none;
  }

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