:root {
  --bg: #ffffff;
  --bg-soft: #f7f9fd;
  --bg-soft-2: #f2f6fc;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(15, 23, 42, 0.07);
  --line-strong: rgba(15, 23, 42, 0.12);
  --text: #0d1526;
  --muted: #617089;
  --muted-strong: #4a586f;
  --accent: #315efb;
  --accent-2: #00a7c4;
  --accent-3: #8d7cff;
  --shadow: 0 24px 80px rgba(36, 56, 99, 0.1);
  --shadow-soft: 0 14px 40px rgba(46, 80, 150, 0.08);

  /* ── Type scale — use these instead of raw px ── */
  --fs-xs: 12px;      /* badges, chips, eyebrows */
  --fs-sm: 13px;      /* meta, captions */
  --fs-base: 14px;    /* body copy */
  --fs-md: 15px;      /* nav, emphasized body */
  --fs-lg: 17px;      /* lead paragraphs */
  --fs-xl: 18px;      /* card titles (small) */
  --fs-2xl: 20px;     /* stats, panel titles */
  --fs-3xl: 22px;     /* card titles (large) */
  --fs-4xl: 26px;     /* feature card headings */
  --fs-h3: clamp(20px, 2.2vw, 26px);
  --fs-h2: clamp(24px, 2.6vw, 34px);
  --fs-h1: clamp(28px, 3.2vw, 44px);
  --fs-display: clamp(34px, 4.6vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 6% 4%, rgba(141, 124, 255, 0.14), transparent 22%),
    radial-gradient(circle at 94% 6%, rgba(0, 167, 196, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 44%, #f6f9fe 100%);
}

img {
  max-width: 100%;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.95;
}

.ambient-a {
  top: -140px;
  left: -90px;
  width: 520px;
  height: 520px;
  background: rgba(141, 124, 255, 0.16);
}

.ambient-b {
  top: 36px;
  right: -110px;
  width: 420px;
  height: 420px;
  background: rgba(0, 167, 196, 0.12);
}

.site-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
}

main {
  padding-top: 8px;
}

.product-showcase {
  padding: 18px 0 12px;
}

.product-showcase-head {
  margin-bottom: 22px;
}

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

.product-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  min-height: 208px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 250, 255, 0.96));
  box-shadow: 0 18px 44px rgba(46, 80, 150, 0.08);
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(49, 94, 251, 0.08);
  filter: blur(20px);
}

.product-card-sap::after {
  background: rgba(12, 166, 120, 0.08);
}

.product-card-oracle::after {
  background: rgba(232, 78, 64, 0.08);
}

.product-card-visual,
.product-card-copy {
  position: relative;
  z-index: 1;
}

.product-card-visual {
  min-height: 158px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at 20% 18%, rgba(89, 110, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #14213d 52%, #10283b 100%);
}

.product-card-sap .product-card-visual {
  border-color: rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at 20% 18%, rgba(12, 166, 120, 0.26), transparent 34%),
    linear-gradient(145deg, #0f172a, #12332f 52%, #10283b 100%);
}

.product-card-oracle .product-card-visual {
  border-color: rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(circle at 20% 18%, rgba(232, 78, 64, 0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #31202d 52%, #1d2940 100%);
}

.product-card-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
}

/* Real product screenshot fills the suite card visual edge-to-edge
   (replaces .product-lines art; container radius clips the corners). */
.product-card-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.product-card-visual:has(.product-card-shot)::before {
  display: none;
}

.product-lines {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 74px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(180deg, rgba(96, 123, 255, 0.32) 0 8px, transparent 8px 18px);
  border: 1px solid rgba(255,255,255,0.12);
}

.product-card-sap .product-lines {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(180deg, rgba(28, 201, 153, 0.3) 0 8px, transparent 8px 18px);
}

.product-card-oracle .product-lines {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(180deg, rgba(255, 121, 87, 0.3) 0 8px, transparent 8px 18px);
}

.product-card-build::after {
  background: rgba(16, 185, 129, 0.08);
}
.product-card-build .product-card-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(16, 185, 129, 0.26), transparent 34%),
    linear-gradient(145deg, #0f172a, #0c2d22 52%, #0e2233 100%);
}
.product-card-build .product-lines {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(180deg, rgba(16, 185, 129, 0.3) 0 8px, transparent 8px 18px);
}
.product-card-build .suite-value-label {
  background: rgba(16, 185, 129, 0.09);
  color: rgba(16, 185, 129, 0.9);
}

.product-card-connect::after {
  background: rgba(14, 165, 233, 0.08);
}
.product-card-connect .product-card-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(14, 165, 233, 0.26), transparent 34%),
    linear-gradient(145deg, #0f172a, #0c2a3d 52%, #0e2233 100%);
}
.product-card-connect .product-lines {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(180deg, rgba(14, 165, 233, 0.3) 0 8px, transparent 8px 18px);
}

.product-card-insight::after {
  background: rgba(139, 92, 246, 0.08);
}
.product-card-insight .product-card-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(139, 92, 246, 0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #1a0f40 52%, #10203b 100%);
}
.product-card-insight .product-lines {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(180deg, rgba(139, 92, 246, 0.35) 0 8px, transparent 8px 18px);
}

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

.suite-grid:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Hero suite tagline */
.hero-suite-tagline {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

/* Value strip */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,250,255,0.96));
  box-shadow: 0 4px 24px rgba(46,80,150,0.05);
}

