:root {
  --bg: #f4f9ff;
  --card: #ffffff;
  --ink: #071a3c;
  --text: #324766;
  --muted: #6d7f99;
  --line: #dfeafb;
  --blue: #1f6eff;
  --blue-dark: #1454dc;
  --cyan: #2ab4ff;
  --green: #11bfa7;
  --orange: #ff9a22;
  --red: #ff5b5b;
  --shadow: 0 18px 48px rgba(31, 93, 170, 0.12);
  --soft-shadow: 0 12px 30px rgba(31, 93, 170, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

.header-inner {
  display: grid;
  grid-template-columns: 270px 1fr 118px;
  align-items: center;
  width: min(1400px, calc(100% - 220px));
  height: 100%;
  margin: 0 auto;
}

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

.logo-mark,
.mini-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-mark {
  width: 34px;
  height: 34px;
}

.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-mark path:first-child {
  fill: var(--blue);
}

.logo-mark path:last-child {
  fill: #ffffff;
}

.brand strong {
  color: #0a2450;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.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 {
  opacity: 0.9;
  white-space: nowrap;
}

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

.trial-button,
.primary-action,
.demo-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.trial-button {
  justify-self: end;
  min-width: 102px;
  height: 36px;
  color: #ffffff;
  background: linear-gradient(180deg, #2d7cff, #155ee8);
  box-shadow: 0 8px 18px rgba(31, 110, 255, 0.24);
  font-size: 0.9rem;
}

.trial-button:hover,
.primary-action:hover,
.demo-action:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  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 {
  padding: 24px 0 8px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 70px;
  align-items: center;
  min-height: 382px;
}

.hero-copy {
  padding: 12px 0 0 28px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.55rem, 3vw, 3rem);
  line-height: 1.22;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

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

.hero-copy h1 span {
  color: #071a3c;
  font-weight: 900;
}

.hero-copy h1 strong {
  color: #1265ff;
  font-weight: 900;
}

.hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #587092;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-action {
  min-width: 166px;
  height: 50px;
  color: #ffffff;
  background: linear-gradient(180deg, #2f7fff, #155ee8);
  box-shadow: 0 12px 28px rgba(31, 110, 255, 0.24);
  font-size: 1rem;
}

.demo-action {
  min-width: 180px;
  height: 50px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid #3f86ff;
  box-shadow: 0 8px 20px rgba(31, 110, 255, 0.08);
  font-size: 1rem;
}

.play-icon {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--blue);
  transform: translate(-35%, -50%);
}

.dashboard-card {
  overflow: hidden;
  height: 376px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d8e6fa;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(31, 93, 170, 0.18);
}

.dashboard-top {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 20px;
  height: 52px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e4edf9;
}

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

.mini-logo {
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 60% 60%, #ffffff 0 24%, transparent 26%),
    var(--blue);
  border-radius: 50% 50% 45% 45%;
}

.mini-brand strong {
  color: #163865;
  font-size: 0.82rem;
  white-space: nowrap;
}

.search-box {
  max-width: 250px;
  height: 28px;
  padding: 6px 14px;
  color: #9aa9bc;
  background: #ffffff;
  border: 1px solid #e0e8f5;
  border-radius: 6px;
  font-size: 0.72rem;
}

.top-icons {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #1f3352;
  font-size: 0.82rem;
}

.bell {
  position: relative;
  width: 16px;
  height: 18px;
  color: transparent;
  border: 2px solid #243756;
  border-bottom: 0;
  border-radius: 9px 9px 4px 4px;
}

.bell::after {
  position: absolute;
  top: -8px;
  right: -9px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  content: attr(aria-label);
  color: #ffffff;
  background: #ff4747;
  border-radius: 50%;
  font-size: 0;
}

.bell::before {
  position: absolute;
  top: -7px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  content: "12";
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 900;
}

.avatar {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #ffd4bd 0 28%, transparent 29%),
    radial-gradient(circle at 50% 92%, #2e6ff2 0 44%, transparent 45%),
    #f7d6c5;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.top-icons i {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #1f3352;
  border-bottom: 1.5px solid #1f3352;
  transform: rotate(45deg) translateY(-2px);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  height: calc(100% - 52px);
}

.side-menu {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 16px 14px;
  background: #f3f8ff;
  border-right: 1px solid #e0e9f6;
}

.side-menu span {
  display: flex;
  align-items: center;
  min-height: 31px;
  padding: 0 14px;
  color: #526983;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
}

.side-menu span::before {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  content: "";
  background: currentColor;
  border-radius: 3px;
  opacity: 0.66;
}

.side-menu .active {
  color: var(--blue);
  background: #ffffff;
}

.dash-main {
  overflow: hidden;
  padding: 14px 22px;
  background: #fbfdff;
}

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

.metrics article,
.chart-box,
.today-box {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(31, 93, 170, 0.04);
}

.metrics article {
  position: relative;
  min-height: 82px;
  padding: 12px 16px;
}

.metrics span,
.metrics em {
  display: block;
  color: #5c6f89;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.metrics strong {
  display: block;
  margin: 7px 0 3px;
  color: #111827;
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 900;
}

.metrics .up-red {
  color: #ff4f5d;
}

.metrics .up-green {
  color: #12b886;
}

.ring-card {
  padding-right: 70px !important;
}

.progress-ring {
  position: absolute;
  right: 18px;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 57%, transparent 58%),
    conic-gradient(var(--blue) 0 73%, #dce8ff 73% 100%);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  margin-top: 14px;
}

.chart-box,
.today-box {
  min-height: 174px;
  padding: 14px 16px 12px;
}

.box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.box-head strong {
  color: #172b4d;
  font-size: 0.94rem;
  font-weight: 900;
}

.box-head button,
.box-head a {
  min-height: 24px;
  padding: 0 10px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid #dbe7f7;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.line-chart {
  margin-top: 8px;
}

.line-chart svg {
  display: block;
  width: 100%;
  height: 118px;
}

.grid-line {
  fill: none;
  stroke: #edf2f9;
  stroke-width: 1;
}

.area {
  fill: rgba(31, 110, 255, 0.1);
}

.line {
  fill: none;
  stroke: #347dff;
  stroke-width: 3;
}

.dots circle {
  fill: #ffffff;
  stroke: #347dff;
  stroke-width: 2;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #6c7d95;
  font-size: 0.66rem;
  font-weight: 700;
}

.focus-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.focus-list div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.focus-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.focus-icon.red {
  background: #f35f5f;
}

.focus-icon.orange {
  background: #ffa62b;
}

.focus-icon.blue {
  background: #3b82ff;
}

.focus-list p,
.focus-list strong,
.focus-list em {
  display: block;
  margin: 0;
}

.focus-list strong {
  color: #21324d;
  font-size: 0.82rem;
  font-weight: 900;
}

.focus-list em {
  margin-top: 2px;
  color: #7c8da6;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.advantage-strip {
  padding: 0 0 28px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  min-height: 78px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dce9f8;
  border-radius: 13px;
  box-shadow: var(--soft-shadow);
}

.advantage-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 16px 34px;
  border-right: 1px solid #e7eef8;
}

.advantage-grid article:last-child {
  border-right: 0;
}

.round-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  background: #eaf7ff;
  border-radius: 50%;
}

.round-icon::before,
.round-icon::after {
  position: absolute;
  content: "";
}

.round-icon.leaf::before {
  width: 25px;
  height: 17px;
  background: var(--green);
  border-radius: 100% 0 100% 0;
  transform: rotate(-28deg);
}

.round-icon.leaf::after {
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform: rotate(-38deg);
}

.round-icon.link::before,
.round-icon.link::after {
  width: 18px;
  height: 10px;
  border: 4px solid var(--blue);
  border-radius: 999px;
}

.round-icon.link::before {
  transform: translate(-5px, 5px) rotate(-42deg);
}

.round-icon.link::after {
  transform: translate(5px, -5px) rotate(-42deg);
}

.round-icon.chart::before {
  bottom: 14px;
  left: 14px;
  width: 8px;
  height: 20px;
  background: #7db9ff;
  border-radius: 4px 4px 0 0;
  box-shadow: 12px -8px 0 #4b96ff, 24px -18px 0 var(--blue);
}

.round-icon.team::before {
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: -13px 8px 0 #74b0ff, 13px 8px 0 #74b0ff;
  transform: translateY(-7px);
}

.round-icon.team::after {
  width: 38px;
  height: 16px;
  background: var(--blue);
  border-radius: 20px 20px 7px 7px;
  transform: translateY(14px);
}

.advantage-grid strong {
  display: block;
  color: #162b4a;
  font-size: 1rem;
  font-weight: 900;
}

.advantage-grid p {
  margin: 4px 0 0;
  color: #718198;
  font-size: 0.82rem;
  font-weight: 700;
}

.content-section {
  padding: 0;
}

.section-row {
  margin-top: 26px;
}

.two-col-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: start;
}

