:root {
  --ink: #0a2540;
  --ink-soft: #425466;
  --muted: #697386;
  --line: #dfe6f2;
  --line-soft: rgba(123, 141, 166, 0.18);
  --panel: rgba(255, 255, 255, 0.86);
  --panel-solid: #ffffff;
  --blue: #2563eb;
  --blue-dark: #0a3fbf;
  --coral: #ff5c4d;
  --green: #16b981;
  --orange: #f59e0b;
  --purple: #7c3aed;
  --shadow: 0 24px 70px rgba(23, 38, 73, 0.12);
  --shadow-soft: 0 16px 42px rgba(23, 38, 73, 0.08);
  --font-saas:
    "Geist", "Satoshi", "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial,
    "HarmonyOS Sans SC", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  font-family:
    var(--font-saas);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(99, 91, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 5%, rgba(255, 92, 77, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f6f9ff 100%);
  overflow-x: hidden;
  font-family: var(--font-saas);
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 52, 114, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 52, 114, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 72%);
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 78px;
  padding: 0 64px;
  border-bottom: 1px solid rgba(192, 202, 218, 0.55);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: auto;
  margin-right: 42px;
}

.brand-lockup img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 20, 47, 0.12);
}

.brand-lockup strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 650;
}

.brand-lockup small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 30px;
  margin-right: auto;
  color: #50617e;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active {
  color: var(--ink);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 27px;
  height: 3px;
  border-radius: 999px;
  background: #635bff;
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.plain-link,
.ghost-link,
.primary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  font-weight: 620;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.plain-link {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink-soft);
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.ghost-link {
  padding: 0 16px;
  color: var(--ink-soft);
  border: 1px solid rgba(133, 150, 176, 0.28);
  background: rgba(255, 255, 255, 0.62);
}

.primary-link,
.button-primary {
  padding: 0 18px;
  color: #fff;
  background: #635bff;
  box-shadow: 0 12px 32px rgba(99, 91, 255, 0.22);
}

.site-login-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.24), transparent 24rem),
    rgba(9, 18, 35, 0.46);
  backdrop-filter: blur(18px);
}

