:root {
  --bg: #f2f8ff;
  --bg-soft: #e8f2ff;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --line: rgba(41, 116, 214, 0.14);
  --text: #173153;
  --muted: #5f7697;
  --primary: #2c92ff;
  --primary-strong: #0f72ea;
  --accent: #66c8ff;
  --success: #14b87d;
  --warning: #f5b94f;
  --shadow: 0 24px 70px rgba(34, 93, 179, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("material-symbols.woff2") format("woff2");
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-size: 0;
  width: 1.2em;
  height: 1.2em;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

.material-symbols-outlined::before {
  content: attr(data-fallback);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Apple Color Emoji", "Noto Sans Symbols", sans-serif;
}

html.icon-font-ready .material-symbols-outlined {
  font-size: inherit;
}

html.icon-font-ready .material-symbols-outlined::before {
  content: "";
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei UI", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(44, 146, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(102, 200, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eff6ff 48%, #f4f8ff 100%);
  color: var(--text);
  line-height: 1.65;
}

body.home-page {
  background:
    radial-gradient(circle at top left, rgba(34, 194, 255, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(139, 224, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #f9fdff 0%, #eef8ff 52%, #f7fbff 100%);
}

html.dark body.home-page {
  background:
    radial-gradient(circle at top left, rgba(18, 186, 242, 0.12), transparent 22%),
    linear-gradient(180deg, #0e2027 0%, #10252d 56%, #17323d 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(41, 116, 214, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 10px 24px rgba(28, 124, 236, 0.22));
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(44, 146, 255, 0.1);
}

.nav-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 16px 40px rgba(23, 123, 235, 0.24);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.btn-link {
  padding: 0;
  min-height: auto;
  color: var(--accent);
}

.hero,
.page-hero {
  padding: 82px 0 42px;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 14px;
  background: rgba(44, 146, 255, 0.06);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-kicker {
  border-color: rgba(44, 146, 255, 0.18);
  background: linear-gradient(135deg, rgba(44, 146, 255, 0.08), rgba(102, 200, 255, 0.14));
  box-shadow: 0 14px 30px rgba(44, 146, 255, 0.08);
}

.hero-stitch {
  background:
    radial-gradient(circle at top center, rgba(13, 185, 242, 0.18), transparent 24%),
    radial-gradient(circle at left bottom, rgba(44, 146, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #102126 0%, #10262b 54%, #12292f 100%);
}

html:not(.dark) .hero-stitch {
  background:
    radial-gradient(circle at top center, rgba(13, 185, 242, 0.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(44, 146, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #eef6ff 52%, #f7fbff 100%);
}

body.home-page .hero-stitch {
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 224, 255, 0.28), transparent 22%),
    radial-gradient(circle at 8% 88%, rgba(62, 140, 217, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfeff 0%, #f1f9ff 50%, #edf7ff 100%);
}

html.dark body.home-page .hero-stitch {
  background:
    radial-gradient(circle at 50% 0%, rgba(64, 214, 255, 0.2), transparent 22%),
    radial-gradient(circle at 10% 86%, rgba(40, 125, 184, 0.16), transparent 28%),
    linear-gradient(180deg, #102228 0%, #0f2027 54%, #17343f 100%);
}

html:not(.dark) body.home-page .hero-stitch {
  position: relative;
}

html.dark body.home-page .hero-stitch {
  position: relative;
}

body.home-page .hero-stitch::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(237, 247, 252, 0) 0%, rgba(237, 247, 252, 0.76) 62%, #ffffff 100%);
}

html.dark body.home-page .hero-stitch::after {
  background: linear-gradient(180deg, rgba(15, 32, 39, 0) 0%, rgba(15, 32, 39, 0.3) 52%, #101e22 100%);
}

.hero-kicker-dark {
  border-color: rgba(81, 197, 255, 0.2);
  background: rgba(13, 185, 242, 0.12);
  color: #28c5ff;
  box-shadow: 0 16px 34px rgba(13, 185, 242, 0.08);
}

body.home-page .hero-kicker-dark {
  border-color: rgba(93, 204, 247, 0.28);
  background: rgba(225, 247, 255, 0.9);
  color: #0b93ce;
  box-shadow: 0 18px 38px rgba(70, 141, 177, 0.08);
}

html.dark body.home-page .hero-kicker-dark {
  border-color: rgba(95, 209, 255, 0.22);
  background: rgba(17, 163, 214, 0.14);
  color: #6ddcff;
  box-shadow: 0 18px 38px rgba(4, 16, 22, 0.14);
}

html:not(.dark) .hero-kicker-dark {
  border-color: rgba(44, 146, 255, 0.16);
  background: rgba(44, 146, 255, 0.08);
  color: #1097da;
}

.hero-title {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-title-dark {
  color: #f8fcff;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

html:not(.dark) .hero-title-dark {
  color: #112035;
}

body.home-page .hero-title-dark,
html:not(.dark) body.home-page .hero-title-dark {
  color: #10213d;
}

.hero-title-dark span {
  color: #28c5ff;
}

html:not(.dark) .hero-title-dark span {
  color: #12a8ec;
}

body.home-page .hero-title-dark span,
html:not(.dark) body.home-page .hero-title-dark span {
  color: #11b3ee;
}

html.dark body.home-page .hero-title-dark {
  color: #f8fcff;
}

html.dark body.home-page .hero-title-dark span {
  color: #39cfff;
}

.hero-description {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.6;
  color: #46617f;
  text-wrap: balance;
}

.hero-description-dark {
  max-width: 1080px;
  color: rgba(235, 244, 249, 0.9);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.62;
}

html:not(.dark) .hero-description-dark {
  color: #4a6480;
}

body.home-page .hero-description-dark,
html:not(.dark) body.home-page .hero-description-dark {
  color: #55708e;
}

html.dark body.home-page .hero-description-dark {
  color: rgba(230, 243, 249, 0.88);
}

.hero-cta-primary,
.hero-cta-secondary {
  min-height: 84px;
  padding: 0 36px;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.hero-cta-primary {
  position: relative;
  overflow: hidden;
  color: #0b2340 !important;
  font-weight: 800;
  border: 1px solid rgba(11, 35, 64, 0.06);
  background: linear-gradient(135deg, #38d0ff 0%, #17a9ec 52%, #1097da 100%);
  box-shadow:
    0 22px 45px rgba(23, 123, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-cta-primary-dark {
  min-height: 94px;
  padding: 0 48px;
  border-radius: 34px;
  font-size: 22px;
  font-weight: 900;
  color: #0b2538 !important;
  background: linear-gradient(135deg, #53d5ff 0%, #1ab5f1 56%, #1496db 100%);
  box-shadow:
    0 28px 60px rgba(13, 185, 242, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

body.home-page .hero-cta-primary-dark {
  box-shadow:
    0 22px 48px rgba(40, 172, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

html.dark body.home-page .hero-cta-primary-dark {
  box-shadow:
    0 24px 54px rgba(13, 185, 242, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

html:not(.dark) .hero-cta-primary-dark {
  color: #0b2538 !important;
  box-shadow:
    0 26px 54px rgba(13, 185, 242, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hero-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 46%);
  pointer-events: none;
}

.hero-cta-primary .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(11, 35, 64, 0.08);
  font-size: 18px;
}

.hero-cta-primary-dark .material-symbols-outlined {
  width: 42px;
  height: 42px;
  font-size: 20px;
  background: rgba(11, 37, 56, 0.1);
}

.hero-cta-secondary {
  color: #19324f;
  font-weight: 750;
  border: 1px solid rgba(41, 116, 214, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(34, 93, 179, 0.08);
}

.hero-cta-secondary:hover {
  border-color: rgba(44, 146, 255, 0.26);
  background: #ffffff;
}

.hero-cta-secondary-dark {
  min-height: 94px;
  padding: 0 44px;
  border-radius: 34px;
  color: #eef8ff;
  font-size: 20px;
  font-weight: 800;
  border-color: rgba(120, 173, 196, 0.16);
  background: rgba(18, 39, 45, 0.6);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

body.home-page .hero-cta-secondary-dark {
  color: #31506f;
  border-color: rgba(193, 215, 226, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(82, 145, 178, 0.08);
}

html:not(.dark) .hero-cta-secondary-dark {
  color: #1f3854;
  border-color: rgba(41, 116, 214, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

html.dark body.home-page .hero-cta-secondary-dark {
  border-color: rgba(132, 182, 202, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #eef8ff;
  box-shadow: inset 0 0 0 1px rgba(148, 202, 224, 0.03);
}

.hero-cta-secondary-dark:hover {
  background: rgba(24, 49, 56, 0.78);
  border-color: rgba(120, 173, 196, 0.28);
}

html:not(.dark) .hero-cta-secondary-dark:hover {
  background: #ffffff;
  border-color: rgba(44, 146, 255, 0.24);
}

html:not(.dark) body.home-page .hero-cta-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(120, 188, 216, 0.92);
}

html.dark body.home-page .hero-cta-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(132, 182, 202, 0.26);
}

.hero-proof-grid {
  max-width: 1180px !important;
  margin-top: 22px;
}

.hero-proof-grid-dark {
  max-width: 1360px !important;
}

body.home-page .hero-proof-grid-dark {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  margin-bottom: -86px;
}

.hero-proof-card {
  min-height: 78px;
  padding: 18px 22px;
  border: 1px solid rgba(41, 116, 214, 0.12);
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 16px 34px rgba(34, 93, 179, 0.08);
}

.hero-proof-card .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(44, 146, 255, 0.1);
  font-size: 17px;
}

.hero-proof-card span:last-child {
  font-size: 16px !important;
  font-weight: 700;
  color: #2f4b68 !important;
}

.hero-proof-card-dark {
  min-height: 104px;
  padding: 22px 24px;
  border-radius: 24px;
  border-color: rgba(166, 202, 219, 0.12);
  background: rgba(249, 252, 255, 0.98) !important;
  box-shadow: 0 24px 48px rgba(5, 17, 23, 0.18);
}

body.home-page .hero-proof-card-dark {
  border-color: rgba(210, 229, 239, 0.95);
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 18px 42px rgba(60, 117, 152, 0.1);
}

html:not(.dark) .hero-proof-card-dark {
  border-color: rgba(41, 116, 214, 0.12);
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 18px 38px rgba(34, 93, 179, 0.1);
}

html.dark body.home-page .hero-proof-card-dark {
  border-color: rgba(146, 188, 206, 0.18);
  background: rgba(248, 252, 255, 0.08) !important;
  box-shadow: 0 18px 42px rgba(5, 17, 23, 0.18);
  backdrop-filter: blur(18px);
}

.hero-proof-card-dark .material-symbols-outlined {
  width: 38px;
  height: 38px;
  font-size: 21px;
  background: rgba(13, 185, 242, 0.1);
}

body.home-page .hero-proof-card-dark .material-symbols-outlined {
  background: rgba(13, 185, 242, 0.1);
  color: #11b3ee;
}

html.dark body.home-page .hero-proof-card-dark .material-symbols-outlined {
  background: rgba(13, 185, 242, 0.16);
  color: #6adcff;
}

.hero-proof-card-dark span:last-child {
  font-size: 18px !important;
  font-weight: 800;
  color: #234360 !important;
}

body.home-page .hero-proof-card-dark span:last-child,
html:not(.dark) body.home-page .hero-proof-card-dark span:last-child {
  color: #264768 !important;
}

html.dark body.home-page .hero-proof-card-dark span:last-child {
  color: #edf7fc !important;
}

body.home-page .hero-stitch + .home-core-section {
  position: relative;
  padding-top: 152px;
}

html:not(.dark) body.home-page .hero-stitch + .home-core-section {
  background: linear-gradient(180deg, #f3f9fd 0px, #f6fbff 96px, #ffffff 188px) !important;
}

html.dark body.home-page .hero-stitch + .home-core-section {
  background: linear-gradient(180deg, #10242c 0px, #101e22 180px) !important;
}

.hero-metrics,
.metric-grid,
.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.metric,
.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
}

.metric strong,
.stat-card strong {
  display: block;
  font-size: 28px;
}

.metric span,
.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -40% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(44, 146, 255, 0.18), transparent 70%);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(41, 116, 214, 0.25);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
}

.sidebar,
.chart-card,
.table-card,
.mini-card {
  background: rgba(235, 244, 255, 0.9);
  border: 1px solid rgba(41, 116, 214, 0.1);
  border-radius: var(--radius-md);
}

.sidebar {
  padding: 16px;
}

.sidebar .menu-line,
.table-line,
.release-item,
.list-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(44, 146, 255, 0.28), rgba(102, 200, 255, 0.08));
  margin-bottom: 12px;
}

.menu-line.short,
.table-line.short,
.list-line.short {
  width: 62%;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.chart-card,
.table-card,
.mini-card {
  padding: 16px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 180px;
}

.chart-bars span {
  display: block;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, var(--accent), var(--primary-strong));
}

.section {
  padding: 42px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 780px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.feature-detail,
.price-card,
.faq-item,
.download-card,
.story-card,
.form-card,
.contact-card,
.case-card,
.step-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card,
.feature-detail,
.faq-item,
.download-card,
.story-card,
.form-card,
.contact-card,
.case-card,
.step-card {
  padding: 24px;
}

.card h3,
.feature-detail h3,
.price-card h3,
.faq-item h3,
.download-card h3,
.story-card h3,
.form-card h3,
.contact-card h3,
.case-card h3,
.step-card h3 {
  margin: 0 0 10px;
}

.icon-chip {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(39, 195, 255, 0.12);
  border: 1px solid rgba(39, 195, 255, 0.18);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}

.tag-row,
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(44, 146, 255, 0.05);
  font-size: 14px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(39, 195, 255, 0.12);
  border: 1px solid rgba(39, 195, 255, 0.18);
  color: var(--accent);
  margin-bottom: 16px;
}

.quote {
  padding: 22px;
  border-left: 4px solid var(--primary);
  color: #23486e;
  background: rgba(44, 146, 255, 0.06);
  border-radius: var(--radius-md);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  border-color: rgba(39, 195, 255, 0.42);
  transform: translateY(-6px);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(39, 195, 255, 0.15);
  color: var(--accent);
  font-size: 13px;
}

.price {
  margin: 14px 0;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.price small {
  font-size: 15px;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--success);
}

.faq-grid,
.download-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.download-panel {
  padding: 28px;
}

.sys-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.sys-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(135, 193, 255, 0.1);
  border-radius: var(--radius-md);
}

.release-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.release-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(41, 116, 214, 0.12);
  background: rgba(244, 249, 255, 0.95);
}

.release-card strong {
  display: block;
  margin-bottom: 6px;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.founder-card {
  padding: 28px;
  text-align: center;
}

.avatar {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(39, 195, 255, 0.2), rgba(128, 245, 255, 0.08));
  border: 1px solid rgba(39, 195, 255, 0.22);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.timeline-item {
  padding-left: 20px;
  border-left: 2px solid rgba(39, 195, 255, 0.24);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.benefit {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(41, 116, 214, 0.12);
  background: rgba(244, 249, 255, 0.95);
}

.site-form {
  display: grid;
  gap: 14px;
}

.site-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid rgba(41, 116, 214, 0.18);
  background: rgba(248, 252, 255, 0.98);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.site-form input::placeholder,
.site-form textarea::placeholder {
  color: #7f93b0;
}

.site-form textarea {
  min-height: 118px;
  resize: vertical;
}

.form-tip,
.foot-note {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(41, 116, 214, 0.12);
  margin-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.footer-grid h4 {
  margin: 0 0 10px;
}

.footer-grid p,
.footer-grid li {
  color: var(--muted);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.highlight {
  color: var(--accent);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 195, 255, 0.35), transparent);
  margin: 32px 0;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(44, 146, 255, 0.18);
  color: #25527e;
  background: rgba(44, 146, 255, 0.08);
}

.qr-placeholder {
  width: 148px;
  height: 148px;
  margin: 0 auto 14px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-strong);
  background:
    linear-gradient(135deg, rgba(44, 146, 255, 0.14), rgba(102, 200, 255, 0.08)),
    #ffffff;
  border: 1px dashed rgba(44, 146, 255, 0.28);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .download-grid,
  .about-grid,
  .form-layout,
  .footer-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .price-grid,
  .workflow,
  .hero-metrics,
  .metric-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sys-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-bottom: 12px;
  }

  .site-nav.open {
    display: grid;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .card-grid,
  .price-grid,
  .workflow,
  .hero-metrics,
  .metric-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  body.home-page .hero-proof-grid-dark {
    margin-bottom: 0;
  }

  body.home-page .hero-stitch + .home-core-section {
    padding-top: 68px;
  }

  body.home-page .hero-cta-primary-dark,
  body.home-page .hero-cta-secondary-dark {
    min-height: 78px;
    padding: 0 28px;
    font-size: 18px;
    border-radius: 28px;
  }
}
