/* Auto-extracted for static homepage — source: src/index.css (npm run export:homepage) */
:root {
  --font: 'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --bg: #f4f6fb;
  --bg-elevated: #ffffff;
  --sidebar: #0f172a;
  --sidebar-hover: rgba(255, 255, 255, 0.06);
  --sidebar-active: rgba(99, 102, 241, 0.18);
  --sidebar-border: rgba(255, 255, 255, 0.08);
  --text: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-soft: #eef2ff;
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --success: #059669;
  --success-soft: #ecfdf5;
  --warning-soft: #fffbeb;
  --warning: #b45309;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --sidebar-width: 248px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--primary-hover); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.2);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn:hover:not(:disabled) {
  background: var(--primary-hover);
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn:active:not(:disabled) {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover:not(:disabled) {
  background: #f8fafc;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-danger {
  background: var(--danger);
  box-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
}

.btn-danger:hover:not(:disabled) {
  background: #b91c1c;
}

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: none;
}

.btn-link:hover:not(:disabled) {
  background: var(--primary-soft);
  color: var(--primary-hover);
  box-shadow: none;
}

.btn-link--danger {
  color: var(--danger);
}

.btn-link--danger:hover:not(:disabled) {
  background: var(--danger-soft);
  color: #b91c1c;
}

.code-block {
  width: 100%;
  max-height: 280px;
  overflow: auto;
}

/* Landing page — warm palette aligned with Mule logo (pearl + cyan glow) */
.landing {
  --landing-bg: #faf8f5;
  --landing-bg-alt: #ffffff;
  --landing-surface: #f3efea;
  --landing-surface-muted: #ebe6df;
  --landing-border: #e6e0d8;
  --landing-border-strong: #d4ccc2;
  --landing-text: #2f2a26;
  --landing-text-muted: #6b635a;
  --landing-text-subtle: #958b80;
  --landing-accent: #1a8a9a;
  --landing-accent-hover: #157484;
  --landing-accent-soft: #e8f4f6;
  --landing-accent-muted: #b8dde3;
  --landing-lavender: rgba(196, 184, 212, 0.35);
  --landing-shadow: 0 2px 12px rgba(47, 42, 38, 0.06);

  --bg: var(--landing-bg);
  --bg-elevated: var(--landing-bg-alt);
  --text: var(--landing-text);
  --text-muted: var(--landing-text-muted);
  --text-subtle: var(--landing-text-subtle);
  --border: var(--landing-border);
  --border-strong: var(--landing-border-strong);
  --primary: var(--landing-accent);
  --primary-hover: var(--landing-accent-hover);
  --primary-soft: var(--landing-accent-soft);

  min-height: 100vh;
  background: var(--landing-bg);
  color: var(--landing-text);
}

.landing .btn {
  background: var(--landing-accent);
  box-shadow: 0 2px 8px rgba(26, 138, 154, 0.22);
}

.landing .btn:hover:not(:disabled) {
  background: var(--landing-accent-hover);
  box-shadow: 0 4px 14px rgba(26, 138, 154, 0.26);
}

.landing .btn-secondary {
  background: var(--landing-bg-alt);
  color: var(--landing-text);
  border: 1px solid var(--landing-border-strong);
  box-shadow: var(--landing-shadow);
}

.landing .btn-secondary:hover:not(:disabled) {
  background: var(--landing-surface);
  color: var(--landing-accent);
  border-color: var(--landing-accent-muted);
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--landing-border);
}

.landing-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.landing-brand:hover {
  color: var(--text);
}

.landing-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26, 138, 154, 0.18);
}

.landing-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.landing-brand__text strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.landing-brand__text small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.landing-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.landing-header__nav a:not(.btn) {
  font-size: 13px;
  font-weight: 600;
  color: var(--landing-text-muted);
  white-space: nowrap;
  text-decoration: none;
}

.landing-header__nav a:not(.btn):hover {
  color: var(--landing-accent);
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.landing-locale {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--landing-border);
  background: var(--landing-surface);
}