.site-login-modal {
  position: relative;
  width: min(462px, 100%);
  padding: 28px;
  border: 1px solid rgba(205, 215, 233, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(99, 91, 255, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 34px 100px rgba(15, 23, 42, 0.24);
}

.site-login-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid rgba(181, 194, 216, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.site-login-modal h2 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.site-login-modal p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.site-login-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.site-login-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(181, 194, 216, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font: inherit;
}

.site-login-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.site-login-actions button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.site-login-actions button:first-child {
  color: var(--ink-soft);
  border: 1px solid rgba(181, 194, 216, 0.62);
  background: rgba(255, 255, 255, 0.72);
}

.site-login-actions button:last-child {
  color: #fff;
  border: 0;
  background: #635bff;
  box-shadow: 0 14px 32px rgba(99, 91, 255, 0.2);
}

.site-login-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.site-login-status {
  min-height: 22px;
  margin-top: 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.site-login-status.error {
  color: #b42318;
}

.site-login-status.success {
  color: #087443;
}

.ghost-link:hover,
.primary-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.mobile-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(660px, 1.36fr);
  align-items: center;
  gap: 42px;
  max-width: 1580px;
  margin: 0 auto;
  padding: 92px 64px 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 92, 77, 0.12);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 560;
}

.no-break {
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.038em;
  font-weight: 560;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 580;
}

.hero-lead,
.section-copy p,
.section-heading p,
.final-cta p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 420;
}

.hero-lead {
  max-width: 660px;
  margin: 26px 0 0;
}

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

.button {
  min-width: 156px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(123, 141, 166, 0.34);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 22px rgba(23, 38, 73, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 8px 12px;
  color: #475a78;
  font-size: 13px;
  font-weight: 560;
  border: 1px solid rgba(123, 141, 166, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.workspace-showcase {
  position: relative;
  overflow: hidden;
  width: min(100%, 1040px);
  margin-left: auto;
  border: 1px solid rgba(161, 176, 201, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.11), transparent 18rem),
    radial-gradient(circle at 80% 5%, rgba(255, 92, 77, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 40px 90px rgba(50, 50, 93, 0.14);
  backdrop-filter: blur(18px);
}

.workspace-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.workspace-showcase img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.workspace-showcase:hover img {
  transform: scale(1.035) translateY(-4px);
}

.desktop-frame {
  position: relative;
  overflow: hidden;
  min-height: 582px;
  border: 1px solid rgba(161, 176, 201, 0.42);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.11), transparent 18rem),
    radial-gradient(circle at 80% 5%, rgba(255, 92, 77, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(185, 197, 214, 0.48);
  background: rgba(255, 255, 255, 0.6);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6258;
}

.window-bar span:nth-child(2) {
  background: #ffc94a;
}

.window-bar span:nth-child(3) {
  background: #37c96b;
}

.window-bar strong {
  margin-left: 8px;
  color: #61718e;
  font-size: 13px;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: 146px 1fr 208px;
  gap: 18px;
  padding: 18px;
}

.preview-sidebar,
.mission-card,
.mission-plan,
.worker-row div,
.mini-table,
.metric-card {
  border: 1px solid rgba(183, 196, 216, 0.62);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.preview-sidebar {
  min-height: 490px;
  padding: 18px 14px;
  border-radius: 22px;
}

.preview-sidebar img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
}

.preview-sidebar b,
.preview-sidebar small {
  display: block;
}

.preview-sidebar b {
  margin-top: 12px;
}

.preview-sidebar small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.preview-sidebar nav {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.preview-sidebar nav span {
  padding: 10px 12px;
  color: #667491;
  font-size: 12px;
  font-weight: 560;
  border-radius: 13px;
}

.preview-sidebar nav .active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
}

.mission-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
}

.mission-card {
  padding: 22px;
  border-radius: 22px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 185, 129, 0.12);
}

.card-header em {
  margin-left: auto;
  padding: 4px 9px;
  color: #057047;
  font-size: 11px;
  font-style: normal;
  font-weight: 620;
  border-radius: 999px;
  background: rgba(22, 185, 129, 0.14);
}

.mission-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.mission-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
}

.mission-plan div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.mission-plan small,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  text-transform: uppercase;
}

.mission-plan strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.worker-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.worker-row div {
  min-height: 128px;
  padding: 18px;
  border-radius: 20px;
}

.worker-row span {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
}

.worker-row b {
  display: block;
  margin-top: 38px;
  font-size: 20px;
}

.ops-panel {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.mini-table,
.metric-card {
  padding: 18px;
  border-radius: 22px;
}

.mini-table b {
  display: block;
  margin-bottom: 18px;
}

.mini-table p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  color: #4b5b77;
  font-size: 13px;
  font-weight: 560;
}

.mini-table span {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.14);
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: 48px;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  padding: 11px 14px;
  color: #0a2540;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(183, 196, 216, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.badge-left {
  left: -24px;
  bottom: 96px;
}

.badge-right {
  right: 28px;
  top: 84px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
}

.logo-strip span {
  padding: 10px 16px;
  color: #61718e;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(185, 197, 214, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 42px;
  scroll-margin-top: 96px;
}

.split-section,
.integration-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section-copy p {
  margin: 22px 0 0;
}

.workflow-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-cards article,
.feature-grid article,
.pricing-grid article {
  border: 1px solid rgba(183, 196, 216, 0.62);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-cards article:hover,
.feature-grid article:hover,
.pricing-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(99, 91, 255, 0.26);
  box-shadow: 0 28px 70px rgba(50, 50, 93, 0.14);
}

.workflow-cards article {
  min-height: 246px;
  padding: 26px;
}

.workflow-cards span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  color: var(--blue);
  font-weight: 650;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
}

.workflow-cards p,
.feature-grid p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.feature-grid article {
  min-height: 286px;
  padding: 30px;
}