.value-strip:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

.value-strip-item {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.value-strip-item:last-child {
  border-right: 0;
}

.value-strip-value {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.value-strip-product {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.value-strip-item:nth-child(1) .value-strip-product { color: rgba(49, 94, 251, 0.75); }
.value-strip-item:nth-child(2) .value-strip-product { color: rgba(139, 92, 246, 0.8); }
.value-strip-item:nth-child(3) .value-strip-product { color: rgba(16, 185, 129, 0.85); }
.value-strip-item:nth-child(4) .value-strip-product { color: rgba(14, 165, 233, 0.8); }

.value-strip-desc {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--muted);
}

/* Suite value label on cards */
.suite-value-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  align-self: flex-start;
}

.product-card-ms .suite-value-label {
  background: rgba(49, 94, 251, 0.08);
  color: rgba(49, 94, 251, 0.85);
}

.product-card-insight .suite-value-label {
  background: rgba(139, 92, 246, 0.09);
  color: rgba(139, 92, 246, 0.85);
}

.product-card-connect .suite-value-label {
  background: rgba(14, 165, 233, 0.09);
  color: rgba(14, 165, 233, 0.85);
}

/* Suite position tag on product pages */
.suite-position-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.suite-grid .product-card-link {
  display: flex;
  flex-direction: column;
}

.suite-grid .product-card {
  flex: 1;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
}

.suite-grid:has(> :nth-child(3):last-child) .product-card {
  grid-template-columns: 1fr;
}

.suite-grid .product-card-visual {
  min-height: 130px;
}

.suite-grid .product-card-copy {
  display: flex;
  flex-direction: column;
}

.suite-grid .product-card-foot {
  margin-top: auto;
}

/* Chip was designed for the abstract dark art — hide it when a real screenshot is shown. */
.product-card-visual:has(.product-card-shot) .product-chip {
  display: none;
}

.product-chip {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #f8fbff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.24);
}

.product-card-copy h3 {
  margin: 4px 0 12px;
  font-size: var(--fs-4xl);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: var(--fs-sm);
}

.product-card-foot span {
  color: var(--muted);
}

.product-card-foot strong {
  color: var(--text);
  font-size: var(--fs-sm);
}

.product-card-link:hover .product-card {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(46, 80, 150, 0.12);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 0 14px;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.topbar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: transparent;
  border-bottom: 1px solid transparent;
  pointer-events: none;
  z-index: -1;
}

.topbar.is-scrolled {
  border-bottom-color: transparent;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.topbar.is-scrolled::before {
  background: rgba(248, 250, 255, 0.72);
  border-bottom-color: rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 24px rgba(46, 80, 150, 0.06);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #3b82f6;
}

.brand-mark::after {
  content: "";
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M9 11h14'/%3E%3Cpath d='M11.5 16h9'/%3E%3Ccircle cx='16' cy='21.5' r='2.1' fill='white' stroke='none'/%3E%3C/svg%3E");
}

.brand-label {
  color: var(--text);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.main-nav a,
.main-nav .nav-product-trigger {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  text-decoration: none;
  font-size: var(--fs-md);
  transition: color 0.15s ease;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav .nav-product-trigger:hover {
  color: var(--text);
}

.main-nav a.active,
.main-nav .nav-product-trigger.active {
  color: var(--text);
}

.nav-product-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-product-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 188px;
  height: 14px;
}

.nav-product-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 10px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 188px;
  padding: 8px;
  border: 1px solid rgba(49, 94, 251, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(238, 245, 255, 0.94));
  box-shadow: 0 18px 44px rgba(46, 80, 150, 0.11);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-product-menu:hover .nav-product-dropdown,
.nav-product-menu:focus-within .nav-product-dropdown,
.nav-product-menu.nav-product-open .nav-product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.main-nav .nav-product-item {
  display: block;
  min-height: 0;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.3;
  opacity: 1;
}

.main-nav .nav-product-item:hover {
  background: rgba(49, 94, 251, 0.08);
  color: var(--accent);
}

.nav-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-actions {
  margin-left: auto;
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-toggle:hover {
  background: rgba(15, 23, 42, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.topbar.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.topbar.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  flex-shrink: 0;
}

.lang-switcher button {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--muted-strong);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  line-height: 1.6;
}

.lang-switcher button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-switcher button.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(49, 94, 251, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: var(--fs-base);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.solid {
  background: linear-gradient(135deg, #2753f5, #4b74ff 55%, #00a7c4);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(49, 94, 251, 0.18);
}

.button.subtle {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 42px 0 12px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(49, 94, 251, 0.12);
  background: rgba(49, 94, 251, 0.06);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.section h2 {
  margin: 18px 0 14px;
  line-height: 1.05;
}

.hero h1 {
  max-width: none;
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-text,
.section-head p,
.capability-body p,
.info-panel p,
.pricing-card p,
.support-panel p,
.experience-copy p,
.page-hero-copy p,
.detail-body p,
.detail-body li,
.support-block p,
.check-list li,
.pricing-note {
  color: var(--muted);
  line-height: 1.85;
}

.hero-text {
  max-width: 58ch;
  font-size: var(--fs-lg);
}

.hero-suite-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 24px;
}

.hsc-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  border-left-width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,250,255,0.9));
}

.hsc-header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hsc-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.hsc-name {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.hsc-desc {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.5;
}

.hsc-studio  { border-left-color: rgba(49,  94,  251, 0.5); }
.hsc-insight { border-left-color: rgba(139, 92,  246, 0.5); }
.hsc-connect { border-left-color: rgba(14,  165, 233, 0.5); }
.hsc-build   { border-left-color: rgba(16,  185, 129, 0.5); }

.hsc-studio  .hsc-icon { background: linear-gradient(135deg, rgba(49,  94,  251, 0.8), rgba(75, 116, 255, 0.6)); }
.hsc-insight .hsc-icon { background: linear-gradient(135deg, rgba(139, 92,  246, 0.8), rgba(167,139,250, 0.6)); }
.hsc-connect .hsc-icon { background: linear-gradient(135deg, rgba(14,  165, 233, 0.8), rgba(56, 189, 248, 0.6)); }
.hsc-build   .hsc-icon { background: linear-gradient(135deg, rgba(16,  185, 129, 0.8), rgba(52, 211, 153, 0.6)); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-intro-grid-band {
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-intro-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 250, 255, 0.9));
  box-shadow: 0 10px 24px rgba(46, 80, 150, 0.05);
}

.hero-intro-card strong {
  font-size: var(--fs-md);
}

.hero-intro-card span {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(49, 94, 251, 0.09);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-soft);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.signal-card,
.capability-card,
.info-panel,
.pricing-card,
.support-panel,
.experience-shell,
.page-visual,
.detail-card,
.split-panel,
.support-layout,
.pricing-hero,
.metric-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 255, 0.92));
  box-shadow: 0 12px 30px rgba(46, 80, 150, 0.05);
}

.signal-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fs-lg);
}