.landing-locale button {
  min-width: 34px;
  padding: 6px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--landing-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.landing-locale button:hover {
  color: var(--landing-text);
}

.landing-locale button.is-active {
  background: var(--landing-bg-alt);
  color: var(--landing-accent);
  box-shadow: var(--landing-shadow);
}

.landing-header__admin {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 138, 154, 0.24);
}

.landing-header__admin:hover {
  color: #fff;
}

.landing-header__menu-btn {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--landing-border);
  border-radius: 10px;
  background: var(--landing-surface);
  cursor: pointer;
}

.landing-header__menu-btn span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 1px;
  background: var(--landing-text);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.landing-header__menu-btn span:nth-child(1) {
  top: 13px;
}

.landing-header__menu-btn span:nth-child(2) {
  top: 19px;
}

.landing-header__menu-btn span:nth-child(3) {
  top: 25px;
}

.landing-header__menu-btn.is-open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.landing-header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.landing-header__menu-btn.is-open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.landing-header__drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 16px;
  border-top: 1px solid var(--landing-border);
  background: rgba(250, 248, 245, 0.98);
}

.landing-header__drawer.is-open {
  display: flex;
}

.landing-header__drawer a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--landing-text);
  text-decoration: none;
}

.landing-header__drawer a:hover,
.landing-header__drawer a:active {
  background: var(--landing-surface);
  color: var(--landing-accent);
}

.landing-header__drawer-tools {
  margin-top: 4px;
  border: 1px solid var(--landing-border);
  background: #fff;
}

.landing-hero {
  background: linear-gradient(165deg, #faf8f5 0%, #f3ede6 42%, #e8f2f4 100%);
  color: var(--landing-text);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 72%, rgba(26, 138, 154, 0.14) 0%, transparent 52%),
    radial-gradient(circle at 12% 18%, var(--landing-lavender) 0%, transparent 48%);
  pointer-events: none;
}

.landing-hero__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  z-index: 2;
}

.landing-hero--mascot .landing-hero__inner {
  padding-right: min(460px, 44vw);
}

.landing-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--landing-accent);
}

.landing-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--landing-text);
}

.landing-hero__accent {
  color: var(--landing-accent);
}

.landing-hero__lead {
  margin: 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--landing-text-muted);
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.landing-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--landing-border);
}

.landing-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(8px);
}

.landing-stat strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--landing-text);
  line-height: 1.35;
}

.landing-stat span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--landing-text-muted);
}

.landing-section {
  padding: 72px 24px;
}

.landing-section--alt {
  background: var(--landing-bg-alt);
  border-top: 1px solid var(--landing-border);
  border-bottom: 1px solid var(--landing-border);
}

.landing-mascot-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.landing-mascot-section:not(.landing-section--alt) {
  background: var(--bg);
}

.landing-mascot-art {
  position: absolute;
  bottom: -32px;
  width: min(460px, 42vw);
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.58;
}

.landing-mascot-art--right {
  right: -48px;
}

.landing-mascot-art--left {
  left: -48px;
}

.landing-mascot-art--hero {
  right: -24px;
  bottom: -48px;
  width: min(480px, 40vw);
  opacity: 0.78;
  z-index: 1;
}

.landing-mascot-art img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.landing-hero--mascot .landing-mascot-art img {
  mix-blend-mode: multiply;
}

.landing-mascot-section__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.landing-mascot-section--right .landing-mascot-section__wash {
  background: linear-gradient(
    100deg,
    rgba(250, 248, 245, 0.96) 0%,
    rgba(250, 248, 245, 0.88) 58%,
    rgba(250, 248, 245, 0.18) 82%,
    transparent 100%
  );
}

.landing-mascot-section--left .landing-mascot-section__wash {
  background: linear-gradient(
    260deg,
    rgba(250, 248, 245, 0.96) 0%,
    rgba(250, 248, 245, 0.88) 58%,
    rgba(250, 248, 245, 0.18) 82%,
    transparent 100%
  );
}