.feature-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18)),
    var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 18px 34px rgba(23, 38, 73, 0.14);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-grid article:hover .feature-icon {
  transform: translateY(-5px) rotate(-4deg);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-showcase {
  position: relative;
  max-width: 1560px;
  margin-top: 36px;
  padding: 68px 110px 72px;
  overflow: hidden;
  scroll-margin-top: 96px;
  border: 1px solid rgba(198, 207, 226, 0.6);
  border-radius: 28px;
  background:
    radial-gradient(circle at 54% 8%, rgba(255, 255, 255, 0.98), transparent 28rem),
    linear-gradient(180deg, rgba(250, 252, 255, 0.92), rgba(247, 250, 255, 0.78));
  box-shadow: 0 34px 100px rgba(48, 58, 97, 0.08);
}

.capability-showcase::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -90px;
  width: 650px;
  height: 650px;
  border-radius: 48%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: radial-gradient(circle at 22% 22%, rgba(102, 126, 234, 0.1), transparent 54%);
  transform: rotate(31deg);
  pointer-events: none;
}

.capability-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 97, 139, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 97, 139, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 82%);
}

.capability-heading,
.capability-grid {
  position: relative;
  z-index: 1;
}

.capability-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.capability-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 31px;
  margin: 0 0 22px;
  padding: 0 18px;
  color: #60708c;
  font-family: var(--font-saas);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.22em;
  border: 1px solid rgba(171, 184, 207, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.capability-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7567ff;
  box-shadow: 0 0 0 5px rgba(117, 103, 255, 0.1);
}