.two-col-row > h2 {
  margin: 10px 0 0;
  color: #071a3c;
  font-size: 1.45rem;
  line-height: 1.18;
  font-weight: 900;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.feature-cards article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #dfe9f8;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 93, 170, 0.06);
}

.feature-icon,
.why-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.feature-icon::before,
.feature-icon::after,
.why-icon::before,
.why-icon::after {
  position: absolute;
  content: "";
}

.feature-icon.customer {
  background: #e9f2ff;
}

.feature-icon.customer::before {
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-10px);
}

.feature-icon.customer::after {
  width: 38px;
  height: 24px;
  background: linear-gradient(180deg, #57a1ff, var(--blue));
  border-radius: 24px 24px 9px 9px;
  transform: translateY(13px);
}

.feature-icon.order {
  background: #e8fbf7;
}

.feature-icon.order::before {
  width: 28px;
  height: 34px;
  background: var(--green);
  border-radius: 7px;
}

.feature-icon.order::after {
  width: 18px;
  height: 3px;
  background: #ffffff;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
}

.feature-icon.contract {
  background: #f0eaff;
}

.feature-icon.contract::before {
  width: 30px;
  height: 34px;
  background: #8a63f7;
  border-radius: 6px;
}

.feature-icon.contract::after {
  width: 15px;
  height: 3px;
  background: #ffffff;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
  transform: translateX(2px);
}

.feature-icon.invoice {
  background: #fff4e5;
}

.feature-icon.invoice::before {
  width: 29px;
  height: 33px;
  background: var(--orange);
  border-radius: 7px 7px 4px 4px;
}

.feature-icon.invoice::after {
  width: 18px;
  height: 3px;
  background: #ffffff;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
}

.feature-icon.payment {
  background: #e8fbf7;
}

.feature-icon.payment::before {
  width: 36px;
  height: 28px;
  background: var(--green);
  border-radius: 8px;
}

.feature-icon.payment::after {
  width: 12px;
  height: 12px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  transform: translateX(6px);
}

.feature-icon.report {
  background: #e9f2ff;
}

.feature-icon.report::before {
  width: 50px;
  height: 50px;
  background: conic-gradient(var(--blue) 0 74%, #9ed0ff 74% 100%);
  border-radius: 50%;
}

.feature-icon.report::after {
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
}

.feature-cards strong,
.why-cards strong,
.people-cards strong {
  display: block;
  color: #172b4d;
  font-size: 1rem;
  font-weight: 900;
}

.feature-cards p,
.why-cards p,
.people-cards p {
  margin: 5px 0 0;
  color: #637792;
  font-size: 0.78rem;
  font-weight: 700;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.why-cards article {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 96px;
  padding: 16px 28px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  border: 1px solid #dbeafa;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(31, 93, 170, 0.05);
}

.why-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
}

.why-icon.rocket::before {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4e8dff, #1f6eff);
  clip-path: polygon(50% 0, 80% 16%, 86% 48%, 60% 78%, 50% 100%, 40% 78%, 14% 48%, 20% 16%);
  transform: rotate(45deg);
}

.why-icon.rocket::after {
  width: 18px;
  height: 18px;
  background: #cce6ff;
  border-radius: 50%;
  transform: translate(2px, -4px);
}

.why-icon.bars::before {
  bottom: 15px;
  left: 14px;
  width: 12px;
  height: 22px;
  background: var(--green);
  border-radius: 5px 5px 0 0;
  box-shadow: 20px -14px 0 #2bd3c3, 40px -28px 0 #35c6e8;
}

.why-icon.bars::after {
  bottom: 11px;
  left: 12px;
  width: 58px;
  height: 4px;
  background: #14a799;
  border-radius: 999px;
}

.why-icon.shield::before {
  width: 58px;
  height: 66px;
  background: #2c74f5;
  clip-path: polygon(50% 0, 92% 15%, 85% 70%, 50% 100%, 15% 70%, 8% 15%);
}

.why-icon.shield::after {
  width: 25px;
  height: 13px;
  border-left: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  transform: rotate(-45deg) translate(2px, -2px);
}

.people-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.people-cards article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #dfe9f8;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(31, 93, 170, 0.05);
}

.person-avatar {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 58px;
  height: 68px;
  overflow: hidden;
  border-radius: 18px 18px 14px 14px;
  background: #eaf4ff;
}

.person-avatar::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 32px;
  height: 32px;
  content: "";
  background: #ffd1b6;
  border-radius: 50%;
  transform: translateX(-50%);
}