.landing-mascot-section.landing-section--alt {
  --mascot-wash: rgba(255, 255, 255, 0.97);
}

.landing-mascot-section.landing-section--alt.landing-mascot-section--right .landing-mascot-section__wash {
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.9) 58%,
    rgba(255, 255, 255, 0.2) 82%,
    transparent 100%
  );
}

.landing-mascot-section.landing-section--alt.landing-mascot-section--left .landing-mascot-section__wash {
  background: linear-gradient(
    260deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.9) 58%,
    rgba(255, 255, 255, 0.2) 82%,
    transparent 100%
  );
}

.landing-mascot-section__inner {
  position: relative;
  z-index: 1;
}

.landing-hero--mascot {
  isolation: isolate;
}

.landing-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.landing-section__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.landing-section__desc {
  margin: 0 0 40px;
  max-width: 640px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.landing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0;
}

.landing-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.landing-scenario {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.landing-scenario__icon {
  font-size: 28px;
}

.landing-scenario h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-scenario p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.landing-governance__item {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
}

.landing-governance__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.landing-governance__item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.landing-deploy-layers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.landing-deploy-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.landing-deploy-layer__arrow {
  display: none;
}

.landing-deploy-layer__card {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  text-align: center;
}

.landing-deploy-layer__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.landing-deploy-layer__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.landing-deploy-layer__card li {
  font-size: 14px;
  color: var(--text-muted);
}

.landing-feature {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.landing-feature:hover {
  border-color: var(--landing-accent-muted);
  box-shadow: var(--landing-shadow);
}

.landing-feature__text {
  padding: 24px 28px 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--landing-surface) 100%);
  border-bottom: 1px solid var(--landing-border);
}

.landing-feature__text p {
  white-space: pre-line;
}

.landing-feature__media {
  max-height: 520px;
  overflow: auto;
  background: var(--landing-surface-muted);
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.landing-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.landing-feature__media--cropped {
  max-height: 380px;
  overflow: hidden;
}

.landing-feature__media--cropped img {
  object-fit: cover;
  object-position: top left;
}

.landing-feature__media--duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-height: 380px;
  overflow: hidden;
}

.landing-feature__media--duo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: top left;
  border-right: 1px solid var(--border);
}

.landing-feature__media--duo img:last-child {
  border-right: none;
}

.landing-feature h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.landing-feature p {
  margin: 0;
  max-width: 52rem;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.landing-flow__step {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--landing-accent-soft);
  border: 1px solid var(--landing-accent-muted);
}

.landing-flow__step > span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.landing-flow__step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.landing-flow__step p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.landing-quickstart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.landing-quickstart__card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.landing-quickstart__card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.landing-quickstart__card .code-block {
  max-height: none;
  font-size: 12px;
  padding: 12px 14px;
}

.landing-quickstart__hint {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.landing-footer {
  padding: 24px;
  border-top: 1px solid var(--landing-border);
  background: var(--landing-bg-alt);
}

.landing-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.landing-footer__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.landing-footer__email {
  color: var(--landing-accent);
  text-decoration: none;
}

.landing-footer__email:hover {
  text-decoration: underline;
}

.landing-footer__beian {
  color: var(--text-muted);
  text-decoration: none;
}

.landing-footer__beian:hover {
  text-decoration: underline;
  color: var(--landing-accent);
}

/* Product previews (CSS mock — replace with img in public/landing/) */
.landing-previews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0;
}

.landing-preview {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-preview__caption-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.landing-preview__caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.landing-im-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.landing-im-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-im-icon svg,
.landing-im-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-im-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14);
}

.landing-preview__frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.landing-preview__image {
  display: block;
  width: 100%;
  height: auto;
}

.landing-preview__image--cropped {
  object-fit: cover;
  object-position: top left;
}

.landing-preview__image-wrap {
  position: relative;
  line-height: 0;
  max-height: 360px;
  overflow: hidden;
  background: var(--landing-surface);
}