.signal-card span {
  color: var(--muted);
  font-size: var(--fs-xs);
}

.hero-stage {
  position: relative;
  min-height: 400px;
}

.hero-stage-main,
.hero-stage-side {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(36, 56, 99, 0.06);
  backdrop-filter: blur(20px);
}

.hero-stage-main {
  inset: 0 0 0 0;
}

.hero-carousel {
  display: block;
  padding: 18px 18px 52px;
}

.hero-static {
  padding: 18px;
}

.hero-static .hero-product-panel {
  color: inherit;
  text-decoration: none;
}

.hero-static .hero-product-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.75;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-product-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-product-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-product-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  height: 100%;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,249,255,0.96));
  border: 0;
}

.hero-product-panel-visual,
.hero-product-panel-copy {
  position: relative;
  z-index: 1;
}

.hero-product-panel-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(117, 143, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #14213d 52%, #10283b 100%);
}

.hero-product-panel-sap .hero-product-panel-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(12, 166, 120, 0.26), transparent 34%),
    linear-gradient(145deg, #0f172a, #12332f 52%, #10283b 100%);
}

.hero-product-panel-oracle .hero-product-panel-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(232, 78, 64, 0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #31202d 52%, #1d2940 100%);
}

.hero-product-panel-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.hero-product-panel-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Real product screenshot fills the static hero stage edge-to-edge
   (crop from top-left; container radius clips the corners). */
.hero-product-panel-static .hero-product-panel-visual {
  align-items: stretch;
  padding: 0;
}

.hero-product-panel-static .hero-product-panel-visual::before {
  display: none;
}

.hero-product-panel-static .hero-product-panel-visual img {
  border-radius: 0;
}

/* The screenshot carries its own branding — hide the decorative chip. */
.hero-product-panel-static .hero-product-chip {
  display: none;
}

.hero-product-panel-static .hero-product-panel-visual img {
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.hero-product-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #f8fbff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.24);
}

.hero-product-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding-right: 6px;
}

.hero-product-panel-copy strong {
  color: #0d1526;
  font-size: var(--fs-3xl);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.hero-product-values {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-product-values li {
  position: relative;
  padding-left: 16px;
  color: #617089;
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.hero-product-values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f80ed;
}
.hero-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  z-index: 2;
  transform: translateX(-50%);
}

.hero-carousel-dot {
  appearance: none;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  cursor: pointer;
}

.hero-carousel-dot.active {
  width: 28px;
  background: rgba(49, 94, 251, 0.86);
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-carousel-prev {
  left: 14px;
}

.hero-carousel-next {
  right: 14px;
}

.hero-carousel-arrow:hover {
  background: #ffffff;
}

.hero-stage img,
.capability-media img,
.experience-visual img,
.page-visual img,
.detail-card img,
.split-panel img,
.support-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 30px rgba(36, 56, 99, 0.12);
}

.float-tag {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  font-size: var(--fs-sm);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.tag-a { left: 14px; top: 30px; }
.tag-b { right: 18px; top: 56px; }
.hero-stage-glow {
  position: absolute;
  inset: auto 80px 30px 80px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 94, 251, 0.16), rgba(0, 167, 196, 0.08));
  filter: blur(44px);
  z-index: -1;
}

.section {
  padding-top: 72px;
}

.page-divider {
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.section-band {
  padding-bottom: 8px;
}

.section-head {
  max-width: 820px;
}

.section-head.compact {
  max-width: 720px;
}

.section-head-light {
  margin-bottom: 18px;
}

.section h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.04em;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.feature-story-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 34px;
}

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 78vh;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,250,255,0.94));
  box-shadow: 0 18px 44px rgba(46, 80, 150, 0.08);
}

.feature-story.reverse .feature-story-copy {
  order: 2;
}

.feature-story.reverse .feature-story-media {
  order: 1;
}

.feature-story-copy {
  max-width: 560px;
}

