:root {
  --bg: #f3f8ff;
  --card: #ffffff;
  --ink: #071a3c;
  --text: #304864;
  --muted: #6d7f99;
  --line: #deebfb;
  --blue: #1e6fff;
  --blue-dark: #155adf;
  --cyan: #4eb8ff;
  --green: #14bd8d;
  --orange: #ff9820;
  --purple: #7b61ff;
  --red: #ff5b5b;
  --shadow: 0 18px 46px rgba(31, 93, 170, 0.12);
  --soft-shadow: 0 10px 28px rgba(31, 93, 170, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 14%, rgba(90, 174, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0, #edf6ff 42%, #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(1680px, calc(100% - 128px));
  margin: 0 auto;
}

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

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

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

.brand strong {
  color: #10264a;
  font-size: 1.5rem;
  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;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  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;
  padding: 12px 0 10px;
  border-bottom: 1px solid #dfeafb;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 44% 62%, rgba(30, 111, 255, 0.12), transparent 18%),
    linear-gradient(120deg, rgba(30, 111, 255, 0.1), transparent 48%),
    linear-gradient(180deg, #f7fbff, #edf6ff);
}

.hero-bg::after {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 520px;
  height: 360px;
  content: "";
  background:
    repeating-linear-gradient(160deg, rgba(30, 111, 255, 0.12) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 40% 40%, rgba(30, 111, 255, 0.2), transparent 52%);
  border-radius: 50%;
  opacity: 0.75;
}

.hero-bg .dot-a,
.hero-bg .dot-b {
  position: absolute;
  border-radius: 50%;
  background: rgba(30, 111, 255, 0.35);
}

.hero-bg .dot-a {
  left: 36%;
  top: 48%;
  width: 26px;
  height: 26px;
}

.hero-bg .dot-b {
  right: 5%;
  top: 18%;
  width: 14px;
  height: 14px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 260px;
}

.hero-copy,
.hero-dashboard,
.dash-screen,
.panel {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #071a3c;
  font-size: clamp(2.18rem, 2.15vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.hero-copy p {
  max-width: 580px;
  margin: 20px 0 0;
  color: #4f6685;
  font-size: 1rem;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 28px;
}

.hero-points span {
  position: relative;
  color: #34516f;
  font-weight: 800;
}

.hero-points span::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  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;
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 124px 1fr;
  overflow: hidden;
  min-height: 282px;
  background: #ffffff;
  border: 1px solid #d8e7f8;
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(31, 93, 170, 0.18);
}

.dark-sidebar {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 10px 9px;
  color: #b9c8dc;
  background: linear-gradient(180deg, #1b2a3e, #101926);
}

.dash-logo {
  min-height: 20px;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.66rem;
  line-height: 1.2;
  font-weight: 900;
}

.dark-sidebar span {
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 0.68rem;
  line-height: 1.15;
  font-weight: 800;
}

.dark-sidebar span.active {
  color: #ffffff;
  background: var(--blue);
}

.dash-screen {
  padding: 0 16px 12px;
  background: #f7fbff;
}

.dash-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  height: 34px;
}

.dash-top span {
  width: 15px;
  height: 15px;
  border: 2px solid #31435c;
  border-radius: 50%;
}

.dash-top .avatar-dot {
  width: 24px;
  height: 24px;
  border: 0;
  background:
    radial-gradient(circle at 50% 35%, #ffd0b6 0 28%, transparent 29%),
    radial-gradient(circle at 50% 100%, #2c74f5 0 42%, transparent 43%),
    #e9f2ff;
}

.dash-top strong {
  font-size: 0.78rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-row article,
.panel {
  background: #ffffff;
  border: 1px solid #e8f0fa;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(31, 93, 170, 0.04);
}

.stat-row article {
  min-height: 64px;
  padding: 10px 14px;
}

.stat-row span,
.stat-row em {
  display: block;
  color: #5e738d;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.stat-row strong {
  display: block;
  margin: 5px 0 3px;
  color: #111827;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 900;
}

.stat-row em {
  color: #10a776;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.85fr;
  gap: 12px;
  margin-top: 12px;
}

.panel {
  min-height: 132px;
  padding: 10px 13px;
}

.panel > strong {
  display: block;
  margin-bottom: 8px;
  color: #172b4d;
  font-size: 0.82rem;
  font-weight: 900;
}

.mini-line svg {
  display: block;
  width: 100%;
  height: 98px;
}

.mini-line .grid {
  fill: none;
  stroke: #e7eef8;
}

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

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

.donut-panel {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: center;
}

.donut-panel > strong {
  grid-column: 1 / -1;
}

.donut {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 56%, transparent 57%),
    conic-gradient(#2c74f5 0 45%, #6aa7ff 45% 80%, #f7a23a 80% 92%, #fb7c86 92% 100%);
}

.donut-panel ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: #445a75;
  list-style: none;
  font-size: 0.68rem;
  font-weight: 800;
}

.bars {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 88px;
  padding: 12px 20px 0;
}

.bars i {
  flex: 1;
  background: linear-gradient(180deg, #327cff, #1c68f2);
  border-radius: 5px 5px 0 0;
}

.feature-summary {
  padding: 12px 0 8px;
  background: #ffffff;
}

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

.summary-grid article,
.highlight-grid article,
.detail-card {
  background: #ffffff;
  border: 1px solid #dfeafb;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.summary-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 12px 16px;
}

.feature-icon,
.highlight-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

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

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

.feature-icon.customer::before {
  top: 9px;
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
}

.feature-icon.customer::after {
  bottom: 7px;
  width: 34px;
  height: 20px;
  background: linear-gradient(180deg, #5ca3ff, var(--blue));
  border-radius: 18px 18px 7px 7px;
}

.feature-icon.order,
.feature-icon.payment {
  background: #e8fbf5;
}

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

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

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

.feature-icon.contract::before {
  width: 30px;
  height: 32px;
  background: var(--purple);
  border-radius: 6px;
}

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

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

.feature-icon.invoice::before {
  width: 30px;
  height: 32px;
  background: var(--orange);
  border-radius: 6px;
}

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

.feature-icon.payment::before {
  width: 34px;
  height: 34px;
  background: #2cc070;
  clip-path: polygon(50% 0, 88% 14%, 82% 72%, 50% 100%, 18% 72%, 12% 14%);
}

.feature-icon.payment::after {
  content: "¥";
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-icon.board {
  background: #eaf2ff;
}

.feature-icon.board::before {
  bottom: 11px;
  left: 13px;
  width: 7px;
  height: 18px;
  background: var(--blue);
  border-radius: 4px 4px 0 0;
  box-shadow: 12px -8px 0 #5aa1ff, 24px -18px 0 #2c74f5;
}

.summary-grid strong,
.highlight-grid strong,
.detail-card strong {
  display: block;
  color: #172b4d;
  font-size: 0.96rem;
  font-weight: 900;
}

.summary-grid p,
.highlight-grid p,
.detail-card p,
.detail-card li {
  margin: 5px 0 0;
  color: #5f738e;
  font-size: 0.74rem;
  font-weight: 700;
}

.content-row {
  padding-top: 14px;
}

.row-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
}

.row-layout > h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.18;
  font-weight: 900;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px 24px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
}

.highlight-icon.flow {
  background: #eaf2ff;
}

.highlight-icon.flow::before {
  width: 30px;
  height: 30px;
  border: 4px solid var(--blue);
  border-top-color: transparent;
  border-radius: 8px;
}

.highlight-icon.data {
  background: #eaf2ff;
}

.highlight-icon.data::before {
  width: 34px;
  height: 12px;
  background: #3a86ff;
  border-radius: 50%;
  box-shadow: 0 12px 0 #5fa0ff, 0 24px 0 #84bbff;
}

.highlight-icon.risk {
  background: #eaf2ff;
}

.highlight-icon.risk::before {
  width: 38px;
  height: 44px;
  background: var(--blue);
  clip-path: polygon(50% 0, 90% 15%, 82% 72%, 50% 100%, 18% 72%, 10% 15%);
}

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

.highlight-icon.screen {
  background: #eaf2ff;
}

.highlight-icon.screen::before {
  width: 34px;
  height: 26px;
  border: 4px solid var(--blue);
  border-radius: 5px;
}

.highlight-icon.screen::after {
  bottom: 9px;
  width: 24px;
  height: 4px;
  background: var(--blue);
  border-radius: 999px;
}

.process-wrap {
  min-width: 0;
}

.process-track {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1.3fr;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  background: #ffffff;
  border: 1px solid #dfeafb;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(31, 93, 170, 0.05);
}

.process-track i {
  width: 34px;
  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%);
}

.process-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #203a5e;
  font-weight: 900;
}

.process-item::before {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.process-item.customer::before { content: "客"; background: #78aefb; }
.process-item.order::before { content: "单"; background: var(--green); }
.process-item.contract::before { content: "合"; background: var(--purple); }
.process-item.invoice::before { content: "票"; background: var(--orange); }
.process-item.payment::before { content: "¥"; background: #2cc070; }
.process-item.analysis::before { content: "图"; background: var(--blue); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.2fr 0.9fr 1.15fr 1.15fr;
  gap: 12px;
  margin-top: 8px;
}

.detail-card {
  min-height: 132px;
  padding: 10px 12px;
}

.detail-card.table-card {
  overflow: hidden;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 8px;
}

.tabs span {
  display: inline-flex;
  min-height: 18px;
  padding: 2px 8px;
  color: var(--blue);
  background: #eaf2ff;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
}

.tabs span:last-child {
  width: 14px;
  padding: 0;
  background: #dfe9f8;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #405671;
  font-size: 0.58rem;
  font-weight: 700;
}

th {
  color: #6d7f99;
  background: #f4f8fe;
  text-align: left;
}

th,
td {
  padding: 5px 5px;
  border-bottom: 1px solid #edf3fb;
  white-space: nowrap;
}

.note-card ul,
.board-card ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 10px;
  padding-left: 16px;
}

.note-card a,
.board-card a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.sub-title {
  margin-top: 8px;
}

.board-mini {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 10px;
  align-items: center;
}

.small-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 70px;
  padding: 10px;
}

.small-bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), #89bdff);
  border-radius: 4px 4px 0 0;
}

.small-bars i:nth-child(1) { height: 44%; }
.small-bars i:nth-child(2) { height: 76%; }
.small-bars i:nth-child(3) { height: 48%; }
.small-bars i:nth-child(4) { height: 82%; }
.small-bars i:nth-child(5) { height: 88%; }

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

.trial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 70px;
  padding: 0 clamp(42px, 21vw, 360px);
  color: #ffffff;
  background: linear-gradient(100deg, #1e73ff 0%, #267dff 48%, #2f8aff 100%);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(31, 110, 255, 0.22);
}

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

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

.trial-actions {
  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);
}

.site-footer {
  padding: 22px 0 16px;
  background: #ffffff;
}

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

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

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

.footer-col,
.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 7px 28px;
}

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

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

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

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

@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 (min-width: 1101px) {
  .detail-card {
    height: 170px;
    overflow: hidden;
  }
}

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

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

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

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

@media (max-width: 1100px) {
  .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,
  .row-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .header-inner {
    position: relative;
  }

  .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-copy h1 {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    font-size: 1.56rem;
    word-break: break-all;
  }

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

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

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

  .hero-dashboard {
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .dark-sidebar {
    display: none;
  }

  .dash-screen {
    width: 100%;
    overflow: hidden;
  }

  .stat-row,
  .analytics-grid,
  .summary-grid,
  .highlight-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .donut-panel {
    grid-template-columns: 1fr;
  }

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

  .process-track i {
    display: none;
  }

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

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

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