.landing-preview__privacy-mask {
  position: absolute;
  left: 0;
  width: 28%;
  pointer-events: none;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.35;
}

.landing-preview__privacy-mask--sessions {
  top: 27%;
  height: 50%;
  padding: 4px 7px 6px;
  background: #0f0f17;
}

.landing-preview__privacy-mask--profile {
  bottom: 0;
  height: 21%;
  padding: 6px 7px;
  background: #14141f;
  border-top: 1px solid #1c1c2a;
}

.landing-preview__privacy-mask-label {
  font-size: 7px;
  color: #6e6e82;
  margin-bottom: 5px;
}

.landing-preview__privacy-mask-item {
  padding: 3px 6px;
  margin-bottom: 3px;
  border-radius: 5px;
  font-size: 8px;
  color: #a1a1b5;
}

.landing-preview__privacy-mask-item--active {
  background: #1f1f30;
  color: #f4f4f8;
}

.landing-preview__privacy-mask-user {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  font-size: 8px;
  color: #a1a1b5;
}

.landing-preview__privacy-mask-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1f1f30;
  color: #1a8a9a;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-preview__privacy-mask-gateway {
  font-size: 7px;
  color: #6e6e82;
  margin-bottom: 4px;
}

.landing-preview__privacy-mask-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 7px;
  color: #22c55e;
}

.landing-preview__privacy-mask-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.landing-preview__chrome {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: var(--landing-surface-muted);
  border-bottom: 1px solid var(--landing-border);
}

.landing-preview__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.landing-preview__body {
  min-height: 200px;
  font-size: 12px;
}

.landing-mock-admin {
  display: flex;
  min-height: 220px;
}

.landing-mock-admin__sidebar {
  width: 88px;
  flex-shrink: 0;
  padding: 10px 8px;
  background: #0f172a;
  color: #94a3b8;
}

.landing-mock-admin__brand {
  font-size: 10px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.landing-mock-admin__nav {
  font-size: 9px;
  padding: 6px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.landing-mock-admin__nav--active {
  background: rgba(26, 138, 154, 0.22);
  color: #e2e8f0;
}

.landing-mock-admin__main {
  flex: 1;
  padding: 12px;
  background: var(--landing-surface);
}

.landing-mock-admin__title {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.landing-mock-tool {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 10px;
}

.landing-mock-tool--off {
  opacity: 0.65;
}

.landing-mock-tool__check {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}

.landing-mock-tool__check--on {
  background: var(--primary);
  border-color: var(--primary);
}

.landing-mock-tag {
  margin-top: 8px;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  background: var(--primary-soft);
  color: var(--primary);
}

.landing-mock-feishu {
  padding: clamp(14px, 2vw, 22px);
  background: var(--landing-surface);
  min-height: clamp(240px, 30vw, 340px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
}

.landing-mock-feishu__header {
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.landing-mock-feishu__msg {
  max-width: 88%;
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.4vw, 16px);
  border-radius: 10px;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.5;
}

.landing-mock-feishu__msg--user {
  align-self: flex-end;
  background: #95ec69;
  color: #1a1a1a;
}

.landing-mock-feishu__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
}

.landing-mock-feishu__tool {
  align-self: flex-start;
  font-size: clamp(11px, 1.1vw, 13px);
  color: var(--text-muted);
  padding: 2px 8px;
}

.landing-mock-feishu__input {
  margin-top: auto;
  padding: clamp(10px, 1.2vw, 14px) clamp(12px, 1.4vw, 16px);
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-subtle);
  font-size: clamp(12px, 1.2vw, 15px);
}

.landing-mock-desktop-app {
  min-height: 220px;
  background: #09090f;
  color: #f4f4f8;
  font-size: 9px;
  line-height: 1.4;
}

.landing-mock-desktop-app__menubar {
  display: flex;
  gap: 12px;
  padding: 4px 8px;
  background: #f4f4f8;
  color: #1e1e2e;
  font-size: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.landing-mock-desktop-app__body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 200px;
}

.landing-mock-desktop-app__sidebar {
  padding: 8px 6px;
  background: #0f0f17;
  border-right: 1px solid #1c1c2a;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.landing-mock-desktop-app__brand {
  display: flex;
  align-items: center;
  gap: 5px;
}

.landing-mock-desktop-app__logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #1a8a9a;
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-mock-desktop-app__brand strong {
  display: block;
  font-size: 9px;
  font-weight: 700;
}

.landing-mock-desktop-app__brand span {
  color: #6e6e82;
  font-size: 7px;
}

.landing-mock-desktop-app__btn {
  padding: 4px 6px;
  border-radius: 6px;
  text-align: center;
  background: #1a1a28;
  border: 1px solid #2a2a3d;
  color: #a1a1b5;
  font-size: 8px;
}

.landing-mock-desktop-app__btn--primary {
  background: #1a8a9a;
  border-color: #1a8a9a;
  color: #fff;
  font-weight: 600;
}

.landing-mock-desktop-app__section {
  color: #6e6e82;
  font-size: 7px;
  margin-top: 2px;
}

.landing-mock-desktop-app__sessions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 48px;
}

.landing-mock-desktop-app__session {
  padding: 3px 5px;
  border-radius: 4px;
  color: #a1a1b5;
  font-size: 8px;
}

.landing-mock-desktop-app__session--active {
  background: #1f1f30;
  color: #f4f4f8;
}

.landing-mock-desktop-app__footer {
  padding: 5px;
  border-radius: 6px;
  background: #14141f;
  border: 1px solid #1c1c2a;
  font-size: 7px;
  color: #a1a1b5;
}

.landing-mock-desktop-app__user {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.landing-mock-desktop-app__avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1f1f30;
  color: #1a8a9a;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-mock-desktop-app__gateway {
  color: #6e6e82;
  margin-bottom: 3px;
  word-break: break-all;
}

.landing-mock-desktop-app__status {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #22c55e;
}

.landing-mock-desktop-app__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}