.feature-story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(49, 94, 251, 0.09);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-story-copy h3 {
  margin: 18px 0 14px;
  font-size: var(--fs-h2);
  letter-spacing: -0.05em;
}

.feature-story-lead {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-lg);
  line-height: 1.8;
}

.feature-story-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-story-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.feature-story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.feature-story-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  min-height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f9fe 0%, #eef4fd 100%);
}

.feature-story-media img {
  width: 100%;
  max-width: 660px;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 34px rgba(36, 56, 99, 0.14);
}

.capability-card {
  overflow: hidden;
  border-radius: 28px;
}

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

.capability-media {
  background: linear-gradient(180deg, #f7f9fe 0%, #eef4fd 100%);
}

.capability-body {
  padding: 24px 24px 28px;
}

.capability-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(49, 94, 251, 0.09);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capability-card h3,
.info-panel h3,
.pricing-card h3,
.detail-body h3,
.split-copy h3,
.support-block h3 {
  margin: 16px 0 10px;
  font-size: var(--fs-4xl);
}

.dual-panel,
.detail-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

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

.info-panel {
  padding: 30px;
  border-radius: 28px;
}

.article-panel {
  max-width: 860px;
}

.article-panel p + p {
  margin-top: 16px;
}

.compare-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(247,250,255,0.94));
  box-shadow: 0 12px 30px rgba(46, 80, 150, 0.05);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
}

.compare-grid > div {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

.compare-grid > div:not(:first-child) {
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

.compare-grid > div:first-child {
  color: var(--text);
  font-weight: 700;
}

.compare-grid-head > div {
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(49, 94, 251, 0.04);
}

.compare-grid-head > div:nth-child(2) {
  color: var(--accent);
}

.rival-panel {
  margin-top: 28px;
}

.rival-card {
  position: relative;
  overflow: hidden;
}

.rival-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -56px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(49, 94, 251, 0.08);
  filter: blur(12px);
}

.rival-card-primary {
  border-color: rgba(49, 94, 251, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 255, 0.98));
}

.rival-card-primary::after {
  background: rgba(0, 167, 196, 0.12);
}

.rival-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(49, 94, 251, 0.08);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.rival-summary {
  margin-top: 18px;
}

.customer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.customer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,250,255,0.94));
  color: #516075;
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(46, 80, 150, 0.05);
}

.customer-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.customer-proof strong {
  color: var(--text);
  font-size: var(--fs-lg);
  line-height: 1.45;
}

.customer-proof span {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  font-weight: 500;
}

.page-hero.case-hero {
  display: block;
  padding: 28px 0 6px;
}

.case-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.case-hero-copy h1 {
  max-width: none;
  margin: 10px 0 0;
  color: var(--text);
  font-size: var(--fs-h1);
  line-height: 1.12;
  letter-spacing: 0;
}

.case-hero-copy p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.75;
}

.case-library {
  padding-top: 22px;
}

.cases-page .section {
  padding-top: 52px;
}

.cases-page .case-library {
  padding-top: 22px;
}

.cases-page .section h2 {
  font-size: var(--fs-h2);
  line-height: 1.18;
  letter-spacing: 0;
}

.cases-page .section-head p {
  max-width: 640px;
  font-size: var(--fs-base);
  line-height: 1.72;
}

.ai-case-filter-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 18px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(46, 80, 150, 0.05);
}

.ai-case-filter-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.ai-case-filter-label {
  padding-top: 8px;
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.4;
}

.ai-case-filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.case-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.case-filter-text,
.case-filter-count {
  line-height: 1.2;
}

.case-filter-count {
  color: currentColor;
  font-weight: 800;
  opacity: 0.72;
}

.case-filter-link:hover {
  border-color: rgba(49, 94, 251, 0.22);
  color: var(--text);
  transform: translateY(-1px);
}

.case-filter-link.is-empty {
  opacity: 0.52;
}

.case-filter-link.is-empty:hover {
  opacity: 0.78;
}

.case-filter-link.active {
  border-color: rgba(49, 94, 251, 0.22);
  background: rgba(49, 94, 251, 0.08);
  color: var(--accent);
  opacity: 1;
}

.case-filter-link.active .case-filter-count {
  opacity: 0.82;
}

.ai-case-filter-result {
  margin-top: 2px;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.ai-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ai-case-empty {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px dashed rgba(49, 94, 251, 0.28);
  border-radius: 18px;
  background: rgba(49, 94, 251, 0.05);
  color: var(--muted);
  font-size: var(--fs-base);
  font-weight: 700;
  text-align: center;
}

.ai-case-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(46, 80, 150, 0.045);
  overflow: hidden;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.ai-case-card:hover {
  border-color: rgba(49, 94, 251, 0.18);
  box-shadow: 0 18px 42px rgba(46, 80, 150, 0.09);
  transform: translateY(-2px);
}

.ai-case-card[hidden] {
  display: none;
}

.ai-case-media {
  grid-column: 1;
  grid-row: auto;
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #eef4fd;
}

.ai-case-media img {
  display: block;
  width: 100%;
  height: 148px;
  min-height: 0;
  object-fit: cover;
}

.ai-case-card-head {
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
}

.ai-case-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.ai-case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(49, 94, 251, 0.1);
  background: rgba(49, 94, 251, 0.05);
  color: #315efb;
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.2;
}