.person-avatar::after {
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 50px;
  height: 34px;
  content: "";
  background: #2d6cdf;
  border-radius: 22px 22px 0 0;
  transform: translateX(-50%);
}

.person-avatar.boss {
  background:
    radial-gradient(circle at 50% 12px, #171717 0 18px, transparent 19px),
    #eaf4ff;
}

.person-avatar.sales::after {
  background: #2aa7ff;
}

.person-avatar.finance::after {
  background: #58a0f0;
}

.person-avatar.finance {
  background:
    radial-gradient(circle at 50% 14px, #9b3b28 0 19px, transparent 20px),
    #fff0ef;
}

.person-avatar.startup::before {
  box-shadow: inset 0 0 0 3px transparent;
}

.person-avatar.startup {
  background:
    radial-gradient(circle at 50% 14px, #1e1e1e 0 18px, transparent 19px),
    #eff5ff;
}

.trial-banner {
  margin-top: 16px;
}

.trial-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 300px;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  overflow: hidden;
  padding: 0 92px 0 112px;
  color: #ffffff;
  background: linear-gradient(100deg, #1672ff 0%, #3f92ff 54%, #92cbff 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.2;
  font-weight: 900;
}

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

.trial-inner > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 144px;
  height: 42px;
  color: var(--blue);
  background: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

.banner-art {
  position: absolute;
  right: 90px;
  bottom: -38px;
  width: 310px;
  height: 110px;
  opacity: 0.65;
}

.banner-art i {
  position: absolute;
  bottom: 0;
  width: 140px;
  height: 86px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  transform: rotate(-10deg);
}

.banner-art i::before {
  position: absolute;
  top: 24px;
  left: 30px;
  width: 72px;
  height: 10px;
  content: "";
  background: #62a8ff;
  border-radius: 999px;
  box-shadow: 0 22px 0 rgba(98, 168, 255, 0.65);
}

.banner-art i:last-child {
  right: 0;
  bottom: 8px;
  transform: rotate(-8deg);
}

.banner-art i:last-child::before {
  top: 18px;
  width: 10px;
  height: 48px;
  border-radius: 5px 5px 0 0;
  box-shadow: 22px -10px 0 #62a8ff, 44px -20px 0 #62a8ff;
}

.site-footer {
  padding: 28px 0 12px;
  background: #ffffff;
}

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

.footer-brand .brand strong {
  font-size: 1.35rem;
}

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

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

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

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

.qr-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qr-code {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  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;
  line-height: 1.45;
}

.copyright {
  margin-top: 20px;
  color: #8a9ab1;
  text-align: center;
  font-size: 0.76rem;
}

@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: 1280px) {
  .page-shell,
  .header-inner {
    width: min(1180px, calc(100% - 48px));
  }

  .header-inner {
    grid-template-columns: 250px 1fr 112px;
  }

  .site-nav {
    gap: 30px;
  }

  .hero-layout {
    gap: 36px;
  }

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

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

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

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

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 58px;
    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 {
    padding: 13px 14px;
  }

  .trial-button {
    display: none;
  }

  .hero-layout,
  .two-col-row {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 0;
  }

  .dashboard-card {
    height: auto;
    min-height: auto;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .side-menu {
    display: none;
  }

  .metrics,
  .dash-grid,
  .advantage-grid,
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .two-col-row > h2 {
    margin-top: 0;
  }

  .trial-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .banner-art {
    display: none;
  }
}

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

  .site-header {
    height: 62px;
  }

  .site-nav {
    top: 62px;
    right: 14px;
    left: 14px;
  }

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

  .hero-copy h1 {
    max-width: 330px;
    font-size: 2rem;
    line-height: 1.18;
  }

  .hero-copy h1 span,
  .hero-copy h1 strong {
    word-break: break-all;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 1rem;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .advantage-grid,
  .metrics,
  .dash-grid,
  .feature-cards,
  .why-cards,
  .people-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .demo-action {
    width: 100%;
  }

  .dashboard-top {
    grid-template-columns: 1fr;
    height: auto;
    gap: 10px;
    padding: 14px;
  }

  .search-box,
  .top-icons {
    display: none;
  }

  .dash-main {
    padding: 14px;
  }

  .ring-card {
    padding-right: 16px !important;
  }

  .progress-ring {
    display: none;
  }

  .advantage-grid article,
  .feature-cards article,
  .why-cards article,
  .people-cards article {
    padding: 16px;
  }

  .trial-inner h2 {
    font-size: 1.18rem;
  }
}