.landing-mock-desktop-app__main {
  padding: 8px 10px;
  background: #09090f;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.landing-mock-desktop-app__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
}

.landing-mock-desktop-app__model {
  font-size: 7px;
  font-weight: 400;
  color: #6e6e82;
}

.landing-mock-desktop-app__welcome {
  flex: 1;
  margin: 0 auto;
  max-width: 92%;
  padding: 12px 10px;
  border-radius: 10px;
  background: #14141f;
  border: 1px solid #1c1c2a;
  text-align: center;
}

.landing-mock-desktop-app__star {
  color: #1a8a9a;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

.landing-mock-desktop-app__welcome strong {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
}

.landing-mock-desktop-app__welcome p {
  color: #6e6e82;
  font-size: 7px;
  margin: 0 0 8px;
}

.landing-mock-desktop-app__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.landing-mock-desktop-app__chips span {
  padding: 2px 6px;
  border-radius: 10px;
  background: #1a1a28;
  border: 1px solid #2a2a3d;
  color: #a1a1b5;
  font-size: 7px;
}

.landing-mock-desktop-app__composer {
  display: flex;
  gap: 4px;
  align-items: stretch;
  margin-top: 8px;
}

.landing-mock-desktop-app__input {
  flex: 1;
  min-height: 28px;
  border-radius: 8px;
  background: #0c0c14;
  border: 1px solid #1c1c2a;
}

.landing-mock-desktop-app__composer-actions {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 7px;
}

.landing-mock-desktop-app__composer-actions span {
  padding: 3px 6px;
  border-radius: 6px;
  background: #1a1a28;
  border: 1px solid #2a2a3d;
  color: #a1a1b5;
  text-align: center;
}

.landing-mock-desktop-app__send {
  background: #1a8a9a;
  border-color: #1a8a9a;
  color: #fff;
}

/* Comparison table */
.landing-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.landing-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.landing-compare th,
.landing-compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.landing-compare thead th {
  background: var(--landing-surface);
  font-size: 13px;
  font-weight: 700;
}

.landing-compare thead th:nth-child(2) {
  color: var(--landing-accent);
}

.landing-compare tbody th {
  width: 120px;
  font-weight: 600;
  color: var(--landing-text);
  background: var(--landing-accent-soft);
}

.landing-compare tbody tr:last-child th,
.landing-compare tbody tr:last-child td {
  border-bottom: none;
}

.landing-compare__highlight {
  background: var(--landing-accent-soft);
}

/* Team examples */
.landing-teams {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.landing-team {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.landing-team__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.landing-team__head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-team__icon {
  font-size: 20px;
  line-height: 1;
}

.landing-teams--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-team__example {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--landing-surface);
  border-left: 3px solid var(--landing-accent);
  font-size: 14px;
  line-height: 1.55;
  color: var(--landing-text-muted);
}

.landing-team__example span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.landing-team__channel {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: var(--primary-soft);
  color: var(--primary);
}

.landing-team__outcome {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--landing-text-muted);
}

/* Industry coverage */
.landing-industries__stats {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--landing-accent);
}