.ai-case-card h3 {
  grid-column: 1;
  margin: 0;
  padding: 0 18px;
  color: var(--text);
  font-size: var(--fs-xl);
  line-height: 1.35;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.ai-case-card p {
  grid-column: 1;
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

.ai-case-detail {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(68px, 0.32fr) minmax(0, 1fr);
  gap: 8px 10px;
  align-self: end;
  margin: 0 18px 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.ai-case-detail span {
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.5;
}

.ai-case-detail strong {
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.58;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.panel-head h3 {
  margin: 0;
}

.panel-head a {
  color: var(--accent);
  font-size: var(--fs-base);
  text-decoration: none;
  white-space: nowrap;
}

.panel-head a:hover {
  text-decoration: underline;
}

.compact-news .news-link {
  padding: 16px 0;
}

.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.news-filter {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
}

.news-filter.active {
  border-color: rgba(49, 94, 251, 0.18);
  background: rgba(49, 94, 251, 0.08);
  color: var(--accent);
}

.news-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-bottom: 10px;
}

.news-badge-product {
  background: rgba(49, 94, 251, 0.08);
  color: var(--accent);
}

.news-badge-ontology {
  background: rgba(139, 92, 246, 0.1);
  color: #6d28d9;
}

.news-badge-industry {
  background: rgba(14, 165, 233, 0.1);
  color: #0369a1;
}

.news-badge-tech {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.news-item + .news-item {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.news-link {
  display: block;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
}

.news-link strong,
.news-date,
.news-meta,
.news-desc {
  display: block;
}

.news-link strong {
  margin: 6px 0 8px;
  font-size: var(--fs-3xl);
  line-height: 1.35;
}

.news-date,
.news-meta,
.news-desc {
  color: var(--muted);
}

/* ── News page: card-style feed on the page background ── */
.news-section {
  padding-top: 22px;
}

.news-feed {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.news-feed .news-item + .news-item {
  border-top: 0;
}

.news-feed .news-link {
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 255, 0.92));
  box-shadow: 0 12px 30px rgba(46, 80, 150, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-feed .news-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(46, 80, 150, 0.11);
}

.news-date,
.news-meta {
  font-size: var(--fs-sm);
}

.news-desc {
  margin-top: 8px;
}

.experience-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 32px;
  margin-top: 28px;
}

.experience-copy {
  padding: 10px 8px 10px 10px;
}

.experience-visual {
  overflow: hidden;
  border-radius: 24px;
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 28px;
  border-radius: 28px;
}

.support-page {
  padding-top: 24px;
}

.support-simple {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.support-contact-section,
.support-channel-section,
.support-info-section {
  padding-top: 0;
}

.support-simple-head {
  margin-bottom: 14px;
}

.support-simple-head h1,
.support-channel-section h2,
.support-info-section h2 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: var(--fs-h1);
  line-height: 1.14;
  letter-spacing: 0;
}

.support-channel-section h2,
.support-info-section h2 {
  margin: 0 0 14px;
  font-size: var(--fs-h2);
}

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

.support-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(46, 80, 150, 0.04);
  color: inherit;
  text-decoration: none;
}

.support-contact-card:hover,
.support-channel-row:hover {
  border-color: rgba(49, 94, 251, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.support-contact-card span,
.support-channel-row span {
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.2;
}

.support-contact-card strong {
  color: var(--text);
  font-size: var(--fs-xl);
  line-height: 1.35;
}

.support-contact-card em,
.support-channel-row em,
.support-info-list span {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-style: normal;
  line-height: 1.7;
}

.support-channel-list,
.support-info-list {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(46, 80, 150, 0.04);
  overflow: hidden;
}

.support-channel-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.support-channel-row:last-child {
  border-bottom: 0;
}

.support-channel-row strong,
.support-info-list strong {
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.45;
}

.support-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-info-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.support-info-list li:nth-child(2n) {
  border-right: 0;
}

.support-info-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.support-entry-section,
.support-scope-section,
.support-priority-section {
  padding-top: 24px;
}

.support-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding-top: 28px;
}

.support-entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.support-entry-head h2,
.support-scope-section h2,
.support-priority-section h2 {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: 0;
}

.support-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.support-entry-card,
.support-card,
.support-scope-card,
.support-priority-grid {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(46, 80, 150, 0.045);
}

.support-entry-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  border-top: 3px solid rgba(49, 94, 251, 0.42);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.support-entry-card:nth-child(2) {
  border-top-color: rgba(16, 185, 129, 0.5);
}

.support-entry-card:nth-child(3) {
  border-top-color: rgba(14, 165, 233, 0.52);
}

.support-entry-card:nth-child(4) {
  border-top-color: rgba(139, 92, 246, 0.5);
}

.support-entry-card:hover {
  border-color: rgba(49, 94, 251, 0.18);
  box-shadow: 0 18px 40px rgba(46, 80, 150, 0.08);
  transform: translateY(-2px);
}

.support-entry-card span,
.support-scope-card span,
.support-priority-row span {
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.2;
}

.support-entry-card strong,
.support-scope-card strong,
.support-priority-row strong,
.support-steps strong {
  color: var(--text);
  font-size: var(--fs-lg);
  line-height: 1.35;
}

.support-entry-card em,
.support-priority-row em,
.support-steps em {
  color: var(--muted);
  font-size: var(--fs-sm);
  font-style: normal;
  line-height: 1.7;
}

.support-card {
  padding: 22px;
}

.support-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: var(--fs-3xl);
  line-height: 1.25;
  letter-spacing: 0;
}

.support-steps,
.support-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.support-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.support-steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 6px;
  background: rgba(49, 94, 251, 0.08);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.support-checklist li {
  position: relative;
  padding: 0 0 12px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.75;
}

.support-checklist li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.support-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.support-scope-section h2,
.support-priority-section h2 {
  margin-bottom: 14px;
}

.support-scope-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 154px;
  padding: 18px;
}

.support-scope-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.75;
}

.support-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.support-priority-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 4px 12px;
  min-height: 112px;
  padding: 18px;
}