.capability-heading h2 {
  margin: 0;
  color: #0b1d3a;
  font-family:
    "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun",
    "Times New Roman", serif;
  font-size: clamp(42px, 4.1vw, 62px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-shadow: 0 12px 36px rgba(8, 24, 54, 0.1);
}

.capability-heading h2::after {
  content: "";
  display: block;
  width: 240px;
  height: 17px;
  margin: -4px auto 0;
  background: linear-gradient(90deg, transparent, rgba(117, 103, 255, 0.78), transparent);
  clip-path: polygon(0 58%, 100% 14%, 100% 31%, 0 76%);
}

.capability-heading p:last-child {
  margin: 16px 0 0;
  color: #66738c;
  font-size: 19px;
  line-height: 1.6;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 26px 28px;
  border: 1px solid rgba(204, 214, 233, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 44%, rgba(249, 251, 255, 0.74)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 26px 56px rgba(54, 68, 103, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(var(--capability-offset-y, 0));
  transition:
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 560ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
  transform: translateY(calc(var(--capability-offset-y, 0px) - 8px));
  border-color: rgba(117, 103, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 38px 82px rgba(54, 68, 103, 0.14);
}

.capability-card-large {
  grid-column: span 6;
  padding: 32px 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.3) 100%),
    url("/assets/site/lamboo-capability-cube.png");
  background-repeat: no-repeat;
  background-size: 100% 100%, cover;
  background-position: center, center;
}

.capability-card:not(.capability-card-large) {
  grid-column: span 3;
}

.capability-card:nth-child(4),
.capability-card:nth-child(5),
.capability-card:nth-child(6) {
  grid-column: span 4;
  --capability-offset-y: -8px;
}

.capability-card-large::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -8%;
  width: 40%;
  height: 80%;
  border-radius: 40%;
  background: radial-gradient(circle at center, rgba(115, 99, 255, 0.18), transparent 62%);
  filter: blur(16px);
  opacity: 0.72;
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card-large:hover::after {
  transform: translateY(-10px) scale(1.08);
}

.capability-card h3 {
  margin-top: 14px;
  color: #0b1d3a;
  font-family:
    "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun",
    "Times New Roman", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.capability-card-large h3 {
  margin-top: 14px;
  font-size: 31px;
}

.capability-card i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 12px 0 12px;
  background: rgba(10, 37, 64, 0.48);
}

.capability-card p {
  max-width: 330px;
  margin: 0;
  color: #5d6980;
  font-size: 15px;
  line-height: 1.78;
}

.capability-card-large p {
  max-width: 365px;
}

.capability-card a {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 24px;
  color: #0b1d3a;
  font-size: 22px;
  border: 1px solid rgba(171, 184, 207, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card-large a {
  width: auto;
  gap: 20px;
  padding: 0 22px;
  font-family: var(--font-saas);
  font-size: 15px;
  font-weight: 560;
}

.capability-card:hover a {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.9);
}

.capability-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16)),
    #748dff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 32px rgba(102, 126, 234, 0.22);
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover .capability-icon {
  transform: translateY(-5px) rotate(-4deg);
}

.capability-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-icon.icon-coral {
  background-color: #ff8d87;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 32px rgba(255, 141, 135, 0.2);
}

.capability-icon.icon-green {
  background-color: #64d7b4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 32px rgba(100, 215, 180, 0.2);
}

.capability-icon.icon-purple {
  background-color: #9d73ef;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 32px rgba(157, 115, 239, 0.2);
}

.capability-icon.icon-orange {
  background-color: #ffc154;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 32px rgba(255, 193, 84, 0.2);
}

.capability-icon.icon-dark {
  background-color: #87909d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 20px 32px rgba(76, 86, 101, 0.18);
}

.icon-coral {
  background-color: var(--coral);
}

.icon-green {
  background-color: var(--green);
}

.icon-purple {
  background-color: var(--purple);
}

.icon-orange {
  background-color: var(--orange);
}

.icon-dark {
  background-color: var(--ink);
}

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

.integration-grid span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 0 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 580;
  border: 1px solid rgba(183, 196, 216, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-grid img {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 0;
  border: 1px solid rgba(206, 216, 234, 0.74);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px rgba(36, 53, 89, 0.08);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-grid span:hover {
  transform: translateY(-6px) translateX(3px);
  border-color: rgba(99, 91, 255, 0.32);
  box-shadow: 0 26px 60px rgba(50, 50, 93, 0.12);
}

.integration-grid span:hover img {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 30px rgba(36, 53, 89, 0.12);
}

.integration-grid span::before {
  content: none;
}

.integration-grid span:hover::before {
  transform: none;
}

.security-section {
  padding-top: 32px;
  padding-bottom: 34px;
}

.security-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 64px;
  min-height: 440px;
  overflow: hidden;
  padding: 62px 66px;
  border: 1px solid rgba(186, 199, 222, 0.68);
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 16%, rgba(99, 91, 255, 0.16), transparent 29rem),
    radial-gradient(circle at 18% 12%, rgba(139, 210, 247, 0.2), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 42px 110px rgba(24, 39, 75, 0.13);
}

.security-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(207, 217, 235, 0.62);
  border-radius: 30px;
  background:
    linear-gradient(rgba(79, 97, 139, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 97, 139, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.68), transparent 72%);
}

.security-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 44%;
  width: 1px;
  height: 66%;
  background: linear-gradient(to bottom, transparent, rgba(126, 146, 181, 0.28), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.security-card > div {
  position: relative;
  z-index: 1;
}

.security-card > div:first-child {
  align-self: center;
}

.security-card .eyebrow {
  color: var(--blue);
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(177, 190, 216, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.security-card h2 {
  max-width: 560px;
  margin-top: 22px;
  color: var(--ink);
  font-family:
    "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun",
    "Times New Roman", serif;
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.security-card h2 span {
  display: block;
}

.security-card p {
  color: var(--ink-soft);
}

.security-card .eyebrow::before {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 185, 129, 0.16);
}

.security-list {
  display: grid;
  align-content: center;
  gap: 16px;
  counter-reset: security-step;
}

.security-list p {
  position: relative;
  counter-increment: security-step;
  margin: 0;
  min-height: 98px;
  padding: 22px 24px 22px 82px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
  border: 1px solid rgba(191, 203, 225, 0.76);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.68)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 54px rgba(37, 56, 92, 0.08);
  backdrop-filter: blur(18px);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.security-list p::before {
  content: "0" counter(security-step);
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #3152d9;
  font-size: 13px;
  font-weight: 680;
  border: 1px solid rgba(122, 146, 255, 0.32);
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), transparent 40%),
    linear-gradient(135deg, rgba(232, 237, 255, 0.96), rgba(245, 248, 255, 0.7));
  box-shadow: 0 14px 28px rgba(62, 92, 168, 0.13);
}

.security-list p::after {
  content: "";
  position: absolute;
  top: 39px;
  left: 61px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(99, 91, 255, 0.35), transparent);
}

.security-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.01em;
}