.landing-industries__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.landing-industries__legend-item {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--landing-surface);
  color: var(--landing-text-muted);
  border: 1px solid var(--border);
}

.landing-industries__legend-item--mcp {
  background: var(--landing-accent-soft);
  color: var(--landing-accent);
  border-color: var(--landing-accent-muted);
}

.landing-industries__highlight {
  margin-bottom: 36px;
}

.landing-industries__group-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.landing-industries__grid--mcp {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-industry {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.landing-industry--mcp {
  border-color: var(--landing-accent-muted);
  background: linear-gradient(180deg, var(--landing-accent-soft) 0%, var(--bg) 72%);
}

.landing-industry__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.landing-industry__head h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-industry__icon {
  font-size: 18px;
  line-height: 1;
}

.landing-industry__badge {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  background: var(--landing-surface);
  color: var(--text-subtle);
  text-align: center;
  max-width: 7.5rem;
}

.landing-industry__badge--mcp {
  background: var(--landing-accent);
  color: #fff;
}

.landing-industry__example {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--landing-text-muted);
}

.landing-industry__example span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  margin-bottom: 4px;
}

.landing-subsection__title {
  margin: 40px 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-subsection__desc {
  margin-bottom: 20px;
}

.landing-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 0 18px;
}

.landing-faq__item summary {
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.landing-faq__item summary::-webkit-details-marker {
  display: none;
}

.landing-faq__item summary::after {
  content: '+';
  float: right;
  color: var(--text-muted);
  font-weight: 400;
}

.landing-faq__item[open] summary::after {
  content: '−';
}

.landing-faq__item p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.landing-compare-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.landing-compare-summary__card {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.landing-compare-summary__card--mule {
  border-color: var(--landing-accent-muted);
  background: var(--landing-accent-soft);
}

.landing-compare-summary__card h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.landing-compare-summary__card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--landing-text-muted);
}