.support-priority-row + .support-priority-row {
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

.support-priority-row span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
}

.cta-band {
  margin-top: 28px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.resource-links a {
  color: var(--accent);
  font-size: var(--fs-base);
  text-decoration: none;
}

.resource-links a:hover {
  text-decoration: underline;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-sm);
}

.footer-contact {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.footer-contact:hover {
  text-decoration: underline;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
}

.footer-legal a {
  color: var(--muted-strong);
  font-weight: 700;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.legal-page {
  padding: 36px 0 24px;
}

.legal-hero {
  max-width: 940px;
  margin: 0 auto 20px;
  padding: 34px 0 8px;
}

.legal-hero h1 {
  margin: 14px 0 12px;
  font-size: var(--fs-h1);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

.legal-document {
  max-width: 940px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-document section + section {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-document h2,
.legal-document h3,
.legal-document p,
.legal-document ul,
.legal-document ol {
  max-width: 820px;
}

.legal-document h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: var(--fs-2xl);
  line-height: 1.35;
}

.legal-document h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.45;
}

.legal-document p,
.legal-document li {
  color: var(--muted-strong);
  font-size: var(--fs-base);
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 12px;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 6px;
}

.legal-document a {
  color: var(--accent);
  font-weight: 700;
}

.legal-emphasis {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(49, 94, 251, 0.16);
  background: rgba(49, 94, 251, 0.06);
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 12px 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-document table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.78);
}

.legal-document th,
.legal-document td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: var(--fs-sm);
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  color: var(--text);
  font-weight: 800;
  background: rgba(247, 250, 255, 0.9);
}

.legal-document tr:last-child td {
  border-bottom: 0;
}

.page-hero {
  padding: 36px 0 12px;
}

.product-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.compact-panel {
  padding: 22px 24px;
}

.compact-panel h3 {
  margin-top: 0;
  font-size: var(--fs-2xl);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.72fr);
  gap: 18px;
  align-items: center;
}

.page-hero-copy h1 {
  margin: 18px 0 14px;
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-visual {
  overflow: hidden;
  border-radius: 32px;
  max-width: 420px;
}

.docs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: end;
  padding: 54px 0 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.docs-hero-copy h1 {
  max-width: 780px;
  margin: 14px 0 16px;
  color: var(--text);
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: 0;
}

.docs-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-lg);
  line-height: 1.85;
}

.docs-hero-summary {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(46, 80, 150, 0.05);
  overflow: hidden;
}

.docs-hero-summary a {
  display: block;
  padding: 18px 20px;
  color: inherit;
  text-decoration: none;
  transition: background 0.16s ease;
}

.docs-hero-summary a + a {
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.docs-hero-summary a:hover {
  background: rgba(49, 94, 251, 0.04);
}

.docs-hero-summary a:focus-visible {
  outline: 2px solid rgba(49, 94, 251, 0.42);
  outline-offset: -2px;
}

.docs-hero-summary span,
.docs-resource-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 800;
  line-height: 1.2;
}

.docs-hero-summary span {
  margin-bottom: 10px;
  border: 1px solid rgba(49, 94, 251, 0.12);
  background: rgba(49, 94, 251, 0.06);
  color: var(--accent);
}

.docs-hero-summary strong {
  display: block;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.55;
}

.docs-hero-summary em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--fs-sm);
  font-style: normal;
  line-height: 1.6;
}

.docs-library {
  padding-top: 44px;
}

.docs-library + .docs-library {
  padding-top: 52px;
}

.docs-section-head {
  max-width: 820px;
  margin-bottom: 18px;
}

.docs-section-head h2 {
  margin: 14px 0 10px;
  color: var(--text);
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: 0;
}

.docs-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-md);
  line-height: 1.8;
}

.docs-resource-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(46, 80, 150, 0.045);
  overflow: hidden;
}