.security-list p:hover {
  transform: translateX(10px);
  border-color: rgba(99, 91, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.78)),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 66px rgba(37, 56, 92, 0.12);
}

.cinematic-section {
  padding-top: 28px;
  padding-bottom: 42px;
}

.cinematic-panel {
  overflow: hidden;
  border: 1px solid rgba(183, 196, 216, 0.52);
  border-radius: 34px;
  background: #f7f9fc;
  box-shadow: 0 36px 100px rgba(50, 50, 93, 0.12);
}

.cinematic-panel img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-panel:hover img {
  transform: scale(1.018);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 442px;
  padding: 26px;
}

.pricing-grid .featured-plan {
  border-color: rgba(37, 99, 235, 0.54);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.16);
}

.plan-tag {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
}

.pricing-grid h3 {
  margin-top: 20px;
}

.pricing-grid strong {
  display: block;
  margin-top: 24px;
  font-size: 42px;
  letter-spacing: -0.03em;
}

.pricing-grid strong span {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0;
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 520;
}

.pricing-grid li::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  vertical-align: -3px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 19%, transparent 20%),
    var(--green);
}

.pricing-grid .button {
  margin-top: auto;
  width: 100%;
}

.final-cta {
  max-width: 1040px;
  padding-top: 42px;
  text-align: center;
}

.final-cta img {
  width: min(420px, 72vw);
  height: auto;
  margin-bottom: 22px;
}

.final-cta p {
  max-width: 720px;
  margin: 20px auto 0;
}

.final-cta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 42px;
  color: #62718d;
  border-top: 1px solid rgba(185, 197, 214, 0.46);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 650;
}

.site-footer img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 580;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    display: grid;
    justify-items: stretch;
    gap: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .main-nav {
    top: 86px;
    padding: 18px;
    border-radius: 22px 22px 0 0;
  }

  .site-header.nav-open .header-actions {
    top: 276px;
    padding: 0 18px 18px;
    border-top: 0;
    border-radius: 0 0 22px 22px;
  }

  .hero-section,
  .split-section,
  .integration-section,
  .security-card {
    grid-template-columns: 1fr;
  }

  .capability-showcase {
    padding-right: 42px;
    padding-left: 42px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 236px;
  }

  .capability-card-large {
    grid-column: span 2;
  }

  .capability-card:not(.capability-card-large),
  .capability-card:nth-child(4),
  .capability-card:nth-child(5),
  .capability-card:nth-child(6) {
    grid-column: span 1;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .section-copy {
    position: static;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup small {
    display: none;
  }

  .hero-section,
  .section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-sidebar,
  .ops-panel {
    display: none;
  }

  .desktop-frame {
    min-height: auto;
  }

  .mission-plan,
  .worker-row,
  .workflow-cards,
  .feature-grid,
  .capability-grid,
  .integration-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .capability-showcase {
    padding: 46px 18px 42px;
    border-radius: 22px;
  }

  .capability-heading h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .capability-grid {
    grid-auto-rows: auto;
  }

  .capability-card,
  .capability-card-large {
    grid-column: auto;
    min-height: 220px;
  }

  .capability-card-large {
    background-size: 100% 100%, 220% auto;
    background-position: center, 42% 82%;
  }

  .security-card {
    padding: 28px;
  }

  .floating-badge {
    display: none;
  }

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