.landing-compare-details {
  margin-bottom: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.landing-compare-details summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.landing-features--highlights .landing-feature {
  max-width: 100%;
}

.landing-skills {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
}

.landing-skills__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-skills__item {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.landing-skills__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-skills__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.landing-skills__media {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: auto;
  max-height: 520px;
  background: #0f172a;
  box-shadow: var(--shadow-md);
}

.landing-skills__media img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-skills__media--light {
  background: var(--landing-surface-muted);
  overflow: hidden;
}

.landing-skills__media--cropped {
  max-height: 380px;
  overflow: hidden;
}

.landing-skills__media--cropped img {
  object-fit: cover;
  object-position: top left;
}

.landing-skills__media--duo {
  display: flex;
  flex-direction: column;
  max-height: none;
  overflow: hidden;
}

.landing-skills__media--duo img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.landing-skills__media--duo img + img {
  border-left: none;
  border-top: 1px solid var(--landing-border);
}

.landing-knowledge-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-dev-details {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
}

.landing-dev-details summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.landing-dev-details[open] summary {
  margin-bottom: 16px;
}

.landing-arch-wrap {
  margin: 8px 0 32px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow-x: auto;
}

.landing-arch-wrap--preview {
  margin-top: 48px;
  margin-bottom: 0;
}

/* ====== Landing Arch Diagram (HTML component) ====== */
.landing-arch {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: min(100%, 920px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0;
  font-size: 13px;
  color: #0f172a;
}

.landing-arch__title-bar {
  text-align: center;
  position: relative;
  padding: 8px 0 16px;
}
.landing-arch__title-bar h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2f2a26;
}
.landing-arch__title-bar p {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 2px;
}
.landing-arch__badge {
  position: absolute;
  top: 8px;
  right: 0;
  background: #4f46e5;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Tenants */
.landing-arch__tenants {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.landing-arch__tenant-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 14px 12px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  text-align: center;
}
.landing-arch__tenant-name {
  font-size: 15px;
  font-weight: 700;
  color: #2f2a26;
}
.landing-arch__tenant-industry {
  font-size: 10px;
  color: #94a3b8;
  margin-bottom: 8px;
}
.landing-arch__tenant-users {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.landing-arch__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}
.c1 { background: #4f46e5; } .c2 { background: #7c3aed; } .c3 { background: #059669; }
.c4 { background: #0891b2; } .c5 { background: #d97706; } .c6 { background: #dc2626; }
.c7 { background: #2563eb; } .c8 { background: #9333ea; } .c9 { background: #059669; }
.c10 { background: #4f46e5; } .c11 { background: #d97706; } .c12 { background: #7c3aed; }
.landing-arch__tenant-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}
.landing-arch__t-tag {
  background: #faf8f5;
  border: 1px solid #e6e0d8;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 10px;
  color: #64748b;
}

.landing-arch__tenant-platforms {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}
.landing-arch__tenant-platform-label {
  font-size: 9px;
  color: #94a3b8;
  margin-bottom: 6px;
}
.landing-arch__tenant-platform-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.landing-arch__tenant-card .landing-arch__p-chip {
  padding: 2px 7px;
  font-size: 10px;
}

.landing-arch__p-chip {
  background: #faf8f5;
  border: 1px solid #e6e0d8;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #0f172a;
}

/* Arrow */
.landing-arch__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  font-size: 10px;
  color: #94a3b8;
}
.landing-arch__arrow-shaft {
  width: 2px;
  height: 14px;
  background: #cbd5e1;
}
.landing-arch__arrow-head {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #cbd5e1;
}

/* Admin */
.landing-arch__admin {
  max-width: 600px;
  margin: 0 auto;
}
.landing-arch__admin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  text-align: center;
}
.landing-arch__admin-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.landing-arch__admin-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.landing-arch__admin-title {
  font-size: 15px;
  font-weight: 700;
  color: #2f2a26;
}
.landing-arch__admin-desc {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 8px;
}
.landing-arch__admin-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.landing-arch__a-tag {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  color: #4f46e5;
  font-weight: 500;
}

/* Server */
.landing-arch__server-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.landing-arch__server-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 10px;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  text-align: center;
  width: 140px;
}
.landing-arch__server-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.si-db { background: #ecfdf5; }
.si-cache { background: #fffbeb; }
.si-graph { background: #f0f9ff; }
.si-vector { background: #faf5ff; }
.si-docker { background: #fef2f2; }
.landing-arch__server-name {
  font-size: 12px;
  font-weight: 600;
  color: #2f2a26;
}
.landing-arch__server-desc {
  font-size: 9px;
  color: #94a3b8;
  margin-top: 1px;
}

/* Footer */
.landing-arch__footer {
  text-align: center;
  margin-top: 12px;
  font-size: 10px;
  color: #94a3b8;
}
.landing-arch__footer strong {
  color: #4f46e5;
  font-weight: 600;
}

@media (max-width: 960px) {
  .landing-previews,
  .landing-teams,
  .landing-teams--wide,
  .landing-compare-summary,
  .landing-skills {
    grid-template-columns: 1fr;
  }

  .landing-industries__grid,
  .landing-industries__grid--mcp {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-knowledge-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature__media--duo {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .landing-feature__media--duo img {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-height: 0;
    max-height: 320px;
  }

  .landing-feature__media--duo img:last-child {
    border-bottom: none;
  }

  .landing-scenarios {
    grid-template-columns: 1fr;
  }

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

  .landing-deploy-layers {
    grid-template-columns: 1fr;
  }

  .landing-deploy-layer__arrow {
    display: block;
    color: var(--text-subtle);
    font-size: 18px;
  }

  .landing-hero__stats {
    grid-template-columns: 1fr;
  }

  .landing-flow,
  .landing-quickstart {
    grid-template-columns: 1fr;
  }

  .landing-arch__arrow {
    display: none;
  }
}

@media (max-width: 960px) {
  .landing-hero--mascot .landing-hero__inner {
    padding-right: 0;
  }

  .landing-hero__stats {
    grid-template-columns: 1fr;
  }

  .landing-mascot-art--hero {
    width: min(280px, 62vw);
    opacity: 0.45;
    right: -56px;
    bottom: -16px;
  }
}

@media (max-width: 1100px) {
  .landing-header__nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  }

  .landing-header__nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 760px) {
  .landing-header__nav,
  .landing-header__tools {
    display: none;
  }

  .landing-header__menu-btn {
    display: block;
  }

  .landing-brand__text small {
    display: none;
  }

  .landing-header__inner {
    padding: 10px 16px;
    gap: 8px;
  }

  .landing-header__actions {
    gap: 8px;
  }

  .landing-header__admin {
    padding: 8px 12px;
    font-size: 13px;
  }

  .landing-locale button {
    min-width: 28px;
    padding: 5px 8px;
    font-size: 12px;
  }

  .landing-hero {
    padding: 40px 16px 48px;
  }

  .landing-hero--mascot .landing-hero__inner {
    padding-right: 0;
  }

  .landing-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  .landing-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.2;
  }

  .landing-hero__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .landing-hero__actions {
    margin-top: 24px;
  }

  .landing-hero__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .landing-hero__stats {
    margin-top: 28px;
    padding-top: 24px;
    gap: 10px;
  }

  .landing-mascot-art {
    width: min(240px, 58vw);
    opacity: 0.28;
    pointer-events: none;
  }

  .landing-mascot-art--right {
    right: -48px;
    bottom: -12px;
  }

  .landing-mascot-art--left {
    left: -48px;
    bottom: -12px;
  }

  .landing-mascot-art--hero {
    width: min(260px, 64vw);
    opacity: 0.34;
    right: -56px;
    bottom: -8px;
  }

  .landing-section {
    padding: 40px 16px;
  }

  .landing-section__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .landing-section__desc {
    font-size: 15px;
  }

  .landing-features,
  .landing-governance,
  .landing-industries__grid,
  .landing-industries__grid--mcp {
    grid-template-columns: 1fr;
  }

  .landing-arch {
    min-width: 0;
    font-size: 12px;
  }

  .landing-arch__tenant-card {
    width: 100%;
    max-width: 100%;
  }

  .landing-arch__badge {
    position: static;
    display: inline-block;
    margin-top: 8px;
  }

  .landing-arch__title-bar {
    padding-bottom: 12px;
  }

  .landing-preview__image-wrap {
    max-height: 280px;
  }

  .landing-im-icons {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .landing-footer {
    padding: 20px 16px;
  }

  .landing-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-compare {
    font-size: 13px;
  }

  .landing-compare th,
  .landing-compare td {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .landing-brand__logo {
    width: 34px;
    height: 34px;
  }

  .landing-brand__text strong {
    font-size: 14px;
  }

  .landing-header__admin {
    padding: 7px 10px;
    font-size: 12px;
  }

  .landing-stat {
    padding: 14px;
  }
}