.docs-resource {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 80px;
  padding: 18px 20px;
  color: inherit;
  text-decoration: none;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.docs-resource + .docs-resource {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.docs-resource:hover {
  background: rgba(49, 94, 251, 0.035);
}

.docs-resource:focus-visible {
  outline: 2px solid rgba(49, 94, 251, 0.42);
  outline-offset: -2px;
}

.docs-resource-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.docs-resource-main strong {
  color: var(--text);
  font-size: var(--fs-lg);
  line-height: 1.35;
}

.docs-resource-main span {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.docs-resource-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.docs-resource-meta span {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(247, 250, 255, 0.92);
  color: var(--muted);
}

.docs-resource-meta span:first-child {
  border-color: rgba(49, 94, 251, 0.14);
  background: rgba(49, 94, 251, 0.07);
  color: var(--accent);
}

.docs-resource-external .docs-resource-meta span:first-child {
  border-color: rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.detail-card {
  border-radius: 28px;
  overflow: hidden;
}

.detail-card img,
.split-panel img,
.support-visual img {
  background: #f5f8fe;
}

.detail-body {
  padding: 24px 24px 28px;
}

.detail-body ul,
.check-list,
.support-block ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 32px;
}

.split-panel img,
.support-visual img {
  border-radius: 24px;
  border: 1px solid var(--line);
}

.split-copy,
.support-block {
  padding: 10px 8px;
}

.pricing-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 32px;
  border-radius: 32px;
}

.pricing-page-hero {
  padding: 56px 0 0;
  text-align: center;
}

.pricing-page-hero h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 12px;
}

.pricing-page-hero .pricing-note {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: var(--fs-base);
}

.pricing-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-pills span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: var(--fs-sm);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.pricing-card {
  padding: 28px 24px;
  border-radius: 28px;
}

.pricing-card.featured {
  border-color: rgba(49, 94, 251, 0.22);
  transform: translateY(-8px);
}

.pricing-label {
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2753f5, #00a7c4);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0 10px;
}

.pricing-amount {
  font-size: var(--fs-h3);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--text);
}

.pricing-amount--custom {
  font-size: var(--fs-2xl);
  color: var(--muted);
}

.pricing-period {
  font-size: var(--fs-base);
  color: var(--muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.5;
}

.pricing-features li::before {
  content: "✓";
  flex-shrink: 0;
  margin-top: 1px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
}

.pricing-features li.pricing-limit {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--fs-sm);
}

.pricing-features li.pricing-limit::before {
  content: none;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .button {
  width: 100%;
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card-deploy {
  margin: 0 0 20px;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(247, 250, 255, 0.78);
}

.pricing-deploy-title {
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-deploy-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.pricing-deploy-card {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(247,250,255,0.9));
}

.pricing-deploy-card--deps {
  background: linear-gradient(180deg, rgba(247,250,255,0.9), rgba(240,246,255,0.95));
}

.pricing-deploy-specs {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-deploy-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
}

.pricing-deploy-specs li span {
  color: var(--muted);
}

.pricing-deploy-specs li strong {
  font-weight: 600;
  color: var(--text);
}

.pricing-deploy-deps {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-deploy-deps li {
  font-size: var(--fs-sm);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.pricing-deploy-deps li::before {
  content: "·";
  color: var(--accent);
  font-weight: 700;
}

.pricing-shared-deploy {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-shared-deploy > div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.pricing-shared-deploy h2 {
  margin: 8px 0 8px;
  font-size: var(--fs-h3);
  letter-spacing: 0;
}

.pricing-shared-deploy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .pricing-deploy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-deploy-grid {
    grid-template-columns: 1fr;
  }
}

.support-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 32px;
}

@media (max-width: 1120px) {
  .support-entry-grid,
  .support-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-two-col,
  .support-priority-grid {
    grid-template-columns: 1fr;
  }

  .support-priority-row + .support-priority-row {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }
}

@media (max-width: 640px) {
  .support-contact-grid,
  .support-info-list {
    grid-template-columns: 1fr;
  }

  .support-channel-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    min-height: 0;
  }

  .support-info-list li,
  .support-info-list li:nth-child(2n),
  .support-info-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .support-info-list li:last-child {
    border-bottom: 0;
  }

  .support-entry-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-entry-actions,
  .support-entry-actions .button {
    width: 100%;
  }

  .support-entry-grid,
  .support-scope-grid {
    grid-template-columns: 1fr;
  }

  .support-entry-card,
  .support-card,
  .support-scope-card,
  .support-priority-row {
    padding: 16px;
  }
}

@media (max-width: 1120px) {
  .ai-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

.product-grid,
  .suite-grid,
  .value-strip,
  .hero,
  .hero-intro-grid,
  .product-value-grid,
  .capability-grid,
  .feature-story,
  .compare-grid,
  .customer-strip,
  .dual-panel,
  .detail-grid,
  .pricing-grid,
  .page-hero-grid,
  .split-panel,
  .support-layout,
  .pricing-hero,
  .experience-shell {
    grid-template-columns: 1fr;
  }

  .capability-card.featured {
    grid-column: span 1;
  }

  .compare-grid > div:not(:first-child) {
    border-left: 0;
  }

  .feature-story {
    min-height: 0;
  }

  .feature-story.reverse .feature-story-copy,
  .feature-story.reverse .feature-story-media {
    order: initial;
  }

  .hero-stage {
    min-height: 360px;
  }

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

  .hero-product-panel-copy strong {
    font-size: var(--fs-3xl);
  }

  /* Value strip: when stacked vertically, swap right border → bottom border */
  .value-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .value-strip-item:last-child {
    border-bottom: 0;
  }

  /* Hero intro grid stays 2-col until smaller screens */
  .hero-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ai-case-grid {
    grid-template-columns: 1fr;
  }

  .case-hero {
    padding-top: 30px;
  }

  .case-hero-copy h1 {
    font-size: var(--fs-h1);
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .product-card-copy h3 {
    font-size: var(--fs-3xl);
  }

  .site-shell {
    width: min(100% - 24px, 100%);
    padding-bottom: 48px;
  }

  .section {
    padding-top: 48px;
  }

  /* Hamburger nav */
  .nav-toggle {
    display: flex;
  }

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

  .topbar {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 0;
  }

  .topbar.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    padding: 10px 0 8px;
    border-top: 1px solid var(--line);
    margin-top: 10px;
  }

  .topbar.nav-open .main-nav a,
  .topbar.nav-open .main-nav .nav-product-trigger {
    padding: 10px 4px;
    font-size: 16px;
    width: auto;
  }

  .topbar.nav-open .nav-product-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .topbar.nav-open .nav-product-trigger {
    display: flex;
    align-items: center;
  }

  .topbar.nav-open .nav-product-dropdown {
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 0 0 8px;
    padding: 8px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    border-color: rgba(49, 94, 251, 0.1);
    background:
      linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(239, 246, 255, 0.9));
  }

  .topbar.nav-open .nav-product-menu.nav-product-open .nav-product-dropdown,
  .topbar.nav-open .nav-product-menu:focus-within .nav-product-dropdown {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .topbar.nav-open .main-nav .nav-product-item {
    min-height: 0;
    padding: 10px 12px;
  }

  .topbar.nav-open .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 4px 0 8px;
  }

  .topbar.nav-open .nav-actions .button {
    justify-content: center;
  }

  .topbar.nav-open .lang-switcher {
    display: flex;
    width: 100%;
    margin-left: 0;
    padding-bottom: 10px;
  }

  .support-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 280px;
  }

  .feature-story {
    padding: 20px;
  }

  .feature-story-copy h3 {
    font-size: var(--fs-h2);
  }

  .feature-story-lead {
    font-size: var(--fs-lg);
  }

  .hero-stage-main {
    inset: 0 24px 18px 24px;
  }

  .hero-product-panel {
    padding: 14px;
  }

  .hero-product-panel-copy {
    padding-right: 0;
  }

  .hero-product-panel-copy strong {
    font-size: var(--fs-xl);
  }

  .hero-product-values li {
    font-size: var(--fs-xs);
  }
}

@media (max-width: 560px) {
  .ai-case-filter-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .ai-case-filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ai-case-filter-label {
    padding-top: 0;
  }

  .case-filter-link {
    min-height: 32px;
    padding: 0 10px;
    font-size: var(--fs-xs);
  }

  .ai-case-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 12px;
  }

  .ai-case-media,
  .ai-case-card-head,
  .ai-case-card h3,
  .ai-case-card p,
  .ai-case-detail {
    grid-column: 1;
  }

  .ai-case-media {
    grid-row: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .ai-case-media img {
    min-height: 210px;
    height: 210px;
  }

  .ai-case-card-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 0;
  }

  .ai-case-tags {
    justify-content: flex-start;
  }

  .ai-case-detail {
    grid-template-columns: 1fr;
    gap: 4px 0;
    margin: 0 18px 18px;
  }

  .ai-case-card h3,
  .ai-case-card p {
    padding: 0 18px;
  }

  .hero-stage {
    min-height: 200px;
  }

  .feature-story {
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
  }

  .feature-story-copy h3 {
    font-size: var(--fs-h2);
  }

  .feature-story-points li {
    font-size: var(--fs-base);
  }

  .hero-product-panel {
    gap: 12px;
  }

  .hero-product-panel-visual {
    padding: 10px;
  }

  .hero-product-chip {
    min-width: 62px;
    height: 26px;
    font-size: var(--fs-xs);
  }

  .hero-product-panel-copy strong {
    font-size: var(--fs-md);
  }

  .hero-product-values {
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ERP Product Grid ─────────────────────────────────── */
.erp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.erp-card {
  background: var(--panel-strong);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
}

.erp-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.erp-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.erp-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent);
  flex-shrink: 0;
}

.erp-msft  .erp-logo-badge { background: #0078d4; }
.erp-sap   .erp-logo-badge { background: #0a6ed1; }
.erp-oracle .erp-logo-badge { background: #c74634; }
.erp-acumatica .erp-logo-badge { background: #e85a1f; }
.erp-other .erp-logo-badge { background: var(--accent-3); }

.erp-vendor {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.erp-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}

.erp-card p {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.erp-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--bg-soft-2);
  color: var(--muted);
  border: 1px solid var(--line);
  margin-top: 4px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .erp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .erp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Cases page: text-first cards, no generic illustration panels ── */
.case-library .ai-case-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.case-library .ai-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(49, 94, 251, 0.8), rgba(0, 167, 196, 0.72));
}

.case-library .ai-case-media {
  display: none;
}

.case-library .ai-case-card-head,
.case-library .ai-case-card h3,
.case-library .ai-case-card p,
.case-library .ai-case-detail {
  grid-column: 1;
  padding: 0;
}

.case-library .ai-case-card-head {
  align-items: center;
}

.case-library .capability-index {
  min-width: 38px;
  height: 28px;
  padding: 0 9px;
  border-radius: 7px;
  letter-spacing: 0;
}

.case-library .ai-case-tags {
  justify-content: flex-end;
}

.case-library .ai-case-tags span {
  min-height: 24px;
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(247, 250, 255, 0.88);
  color: var(--muted);
}

.case-library .ai-case-card h3 {
  font-size: var(--fs-xl);
}

.case-library .ai-case-detail {
  margin: 0;
  align-self: end;
}

.case-library .ai-case-card[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .docs-hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 38px;
  }

  .docs-hero-summary {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .docs-hero-copy h1 {
    font-size: var(--fs-display);
  }

  .docs-resource {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
  }

  .docs-resource-meta {
    justify-content: flex-start;
  }
}

.footer-youkit {
  display: block;
  margin-top: 2px;
  font-size: 0.92em;
  opacity: 0.75;
}
