:root {
  --jtd-red: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-ink: #111827;
  --jtd-muted: #5f6673;
  --jtd-soft: #f5f7fa;
  --jtd-line: #e5e7eb;
  --jtd-card: #ffffff;
  --jtd-blue: #2563eb;
  --jtd-green: #12b981;
  --jtd-radius: 8px;
  --jtd-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  --jtd-container: 1180px;
  --jtd-font: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Heiti SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--jtd-ink);
  font-family: var(--jtd-font);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p {
  margin: 0;
  color: var(--jtd-muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--jtd-ink);
  font-weight: 750;
  line-height: 1.22;
}

h1 {
  font-size: clamp(40px, 5vw, 62px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 20px;
}

.jtd-container {
  width: min(100% - 40px, var(--jtd-container));
  margin: 0 auto;
}

.jtd-skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--jtd-red);
  color: #fff;
}

.jtd-skip-link:focus {
  top: 16px;
}

.jtd-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  backdrop-filter: blur(16px);
}

.jtd-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.jtd-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-weight: 800;
}

.jtd-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  color: var(--jtd-red);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.jtd-logo__text {
  color: #171717;
}

.jtd-primary-nav {
  flex: 1;
}

.jtd-primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.jtd-primary-nav__language {
  display: none;
}

.jtd-nav-row {
  display: contents;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  color: #20242c;
  font-size: 15px;
  font-weight: 650;
}

.jtd-primary-nav__item:hover > a,
.jtd-primary-nav__item:focus-within > a,
.jtd-primary-nav__item:hover > .jtd-nav-row > a,
.jtd-primary-nav__item:focus-within > .jtd-nav-row > a {
  color: var(--jtd-red);
}

.jtd-submenu-toggle {
  display: none;
}

.jtd-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jtd-header__phone {
  color: #2f3745;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.jtd-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--jtd-line);
  border-radius: 999px;
  background: #fff;
}

.jtd-language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--jtd-muted);
  font-size: 12px;
  font-weight: 800;
}

.jtd-language-switcher a[aria-current="page"],
.jtd-language-switcher a:hover {
  background: var(--jtd-red);
  color: #fff;
}

.jtd-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  background: #fff;
}

.jtd-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--jtd-ink);
}

.jtd-mega-menu {
  position: absolute;
  left: 50%;
  top: 76px;
  width: min(calc(100vw - 48px), 1080px);
  padding: 22px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--jtd-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.jtd-has-mega:hover .jtd-mega-menu,
.jtd-has-mega:focus-within .jtd-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.jtd-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.jtd-mega-menu__grid--solutions {
  grid-template-columns: repeat(3, 1fr);
}

.jtd-mega-menu__grid--partners {
  grid-template-columns: repeat(3, 1fr);
}

.jtd-mega-menu h3 {
  margin-bottom: 10px;
  font-size: 15px;
}

.jtd-mega-menu a {
  display: block;
  padding: 10px;
  border-radius: var(--jtd-radius);
  color: var(--jtd-ink);
  font-weight: 700;
}

.jtd-mega-menu a:hover {
  background: var(--jtd-soft);
  color: var(--jtd-red);
}

.jtd-mega-menu span {
  display: block;
  margin-top: 3px;
  color: var(--jtd-muted);
  font-size: 13px;
  font-weight: 400;
}

.jtd-mega-menu__cta {
  padding: 18px;
  background: linear-gradient(135deg, #fff5f4 0%, #ffffff 70%);
  border: 1px solid #fde2df;
  border-radius: var(--jtd-radius);
}

.jtd-mega-menu__cta strong {
  display: block;
  margin-bottom: 8px;
}

.jtd-mega-menu__cta p {
  margin-bottom: 16px;
  font-size: 14px;
}

.jtd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--jtd-radius);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

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

.jtd-btn--primary {
  background: var(--jtd-red);
  color: #fff;
}

.jtd-btn--primary:hover {
  background: var(--jtd-red-dark);
}

.jtd-btn--secondary {
  background: #fff;
  border-color: #f4b3ad;
  color: var(--jtd-red);
}

.jtd-btn--light {
  background: #fff;
  color: var(--jtd-red);
}

.jtd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.jtd-main {
  overflow: hidden;
}

.jtd-hero {
  position: relative;
  min-height: 680px;
  padding: 88px 0 40px;
  background:
    radial-gradient(circle at 76% 18%, rgba(225, 37, 27, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.jtd-hero__slides {
  position: relative;
  min-height: 520px;
}

.jtd-hero__slide {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 54px;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.jtd-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 660px;
  margin-top: 20px;
  font-size: 19px;
}

.jtd-hero__content h1 {
  max-width: 720px;
  font-size: clamp(42px, 4.7vw, 60px);
  word-break: keep-all;
}

.jtd-eyebrow {
  margin-bottom: 12px;
  color: var(--jtd-red);
  font-size: 14px;
  font-weight: 800;
}

.jtd-hero__visual {
  min-height: 420px;
}

.jtd-dashboard-card {
  position: relative;
  min-height: 420px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 18px;
  box-shadow: var(--jtd-shadow);
}

.jtd-dashboard-card__top {
  height: 42px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fee2e2, #eef2ff);
}

.jtd-dashboard-card__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  padding: 22px;
  margin-bottom: 24px;
  background: var(--jtd-soft);
  border-radius: 14px;
}

.jtd-dashboard-card__metric strong {
  color: var(--jtd-red);
  font-size: 42px;
}

.jtd-dashboard-card__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.jtd-dashboard-card__grid span {
  height: 92px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f3f6fb);
  border: 1px solid var(--jtd-line);
}

.jtd-dashboard-card p {
  margin-top: 24px;
  font-weight: 750;
}

.jtd-hero__dots {
  display: flex;
  gap: 8px;
}

.jtd-hero__dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7dce5;
  cursor: pointer;
}

.jtd-hero__dots button.is-active {
  background: var(--jtd-red);
}

.jtd-trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--jtd-line);
}

.jtd-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 18px 0;
}

.jtd-trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 10px;
  background: var(--jtd-soft);
  border-radius: var(--jtd-radius);
  color: #343b49;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.jtd-section {
  padding: 92px 0;
  background: #fff;
}

.jtd-section--muted {
  background: var(--jtd-soft);
}

.jtd-section--related {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #fff;
  border-top: 1px solid var(--jtd-line);
}

.jtd-section__header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.jtd-section__header h2 {
  margin-bottom: 14px;
}

.jtd-card-grid {
  display: grid;
  gap: 20px;
}

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

.jtd-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.jtd-card {
  background: var(--jtd-card);
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.jtd-card:hover {
  border-color: rgba(225, 37, 27, 0.35);
  box-shadow: var(--jtd-shadow);
  transform: translateY(-2px);
}

.jtd-card__body {
  padding: 24px;
}

.jtd-card h2,
.jtd-card h3 {
  margin: 10px 0 12px;
}

.jtd-card small {
  display: block;
  margin-top: 16px;
  color: var(--jtd-muted);
}

.jtd-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  background: #fff1f0;
  border-radius: 999px;
  color: var(--jtd-red);
  font-size: 12px;
  font-weight: 800;
}

.jtd-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.jtd-text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--jtd-red);
  font-weight: 800;
}

.jtd-section--audience {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.jtd-customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.jtd-customer-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jtd-customer-card:hover {
  border-color: rgba(225, 37, 27, 0.34);
  box-shadow: var(--jtd-shadow);
  transform: translateY(-2px);
}

.jtd-customer-card__index {
  color: rgba(225, 37, 27, 0.28);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.jtd-customer-card h3 {
  margin: 18px 0 12px;
}

.jtd-customer-card .jtd-tag-row {
  margin-top: 20px;
}

.jtd-customer-card .jtd-text-link {
  margin-top: auto;
  padding-top: 20px;
}

.jtd-value-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.jtd-value-card {
  min-height: 172px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
}

.jtd-value-card h3 {
  margin-bottom: 12px;
}

.jtd-process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.jtd-process-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
}

.jtd-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: #fff1f0;
  border-radius: 50%;
  color: var(--jtd-red);
  font-weight: 900;
}

.jtd-process-card h3 {
  margin-bottom: 10px;
}

.jtd-roadmap {
  display: grid;
  gap: 16px;
}

.jtd-roadmap article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
}

.jtd-roadmap h3 {
  margin-bottom: 10px;
}

.jtd-security-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 24px;
  align-items: stretch;
}

.jtd-security-main {
  min-height: 100%;
  padding: 28px;
  background: linear-gradient(145deg, #e1251b 0%, #e1251b 100%);
  border-radius: var(--jtd-radius);
  color: #fff;
}

.jtd-security-main h3 {
  margin-bottom: 14px;
  color: #fff;
}

.jtd-security-main p {
  color: rgba(255, 255, 255, 0.88);
}

.jtd-conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  box-shadow: var(--jtd-shadow-soft, 0 10px 26px rgba(16, 22, 35, 0.06));
}

.jtd-conversion-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.jtd-conversion-panel .jtd-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.jtd-featured-product {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.jtd-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.jtd-split--cta {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
  align-items: start;
}

.jtd-screenshot-shell {
  min-height: 430px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: 18px;
  box-shadow: var(--jtd-shadow);
}

.jtd-screenshot-shell__bar {
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #111827, #374151);
}

.jtd-screenshot-shell__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, 160px);
  gap: 16px;
}

.jtd-screenshot-shell__body div {
  border-radius: 14px;
  background: linear-gradient(180deg, #eef2ff, #fff);
  border: 1px solid #e8ecf5;
}

.jtd-check-list {
  padding-left: 20px;
  color: var(--jtd-muted);
}

.jtd-check-list li {
  margin: 10px 0;
}

.jtd-step-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.jtd-step-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  color: var(--jtd-muted);
}

.jtd-step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background: var(--jtd-red);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.jtd-diagram-card {
  display: grid;
  gap: 14px;
  min-height: 360px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: 18px;
  box-shadow: var(--jtd-shadow);
}

.jtd-diagram-card span {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(90deg, #fff5f4, #f8fafc);
  border: 1px solid #f2d8d5;
  border-radius: var(--jtd-radius);
  font-weight: 800;
}

.jtd-case-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.jtd-case-meta {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--jtd-soft);
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
}

.jtd-case-meta h2,
.jtd-case-content h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.jtd-case-meta p {
  margin-bottom: 14px;
}

.jtd-case-content > h2 {
  margin-top: 34px;
}

.jtd-case-content > h2:first-child {
  margin-top: 0;
}

.jtd-note-box {
  padding: 18px;
  margin-top: 34px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--jtd-radius);
}

.jtd-note-box strong {
  display: block;
  margin-bottom: 8px;
  color: #9a3412;
}

.jtd-contact-info {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
}

.jtd-contact-info a {
  color: var(--jtd-red);
  font-weight: 800;
}

.jtd-lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--jtd-line);
  border-radius: 12px;
  box-shadow: var(--jtd-shadow);
}

.jtd-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.jtd-lead-form label {
  display: grid;
  gap: 7px;
  color: #2b3240;
  font-size: 14px;
  font-weight: 750;
}

.jtd-lead-form input,
.jtd-lead-form select,
.jtd-lead-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
  color: var(--jtd-ink);
  font: inherit;
}

.jtd-lead-form textarea,
.jtd-lead-form__full,
.jtd-form-message,
.jtd-lead-form button {
  grid-column: 1 / -1;
}

.jtd-form-message {
  padding: 12px;
  border-radius: var(--jtd-radius);
  background: #fff7ed;
  color: #9a3412;
  font-weight: 700;
}

.jtd-form-message--success {
  background: #ecfdf5;
  color: #047857;
}

.jtd-page-hero {
  padding: 96px 0 54px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.jtd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--jtd-muted);
  font-size: 13px;
  font-weight: 700;
}

.jtd-breadcrumb a {
  color: var(--jtd-muted);
}

.jtd-breadcrumb a:hover {
  color: var(--jtd-red);
}

.jtd-breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: #c6ccd6;
}

.jtd-breadcrumb span {
  color: #6b7280;
}

.jtd-page-hero h1 {
  max-width: 860px;
}

.jtd-richtext {
  max-width: 860px;
}

.jtd-richtext p,
.jtd-richtext ul,
.jtd-richtext ol {
  margin: 0 0 18px;
}

.jtd-list-card {
  padding: 24px;
  margin-bottom: 18px;
  border: 1px solid var(--jtd-line);
  border-radius: var(--jtd-radius);
}

.jtd-site-footer {
  padding: 56px 0 24px;
  background: #101820;
  color: #e5e7eb;
}

.jtd-site-footer p,
.jtd-site-footer a {
  color: #aeb7c4;
}

.jtd-site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.jtd-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 34px;
}

.jtd-footer__grid a {
  display: block;
  margin: 8px 0;
}

.jtd-logo--footer {
  margin-bottom: 18px;
}

.jtd-logo--footer .jtd-logo__text {
  color: #fff;
}

.jtd-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.jtd-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.jtd-footer__legal a,
.jtd-form-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jtd-mobile-quickbar {
  display: none;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .jtd-header__inner {
    min-height: 68px;
  }

  .jtd-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .jtd-primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    max-height: calc(100vh - 68px);
    overflow: auto;
    background: #fff;
    border-bottom: 1px solid var(--jtd-line);
  }

  .jtd-primary-nav.is-open {
    display: block;
  }

  .jtd-primary-nav__list {
    display: block;
    padding: 14px 20px 22px;
  }

  .jtd-primary-nav__item {
    border-bottom: 1px solid var(--jtd-line);
  }

  .jtd-primary-nav__language {
    display: block;
    padding: 14px 0;
  }

  .jtd-primary-nav__item > a,
  .jtd-nav-row > a {
    min-height: 48px;
  }

  .jtd-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .jtd-nav-row > a {
    flex: 1 1 auto;
  }

  .jtd-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid var(--jtd-line);
    border-radius: var(--jtd-radius);
    background: #fff;
  }

  .jtd-submenu-toggle::before {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--jtd-ink);
    border-bottom: 2px solid var(--jtd-ink);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
  }

  .jtd-submenu-toggle[aria-expanded="true"]::before {
    transform: rotate(-135deg) translateY(-1px);
  }

  .jtd-mega-menu {
    position: static;
    left: auto;
    top: auto;
    display: none;
    width: 100%;
    max-width: 100%;
    padding: 0 0 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
    transition: none;
  }

  .jtd-has-mega:hover .jtd-mega-menu,
  .jtd-has-mega:focus-within .jtd-mega-menu {
    transform: none !important;
  }

  .jtd-has-mega:not(.is-open) .jtd-mega-menu {
    display: none;
  }

  .jtd-has-mega.is-open .jtd-mega-menu {
    display: block;
  }

  .jtd-mega-menu__grid,
  .jtd-mega-menu__grid--solutions {
    grid-template-columns: 1fr;
  }

  .jtd-mega-menu a {
    padding: 10px 0;
  }

  .jtd-mega-menu__cta {
    margin-top: 10px;
  }

  .jtd-header__actions {
    display: none;
  }

  .jtd-language-switcher--nav {
    justify-content: space-between;
    width: 100%;
    max-width: 220px;
  }

  .jtd-language-switcher--nav a {
    flex: 1;
  }

  .jtd-hero {
    min-height: auto;
    padding: 56px 0 34px;
  }

  .jtd-hero__slides {
    min-height: 760px;
  }

  .jtd-hero__slide,
  .jtd-split,
  .jtd-split--cta {
    grid-template-columns: 1fr;
  }

  .jtd-hero__slide {
    gap: 28px;
  }

  .jtd-hero__visual {
    min-height: 340px;
  }

  .jtd-dashboard-card {
    min-height: 340px;
  }

  .jtd-card-grid--3,
  .jtd-card-grid--4,
  .jtd-customer-grid,
  .jtd-value-row,
  .jtd-process-row,
  .jtd-trust-strip__inner,
  .jtd-case-layout,
  .jtd-security-grid,
  .jtd-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jtd-case-meta {
    position: static;
  }

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

  .jtd-conversion-panel .jtd-actions {
    justify-content: flex-start;
  }
}

/* Enterprise SaaS visual system v4.1: legacy decoration guardrails */
.jtd-product-card::before,
.jtd-product-card::after,
.jtd-customer-card::before,
.jtd-customer-card::after,
.jtd-product-paths article::before,
.jtd-product-paths article::after,
.jtd-decision-row article::before,
.jtd-decision-row article::after,
.jtd-line-card::before,
.jtd-line-card::after,
#products .jtd-product-card__preview::before,
#products .jtd-product-card__preview::after,
body.post-type-archive-jtd_product .jtd-product-card__preview::before,
body.post-type-archive-jtd_product .jtd-product-card__preview::after {
  display: none !important;
  content: none !important;
}

.jtd-path-icon,
.jtd-product-paths article > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-line-card__icon,
.jtd-ai-grid article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-customer-card__icon {
  box-sizing: border-box !important;
  padding: 0 !important;
  border-radius: 14px !important;
}

.jtd-product-card,
.jtd-customer-card,
.jtd-product-paths article,
.jtd-decision-row article,
.jtd-line-card {
  border-color: transparent !important;
  background-clip: padding-box !important;
}

.jtd-product-card__preview,
#products .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  overflow: hidden !important;
  border-top: 0 !important;
}

.jtd-product-card__preview span,
#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span {
  box-sizing: border-box !important;
}

/* JTD high-gloss minimal technology system v5.0 */
:root {
  --jtd-v4-ink: #0f172a;
  --jtd-v4-text: #475569;
  --jtd-v4-muted: #64748b;
  --jtd-v4-soft: #f1f5f9;
  --jtd-v4-soft-2: #f8fafc;
  --jtd-v4-line: rgba(15, 23, 42, 0.08);
  --jtd-v4-card: rgba(255, 255, 255, 0.94);
  --jtd-v4-red: #e1251b;
  --jtd-v4-red-2: #e1251b;
  --jtd-v4-blue: #e1251b;
  --jtd-v4-indigo: #0f172a;
  --jtd-v4-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 30px -26px rgba(15, 23, 42, 0.28);
  --jtd-v4-shadow-hover: 0 2px 6px rgba(15, 23, 42, 0.05), 0 18px 38px -28px rgba(184, 20, 20, 0.28);
  --jtd-v4-brand-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 52%, #e1251b 100%);
  --jtd-v4-blue-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 100%);
  --jtd-v5-ink: #0f172a;
  --jtd-v5-text: #475569;
  --jtd-v5-muted: #64748b;
  --jtd-v5-soft: #f8fafc;
  --jtd-v5-soft-strong: #f1f5f9;
  --jtd-v5-line: rgba(15, 23, 42, 0.08);
  --jtd-v5-red: #e1251b;
  --jtd-v5-red-deep: #e1251b;
  --jtd-v5-red-soft: rgba(225, 37, 27, 0.08);
  --jtd-v5-red-line: rgba(225, 37, 27, 0.16);
  --jtd-v5-glass: rgba(255, 255, 255, 0.58);
  --jtd-v5-glass-strong: rgba(255, 255, 255, 0.74);
  --jtd-v5-red-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 54%, #e1251b 100%);
  --jtd-v5-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 32px -28px rgba(15, 23, 42, 0.32);
  --jtd-v5-shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.06), 0 22px 42px -32px rgba(184, 20, 20, 0.34);
}

html,
body {
  color: var(--jtd-v5-ink) !important;
  background: #ffffff !important;
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.jtd-main,
.jtd-section,
.jtd-page-hero,
.jtd-hero {
  color: var(--jtd-v5-ink) !important;
}

.jtd-section {
  padding-top: 104px !important;
  padding-bottom: 104px !important;
}

.jtd-section--compact {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.jtd-site-main > .jtd-section:nth-of-type(even):not(.jtd-section--related),
main > .jtd-section:nth-of-type(even):not(.jtd-section--related),
.jtd-section--muted,
.jtd-ai-section,
.jtd-platform-section,
.jtd-trust-strip,
.jtd-product-strip {
  background: var(--jtd-v5-soft) !important;
}

.jtd-section__header h2,
.jtd-page-hero h1,
.jtd-hero__content h1,
.jtd-card h2,
.jtd-card h3,
.jtd-product-paths h2,
.jtd-decision-row h2 {
  color: var(--jtd-v5-ink) !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
}

.jtd-section__header p:not(.jtd-eyebrow),
.jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
.jtd-hero__content > p:not(.jtd-eyebrow),
.jtd-card p,
.jtd-product-paths p,
.jtd-decision-row p,
.jtd-product-card p,
.jtd-product-card small {
  color: var(--jtd-v5-text) !important;
  line-height: 1.78 !important;
}

.jtd-eyebrow,
.jtd-tag,
.jtd-product-card__head .jtd-tag {
  border: 1px solid var(--jtd-v5-red-line) !important;
  background: rgba(225, 37, 27, 0.055) !important;
  color: var(--jtd-v5-red) !important;
  box-shadow: none !important;
}

.jtd-btn--primary,
.jtd-mobile-quickbar a:last-child,
.jtd-floating-demo {
  border: 0 !important;
  background: var(--jtd-v5-red-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px -18px rgba(184, 20, 20, 0.6) !important;
}

.jtd-btn--primary:hover,
.jtd-mobile-quickbar a:last-child:hover,
.jtd-floating-demo:hover {
  background: linear-gradient(135deg, #e1251b 0%, #e1251b 48%, #e1251b 100%) !important;
  box-shadow: 0 18px 34px -22px rgba(184, 20, 20, 0.66) !important;
}

.jtd-btn--secondary,
.jtd-btn--light {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: var(--jtd-v5-ink) !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
  backdrop-filter: blur(12px);
}

.jtd-btn--secondary:hover,
.jtd-btn--light:hover,
.jtd-text-link:hover {
  color: var(--jtd-v5-red) !important;
  border-color: rgba(225, 37, 27, 0.18) !important;
  box-shadow: 0 10px 24px -22px rgba(184, 20, 20, 0.28) !important;
}

.jtd-text-link {
  color: var(--jtd-v5-red) !important;
}

.jtd-hero,
.jtd-page-hero,
.single-jtd_product .jtd-page-hero,
.single-jtd_solution .jtd-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 23, 42, 0.045), transparent 31%),
    radial-gradient(circle at 18% 30%, rgba(225, 37, 27, 0.045), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-hero::before,
.jtd-hero::after,
.jtd-page-hero::before,
.jtd-page-hero::after {
  opacity: 0.14 !important;
  filter: grayscale(1) saturate(0.35);
}

.jtd-product-showcase__desktop,
.jtd-page-hero .jtd-product-showcase__desktop,
.jtd-solution-visual-card,
.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-trust-console,
.jtd-ecosystem-visual,
.jtd-vision-orbit {
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(248, 250, 252, 0.48)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(241, 245, 249, 0.56)) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 20px 54px -38px rgba(15, 23, 42, 0.38) !important;
  backdrop-filter: blur(18px) saturate(1.08);
}

.jtd-product-showcase__bar,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span,
.jtd-solution-visual-card__modules span,
.jtd-solution-visual-card__flow span,
.jtd-decision-panel span {
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #1e293b !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
  backdrop-filter: blur(10px);
}

.jtd-product-showcase__bar b,
.jtd-product-showcase__desktop strong,
.jtd-product-showcase__kpis strong,
.jtd-solution-visual-card strong,
.jtd-decision-panel strong {
  color: var(--jtd-v5-ink) !important;
}

.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-product-showcase__chart i,
.jtd-product-card__preview i,
.jtd-solution-visual-card__flow i {
  background: var(--jtd-v5-red-gradient) !important;
}

.jtd-product-showcase__chart i:nth-child(2),
.jtd-product-showcase__chart i:nth-child(3),
.jtd-product-showcase__rows i:nth-child(2n) {
  background: rgba(225, 37, 27, 0.18) !important;
}

.jtd-product-showcase__phone {
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  background: rgba(255, 255, 255, 0.68) !important;
  box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.32), inset 0 0 0 1px rgba(225, 37, 27, 0.08) !important;
  backdrop-filter: blur(16px);
}

.jtd-card,
.jtd-customer-card,
.jtd-product-card,
.jtd-solution-card,
.jtd-case-card,
.jtd-partner-card,
.jtd-trust-card,
.jtd-vision-card,
.jtd-service-card,
.jtd-news-card,
.jtd-qualification-card,
.jtd-decision-row article,
.jtd-product-paths article,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-process-card,
.jtd-value-card,
.jtd-line-card {
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--jtd-v5-shadow) !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-card:hover,
.jtd-solution-card:hover,
.jtd-case-card:hover,
.jtd-partner-card:hover,
.jtd-trust-card:hover,
.jtd-vision-card:hover,
.jtd-service-card:hover,
.jtd-news-card:hover,
.jtd-qualification-card:hover,
.jtd-decision-row article:hover,
.jtd-product-paths article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-line-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(225, 37, 27, 0.14) !important;
  box-shadow: var(--jtd-v5-shadow-hover) !important;
}

.jtd-product-card__preview,
#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.96)) !important;
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.055) !important;
}

.jtd-product-card__preview strong,
#products .jtd-product-card__preview strong,
body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  color: #334155 !important;
}

.jtd-product-card__preview span,
#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
}

.jtd-path-icon,
.jtd-product-paths article > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-line-card__icon,
.jtd-ai-grid article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-customer-card__icon {
  background: var(--jtd-v5-red-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px -18px rgba(184, 20, 20, 0.72) !important;
}

.jtd-ai-grid article:nth-child(3n + 2) > span:first-child,
.jtd-ai-grid article:nth-child(3n) > span:first-child,
.jtd-product-paths article:nth-child(3n + 2) .jtd-path-icon,
.jtd-product-paths article:nth-child(3n) .jtd-path-icon,
.jtd-decision-row article:nth-child(3n + 2) > span:first-child,
.jtd-decision-row article:nth-child(3n) > span:first-child {
  background: var(--jtd-v5-red-gradient) !important;
  box-shadow: 0 10px 22px -18px rgba(184, 20, 20, 0.72) !important;
}

.jtd-split--cta,
.jtd-conversion-panel,
.jtd-lead-modal__head {
  background:
    radial-gradient(circle at 82% 8%, rgba(225, 37, 27, 0.045), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: var(--jtd-v5-shadow) !important;
}

.jtd-site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 38%),
    radial-gradient(circle at 72% 18%, rgba(225, 37, 27, 0.035), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0f172a !important;
  background-size: auto, auto, 48px 48px, 48px 48px, auto !important;
  color: rgba(255, 255, 255, 0.42) !important;
}

.jtd-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%, rgba(0, 0, 0, 0.16));
}

.jtd-site-footer .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-footer__top {
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: 0 18px 54px -34px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
  backdrop-filter: blur(16px);
}

.jtd-site-footer .jtd-eyebrow {
  border-color: rgba(225, 37, 27, 0.28) !important;
  background: rgba(225, 37, 27, 0.12) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.jtd-footer__top h2,
.jtd-footer__grid h2 {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 760 !important;
}

.jtd-footer__top p,
.jtd-footer__brand p,
.jtd-footer__grid p,
.jtd-footer__bottom {
  color: rgba(255, 255, 255, 0.42) !important;
}

.jtd-footer__grid a,
.jtd-footer__legal a,
.jtd-footer__contact a {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 180ms ease, transform 180ms ease;
}

.jtd-footer__grid a:hover,
.jtd-footer__legal a:hover,
.jtd-footer__contact a:hover {
  color: rgba(255, 255, 255, 0.94) !important;
}

.jtd-footer__trust span {
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(255, 255, 255, 0.58) !important;
  box-shadow: none !important;
}

.jtd-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.055) !important;
}

.jtd-site-footer .jtd-btn--light {
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: rgba(255, 255, 255, 0.86) !important;
  box-shadow: none !important;
}

.jtd-site-footer .jtd-btn--light:hover {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

@media (max-width: 980px) {
  .jtd-section {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
}

@media (max-width: 760px) {
  .jtd-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .jtd-section--compact {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
}

/* JTD v5.4 homepage bugfix and final visual trim */
body.home #products .jtd-product-card__preview strong,
body.home #products .jtd-product-card__preview::before,
body.home #products .jtd-product-card__preview::after,
body.home #products .jtd-product-card__preview i {
  display: none !important;
  content: none !important;
}

body.home #products .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  min-height: 92px !important;
  padding: 22px 24px !important;
  align-items: stretch !important;
  justify-content: center !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.045) !important;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(241, 245, 249, 0.9)),
    #f8fafc !important;
  box-shadow: none !important;
}

body.home #products .jtd-product-card__preview div {
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.home #products .jtd-product-card__preview span {
  min-width: 0 !important;
  min-height: 36px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #334155 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.jtd-featured-product .jtd-featured-product__copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.jtd-featured-product .jtd-featured-product__copy .jtd-eyebrow,
.jtd-featured-product .jtd-featured-product__copy h2,
.jtd-featured-product .jtd-featured-product__copy > p:not(.jtd-eyebrow),
.jtd-featured-product .jtd-featured-product__copy .jtd-actions {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.jtd-featured-product .jtd-featured-product__copy h2 {
  color: #0f172a !important;
  font-weight: 760 !important;
}

.jtd-featured-product .jtd-featured-product__copy > p:not(.jtd-eyebrow) {
  color: #475569 !important;
  line-height: 1.85 !important;
}

.jtd-featured-product__copy .jtd-actions {
  margin-top: 0 !important;
}

.jtd-footer__top-wrap {
  overflow: hidden !important;
}

.jtd-site-footer .jtd-footer__top {
  overflow: hidden !important;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  border-radius: 24px !important;
}

.jtd-site-footer .jtd-footer__top > div:first-child {
  margin-left: 0 !important;
}

.jtd-photo-filter,
.jtd-card__media img {
  filter: saturate(1) contrast(1.05) !important;
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: filter 300ms ease, opacity 300ms ease, transform 300ms ease !important;
}

.jtd-card__media:hover .jtd-photo-filter,
.jtd-card:hover .jtd-card__media img {
  filter: saturate(1.04) contrast(1.06) brightness(0.98) !important;
  opacity: 0.95 !important;
  transform: scale(1.02) !important;
}

@media (max-width: 760px) {
  body.home #products .jtd-product-card__preview {
    min-height: auto !important;
    padding: 18px !important;
  }

  body.home #products .jtd-product-card__preview div {
    grid-template-columns: 1fr !important;
  }

  .jtd-featured-product .jtd-featured-product__copy {
    gap: 18px !important;
  }

  .jtd-site-footer .jtd-footer__top {
    border-radius: 20px !important;
  }
}

/* JTD high-gloss minimal technology system v5.2 precision cleanup */
.jtd-future-section,
.jtd-resource-section,
.jtd-featured-product,
.jtd-stat-section,
.jtd-section--audience,
.jtd-ai-section,
.jtd-platform-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.jtd-product-showcase__desktop,
.jtd-stat-panel,
.jtd-resource-flow,
.jtd-ecosystem-map,
.jtd-security-main,
.jtd-future-board {
  border-color: rgba(15, 23, 42, 0.07) !important;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(248, 250, 252, 0.62) 100%) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset, 0 20px 54px -38px rgba(15, 23, 42, 0.38) !important;
  backdrop-filter: blur(18px) saturate(1.04);
  animation: none !important;
}

.jtd-future-board::before,
.jtd-future-board::after,
.jtd-future-board__scan {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  animation: none !important;
}

.jtd-future-board article,
.jtd-long-roadmap article,
.jtd-operating-board article,
.jtd-operating-board article:nth-child(2),
.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n),
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n),
body.post-type-archive-jtd_product .jtd-product-card {
  border-color: rgba(15, 23, 42, 0.06) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--jtd-v5-shadow) !important;
}

.jtd-future-board article:hover,
.jtd-long-roadmap article:hover,
.jtd-operating-board article:hover,
#products .jtd-product-card:hover,
#products .jtd-product-card:nth-child(4n + 1):hover,
#products .jtd-product-card:nth-child(4n + 2):hover,
#products .jtd-product-card:nth-child(4n + 3):hover,
#products .jtd-product-card:nth-child(4n):hover,
body.post-type-archive-jtd_product .jtd-product-card:hover {
  border-color: rgba(225, 37, 27, 0.14) !important;
  box-shadow: var(--jtd-v5-shadow-hover) !important;
}

.jtd-future-board span,
.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span,
.jtd-operating-board article:nth-child(3n + 1) > span,
.jtd-operating-board article:nth-child(3n + 2) > span,
.jtd-operating-board article:nth-child(3n) > span,
.jtd-long-roadmap span,
.jtd-long-roadmap b {
  border-color: rgba(225, 37, 27, 0.16) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #e1251b !important;
  box-shadow: 0 8px 18px rgba(184, 20, 20, 0.045) !important;
}

.jtd-product-showcase__head strong,
.jtd-product-showcase__desktop > strong,
.jtd-product-showcase__desktop strong,
.jtd-product-card__preview strong,
#products .jtd-product-card__preview strong,
body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  border-color: rgba(225, 37, 27, 0.16) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #e1251b !important;
  box-shadow: 0 8px 18px rgba(184, 20, 20, 0.045) !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  border-bottom: 1px solid rgba(15, 23, 42, 0.055) !important;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  background-size: 58px 58px, 58px 58px, auto !important;
}

#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span,
.jtd-product-showcase__modules span,
.jtd-product-showcase__kpis span,
.jtd-resource-flow span,
.jtd-ecosystem-map__node {
  border-color: rgba(15, 23, 42, 0.07) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
}

#products .jtd-product-card__preview i,
body.post-type-archive-jtd_product .jtd-product-card__preview i,
.jtd-product-showcase__chart i,
.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i {
  background: var(--jtd-v5-red-gradient) !important;
}

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
  }

  .jtd-container {
    width: min(100% - 28px, var(--jtd-container));
  }

  h1 {
    font-size: 38px;
  }

  .jtd-hero__content h1 {
    font-size: 38px;
    word-break: normal;
  }

  .jtd-hero__slides {
    min-height: 800px;
  }

  .jtd-dashboard-card__grid,
  .jtd-card-grid--3,
  .jtd-card-grid--4,
  .jtd-customer-grid,
  .jtd-value-row,
  .jtd-process-row,
  .jtd-trust-strip__inner,
  .jtd-case-layout,
  .jtd-security-grid,
  .jtd-footer__grid,
  .jtd-lead-form {
    grid-template-columns: 1fr;
  }

  .jtd-section {
    padding: 64px 0;
  }

  .jtd-screenshot-shell__body {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 110px);
  }

  .jtd-actions {
    flex-direction: column;
  }

  .jtd-customer-card,
  .jtd-conversion-panel {
    padding: 22px;
  }

  .jtd-customer-card {
    min-height: 0;
  }

  .jtd-btn {
    width: 100%;
  }

  .jtd-mobile-quickbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid var(--jtd-line);
    box-shadow: 0 -12px 30px rgba(17, 24, 39, 0.08);
  }

  .jtd-mobile-quickbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jtd-ink);
    font-size: 14px;
    font-weight: 800;
  }

  .jtd-mobile-quickbar a:last-child {
    background: var(--jtd-red);
    color: #fff;
  }
}

/* Visual polish v0.2 */
:root {
  --jtd-ink: #101623;
  --jtd-muted: #647084;
  --jtd-soft: #f4f6fa;
  --jtd-line: #e1e6ef;
  --jtd-card: #ffffff;
  --jtd-blue: #1d4ed8;
  --jtd-green: #12a37f;
  --jtd-gold: #d99a12;
  --jtd-radius: 8px;
  --jtd-shadow: 0 20px 48px rgba(16, 22, 35, 0.08);
  --jtd-shadow-soft: 0 10px 26px rgba(16, 22, 35, 0.06);
  --jtd-container: 1200px;
}

body {
  background: #f7f9fc;
  color: var(--jtd-ink);
  font-size: 16px;
  line-height: 1.72;
}

h1 {
  font-size: 58px;
  line-height: 1.12;
}

h2 {
  font-size: 40px;
  line-height: 1.18;
}

h3 {
  font-size: 19px;
  line-height: 1.35;
}

.jtd-site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(218, 225, 235, 0.9);
  box-shadow: 0 8px 24px rgba(16, 22, 35, 0.04);
}

.jtd-header__inner {
  min-height: 72px;
}

.jtd-logo__mark {
  min-width: auto;
  height: auto;
  font-size: 20px;
  letter-spacing: 0;
}

.jtd-logo__text {
  font-size: 16px;
  font-weight: 900;
}

.jtd-primary-nav__list {
  gap: 16px;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  min-height: 72px;
  color: #263044;
  font-size: 14px;
  font-weight: 760;
}

.jtd-mega-menu {
  top: 72px;
  padding: 18px;
  border-color: rgba(219, 226, 236, 0.9);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 24px 70px rgba(16, 22, 35, 0.14);
}

.jtd-mega-menu h3 {
  color: #111827;
  font-size: 14px;
}

.jtd-mega-menu a {
  padding: 11px 12px;
}

.jtd-mega-menu a:hover {
  background: #fff4f3;
}

.jtd-mega-menu__cta,
.jtd-security-main {
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.98), rgba(176, 30, 30, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent);
  border-color: rgba(225, 37, 27, 0.22);
  color: #fff;
}

.jtd-mega-menu__cta strong,
.jtd-security-main h3 {
  color: #fff;
}

.jtd-mega-menu__cta p {
  color: rgba(255, 255, 255, 0.82);
}

.jtd-btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  box-shadow: none;
}

.jtd-btn--primary {
  background: #e1251b;
  box-shadow: 0 10px 22px rgba(225, 37, 27, 0.2);
}

.jtd-btn--primary:hover {
  background: #e1251b;
}

.jtd-btn--secondary {
  background: #fff;
  border-color: #e9c5c1;
  color: #e1251b;
}

.jtd-hero {
  min-height: 720px;
  padding: 92px 0 46px;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 44%, rgba(255, 244, 243, 0.86) 44.2%, rgba(255, 244, 243, 0.5) 68%, rgba(245, 248, 252, 0.95) 68.2%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  overflow: hidden;
}

.jtd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225, 37, 27, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 41, 55, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  pointer-events: none;
}

.jtd-hero .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-hero__slides {
  min-height: 540px;
}

.jtd-hero__slide {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 64px;
}

.jtd-hero__content h1 {
  max-width: 700px;
  font-size: 60px;
  line-height: 1.08;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  color: #4c576b;
  font-size: 20px;
  line-height: 1.75;
}

.jtd-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 16px;
  background: #fff2f1;
  border: 1px solid #f6d2cf;
  border-radius: 999px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 850;
}

.jtd-hero__dots {
  align-items: center;
  margin-top: 18px;
}

.jtd-hero__dots button {
  width: 42px;
  height: 5px;
  background: #d6dbe5;
}

.jtd-dashboard-card {
  min-height: 450px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(16, 22, 35, 0.16);
}

.jtd-dashboard-card::before {
  content: "";
  position: absolute;
  inset: 68px 18px auto;
  height: 1px;
  background: #edf1f6;
}

.jtd-dashboard-card__top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  margin-bottom: 30px;
  padding: 0 12px;
  background: #111827;
  border-radius: 8px;
}

.jtd-dashboard-card__top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e1251b;
}

.jtd-dashboard-card__top span:nth-child(2) {
  background: #f59e0b;
}

.jtd-dashboard-card__top span:nth-child(3) {
  background: #10b981;
}

.jtd-dashboard-card__metric {
  min-height: 118px;
  padding: 24px;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg, #fff5f4, #ffffff 62%),
    linear-gradient(90deg, rgba(225, 37, 27, 0.06), transparent);
  border: 1px solid #f3d4d1;
  border-radius: 8px;
}

.jtd-dashboard-card__metric span {
  color: #4b5563;
  font-weight: 850;
}

.jtd-dashboard-card__metric strong {
  color: #e1251b;
  font-size: 46px;
  line-height: 1;
}

.jtd-dashboard-card__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.jtd-dashboard-card__grid span {
  display: grid;
  align-content: space-between;
  height: 108px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.jtd-dashboard-card__grid b {
  color: #111827;
  font-size: 15px;
}

.jtd-dashboard-card__grid i {
  display: block;
  height: 30px;
  background:
    linear-gradient(90deg, #e1251b 0 32%, transparent 32%),
    repeating-linear-gradient(90deg, #dfe6ef 0 18px, transparent 18px 28px);
  border-radius: 999px;
}

.jtd-dashboard-card p {
  display: inline-flex;
  min-height: 30px;
  padding: 0 10px;
  margin-top: 20px;
  align-items: center;
  background: #f0fdf8;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  color: #047857;
  font-size: 13px;
}

.jtd-trust-strip {
  background: #fff;
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #edf1f6;
}

.jtd-trust-strip__inner {
  gap: 12px;
  padding: 20px 0;
}

.jtd-trust-strip span {
  min-height: 60px;
  background: #fff;
  border: 1px solid #e4eaf3;
  box-shadow: 0 8px 20px rgba(16, 22, 35, 0.04);
}

.jtd-section {
  padding: 96px 0;
}

.jtd-section--muted {
  background:
    linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.jtd-section__header {
  max-width: 820px;
  margin-bottom: 46px;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  color: #647084;
  font-size: 17px;
}

.jtd-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.jtd-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 22, 35, 0.04);
}

.jtd-card:hover {
  border-color: rgba(225, 37, 27, 0.35);
  box-shadow: 0 22px 52px rgba(16, 22, 35, 0.1);
  transform: translateY(-3px);
}

.jtd-card__body {
  padding: 26px;
}

.jtd-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
}

.jtd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jtd-card h2,
.jtd-card h3 {
  margin: 12px 0 12px;
}

.jtd-card p {
  color: #626f83;
}

.jtd-product-card .jtd-card__body {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.jtd-product-card .jtd-text-link {
  margin-top: auto;
}

.jtd-tag {
  background: #fff3f2;
  border: 1px solid #f6d2cf;
  color: #e1251b;
}

.jtd-value-card,
.jtd-process-card,
.jtd-roadmap article,
.jtd-step-list li,
.jtd-diagram-card,
.jtd-screenshot-shell,
.jtd-lead-form,
.jtd-contact-info,
.jtd-list-card,
.jtd-case-meta {
  border-color: #e2e8f0;
  border-radius: 8px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-value-card {
  background: #fff;
}

.jtd-value-card:nth-child(2),
.jtd-value-card:nth-child(4) {
  background: #f8fafc;
}

.jtd-process-card span,
.jtd-step-list span {
  background: #e1251b;
}

.jtd-featured-product {
  background:
    linear-gradient(96deg, #101827 0%, #172033 44%, #fff 44.2%, #fff 100%);
}

.jtd-featured-product .jtd-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.jtd-featured-product h2,
.jtd-featured-product .jtd-check-list,
.jtd-featured-product p {
  color: #fff;
}

.jtd-featured-product .jtd-check-list {
  color: rgba(255, 255, 255, 0.82);
}

.jtd-featured-product .jtd-screenshot-shell {
  background: rgba(255, 255, 255, 0.98);
}

.jtd-screenshot-shell {
  min-height: 420px;
  border-radius: 8px;
}

.jtd-screenshot-shell__bar {
  height: 38px;
  border-radius: 8px;
}

.jtd-screenshot-shell__body div {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.jtd-screenshot-shell__body div::before,
.jtd-screenshot-shell__body div::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.jtd-screenshot-shell__body div::before {
  left: 18px;
  right: 18px;
  top: 22px;
  height: 12px;
  background:
    linear-gradient(90deg, #e1251b 0 24%, transparent 24%),
    repeating-linear-gradient(90deg, #dbe3ee 0 34px, transparent 34px 46px);
}

.jtd-screenshot-shell__body div::after {
  left: 18px;
  right: 18px;
  bottom: 22px;
  height: 66px;
  background:
    linear-gradient(180deg, transparent 0 18%, #dbe3ee 18% 21%, transparent 21% 42%, #dbe3ee 42% 45%, transparent 45% 66%, #dbe3ee 66% 69%, transparent 69%),
    linear-gradient(90deg, rgba(225, 37, 27, 0.14), rgba(29, 78, 216, 0.1));
}

.jtd-screenshot-shell__body div:nth-child(2)::after {
  height: 82px;
  background:
    linear-gradient(90deg, #e1251b 0 16%, transparent 16% 20%, #dbe3ee 20% 32%, transparent 32% 38%, #dbe3ee 38% 50%, transparent 50% 58%, #dbe3ee 58% 72%, transparent 72%),
    linear-gradient(180deg, transparent 0 24%, rgba(29, 78, 216, 0.1) 24% 100%);
}

.jtd-screenshot-shell__body div:nth-child(3)::after {
  height: 82px;
  background:
    repeating-linear-gradient(180deg, #dbe3ee 0 2px, transparent 2px 18px),
    linear-gradient(90deg, rgba(18, 163, 127, 0.16), rgba(225, 37, 27, 0.08));
}

.jtd-screenshot-shell__body div:nth-child(4)::after {
  right: auto;
  width: 82px;
  height: 82px;
  background: conic-gradient(from 90deg, #e1251b 0 34%, #e5e7eb 34% 100%);
}

.jtd-diagram-card {
  border-radius: 8px;
}

.jtd-diagram-card span {
  background: #fff;
  border-color: #e3e9f2;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(16, 22, 35, 0.04);
}

.jtd-lead-form {
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: 8px;
}

.jtd-lead-form input,
.jtd-lead-form select,
.jtd-lead-form textarea {
  border-color: #dbe3ee;
  border-radius: 8px;
  background: #fff;
}

.jtd-lead-form input:focus,
.jtd-lead-form select:focus,
.jtd-lead-form textarea:focus {
  outline: 2px solid rgba(225, 37, 27, 0.18);
  border-color: #e1251b;
}

.jtd-form-note {
  margin: 10px 0 0;
  color: #7a8597;
  font-size: 13px;
  line-height: 1.6;
}

.jtd-page-hero {
  padding: 92px 0 62px;
  background:
    linear-gradient(112deg, #fff 0%, #fff 58%, #fff5f4 58.2%, #fff9f8 100%),
    linear-gradient(180deg, #ffffff, #f6f8fb);
  border-bottom: 1px solid #edf1f6;
}

.jtd-page-hero h1 {
  max-width: 900px;
}

.jtd-site-footer {
  background:
    linear-gradient(180deg, #101820 0%, #0b1118 100%);
}

.jtd-footer__grid {
  gap: 30px;
}

.jtd-footer__grid a:hover {
  color: #fff;
}

.jtd-photo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(16, 22, 35, 0.14);
}

.jtd-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.jtd-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(16, 22, 35, 0.82));
}

.jtd-photo-card__caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.jtd-photo-card__caption strong,
.jtd-photo-card__caption span {
  display: block;
  color: #fff;
}

.jtd-photo-card__caption strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.jtd-photo-card__caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .jtd-hero {
    padding-top: 64px;
  }

  .jtd-hero__slide,
  .jtd-split,
  .jtd-split--cta {
    grid-template-columns: 1fr;
  }

  .jtd-hero__content {
    width: 100%;
    min-width: 0;
  }

  .jtd-customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .jtd-conversion-panel .jtd-actions {
    justify-content: flex-start;
  }

  .jtd-hero__slides {
    min-height: 820px;
  }

  .jtd-hero__content h1 {
    font-size: 48px;
  }

  .jtd-featured-product {
    background: #101827;
  }

  .jtd-dashboard-card {
    width: 100%;
  }
}

@media (max-width: 680px) {
  h1,
  .jtd-hero__content h1 {
    font-size: 36px;
    line-height: 1.16;
    width: 100%;
    max-width: 100%;
    word-break: normal;
    white-space: normal;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 18px;
  }

  .jtd-site-header {
    box-shadow: 0 6px 18px rgba(16, 22, 35, 0.06);
  }

  .jtd-hero {
    padding: 46px 0 30px;
  }

  .jtd-hero__slides {
    min-height: 820px;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    font-size: 17px;
  }

  .jtd-dashboard-card {
    min-height: 390px;
    padding: 14px;
  }

  .jtd-dashboard-card__metric {
    min-height: 104px;
    padding: 18px;
  }

  .jtd-dashboard-card__metric strong {
    font-size: 38px;
  }

  .jtd-dashboard-card__grid span {
    height: 92px;
  }

  .jtd-section,
  .jtd-page-hero {
    padding: 58px 0;
  }

  .jtd-card__body {
    padding: 22px;
  }

  .jtd-product-card .jtd-card__body {
    min-height: 0;
  }

  .jtd-customer-grid {
    grid-template-columns: 1fr;
  }

  .jtd-customer-card,
  .jtd-conversion-panel {
    min-height: 0;
    padding: 22px;
  }

  .jtd-footer__grid {
    gap: 22px;
  }

  .jtd-photo-card,
  .jtd-photo-card img {
    min-height: 300px;
  }
}

/* Mobile hero tightening */
@media (min-width: 1025px) {
  .jtd-hero {
    min-height: 590px;
    padding: 64px 0 30px;
  }

  .jtd-hero__slides {
    min-height: 470px;
  }

  .jtd-dashboard-card {
    min-height: 420px;
  }
}

@media (max-width: 1024px) {
  .jtd-hero__slides {
    min-height: 0;
  }

  .jtd-hero__slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .jtd-hero__slide.is-active {
    display: grid;
  }
}

@media (max-width: 680px) {
  .jtd-hero {
    padding: 32px 0 18px;
  }

  .jtd-hero__slide {
    gap: 20px;
  }

  .jtd-hero__content h1 {
    font-size: 34px;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.65;
  }

  .jtd-hero .jtd-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .jtd-hero__visual {
    min-height: 0;
  }

  .jtd-dashboard-card {
    min-height: 0;
    padding: 12px;
  }

  .jtd-dashboard-card::before {
    inset: 52px 12px auto;
  }

  .jtd-dashboard-card__top {
    height: 32px;
    margin-bottom: 14px;
    padding: 0 10px;
  }

  .jtd-dashboard-card__metric {
    min-height: 86px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .jtd-dashboard-card__metric strong {
    font-size: 32px;
  }

  .jtd-dashboard-card__grid {
    gap: 10px;
  }

  .jtd-dashboard-card__grid span {
    height: 72px;
    padding: 12px;
  }

  .jtd-dashboard-card__grid span:nth-child(n + 3) {
    display: none;
  }

  .jtd-dashboard-card p {
    min-height: 26px;
    margin-top: 12px;
    font-size: 12px;
  }

  .jtd-hero__dots {
    margin-top: 12px;
  }
}

/* Visual refinement phase */
.jtd-hero {
  overflow: hidden;
  background:
    linear-gradient(112deg, #ffffff 0%, #ffffff 38%, #fff5f4 38.2%, #fff8f7 56%, #f5f7fb 56.2%, #ffffff 100%);
}

.jtd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(225, 37, 27, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 36%, #000 82%, transparent 100%);
}

.jtd-hero .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-hero__content h1 {
  max-width: 760px;
  font-weight: 850;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  color: #445066;
}

.jtd-hero__proof,
.jtd-product-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e4eaf3;
  border-radius: 999px;
  color: #3f4a5f;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(16, 22, 35, 0.05);
}

.jtd-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.jtd-hero__signal {
  position: absolute;
  left: 0;
  top: 36px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.jtd-hero__signal span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 0 12px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.16);
}

.jtd-dashboard-card {
  width: min(100%, 560px);
  min-height: 468px;
  padding: 20px;
  border-color: #d9e2ef;
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.18);
}

.jtd-dashboard-card__headline {
  display: grid;
  gap: 8px;
  padding: 0 6px 18px;
}

.jtd-dashboard-card__headline span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 850;
}

.jtd-dashboard-card__headline strong {
  color: #111827;
  font-size: 25px;
  line-height: 1.25;
}

.jtd-dashboard-card__metric {
  min-height: 108px;
}

.jtd-dashboard-card__metric strong {
  font-size: 40px;
  white-space: nowrap;
}

.jtd-dashboard-card p {
  display: flex;
  min-height: auto;
  padding: 14px 16px;
  margin-top: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #445066;
  font-size: 14px;
  line-height: 1.6;
}

.jtd-trust-strip {
  position: relative;
  z-index: 2;
}

.jtd-section__header h2 {
  font-weight: 820;
}

.jtd-section--audience {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.jtd-customer-card {
  position: relative;
  overflow: hidden;
  min-height: 338px;
}

.jtd-customer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #e1251b, #e1251b);
  opacity: 0;
  transition: opacity 160ms ease;
}

.jtd-customer-card:hover::before {
  opacity: 1;
}

.jtd-customer-card__head,
.jtd-product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.jtd-customer-card__icon,
.jtd-capability-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff3f2;
  border: 1px solid #f6d2cf;
  border-radius: 8px;
  color: #e1251b;
  font-weight: 900;
}

.jtd-customer-card__index {
  color: rgba(225, 37, 27, 0.2);
  font-size: 38px;
}

.jtd-product-card {
  position: relative;
}

.jtd-product-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #e1251b, transparent);
  opacity: 0;
  transition: opacity 160ms ease;
}

.jtd-product-card:hover::after {
  opacity: 1;
}

.jtd-product-card__head span:last-child {
  flex: 0 0 auto;
  color: #a8b0bf;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-product-card__head .jtd-tag {
  max-width: calc(100% - 82px);
  white-space: normal;
}

.jtd-product-card h2,
.jtd-product-card h3 {
  font-weight: 820;
}

.jtd-value-card {
  position: relative;
  overflow: hidden;
}

.jtd-value-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  background: #e1251b;
  border-radius: 999px;
}

.jtd-featured-product {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, #111827 0%, #121a2b 58%, #1b2436 58.2%, #101827 100%);
  color: #fff;
}

.jtd-featured-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 66px 66px;
  opacity: 0.45;
}

.jtd-featured-product .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-featured-product h2 {
  max-width: 620px;
  color: #fff;
  font-weight: 830;
}

.jtd-featured-product p {
  color: rgba(255, 255, 255, 0.82);
}

.jtd-featured-product .jtd-check-list {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.jtd-featured-product .jtd-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.jtd-featured-product__modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.jtd-featured-product__modules span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.jtd-featured-product__modules b {
  color: #fff;
  font-size: 15px;
}

.jtd-featured-product__modules i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.jtd-featured-product__modules span:first-child {
  background: rgba(225, 37, 27, 0.26);
  border-color: rgba(255, 128, 119, 0.36);
}

.jtd-featured-product .jtd-screenshot-shell {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.jtd-capability-card .jtd-card__body {
  min-height: 286px;
}

.jtd-capability-card h3 {
  margin-top: 22px;
}

.jtd-capability-card:hover .jtd-capability-card__icon {
  background: #e1251b;
  border-color: #e1251b;
  color: #fff;
}

.jtd-product-hero {
  overflow: hidden;
  background:
    linear-gradient(112deg, #ffffff 0%, #ffffff 40%, #fff5f4 40.2%, #f5f7fb 100%);
}

.jtd-product-visual-card {
  min-height: 470px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  box-shadow: 0 32px 84px rgba(17, 24, 39, 0.15);
}

.jtd-product-visual-card__top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 12px;
  background: #111827;
  border-radius: 8px;
}

.jtd-product-visual-card__top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e1251b;
}

.jtd-product-visual-card__top span:nth-child(2) {
  background: #f59e0b;
}

.jtd-product-visual-card__top span:nth-child(3) {
  background: #10b981;
}

.jtd-product-visual-card__top b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0;
}

.jtd-product-visual-card__title {
  display: grid;
  gap: 8px;
  padding: 26px 8px 20px;
}

.jtd-product-visual-card__title span {
  color: #e1251b;
  font-size: 13px;
  font-weight: 850;
}

.jtd-product-visual-card__title strong {
  color: #111827;
  font-size: 26px;
  line-height: 1.28;
}

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

.jtd-product-visual-card__grid span {
  display: grid;
  gap: 16px;
  min-height: 104px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.jtd-product-visual-card__grid b {
  color: #111827;
  font-size: 15px;
}

.jtd-product-visual-card__grid i {
  display: block;
  height: 28px;
  background:
    linear-gradient(90deg, #e1251b 0 24%, transparent 24%),
    repeating-linear-gradient(90deg, #dfe6ef 0 24px, transparent 24px 36px);
  border-radius: 999px;
}

.jtd-product-visual-card__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.jtd-product-visual-card__flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 8px;
  background: #fff3f2;
  border: 1px solid #f6d2cf;
  border-radius: 8px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.jtd-product-strip {
  background: #111827;
}

.jtd-product-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.jtd-product-strip article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 24px;
  background: #111827;
}

.jtd-product-strip span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 850;
}

.jtd-product-strip strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .jtd-hero::before {
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  }

  .jtd-hero__signal {
    left: 16px;
    top: 18px;
  }

  .jtd-dashboard-card {
    margin-left: auto;
    margin-right: auto;
  }

  .jtd-product-strip__inner,
  .jtd-featured-product__modules {
    grid-template-columns: 1fr;
  }

  .jtd-product-visual-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .jtd-container {
    width: min(100% - 28px, var(--jtd-container));
  }

  .jtd-hero {
    background:
      linear-gradient(180deg, #ffffff 0%, #fff7f6 48%, #f6f8fb 100%);
  }

  .jtd-hero__proof,
  .jtd-product-hero__proof {
    gap: 8px;
  }

  .jtd-hero__proof span,
  .jtd-product-hero__proof span {
    font-size: 12px;
  }

  .jtd-hero__signal {
    display: none;
  }

  .jtd-dashboard-card__headline strong,
  .jtd-product-visual-card__title strong {
    font-size: 21px;
  }

  .jtd-dashboard-card__metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .jtd-dashboard-card__metric strong {
    font-size: 30px;
  }

  .jtd-dashboard-card p {
    font-size: 13px;
  }

  .jtd-trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .jtd-customer-card {
    min-height: 0;
  }

  .jtd-product-card__head {
    align-items: flex-start;
  }

  .jtd-product-card__head span:last-child {
    display: none;
  }

  .jtd-product-card__head .jtd-tag {
    max-width: 100%;
  }

  .jtd-product-visual-card__grid,
  .jtd-product-visual-card__flow {
    grid-template-columns: 1fr;
  }

  .jtd-product-strip article {
    min-height: 0;
    padding: 20px;
  }
}

/* Solution and case refinement */
.jtd-section--compact {
  padding: 56px 0;
}

.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-solution-visual-card,
.jtd-case-visual-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(17, 24, 39, 0.12);
}

.jtd-decision-panel {
  display: grid;
  gap: 12px;
  counter-reset: decision;
}

.jtd-decision-panel span {
  counter-increment: decision;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #111827;
  font-weight: 850;
}

.jtd-decision-panel span::before {
  content: counter(decision);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e1251b;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
}

.jtd-decision-row,
.jtd-case-principles {
  display: grid;
  gap: 18px;
}

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

.jtd-case-principles {
  grid-template-columns: repeat(4, 1fr);
}

.jtd-decision-row article,
.jtd-case-principles article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(16, 22, 35, 0.055);
}

.jtd-decision-row span {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(225, 37, 27, 0.34);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.jtd-decision-row h2,
.jtd-case-principles h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.jtd-solution-card,
.jtd-case-card {
  position: relative;
}

.jtd-solution-card::after,
.jtd-case-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #e1251b, #e1251b);
  opacity: 0;
  transition: opacity 160ms ease;
}

.jtd-solution-card:hover::after,
.jtd-case-card:hover::after {
  opacity: 1;
}

.jtd-solution-card .jtd-card__body,
.jtd-case-card .jtd-card__body {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.jtd-solution-card__points,
.jtd-case-card__meta,
.jtd-case-meta__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.jtd-solution-card__points span,
.jtd-case-card__meta span,
.jtd-case-meta__steps span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #445066;
  font-size: 12px;
  font-weight: 800;
}

.jtd-solution-card .jtd-text-link,
.jtd-case-card .jtd-text-link {
  margin-top: auto;
  padding-top: 18px;
}

.jtd-solution-hero,
.jtd-case-hero {
  background:
    linear-gradient(112deg, #ffffff 0%, #ffffff 42%, #fff5f4 42.2%, #f5f7fb 100%);
}

.jtd-solution-visual-card {
  display: grid;
  align-content: center;
  gap: 22px;
}

.jtd-solution-visual-card__title {
  display: grid;
  gap: 8px;
}

.jtd-solution-visual-card__title span {
  color: #e1251b;
  font-size: 13px;
  font-weight: 850;
}

.jtd-solution-visual-card__title strong,
.jtd-case-visual-card strong {
  color: #111827;
  font-size: 27px;
  line-height: 1.28;
}

.jtd-solution-visual-card__modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.jtd-solution-visual-card__modules span {
  min-height: 72px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #111827;
  font-weight: 850;
}

.jtd-solution-visual-card__flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.jtd-solution-visual-card__flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  background: #fff3f2;
  border: 1px solid #f6d2cf;
  border-radius: 999px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 850;
}

.jtd-solution-visual-card__flow i {
  height: 2px;
  background: linear-gradient(90deg, #e1251b, #e2e8f0);
  border-radius: 999px;
}

.jtd-case-proof-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  background:
    linear-gradient(145deg, #111827, #1d2638);
  color: #fff;
}

.jtd-case-proof-panel strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
}

.jtd-case-proof-panel span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.jtd-case-visual-card {
  display: grid;
  align-content: center;
  gap: 22px;
}

.jtd-case-visual-card div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.jtd-case-visual-card div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #111827;
  font-weight: 850;
}

.jtd-case-meta {
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 22, 35, 0.06);
}

.jtd-case-content > p {
  padding: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 22, 35, 0.04);
}

@media (max-width: 1024px) {
  .jtd-decision-row,
  .jtd-case-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .jtd-decision-panel,
  .jtd-case-proof-panel,
  .jtd-solution-visual-card,
  .jtd-case-visual-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .jtd-section--compact {
    padding: 38px 0;
  }

  .jtd-decision-row,
  .jtd-case-principles,
  .jtd-solution-visual-card__modules,
  .jtd-case-visual-card div {
    grid-template-columns: 1fr;
  }

  .jtd-decision-row article,
  .jtd-case-principles article,
  .jtd-solution-card .jtd-card__body,
  .jtd-case-card .jtd-card__body {
    min-height: 0;
  }

  .jtd-solution-visual-card__flow {
    grid-template-columns: 1fr;
  }

  .jtd-solution-visual-card__flow i {
    width: 2px;
    height: 18px;
    margin: 0 auto;
  }

  .jtd-case-proof-panel strong,
  .jtd-solution-visual-card__title strong,
  .jtd-case-visual-card strong {
    font-size: 22px;
  }
}

/* Trust, ecosystem and content page refinement */
.jtd-partner-hero,
.jtd-about-hero,
.jtd-service-hero,
.jtd-security-hero,
.jtd-news-hero {
  background:
    linear-gradient(112deg, #ffffff 0%, #ffffff 42%, #fff5f4 42.2%, #f5f7fb 100%);
}

.jtd-ecosystem-visual,
.jtd-service-visual,
.jtd-security-visual {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 380px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(17, 24, 39, 0.12);
}

.jtd-ecosystem-visual strong,
.jtd-service-visual strong,
.jtd-security-visual strong {
  margin-bottom: 10px;
  color: #111827;
  font-size: 28px;
  line-height: 1.25;
}

.jtd-ecosystem-visual div {
  display: grid;
  gap: 12px;
}

.jtd-ecosystem-visual span,
.jtd-service-visual span,
.jtd-security-visual span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #111827;
  font-weight: 850;
}

.jtd-ecosystem-visual span:first-of-type,
.jtd-service-visual span:first-of-type,
.jtd-security-visual span:first-of-type {
  background: #fff3f2;
  border-color: #f6d2cf;
  color: #e1251b;
}

.jtd-partner-type-card .jtd-card__body,
.jtd-about-capability-card .jtd-card__body,
.jtd-service-card .jtd-card__body,
.jtd-qualification-card .jtd-card__body,
.jtd-news-card .jtd-card__body,
.jtd-partner-card .jtd-card__body {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.jtd-partner-type-card__icon,
.jtd-about-capability-card .jtd-card__body > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: #fff3f2;
  border: 1px solid #f6d2cf;
  border-radius: 8px;
  color: #e1251b;
  font-weight: 900;
}

.jtd-partner-type-card h3,
.jtd-about-capability-card h3 {
  margin-top: 0;
}

.jtd-partner-card .jtd-btn,
.jtd-service-card .jtd-text-link,
.jtd-qualification-card .jtd-text-link,
.jtd-news-card .jtd-text-link {
  margin-top: auto;
}

.jtd-partner-card .jtd-btn {
  align-self: flex-start;
  margin-top: 16px;
}

.jtd-about-position {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jtd-about-position article {
  min-height: 178px;
  padding: 24px;
  background: #111827;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.12);
}

.jtd-about-position article:nth-child(2) {
  background: linear-gradient(145deg, #e1251b, #e1251b);
}

.jtd-about-position h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
}

.jtd-about-position p {
  color: rgba(255, 255, 255, 0.78);
}

.jtd-service-path-card {
  overflow: hidden;
}

.jtd-service-path-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  height: 4px;
  background: linear-gradient(90deg, #e1251b, #e2e8f0);
  border-radius: 999px;
}

.jtd-security-capability-card .jtd-card__body {
  min-height: 210px;
}

.jtd-news-topics {
  display: grid;
  gap: 14px;
  min-height: 340px;
}

.jtd-news-topics article {
  padding: 22px;
  background: #fff;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 22, 35, 0.06);
}

.jtd-news-topics h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.jtd-news-card {
  position: relative;
}

.jtd-news-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #e1251b, #e1251b);
  opacity: 0;
  transition: opacity 160ms ease;
}

.jtd-news-card:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .jtd-ecosystem-visual,
  .jtd-service-visual,
  .jtd-security-visual {
    min-height: auto;
  }

  .jtd-about-position {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .jtd-ecosystem-visual strong,
  .jtd-service-visual strong,
  .jtd-security-visual strong {
    font-size: 22px;
  }

  .jtd-partner-type-card .jtd-card__body,
  .jtd-about-capability-card .jtd-card__body,
  .jtd-service-card .jtd-card__body,
  .jtd-qualification-card .jtd-card__body,
  .jtd-news-card .jtd-card__body,
  .jtd-partner-card .jtd-card__body {
    min-height: 0;
  }

  .jtd-about-position article {
    min-height: 0;
  }
}

/* Footer, navigation and reading polish */
.jtd-nav-lock,
.jtd-nav-lock body {
  overflow: hidden;
}

.jtd-richtext {
  color: #445066;
  font-size: 17px;
  line-height: 1.86;
}

.jtd-richtext h2,
.jtd-richtext h3 {
  margin: 34px 0 14px;
}

.jtd-richtext h2:first-child,
.jtd-richtext h3:first-child {
  margin-top: 0;
}

.jtd-richtext a {
  color: #e1251b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jtd-richtext blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: #fff7f6;
  border-left: 4px solid #e1251b;
  border-radius: 8px;
}

.jtd-site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.jtd-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.55;
}

.jtd-site-footer .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.jtd-footer__top .jtd-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.jtd-footer__top h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
}

.jtd-footer__top p {
  max-width: 680px;
}

.jtd-footer__top .jtd-btn--light {
  border-color: rgba(255, 255, 255, 0.24);
}

.jtd-footer__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 0 36px;
}

.jtd-footer__trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #e5e7eb;
  font-weight: 850;
  text-align: center;
}

.jtd-footer__grid {
  padding-top: 0;
}

.jtd-footer__brand {
  padding-right: 16px;
}

.jtd-footer__contact {
  margin-top: 14px;
}

.jtd-footer__grid a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .jtd-primary-nav {
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
  }

  .jtd-primary-nav__list {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .jtd-mega-menu__grid--partners {
    grid-template-columns: 1fr;
  }

  .jtd-footer__top,
  .jtd-footer__trust {
    grid-template-columns: 1fr;
  }

  .jtd-footer__top .jtd-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .jtd-richtext {
    font-size: 16px;
  }

  .jtd-footer__top {
    padding: 34px 0 26px;
  }

  .jtd-footer__trust {
    padding-bottom: 28px;
  }

  .jtd-footer__trust span {
    min-height: 42px;
    font-size: 14px;
  }
}

/* Processed asset and product mockup framework */
.jtd-logo__image {
  width: 176px;
  max-width: 44vw;
  height: auto;
}

.jtd-logo--footer .jtd-logo__image {
  width: 158px;
}

.custom-logo-link img {
  width: 176px;
  height: auto;
}

.jtd-product-showcase {
  position: relative;
  width: min(100%, 620px);
  min-height: 430px;
  padding: 0 72px 34px 0;
}

.jtd-product-showcase__desktop {
  position: relative;
  overflow: hidden;
  min-height: 388px;
  padding: 16px;
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  box-shadow: 0 30px 86px rgba(17, 24, 39, 0.16);
}

.jtd-product-showcase__desktop::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--jtd-red), #e1251b 48%, transparent);
}

.jtd-product-showcase__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  background: #111827;
  border-radius: 8px;
}

.jtd-product-showcase__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e1251b;
}

.jtd-product-showcase__bar span:nth-child(2) {
  background: #f59e0b;
}

.jtd-product-showcase__bar span:nth-child(3) {
  background: #10b981;
}

.jtd-product-showcase__bar b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.jtd-product-showcase__head {
  display: grid;
  gap: 7px;
  padding: 20px 2px 16px;
}

.jtd-product-showcase__head span {
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 850;
}

.jtd-product-showcase__head strong {
  color: #111827;
  font-size: 25px;
  line-height: 1.25;
}

.jtd-product-showcase__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.jtd-product-showcase__kpis span {
  display: grid;
  gap: 14px;
  min-height: 76px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.jtd-product-showcase__kpis b {
  color: #1f2937;
  font-size: 15px;
}

.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-product-card__preview i {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--jtd-red) 0 34%, #e2e8f0 34% 100%);
  border-radius: 999px;
}

.jtd-product-showcase__body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  margin-top: 12px;
}

.jtd-product-showcase__chart,
.jtd-product-showcase__rows {
  min-height: 136px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.jtd-product-showcase__chart {
  display: flex;
  align-items: end;
  gap: 12px;
}

.jtd-product-showcase__chart i {
  flex: 1;
  min-height: 32px;
  background: linear-gradient(180deg, #e1251b, #e1251b);
  border-radius: 8px 8px 3px 3px;
}

.jtd-product-showcase__chart i:nth-child(2) {
  min-height: 88px;
  background: linear-gradient(180deg, #5aa2ff, #2563eb);
}

.jtd-product-showcase__chart i:nth-child(3) {
  min-height: 58px;
  background: linear-gradient(180deg, #55d8a6, #12b981);
}

.jtd-product-showcase__chart i:nth-child(4) {
  min-height: 112px;
}

.jtd-product-showcase__rows {
  display: grid;
  gap: 9px;
}

.jtd-product-showcase__rows span {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) 1.25fr;
  align-items: center;
  gap: 12px;
}

.jtd-product-showcase__rows b {
  color: #374151;
  font-size: 13px;
  font-weight: 750;
}

.jtd-product-showcase__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.jtd-product-showcase__modules span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: #fff3f2;
  border: 1px solid #f5d0cc;
  border-radius: 999px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 850;
}

.jtd-product-showcase__phone {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 10px;
  width: 164px;
  min-height: 262px;
  padding: 18px 14px;
  background: linear-gradient(180deg, #fff, #fff7f6);
  border: 1px solid #f1d6d3;
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(17, 24, 39, 0.18);
}

.jtd-product-showcase__phone::before {
  content: "";
  width: 42px;
  height: 4px;
  margin: 0 auto 4px;
  background: #d1d5db;
  border-radius: 999px;
}

.jtd-product-showcase__phone strong {
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
}

.jtd-product-showcase__phone span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 750;
}

.jtd-product-showcase--hero {
  width: min(100%, 660px);
  margin-left: auto;
}

.jtd-product-showcase--hero .jtd-product-showcase__desktop {
  min-height: 430px;
}

.jtd-product-showcase--featured .jtd-product-showcase__desktop {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.jtd-product-showcase--featured .jtd-product-showcase__phone {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.jtd-product-card {
  overflow: hidden;
}

.jtd-product-card__preview {
  display: grid;
  gap: 12px;
  min-height: 156px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.11), rgba(255, 255, 255, 0) 58%),
    #f8fafc;
  border-bottom: 1px solid #e5eaf2;
}

.jtd-product-card__preview strong {
  color: #111827;
  font-size: 15px;
}

.jtd-product-card__preview div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.jtd-product-card__preview span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid #e5eaf2;
  border-radius: 8px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.jtd-product-card__preview i {
  width: 64%;
}

.jtd-operating-section {
  position: relative;
  overflow: hidden;
}

.jtd-operating-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(225, 37, 27, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
}

.jtd-operating-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: 54px;
  align-items: center;
}

.jtd-operating-copy h2 {
  margin-bottom: 18px;
}

.jtd-operating-copy p:not(.jtd-eyebrow) {
  font-size: 17px;
}

.jtd-operating-board {
  display: grid;
  gap: 14px;
}

.jtd-operating-board article {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 136px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e0e7f1;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 22, 35, 0.065);
}

.jtd-operating-board article:nth-child(2) {
  transform: translateX(22px);
}

.jtd-operating-board span {
  color: rgba(225, 37, 27, 0.34);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.jtd-operating-board h3 {
  margin: 0;
  font-size: 22px;
}

.jtd-operating-board div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jtd-operating-board b,
.jtd-resource-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: #fff3f2;
  border: 1px solid #f5d0cc;
  border-radius: 999px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 850;
}

.jtd-resource-section {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.jtd-resource-flow {
  display: grid;
  gap: 12px;
  min-height: 380px;
  padding: 28px;
  background:
    linear-gradient(145deg, #111827, #1e293b),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 30px 78px rgba(17, 24, 39, 0.18);
}

.jtd-resource-flow strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
}

.jtd-resource-flow span {
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.jtd-resource-flow span::after {
  content: "";
  width: 38px;
  height: 6px;
  background: linear-gradient(90deg, #e1251b, rgba(255, 255, 255, 0.22));
  border-radius: 999px;
}

.jtd-product-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jtd-product-paths article {
  min-height: 198px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(16, 22, 35, 0.055);
}

.jtd-product-paths span {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(225, 37, 27, 0.34);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.jtd-product-paths h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

@media (max-width: 1024px) {
  .jtd-logo__image,
  .custom-logo-link img {
    width: 154px;
  }

  .jtd-product-showcase {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .jtd-operating-grid {
    grid-template-columns: 1fr;
  }

  .jtd-operating-board article,
  .jtd-operating-board article:nth-child(2) {
    transform: none;
  }

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

@media (max-width: 680px) {
  .jtd-logo__image,
  .custom-logo-link img {
    width: 132px;
    max-width: 48vw;
  }

  .jtd-product-showcase {
    min-height: auto;
    padding: 0;
  }

  .jtd-product-showcase__desktop {
    min-height: auto;
    padding: 12px;
  }

  .jtd-product-showcase__head {
    padding: 16px 2px 12px;
  }

  .jtd-product-showcase__head strong {
    font-size: 20px;
  }

  .jtd-product-showcase__kpis,
  .jtd-product-showcase__body {
    grid-template-columns: 1fr;
  }

  .jtd-product-showcase__kpis span {
    min-height: 58px;
  }

  .jtd-product-showcase__chart {
    min-height: 94px;
  }

  .jtd-product-showcase__rows {
    min-height: auto;
  }

  .jtd-product-showcase__phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 12px;
    border-radius: 8px;
  }

  .jtd-product-card__preview div {
    grid-template-columns: 1fr;
  }

  .jtd-operating-board article {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .jtd-resource-flow {
    min-height: auto;
    padding: 22px;
  }

  .jtd-resource-flow strong {
    font-size: 22px;
  }

  .jtd-product-paths article {
    min-height: 0;
  }
}

/* Urgent visual refinement v0.4 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-ink: #111827;
  --jtd-muted: #5c6678;
  --jtd-soft: #f6f8fb;
  --jtd-line: #e6ebf2;
  --jtd-shadow: 0 22px 60px rgba(17, 24, 39, 0.09);
  --jtd-shadow-soft: 0 10px 28px rgba(17, 24, 39, 0.055);
}

body {
  background: #fff;
}

.jtd-site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(230, 235, 242, 0.92);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.045);
}

.jtd-header__inner {
  min-height: 70px;
}

.jtd-logo__image,
.custom-logo-link img {
  width: 198px;
  max-width: 46vw;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  min-height: 70px;
  color: #202838;
  font-size: 15px;
  font-weight: 780;
}

.jtd-header__phone {
  color: #1f2937;
  font-size: 15px;
}

.jtd-btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 820;
}

.jtd-btn--primary {
  background: linear-gradient(180deg, #e1251b 0%, #e1251b 100%);
  box-shadow: 0 14px 28px rgba(223, 36, 27, 0.2);
}

.jtd-btn--secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: #ead2cf;
  color: #e1251b;
}

.jtd-hero {
  min-height: 650px;
  padding: 78px 0 32px;
  background:
    linear-gradient(116deg, #ffffff 0%, #ffffff 47%, rgba(255, 245, 244, 0.9) 47.1%, rgba(249, 251, 254, 0.96) 100%);
}

.jtd-hero::before {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 24, 39, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.75;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.jtd-hero__slides {
  min-height: 510px;
}

.jtd-hero__slide {
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: 72px;
}

.jtd-hero__content h1 {
  max-width: 720px;
  color: #0f172a;
  font-size: 64px;
  font-weight: 880;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

.jtd-hero__content h1 span {
  display: block;
}

.jtd-hero__content .jtd-hero-title--normal {
  max-width: 720px;
  font-size: clamp(44px, 3.8vw, 56px);
  line-height: 1.12;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 650px;
  color: #3f4a5f;
  font-size: 20px;
  line-height: 1.8;
}

.jtd-eyebrow {
  min-height: 30px;
  padding: 0 12px;
  background: #fff5f4;
  border-color: #f4d1cd;
  color: #e1251b;
  font-size: 13px;
  font-weight: 880;
}

.jtd-hero__signal {
  display: none;
}

.jtd-hero__proof {
  margin-top: 20px;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  min-height: 32px;
  background: rgba(255, 255, 255, 0.92);
  border-color: #e5ebf3;
  color: #344052;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.045);
}

.jtd-hero__dots {
  margin-top: 2px;
}

.jtd-hero__dots button {
  width: 44px;
  height: 5px;
  background: #d9dee8;
}

.jtd-product-showcase {
  width: min(100%, 680px);
  min-height: 444px;
  padding: 0 86px 34px 0;
}

.jtd-product-showcase--hero {
  width: min(100%, 700px);
}

.jtd-product-showcase__desktop {
  min-height: 420px;
  padding: 14px;
  background:
    linear-gradient(90deg, #f8fafc 0 22%, #ffffff 22.1% 100%);
  border-color: #dbe4ef;
  border-radius: 10px;
  box-shadow: 0 34px 88px rgba(17, 24, 39, 0.16);
}

.jtd-product-showcase__desktop::before {
  height: 3px;
  background: linear-gradient(90deg, #e1251b, #e1251b 42%, rgba(255, 255, 255, 0));
}

.jtd-product-showcase__bar {
  min-height: 38px;
  background: #101827;
  border-radius: 8px;
}

.jtd-product-showcase__bar b {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-product-showcase__head {
  position: relative;
  padding: 22px 0 16px 25%;
}

.jtd-product-showcase__head::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 16%;
  height: 160px;
  background:
    linear-gradient(#e1251b 0 0) 0 0 / 44px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 34px / 78px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 66px / 62px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 98px / 70px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 130px / 52px 8px no-repeat;
  border-radius: 8px;
  opacity: 0.92;
}

.jtd-product-showcase__head span {
  color: #e1251b;
  font-size: 13px;
}

.jtd-product-showcase__head strong {
  color: #111827;
  font-size: 30px;
  font-weight: 880;
}

.jtd-product-showcase__kpis {
  margin-left: 25%;
}

.jtd-product-showcase__kpis span {
  min-height: 76px;
  background: #f8fafc;
  border-color: #e4eaf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jtd-product-showcase__body {
  grid-template-columns: 0.95fr 1.05fr;
  margin-left: 25%;
}

.jtd-product-showcase__chart,
.jtd-product-showcase__rows {
  min-height: 148px;
  background: #fff;
  border-color: #e4eaf2;
}

.jtd-product-showcase__chart i {
  background: linear-gradient(180deg, #e1251b, #e1251b);
}

.jtd-product-showcase__chart i:nth-child(2) {
  background: linear-gradient(180deg, #6d94ff, #3867e8);
}

.jtd-product-showcase__chart i:nth-child(3) {
  background: linear-gradient(180deg, #63d6ac, #16a984);
}

.jtd-product-showcase__rows b {
  color: #334155;
}

.jtd-product-showcase__modules {
  margin-left: 25%;
}

.jtd-product-showcase__modules span {
  background: #fff7f6;
  border-color: #f1d5d1;
  color: #e1251b;
}

.jtd-product-showcase__phone {
  width: 172px;
  min-height: 276px;
  border-color: #ead5d2;
  border-radius: 26px;
  box-shadow: 0 30px 72px rgba(17, 24, 39, 0.18);
}

.jtd-trust-strip__inner {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0;
}

.jtd-trust-strip span {
  min-height: 58px;
  background: #fff;
  border-color: #e5ebf3;
  color: #243044;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.045);
}

.jtd-section {
  padding: 104px 0;
}

.jtd-section__header {
  max-width: 850px;
  margin-bottom: 48px;
}

.jtd-section__header h2 {
  color: #111827;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 860;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  color: #667085;
}

.jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-roadmap article,
.jtd-product-paths article {
  border-color: #e5ebf3;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.045);
}

.jtd-card:hover,
.jtd-customer-card:hover {
  border-color: rgba(223, 36, 27, 0.32);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.095);
}

.jtd-customer-grid {
  gap: 22px;
}

.jtd-customer-card {
  min-height: 328px;
  padding: 26px;
}

.jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-partner-type-card__icon,
.jtd-about-capability-card .jtd-card__body > span {
  background: #fff6f5;
  border-color: #f0d3d0;
  color: #e1251b;
}

.jtd-customer-card__index {
  color: rgba(223, 36, 27, 0.16);
}

.jtd-product-card__preview {
  min-height: 136px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(223, 36, 27, 0.075), rgba(255, 255, 255, 0) 62%),
    #fbfcff;
}

.jtd-product-card__preview strong {
  color: #202838;
}

.jtd-product-card__preview span {
  min-height: 38px;
  background: #fff;
  border-color: #e5ebf3;
  color: #4b5565;
}

.jtd-product-card .jtd-card__body {
  min-height: 248px;
}

.jtd-operating-section::before {
  opacity: 0.36;
}

.jtd-operating-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
}

.jtd-operating-board article {
  grid-template-columns: 62px minmax(0, 0.7fr) minmax(0, 1fr);
  min-height: 130px;
  background: rgba(255, 255, 255, 0.94);
  border-color: #e5ebf3;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
}

.jtd-operating-board article:nth-child(2) {
  transform: none;
}

.jtd-operating-board span,
.jtd-product-paths span {
  color: rgba(223, 36, 27, 0.28);
}

.jtd-resource-flow {
  background:
    linear-gradient(145deg, #101827, #151e2f 62%, #111827);
  box-shadow: 0 28px 72px rgba(17, 24, 39, 0.18);
}

@media (max-width: 1024px) {
  .jtd-logo__image,
  .custom-logo-link img {
    width: 166px;
  }

  .jtd-hero {
    min-height: auto;
    padding: 58px 0 34px;
  }

  .jtd-hero__slide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .jtd-product-showcase,
  .jtd-product-showcase--hero {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .jtd-trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-operating-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .jtd-logo__image,
  .custom-logo-link img {
    width: 138px;
  }

  .jtd-hero {
    padding: 38px 0 24px;
    background: linear-gradient(180deg, #fff 0%, #fff7f6 48%, #f7f9fc 100%);
  }

  .jtd-hero__content h1 {
    font-size: 36px;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    font-size: 16px;
  }

  .jtd-product-showcase {
    padding: 0;
  }

  .jtd-product-showcase__desktop {
    background: #fff;
  }

  .jtd-product-showcase__head,
  .jtd-product-showcase__kpis,
  .jtd-product-showcase__body,
  .jtd-product-showcase__modules {
    margin-left: 0;
    padding-left: 2px;
  }

  .jtd-product-showcase__head::before {
    display: none;
  }

  .jtd-product-showcase__head strong {
    font-size: 22px;
  }

  .jtd-trust-strip__inner,
  .jtd-product-showcase__kpis,
  .jtd-product-showcase__body {
    grid-template-columns: 1fr;
  }

  .jtd-section {
    padding: 68px 0;
  }

  .jtd-operating-board article {
    grid-template-columns: 1fr;
  }
}

/* Urgent rhythm tuning v0.4.1 */
@media (min-width: 1180px) {
  .jtd-hero__slide {
    grid-template-columns: minmax(560px, 0.94fr) minmax(500px, 1.06fr);
    gap: 52px;
  }

  .jtd-hero__content h1 {
    white-space: normal;
  }

  .jtd-hero__content .jtd-hero-title--split {
    max-width: 520px;
    font-size: 60px;
  }

  .jtd-hero__content .jtd-hero-title--normal {
    max-width: 660px;
    font-size: 54px;
  }
}

.jtd-section {
  padding: 84px 0;
}

.jtd-section--audience {
  padding-top: 76px;
}

.jtd-section__header {
  margin-bottom: 38px;
}

.jtd-section__header h2 {
  margin-bottom: 12px;
}

.jtd-trust-strip__inner {
  padding: 18px 0;
}

.jtd-trust-strip span {
  min-height: 52px;
}

.jtd-card-grid {
  gap: 22px;
}

.jtd-customer-card {
  min-height: 300px;
}

.jtd-product-card .jtd-card__body {
  min-height: 236px;
}

.jtd-product-card__preview {
  min-height: 126px;
}

.jtd-operating-section {
  padding: 90px 0;
}

.jtd-featured-product {
  padding: 96px 0;
}

@media (max-width: 1024px) {
  .jtd-section {
    padding: 72px 0;
  }

  .jtd-section--audience {
    padding-top: 62px;
  }
}

@media (max-width: 680px) {
  .jtd-section {
    padding: 58px 0;
  }

  .jtd-section--audience {
    padding-top: 54px;
  }
}

/* Executive visual polish v0.5 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-ink: #101828;
  --jtd-muted: #667085;
  --jtd-soft: #f6f8fb;
  --jtd-line: #e6ebf2;
  --jtd-card: #fff;
  --jtd-blue: #2563eb;
  --jtd-green: #11a683;
  --jtd-shadow: 0 22px 54px rgba(16, 24, 40, 0.08);
  --jtd-shadow-soft: 0 12px 30px rgba(16, 24, 40, 0.055);
}

body {
  background: #fff;
  color: #101828;
}

.jtd-main {
  background: #fff;
}

.jtd-site-header {
  background: rgba(255, 255, 255, 0.965);
  border-bottom: 1px solid rgba(230, 235, 242, 0.94);
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.042);
}

.jtd-header__inner {
  min-height: 68px;
}

.jtd-logo__image,
.custom-logo-link img {
  width: 184px;
}

.jtd-primary-nav__list {
  gap: 10px;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  position: relative;
  min-height: 68px;
  padding: 0 8px;
  color: #1d2738;
  font-size: 14px;
  font-weight: 760;
}

.jtd-primary-nav__item > a::after,
.jtd-nav-row > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  height: 2px;
  background: var(--jtd-red);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.jtd-primary-nav__item:hover > a::after,
.jtd-primary-nav__item:focus-within > a::after,
.jtd-primary-nav__item:hover > .jtd-nav-row > a::after,
.jtd-primary-nav__item:focus-within > .jtd-nav-row > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.jtd-mega-menu {
  top: 68px;
  padding: 18px;
  border-color: rgba(230, 235, 242, 0.96);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 28px 72px rgba(16, 24, 40, 0.13);
}

.jtd-mega-menu a {
  border: 1px solid transparent;
}

.jtd-mega-menu a:hover {
  background: #fff7f6;
  border-color: #f2d2ce;
}

.jtd-mega-menu__cta {
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.09), rgba(255, 255, 255, 0) 62%),
    #fff;
  border-color: #f2d2ce;
}

.jtd-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 820;
  box-shadow: none;
}

.jtd-btn--primary {
  background: linear-gradient(180deg, #e1251b 0%, #e1251b 100%);
  box-shadow: 0 12px 24px rgba(225, 37, 27, 0.2);
}

.jtd-btn--primary:hover {
  background: linear-gradient(180deg, #e1251b 0%, #e1251b 100%);
}

.jtd-btn--secondary {
  background: #fff;
  border-color: #ebc7c3;
  color: #e1251b;
}

.jtd-hero {
  min-height: 644px;
  padding: 72px 0 30px;
  background:
    linear-gradient(115deg, #fff 0%, #fff 45%, #fff6f5 45.08%, #f7f9fc 100%);
  border-bottom: 1px solid #edf1f6;
  overflow: hidden;
}

.jtd-hero::before {
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 24, 40, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.72;
}

.jtd-hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -210px;
  width: 64vw;
  height: 360px;
  background: linear-gradient(102deg, rgba(225, 37, 27, 0.14), rgba(225, 37, 27, 0));
  transform: rotate(-8deg);
  pointer-events: none;
}

.jtd-hero .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-hero__slides {
  min-height: 492px;
}

.jtd-hero__slide {
  grid-template-columns: minmax(520px, 0.92fr) minmax(520px, 1.08fr);
  gap: 58px;
}

.jtd-hero__content {
  transform: translateY(-4px);
}

.jtd-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  margin-bottom: 14px;
  background: #fff5f4;
  border: 1px solid #f2d2ce;
  border-radius: 999px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0;
}

.jtd-hero__content h1 {
  max-width: 650px;
  color: #101828;
  font-size: clamp(46px, 4.1vw, 62px);
  font-weight: 880;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

.jtd-hero__content .jtd-hero-title--split {
  max-width: 520px;
}

.jtd-hero__content .jtd-hero-title--normal {
  max-width: 650px;
  font-size: clamp(42px, 3.6vw, 54px);
  line-height: 1.12;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 624px;
  margin-top: 22px;
  color: #3f4a5f;
  font-size: 18px;
  line-height: 1.85;
}

.jtd-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  min-height: 30px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e5ebf3;
  border-radius: 999px;
  color: #344054;
  font-size: 13px;
  font-weight: 760;
  box-shadow: none;
}

.jtd-hero__dots {
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.jtd-hero__dots button {
  width: 38px;
  height: 5px;
  background: #d5dce8;
}

.jtd-hero__dots button.is-active {
  background: #e1251b;
}

.jtd-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 492px;
}

.jtd-product-showcase {
  width: min(100%, 660px);
  min-height: 424px;
  padding: 0 78px 30px 0;
}

.jtd-product-showcase--hero {
  transform: translateY(2px);
}

.jtd-product-showcase__desktop {
  min-height: 406px;
  padding: 13px;
  background:
    linear-gradient(90deg, #f6f8fb 0 21%, #fff 21.1% 100%);
  border: 1px solid #dae3ee;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.16);
}

.jtd-product-showcase__desktop::before {
  height: 3px;
  background: linear-gradient(90deg, #e1251b, #e1251b 44%, transparent);
}

.jtd-product-showcase__bar {
  min-height: 36px;
  padding: 0 12px;
  background: #101828;
  border-radius: 8px;
}

.jtd-product-showcase__bar b {
  color: #fff;
  font-size: 11px;
  font-weight: 860;
}

.jtd-product-showcase__bar span {
  background: rgba(255, 255, 255, 0.7);
}

.jtd-product-showcase__head {
  padding: 20px 0 14px 25%;
}

.jtd-product-showcase__head::before {
  left: 8px;
  top: 24px;
  width: 16%;
  height: 150px;
  background:
    linear-gradient(#e1251b 0 0) 0 0 / 42px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 32px / 76px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 62px / 58px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 92px / 68px 8px no-repeat,
    linear-gradient(#d8dee8 0 0) 0 122px / 50px 8px no-repeat;
}

.jtd-product-showcase__head span {
  color: #e1251b;
  font-size: 12px;
  font-weight: 860;
}

.jtd-product-showcase__head strong {
  color: #101828;
  font-size: 28px;
  font-weight: 880;
}

.jtd-product-showcase__kpis {
  gap: 10px;
  margin-left: 25%;
}

.jtd-product-showcase__kpis span {
  min-height: 70px;
  padding: 13px;
  background: #f8fafc;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
}

.jtd-product-showcase__kpis b {
  color: #111827;
  font-size: 21px;
}

.jtd-product-showcase__body {
  gap: 10px;
  margin-left: 25%;
}

.jtd-product-showcase__chart,
.jtd-product-showcase__rows {
  min-height: 138px;
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
}

.jtd-product-showcase__modules {
  margin-left: 25%;
}

.jtd-product-showcase__modules span {
  min-height: 30px;
  background: #fff7f6;
  border: 1px solid #f0d4d1;
  border-radius: 7px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 820;
}

.jtd-product-showcase__phone {
  width: 162px;
  min-height: 262px;
  right: 0;
  bottom: 0;
  border: 1px solid #e8d0cc;
  border-radius: 24px;
  box-shadow: 0 26px 64px rgba(16, 24, 40, 0.18);
}

.jtd-trust-strip {
  background: #fff;
  border-bottom: 1px solid #edf1f6;
}

.jtd-trust-strip__inner {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 0;
}

.jtd-trust-strip span {
  min-height: 48px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 780;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.035);
}

.jtd-section {
  padding: 82px 0;
}

.jtd-section--muted {
  background: #f6f8fb;
}

.jtd-section--audience {
  padding-top: 70px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.jtd-section__header {
  max-width: 820px;
  margin-bottom: 36px;
}

.jtd-section__header h2 {
  color: #101828;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 860;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  color: #667085;
  font-size: 16px;
  line-height: 1.75;
}

.jtd-card-grid {
  gap: 20px;
}

.jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-roadmap article {
  border-color: #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.jtd-card:hover,
.jtd-customer-card:hover {
  border-color: rgba(225, 37, 27, 0.32);
  box-shadow: 0 20px 46px rgba(16, 24, 40, 0.09);
  transform: translateY(-2px);
}

.jtd-card__body {
  padding: 24px;
}

.jtd-customer-grid {
  gap: 18px;
}

.jtd-customer-card {
  min-height: 286px;
  padding: 24px;
}

.jtd-customer-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.jtd-customer-card__icon,
.jtd-capability-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff6f5;
  border: 1px solid #f0d3d0;
  border-radius: 8px;
  color: #e1251b;
  font-size: 15px;
  font-weight: 880;
}

.jtd-customer-card__index {
  color: rgba(225, 37, 27, 0.15);
  font-size: 30px;
}

.jtd-tag {
  min-height: 24px;
  background: #fff2f1;
  color: #e1251b;
  font-weight: 820;
}

.jtd-text-link {
  color: #e1251b;
  font-weight: 840;
}

.jtd-product-card {
  background: #fff;
}

.jtd-product-card__preview {
  min-height: 118px;
  padding: 17px 18px;
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.08), rgba(37, 99, 235, 0.055) 55%, rgba(255, 255, 255, 0)),
    #fbfcff;
  border-bottom: 1px solid #eef2f7;
}

.jtd-product-card__preview strong {
  display: block;
  margin-bottom: 14px;
  color: #1d2738;
  font-size: 14px;
  font-weight: 860;
}

.jtd-product-card__preview div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.jtd-product-card__preview span {
  min-height: 34px;
  padding: 0 9px;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 7px;
  color: #475467;
  font-size: 12px;
  font-weight: 760;
}

.jtd-product-card__preview i {
  display: block;
  width: 44%;
  height: 5px;
  margin-top: 15px;
  background: linear-gradient(90deg, #e1251b, rgba(225, 37, 27, 0.12));
  border-radius: 999px;
}

.jtd-product-card .jtd-card__body {
  min-height: 226px;
}

.jtd-value-card {
  background: #fff;
}

.jtd-operating-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, #f6f8fb, #fff);
}

.jtd-operating-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 44px;
}

.jtd-operating-copy h2,
.jtd-split h2 {
  font-weight: 860;
}

.jtd-operating-board {
  display: grid;
  gap: 14px;
}

.jtd-operating-board article {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.055);
}

.jtd-featured-product {
  padding: 92px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.jtd-featured-product .jtd-split {
  grid-template-columns: minmax(520px, 1.05fr) minmax(0, 0.95fr);
  gap: 58px;
}

.jtd-featured-product__modules span {
  border-color: #e6ebf2;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.035);
}

.jtd-resource-section {
  background:
    linear-gradient(118deg, #fff 0%, #fff 52%, #f7f9fc 52.1%, #f7f9fc 100%);
}

.jtd-resource-flow {
  border-radius: 10px;
  background:
    linear-gradient(145deg, #101828, #172033 62%, #101828);
  box-shadow: 0 26px 66px rgba(16, 24, 40, 0.18);
}

.jtd-security-main {
  background: linear-gradient(145deg, #e1251b 0%, #e1251b 100%);
  border-radius: 8px;
}

.jtd-lead-form {
  border-color: #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16, 24, 40, 0.08);
}

.jtd-lead-form input,
.jtd-lead-form select,
.jtd-lead-form textarea {
  border-color: #dfe5ee;
  border-radius: 7px;
  background: #fbfcfe;
}

.jtd-lead-form input:focus,
.jtd-lead-form select:focus,
.jtd-lead-form textarea:focus {
  outline: 2px solid rgba(225, 37, 27, 0.14);
  border-color: #eb8b84;
  background: #fff;
}

@media (min-width: 1180px) {
  .jtd-hero__content .jtd-hero-title--split {
    font-size: 60px;
  }

  .jtd-hero__content .jtd-hero-title--normal {
    font-size: 52px;
  }
}

@media (max-width: 1180px) {
  .jtd-hero__slide {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .jtd-hero__slides {
    min-height: 850px;
  }

  .jtd-hero__visual {
    min-height: 430px;
  }

  .jtd-featured-product .jtd-split,
  .jtd-operating-grid {
    grid-template-columns: 1fr;
  }

  .jtd-product-showcase {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .jtd-header__inner {
    min-height: 64px;
  }

  .jtd-primary-nav {
    top: 64px;
  }

  .jtd-primary-nav__item > a,
  .jtd-nav-row > a {
    min-height: 48px;
  }

  .jtd-primary-nav__item > a::after,
  .jtd-nav-row > a::after {
    display: none;
  }

  .jtd-hero {
    min-height: auto;
    padding: 56px 0 32px;
  }

  .jtd-trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-section {
    padding: 70px 0;
  }
}

@media (max-width: 760px) {
  .jtd-logo__image,
  .custom-logo-link img {
    width: 142px;
  }

  .jtd-hero {
    padding: 38px 0 26px;
    background: linear-gradient(180deg, #fff 0%, #fff7f6 42%, #f7f9fc 100%);
  }

  .jtd-hero::after {
    display: none;
  }

  .jtd-hero__slides {
    min-height: 745px;
  }

  .jtd-hero__content h1,
  .jtd-hero__content .jtd-hero-title--normal,
  .jtd-hero__content .jtd-hero-title--split {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.14;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    font-size: 16px;
    line-height: 1.72;
  }

  .jtd-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .jtd-actions .jtd-btn {
    width: 100%;
  }

  .jtd-hero__visual {
    min-height: 348px;
  }

  .jtd-product-showcase {
    width: 100%;
    min-height: 330px;
    padding: 0;
  }

  .jtd-product-showcase__desktop {
    min-height: 324px;
    padding: 11px;
    background: #fff;
  }

  .jtd-product-showcase__head,
  .jtd-product-showcase__kpis,
  .jtd-product-showcase__body,
  .jtd-product-showcase__modules {
    margin-left: 0;
    padding-left: 0;
  }

  .jtd-product-showcase__head::before,
  .jtd-product-showcase__phone {
    display: none;
  }

  .jtd-product-showcase__head strong {
    font-size: 22px;
  }

  .jtd-product-showcase__kpis,
  .jtd-product-showcase__body,
  .jtd-product-card__preview div,
  .jtd-trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .jtd-section {
    padding: 58px 0;
  }

  .jtd-section__header {
    text-align: left;
  }

  .jtd-section__header h2 {
    font-size: 28px;
  }

  .jtd-card__body,
  .jtd-customer-card {
    padding: 22px;
  }

  .jtd-operating-board article {
    grid-template-columns: 1fr;
  }
}

/* Strategic homepage 3.0 modules */
.jtd-stat-section {
  padding: 66px 0;
}

.jtd-stat-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(620px, 1.16fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.085), rgba(37, 99, 235, 0.045) 58%, rgba(255, 255, 255, 0)),
    #fff;
  border: 1px solid #e5ebf3;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.065);
}

.jtd-stat-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 38px);
}

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

.jtd-stat-grid article {
  min-height: 150px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.045);
}

.jtd-stat-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #e1251b;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.jtd-stat-grid span {
  display: block;
  color: #101828;
  font-weight: 860;
}

.jtd-stat-grid small {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

.jtd-future-section {
  overflow: hidden;
  background:
    linear-gradient(118deg, #101828 0%, #111b2e 48%, #f8fafc 48.1%, #fff 100%);
}

.jtd-future-section .jtd-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
}

.jtd-future-section h2,
.jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  color: #fff;
}

.jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.jtd-future-section .jtd-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.jtd-future-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #121b2d;
  background-size: 54px 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(16, 24, 40, 0.28);
}

.jtd-future-board::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 72px;
  height: 2px;
  background: linear-gradient(90deg, #e1251b, rgba(225, 37, 27, 0.28), transparent);
  opacity: 0.72;
}

.jtd-future-board__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(225, 37, 27, 0.1) 48%, transparent 100%);
  animation: jtd-scan 4.8s linear infinite;
  pointer-events: none;
}

.jtd-future-board article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 310px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.jtd-future-board span {
  position: absolute;
  left: 22px;
  top: 22px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 900;
}

.jtd-future-board h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
}

.jtd-future-board p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.jtd-ai-section {
  background: #fff;
}

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

.jtd-ai-grid article {
  position: relative;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.jtd-ai-grid article::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -52px;
  width: 126px;
  height: 126px;
  background:
    linear-gradient(90deg, rgba(225, 37, 27, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: rotate(12deg);
}

.jtd-ai-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  background: #fff6f5;
  border: 1px solid #f0d3d0;
  border-radius: 8px;
  color: #e1251b;
  font-weight: 900;
}

.jtd-ai-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.jtd-platform-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.jtd-platform-layout {
  display: grid;
  grid-template-columns: minmax(600px, 1.1fr) minmax(0, 0.9fr);
  gap: 38px;
  align-items: center;
}

.jtd-ecosystem-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #111827;
  background-size: 46px 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 30px 76px rgba(16, 24, 40, 0.22);
}

.jtd-ecosystem-map::before,
.jtd-ecosystem-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform-origin: center;
}

.jtd-ecosystem-map::before {
  transform: translate(-50%, -50%) rotate(24deg);
}

.jtd-ecosystem-map::after {
  transform: translate(-50%, -50%) rotate(-24deg);
}

.jtd-ecosystem-map strong {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 92px;
  padding: 0 18px;
  background: linear-gradient(180deg, #e1251b, #e1251b);
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 58px rgba(225, 37, 27, 0.35);
}

.jtd-ecosystem-map__node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: #101828;
  font-size: 14px;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.22);
}

.jtd-ecosystem-map__node--1 { left: 8%; top: 12%; }
.jtd-ecosystem-map__node--2 { left: 38%; top: 8%; }
.jtd-ecosystem-map__node--3 { right: 9%; top: 15%; }
.jtd-ecosystem-map__node--4 { left: 9%; top: 42%; }
.jtd-ecosystem-map__node--5 { right: 7%; top: 42%; }
.jtd-ecosystem-map__node--6 { left: 12%; bottom: 16%; }
.jtd-ecosystem-map__node--7 { left: 38%; bottom: 9%; }
.jtd-ecosystem-map__node--8 { right: 10%; bottom: 17%; }
.jtd-ecosystem-map__node--9 { left: 29%; top: 27%; }
.jtd-ecosystem-map__node--10 { right: 27%; bottom: 28%; }

.jtd-platform-principles {
  display: grid;
  gap: 14px;
}

.jtd-platform-principles article {
  padding: 22px;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.045);
}

.jtd-platform-principles h3 {
  margin-bottom: 10px;
}

.jtd-founder-card .jtd-card__body,
.jtd-vision-card .jtd-card__body,
.jtd-trust-card .jtd-card__body {
  min-height: 210px;
}

.jtd-long-roadmap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.jtd-long-roadmap article {
  position: relative;
  min-height: 238px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.045);
}

.jtd-long-roadmap article::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 70px;
  height: 2px;
  background: linear-gradient(90deg, #e1251b, rgba(225, 37, 27, 0.1));
}

.jtd-long-roadmap span,
.jtd-long-roadmap b {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 860;
}

.jtd-long-roadmap span {
  background: #fff2f1;
  color: #e1251b;
}

.jtd-long-roadmap h3 {
  margin: 52px 0 12px;
}

.jtd-long-roadmap b {
  margin-bottom: 12px;
  background: #f2f4f7;
  color: #344054;
}

.jtd-trust-hero,
.jtd-vision-hero {
  overflow: hidden;
  background:
    linear-gradient(115deg, #fff 0%, #fff 48%, #fff6f5 48.1%, #f7f9fc 100%);
}

.jtd-trust-console,
.jtd-vision-orbit {
  min-height: 430px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #101828;
  background-size: 44px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 30px 76px rgba(16, 24, 40, 0.2);
}

.jtd-trust-console {
  display: grid;
  gap: 14px;
  align-content: center;
}

.jtd-trust-console strong,
.jtd-vision-orbit strong {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.jtd-trust-console span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 820;
}

.jtd-security-layers {
  display: grid;
  gap: 14px;
}

.jtd-security-layers article {
  display: grid;
  grid-template-columns: 62px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.045);
}

.jtd-security-layers span {
  color: rgba(225, 37, 27, 0.26);
  font-size: 30px;
  font-weight: 900;
}

.jtd-trust-notes {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.jtd-trust-notes span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  background: #fff7f6;
  border: 1px solid #f0d3d0;
  border-radius: 8px;
  color: #5a2a27;
  font-weight: 760;
}

.jtd-vision-orbit {
  position: relative;
}

.jtd-vision-orbit strong {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 112px;
  padding: 0 22px;
  background: linear-gradient(180deg, #e1251b, #e1251b);
  border-radius: 10px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.jtd-vision-orbit span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  color: #101828;
  font-weight: 860;
}

.jtd-vision-orbit span:nth-of-type(1) { left: 10%; top: 16%; }
.jtd-vision-orbit span:nth-of-type(2) { right: 12%; top: 18%; }
.jtd-vision-orbit span:nth-of-type(3) { left: 8%; bottom: 18%; }
.jtd-vision-orbit span:nth-of-type(4) { right: 10%; bottom: 20%; }
.jtd-vision-orbit span:nth-of-type(5) { left: 42%; bottom: 8%; }

@keyframes jtd-scan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jtd-future-board__scan {
    animation: none;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #0f172a;
    color: #f8fafc;
  }

  .jtd-main,
  .jtd-section,
  .jtd-ai-section,
  .jtd-platform-section,
  .jtd-featured-product {
    background: #0f172a;
  }

  .jtd-section--muted,
  .jtd-section--audience {
    background: #111827;
  }

  .jtd-site-header {
    background: rgba(15, 23, 42, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.09);
  }

  .jtd-primary-nav__item > a,
  .jtd-nav-row > a,
  .jtd-header__phone,
  h1,
  h2,
  h3,
  .jtd-card h3,
  .jtd-stat-grid span {
    color: #f8fafc;
  }

  p,
  .jtd-section__header p:not(.jtd-eyebrow) {
    color: #cbd5e1;
  }

  .jtd-card,
  .jtd-customer-card,
  .jtd-value-card,
  .jtd-process-card,
  .jtd-roadmap article,
  .jtd-stat-panel,
  .jtd-stat-grid article,
  .jtd-ai-grid article,
  .jtd-platform-principles article,
  .jtd-long-roadmap article,
  .jtd-lead-form,
  .jtd-trust-strip span {
    background: #151e2f;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .jtd-hero,
  .jtd-page-hero,
  .jtd-trust-hero,
  .jtd-vision-hero,
  .jtd-resource-section {
    background: linear-gradient(115deg, #0f172a 0%, #101827 48%, #1b1f2f 48.1%, #111827 100%);
  }
}

@media (max-width: 1180px) {
  .jtd-stat-panel,
  .jtd-future-section .jtd-split,
  .jtd-platform-layout {
    grid-template-columns: 1fr;
  }

  .jtd-platform-layout,
  .jtd-future-section .jtd-split {
    gap: 28px;
  }

  .jtd-stat-grid,
  .jtd-ai-grid,
  .jtd-long-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-future-section {
    background: #101828;
  }
}

@media (max-width: 760px) {
  .jtd-stat-panel {
    padding: 24px;
  }

  .jtd-stat-grid,
  .jtd-ai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .jtd-long-roadmap {
    grid-template-columns: 1fr;
  }

  .jtd-stat-grid article {
    min-height: 132px;
    padding: 16px;
  }

  .jtd-stat-grid strong {
    font-size: 30px;
  }

  .jtd-ai-grid article {
    min-height: 154px;
    padding: 18px;
  }

  .jtd-ai-grid span {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .jtd-ai-grid h3 {
    font-size: 17px;
  }

  .jtd-future-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .jtd-future-board::before {
    display: none;
  }

  .jtd-future-board article {
    min-height: 220px;
  }

  .jtd-ecosystem-map {
    min-height: 620px;
  }

  .jtd-ecosystem-map strong {
    width: 152px;
    height: 84px;
    font-size: 18px;
  }

  .jtd-ecosystem-map__node {
    min-width: 78px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .jtd-security-layers article {
    grid-template-columns: 1fr;
  }

  .jtd-trust-console,
  .jtd-vision-orbit {
    min-height: 360px;
  }
}

@media (max-width: 360px) {
  .jtd-stat-grid,
  .jtd-ai-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero compaction after 3.0 modules */
@media (max-width: 760px) {
  .jtd-hero__slides {
    min-height: 625px;
  }

  .jtd-hero__slide {
    align-content: start;
    gap: 22px;
  }

  .jtd-hero__visual {
    min-height: 258px;
  }

  .jtd-product-showcase {
    min-height: 258px;
  }

  .jtd-product-showcase__desktop {
    min-height: 258px;
  }

  .jtd-product-showcase--hero .jtd-product-showcase__desktop {
    min-height: 258px;
  }

  .jtd-product-showcase__head {
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .jtd-product-showcase__head strong {
    font-size: 20px;
  }

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

  .jtd-product-showcase__kpis span {
    min-height: 56px;
    padding: 9px;
  }

  .jtd-product-showcase__kpis b {
    font-size: 18px;
  }

  .jtd-product-showcase__body {
    display: none;
  }

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

  .jtd-product-showcase__modules span {
    min-height: 28px;
  }

  .jtd-hero .jtd-product-showcase__modules {
    display: none;
  }
}

/* Visual refinement pass v0.6 */
.jtd-stat-section {
  padding: 54px 0;
  background: #f7f9fc;
}

.jtd-stat-panel {
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: 30px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.055), rgba(37, 99, 235, 0.035) 62%, rgba(255, 255, 255, 0)),
    #fff;
  border-color: #e7edf5;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.052);
}

.jtd-stat-panel h2 {
  max-width: 460px;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.2;
}

.jtd-stat-panel > div:first-child > p:not(.jtd-eyebrow) {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.72;
}

.jtd-stat-grid {
  gap: 10px;
}

.jtd-stat-grid article {
  min-height: 126px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.035);
}

.jtd-stat-grid strong {
  margin-bottom: 8px;
  font-size: 34px;
}

.jtd-future-section {
  position: relative;
  padding: 74px 0;
  background:
    linear-gradient(112deg, #101828 0%, #121b2d 50%, #f7f9fc 50.1%, #fff 100%);
}

.jtd-future-section .jtd-split {
  grid-template-columns: minmax(0, 0.78fr) minmax(530px, 1.22fr);
  gap: 42px;
}

.jtd-future-section h2 {
  max-width: 440px;
  font-size: clamp(32px, 3.1vw, 44px);
}

.jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.85;
}

.jtd-future-board {
  min-height: 330px;
  padding: 18px;
  gap: 10px;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(16, 24, 40, 0.22);
}

.jtd-future-board::before {
  left: 28px;
  right: 28px;
  top: 62px;
}

.jtd-future-board article {
  min-height: 270px;
  padding: 18px;
}

.jtd-future-board h3 {
  font-size: 21px;
}

.jtd-future-board p {
  font-size: 13px;
  line-height: 1.62;
}

.jtd-ai-section {
  padding: 76px 0;
}

.jtd-ai-section .jtd-section__header {
  margin-bottom: 28px;
}

.jtd-ai-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.jtd-ai-grid article {
  min-height: 148px;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.035);
}

.jtd-ai-grid article::before {
  right: -54px;
  top: -62px;
  opacity: 0.72;
}

.jtd-ai-grid span {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  font-size: 12px;
}

.jtd-ai-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.jtd-ai-grid p {
  font-size: 14px;
  line-height: 1.65;
}

.jtd-platform-section {
  padding: 80px 0 86px;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.jtd-platform-section .jtd-section__header {
  margin-bottom: 32px;
}

.jtd-platform-layout {
  grid-template-columns: minmax(560px, 1fr) minmax(0, 0.86fr);
  gap: 32px;
}

.jtd-ecosystem-map {
  min-height: 440px;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(16, 24, 40, 0.18);
}

.jtd-ecosystem-map strong {
  width: 160px;
  height: 84px;
  font-size: 20px;
  border-radius: 8px;
}

.jtd-ecosystem-map__node {
  min-width: 84px;
  min-height: 36px;
  padding: 0 13px;
  font-size: 13px;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.18);
}

.jtd-platform-principles {
  gap: 12px;
}

.jtd-platform-principles article {
  padding: 20px;
}

.jtd-platform-principles h3 {
  margin-bottom: 8px;
}

.jtd-footer__grid {
  row-gap: 28px;
}

@media (min-width: 1181px) {
  .jtd-section + .jtd-section {
    border-top: 0;
  }
}

@media (max-width: 1180px) {
  .jtd-stat-panel,
  .jtd-future-section .jtd-split,
  .jtd-platform-layout {
    grid-template-columns: 1fr;
  }

  .jtd-future-section {
    background: #101828;
  }

  .jtd-future-board {
    min-height: 320px;
  }

  .jtd-platform-layout {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .jtd-stat-section,
  .jtd-future-section,
  .jtd-ai-section,
  .jtd-platform-section {
    padding: 52px 0;
  }

  .jtd-stat-panel {
    padding: 22px;
    gap: 22px;
  }

  .jtd-stat-panel h2,
  .jtd-future-section h2 {
    font-size: 28px;
  }

  .jtd-stat-grid {
    width: 100%;
  }

  .jtd-stat-grid article {
    min-height: 118px;
    padding: 14px;
  }

  .jtd-stat-grid strong {
    font-size: 28px;
  }

  .jtd-stat-grid small {
    font-size: 11px;
  }

  .jtd-future-board {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px;
  }

  .jtd-future-board article {
    min-height: 164px;
    padding: 18px;
  }

  .jtd-future-board span {
    top: 18px;
  }

  .jtd-future-board h3 {
    font-size: 22px;
  }

  .jtd-ai-grid article {
    min-height: 138px;
    padding: 16px;
  }

  .jtd-ai-grid p {
    font-size: 13px;
  }

  .jtd-ecosystem-map {
    min-height: 500px;
  }

  .jtd-ecosystem-map strong {
    width: 144px;
    height: 78px;
  }

  .jtd-ecosystem-map__node--1 { left: 6%; top: 8%; }
  .jtd-ecosystem-map__node--2 { left: 39%; top: 6%; }
  .jtd-ecosystem-map__node--3 { right: 5%; top: 13%; }
  .jtd-ecosystem-map__node--4 { left: 6%; top: 36%; }
  .jtd-ecosystem-map__node--5 { right: 5%; top: 36%; }
  .jtd-ecosystem-map__node--6 { left: 7%; bottom: 13%; }
  .jtd-ecosystem-map__node--7 { left: 34%; bottom: 6%; }
  .jtd-ecosystem-map__node--8 { right: 6%; bottom: 14%; }
  .jtd-ecosystem-map__node--9 { left: 20%; top: 23%; }
  .jtd-ecosystem-map__node--10 { right: 20%; bottom: 28%; }
}

/* Visual refinement pass v0.7 */
.jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-roadmap article,
.jtd-platform-principles article {
  border-color: #e8edf5;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.032);
}

.jtd-card:hover,
.jtd-customer-card:hover {
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.09);
}

.jtd-section__header {
  margin-bottom: 36px;
}

.jtd-section__header h2 {
  letter-spacing: 0;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.jtd-trust-strip__inner {
  gap: 10px;
}

.jtd-trust-strip span {
  background: #fff;
  border: 1px solid #edf1f6;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.028);
}

.jtd-stat-grid article,
.jtd-ai-grid article,
.jtd-platform-principles article {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jtd-stat-grid article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover {
  border-color: rgba(225, 37, 27, 0.22);
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.08);
  transform: translateY(-2px);
}

.jtd-ai-grid article:nth-child(4n + 2) span {
  background: #eef4ff;
  border-color: #d8e4ff;
  color: #2563eb;
}

.jtd-ai-grid article:nth-child(4n + 3) span {
  background: #ecfdf5;
  border-color: #c8f3dc;
  color: #0f9f6e;
}

.jtd-ai-grid article:nth-child(4n) span {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #c2410c;
}

.jtd-platform-principles article {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .jtd-section {
    padding: 54px 0;
  }

  .jtd-section__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .jtd-section__header h2 {
    font-size: 26px;
  }

  .jtd-section__header p:not(.jtd-eyebrow) {
    margin-left: 0;
    font-size: 14px;
    line-height: 1.72;
  }

  .jtd-stat-section,
  .jtd-future-section,
  .jtd-ai-section,
  .jtd-platform-section {
    padding: 42px 0;
  }

  .jtd-stat-panel {
    padding: 18px;
    gap: 18px;
  }

  .jtd-stat-panel h2,
  .jtd-future-section h2 {
    font-size: 25px;
  }

  .jtd-stat-panel > div:first-child > p:not(.jtd-eyebrow),
  .jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
    font-size: 14px;
    line-height: 1.72;
  }

  .jtd-stat-grid {
    gap: 8px;
  }

  .jtd-stat-grid article {
    min-height: 104px;
    padding: 12px;
  }

  .jtd-stat-grid strong {
    font-size: 24px;
  }

  .jtd-stat-grid span {
    font-size: 13px;
  }

  .jtd-stat-grid small {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.4;
  }

  .jtd-future-section {
    background: #101828;
  }

  .jtd-future-section .jtd-actions {
    gap: 10px;
  }

  .jtd-future-board {
    gap: 8px;
    padding: 10px;
    background-size: 34px 34px;
  }

  .jtd-future-board article {
    min-height: 118px;
    padding: 38px 14px 14px;
  }

  .jtd-future-board span {
    left: 14px;
    top: 12px;
  }

  .jtd-future-board h3 {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .jtd-future-board p {
    font-size: 12px;
    line-height: 1.55;
  }

  .jtd-ai-grid {
    gap: 8px;
  }

  .jtd-ai-grid article {
    min-height: 112px;
    padding: 13px;
  }

  .jtd-ai-grid span {
    width: 26px;
    height: 26px;
    margin-bottom: 9px;
    border-radius: 7px;
    font-size: 11px;
  }

  .jtd-ai-grid h3 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .jtd-ai-grid p {
    font-size: 12px;
    line-height: 1.5;
  }

  .jtd-platform-section .jtd-section__header {
    margin-bottom: 22px;
  }

  .jtd-platform-layout {
    gap: 18px;
  }

  .jtd-ecosystem-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: auto;
    padding: 12px;
  }

  .jtd-ecosystem-map::before,
  .jtd-ecosystem-map::after {
    display: none;
  }

  .jtd-ecosystem-map strong {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    height: 62px;
    margin-bottom: 2px;
    font-size: 18px;
    transform: none;
  }

  .jtd-ecosystem-map__node {
    position: static;
    min-width: 0;
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.16);
  }

  .jtd-platform-principles {
    gap: 9px;
  }

  .jtd-platform-principles article {
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .jtd-stat-grid,
  .jtd-ai-grid {
    grid-template-columns: 1fr 1fr;
  }

  .jtd-ecosystem-map {
    grid-template-columns: 1fr 1fr;
  }
}

/* Visual refinement pass v0.8 */
#products .jtd-card-grid--3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

#products .jtd-product-card__preview {
  min-height: 96px;
  padding: 14px;
}

#products .jtd-product-card__preview strong {
  margin-bottom: 10px;
  font-size: 13px;
}

#products .jtd-product-card__preview span {
  min-height: 28px;
  padding: 0 7px;
  font-size: 11px;
}

#products .jtd-product-card__preview i {
  height: 4px;
  margin-top: 12px;
}

#products .jtd-product-card .jtd-card__body {
  min-height: 194px;
  padding: 18px;
}

#products .jtd-product-card h3 {
  margin: 8px 0 9px;
  font-size: 19px;
}

#products .jtd-product-card p {
  font-size: 14px;
  line-height: 1.62;
}

#products .jtd-product-card small {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.jtd-section--audience .jtd-customer-grid {
  gap: 14px;
}

.jtd-section--audience .jtd-customer-card {
  min-height: 258px;
  padding: 20px;
}

.jtd-section--audience .jtd-customer-card h3 {
  margin: 14px 0 10px;
}

.jtd-section--audience .jtd-customer-card p {
  font-size: 14px;
  line-height: 1.64;
}

@media (max-width: 1180px) {
  #products .jtd-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jtd-section--audience .jtd-customer-grid {
    gap: 10px;
  }

  .jtd-section--audience .jtd-customer-card {
    min-height: 0;
    padding: 16px;
  }

  .jtd-section--audience .jtd-customer-card__icon {
    width: 34px;
    height: 34px;
  }

  .jtd-section--audience .jtd-customer-card__index {
    font-size: 24px;
  }

  .jtd-section--audience .jtd-tag-row {
    gap: 6px;
    margin-top: 14px;
  }

  .jtd-section--audience .jtd-text-link {
    padding-top: 14px;
  }

  #products .jtd-card-grid--3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #products .jtd-product-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  #products .jtd-product-card__preview {
    min-height: 78px;
    padding: 12px;
  }

  #products .jtd-product-card__preview div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  #products .jtd-product-card__preview span {
    min-height: 26px;
    justify-content: center;
    text-align: center;
  }

  #products .jtd-product-card__preview i {
    display: none;
  }

  #products .jtd-product-card .jtd-card__body {
    min-height: 0;
    padding: 15px;
  }

  #products .jtd-product-card__head {
    gap: 8px;
  }

  #products .jtd-product-card h3 {
    margin: 7px 0 7px;
    font-size: 18px;
  }

  #products .jtd-product-card p {
    font-size: 13px;
    line-height: 1.56;
  }

  #products .jtd-product-card small {
    margin-top: 8px;
  }

  #products .jtd-text-link {
    margin-top: 12px;
  }
}

/* Visual refinement pass v0.9 */
@media (max-width: 760px) {
  .jtd-featured-product {
    padding: 44px 0;
  }

  .jtd-featured-product .jtd-split {
    gap: 22px;
  }

  .jtd-featured-product h2 {
    font-size: 25px;
    line-height: 1.24;
  }

  .jtd-featured-product p {
    font-size: 14px;
    line-height: 1.68;
  }

  .jtd-featured-product .jtd-product-showcase {
    min-height: 224px;
  }

  .jtd-featured-product .jtd-product-showcase__desktop {
    min-height: 224px;
  }

  .jtd-featured-product .jtd-product-showcase__head strong {
    font-size: 18px;
  }

  .jtd-featured-product .jtd-product-showcase__kpis span {
    min-height: 50px;
  }

  .jtd-featured-product .jtd-product-showcase__modules {
    gap: 6px;
  }

  .jtd-featured-product .jtd-product-showcase__modules span {
    min-height: 26px;
    padding: 0 8px;
    font-size: 11px;
  }

  .jtd-featured-product__modules {
    gap: 8px;
    margin-top: 16px;
  }

  .jtd-featured-product__modules span {
    min-height: 58px;
    padding: 10px;
  }

  .jtd-featured-product__modules b {
    font-size: 13px;
  }

  .jtd-featured-product__modules i {
    font-size: 11px;
    line-height: 1.38;
  }

  .jtd-featured-product .jtd-check-list {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.58;
  }

  .jtd-featured-product .jtd-check-list li {
    margin: 6px 0;
  }
}

/* Inner page refinement v1.0 */
body.post-type-archive-jtd_product .jtd-card-grid--3,
body.post-type-archive-jtd_solution .jtd-card-grid--3 {
  gap: 16px;
}

body.post-type-archive-jtd_product .jtd-product-card__preview {
  min-height: 108px;
  padding: 14px;
}

body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  margin-bottom: 8px;
  font-size: 13px;
}

body.post-type-archive-jtd_product .jtd-product-card__preview span {
  min-height: 28px;
  padding: 0 7px;
  font-size: 11px;
}

body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body,
body.post-type-archive-jtd_solution .jtd-solution-card .jtd-card__body {
  min-height: 246px;
  padding: 20px;
}

body.post-type-archive-jtd_product .jtd-product-card h2,
body.post-type-archive-jtd_solution .jtd-solution-card h2 {
  margin: 9px 0 10px;
  font-size: 20px;
}

body.post-type-archive-jtd_product .jtd-product-card p,
body.post-type-archive-jtd_solution .jtd-solution-card p {
  font-size: 14px;
  line-height: 1.64;
}

body.post-type-archive-jtd_solution .jtd-solution-card__points {
  margin-top: 14px;
}

@media (max-width: 760px) {
  .jtd-page-hero {
    padding: 44px 0 34px;
  }

  .jtd-page-hero .jtd-split {
    gap: 22px;
  }

  .jtd-page-hero h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow) {
    font-size: 14px;
    line-height: 1.72;
  }

  .jtd-breadcrumb {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .jtd-page-hero .jtd-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .jtd-page-hero .jtd-product-showcase,
  .jtd-page-hero .jtd-product-showcase__desktop {
    min-height: 220px;
  }

  .jtd-page-hero .jtd-product-showcase__head {
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .jtd-page-hero .jtd-product-showcase__head strong {
    font-size: 18px;
  }

  .jtd-page-hero .jtd-product-showcase__kpis {
    gap: 8px;
  }

  .jtd-page-hero .jtd-product-showcase__kpis span {
    min-height: 50px;
    padding: 8px;
  }

  .jtd-page-hero .jtd-product-showcase__modules span {
    min-height: 25px;
    padding: 0 8px;
    font-size: 11px;
  }

  .jtd-decision-panel,
  .jtd-ecosystem-visual,
  .jtd-trust-console,
  .jtd-vision-orbit {
    min-height: auto;
    padding: 16px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  }

  .jtd-decision-panel {
    gap: 8px;
  }

  .jtd-decision-panel span {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .jtd-decision-panel span::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .jtd-ecosystem-visual strong,
  .jtd-trust-console strong,
  .jtd-vision-orbit strong {
    font-size: 20px;
  }

  .jtd-ecosystem-visual div {
    gap: 8px;
  }

  .jtd-ecosystem-visual span,
  .jtd-trust-console span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .jtd-vision-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    background-size: 34px 34px;
  }

  .jtd-vision-orbit strong {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    height: 58px;
    padding: 0 14px;
    transform: none;
  }

  .jtd-vision-orbit span {
    position: static;
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .jtd-section--compact {
    padding: 34px 0;
  }

  .jtd-decision-row {
    gap: 10px;
  }

  .jtd-decision-row article {
    min-height: 0;
    padding: 16px;
  }

  .jtd-decision-row span {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .jtd-decision-row h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .jtd-decision-row p {
    font-size: 13px;
    line-height: 1.58;
  }

  body.post-type-archive-jtd_product .jtd-product-card__preview {
    min-height: 78px;
    padding: 12px;
  }

  body.post-type-archive-jtd_product .jtd-product-card__preview div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.post-type-archive-jtd_product .jtd-product-card__preview span {
    min-height: 25px;
    justify-content: center;
    text-align: center;
  }

  body.post-type-archive-jtd_product .jtd-product-card__preview i {
    display: none;
  }

  body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body,
  body.post-type-archive-jtd_solution .jtd-solution-card .jtd-card__body,
  .jtd-partner-card .jtd-card__body,
  .jtd-partner-type-card .jtd-card__body {
    min-height: 0;
    padding: 16px;
  }

  body.post-type-archive-jtd_product .jtd-product-card h2,
  body.post-type-archive-jtd_solution .jtd-solution-card h2 {
    font-size: 18px;
  }

  body.post-type-archive-jtd_product .jtd-product-card p,
  body.post-type-archive-jtd_solution .jtd-solution-card p {
    font-size: 13px;
    line-height: 1.56;
  }

  body.post-type-archive-jtd_solution .jtd-solution-card__points {
    gap: 6px;
    margin-top: 10px;
  }

  body.post-type-archive-jtd_solution .jtd-solution-card__points span {
    min-height: 24px;
    font-size: 11px;
  }
}

/* Inner page refinement v1.1 */
@media (max-width: 760px) {
  .jtd-founder-card .jtd-card__body,
  .jtd-vision-card .jtd-card__body,
  .jtd-trust-card .jtd-card__body {
    min-height: 0;
    padding: 16px;
  }

  .jtd-founder-card h3,
  .jtd-vision-card h3,
  .jtd-trust-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
  }

  .jtd-founder-card p,
  .jtd-vision-card p,
  .jtd-trust-card p {
    font-size: 13px;
    line-height: 1.56;
  }

  .jtd-card-grid--compact-mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .jtd-card-grid--compact-mobile .jtd-card__body {
    padding: 14px;
  }

  .jtd-card-grid--compact-mobile h3 {
    font-size: 15px;
  }

  .jtd-card-grid--compact-mobile p {
    font-size: 12px;
    line-height: 1.48;
  }
}

@media (max-width: 360px) {
  .jtd-card-grid--compact-mobile {
    grid-template-columns: 1fr;
  }
}

/* Complete visual polish v1.2 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-strong: #e1251b;
  --jtd-ink: #101828;
  --jtd-muted: #5d6678;
  --jtd-soft: #f7f9fc;
  --jtd-line: #e7edf5;
  --jtd-shadow: 0 18px 46px rgba(16, 24, 40, 0.085);
  --jtd-shadow-soft: 0 10px 28px rgba(16, 24, 40, 0.055);
}

body {
  background: #fff;
  color: var(--jtd-ink);
}

.jtd-site-header {
  border-bottom-color: rgba(229, 235, 245, 0.92);
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.045);
}

.jtd-header__inner {
  min-height: 68px;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  min-height: 68px;
  font-size: 14px;
}

.jtd-header__phone {
  color: #1f2937;
}

.jtd-btn {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.jtd-btn--primary {
  box-shadow: 0 10px 24px rgba(225, 37, 27, 0.2);
}

.jtd-btn:focus-visible,
.jtd-primary-nav a:focus-visible,
.jtd-text-link:focus-visible,
.jtd-lead-form input:focus,
.jtd-lead-form select:focus,
.jtd-lead-form textarea:focus {
  outline: 3px solid rgba(225, 37, 27, 0.16);
  outline-offset: 2px;
}

.jtd-mega-menu {
  border-color: #e5ebf3;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.12);
}

.jtd-mega-menu a {
  border-color: transparent;
}

.jtd-mega-menu a:hover {
  border-color: #eef2f7;
  background: #fbfcff;
}

.jtd-section {
  padding: 82px 0;
}

.jtd-section--compact {
  padding: 48px 0;
}

.jtd-section__header {
  margin-bottom: 34px;
}

.jtd-section__header h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  max-width: 720px;
}

.jtd-card,
.jtd-customer-card,
.jtd-process-card,
.jtd-value-card,
.jtd-roadmap article,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-long-roadmap article,
.jtd-product-paths article,
.jtd-platform-principles article,
.jtd-conversion-panel,
.jtd-lead-form,
.jtd-case-meta,
.jtd-note-box {
  border-color: #e7edf5;
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(16, 24, 40, 0.045);
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-paths article:hover,
.jtd-decision-row article:hover,
.jtd-process-card:hover {
  border-color: rgba(225, 37, 27, 0.24);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.09);
  transform: translateY(-2px);
}

.jtd-card__body {
  padding: 22px;
}

.jtd-card h2,
.jtd-card h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.jtd-card p,
.jtd-process-card p,
.jtd-value-card p,
.jtd-decision-row p,
.jtd-case-principles p,
.jtd-long-roadmap p,
.jtd-platform-principles p {
  font-size: 14px;
  line-height: 1.66;
}

.jtd-page-hero {
  padding: 76px 0 48px;
}

.jtd-page-hero .jtd-split {
  gap: 46px;
}

.jtd-page-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.16;
}

.jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow),
.jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow) {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.78;
}

.jtd-breadcrumb {
  margin-bottom: 14px;
}

.jtd-product-showcase:not(.jtd-product-showcase--hero) {
  width: min(100%, 560px);
  min-height: 360px;
}

.jtd-product-showcase:not(.jtd-product-showcase--hero) .jtd-product-showcase__desktop {
  min-height: 330px;
}

.jtd-product-showcase__head strong {
  font-size: 22px;
}

.jtd-product-showcase__kpis span {
  min-height: 66px;
}

.jtd-product-showcase__chart,
.jtd-product-showcase__rows {
  min-height: 116px;
}

.jtd-decision-panel,
.jtd-ecosystem-visual,
.jtd-service-visual,
.jtd-security-visual,
.jtd-trust-console,
.jtd-vision-orbit,
.jtd-solution-visual-card,
.jtd-case-visual-card,
.jtd-case-proof-panel {
  min-height: 330px;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(16, 24, 40, 0.14);
}

.jtd-service-visual,
.jtd-security-visual,
.jtd-ecosystem-visual {
  padding: 24px;
}

.jtd-service-visual span,
.jtd-security-visual span,
.jtd-ecosystem-visual span,
.jtd-decision-panel span,
.jtd-trust-console span {
  min-height: 44px;
  border-radius: 7px;
}

.jtd-product-strip__inner {
  gap: 12px;
}

.jtd-product-strip article {
  min-height: 92px;
  padding: 18px;
}

.jtd-product-strip strong {
  font-size: 15px;
  line-height: 1.5;
}

.jtd-line-card,
.jtd-step-list li {
  border-color: #e7edf5;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
}

.jtd-step-list {
  gap: 10px;
}

.jtd-step-list li {
  padding: 12px 14px;
}

.jtd-richtext {
  max-width: 820px;
  color: #344054;
}

.jtd-richtext h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 26px;
}

.jtd-richtext p,
.jtd-richtext li {
  color: #475467;
  line-height: 1.82;
}

.jtd-note-box {
  padding: 18px;
  margin-top: 24px;
  background: #fff7f6;
}

.jtd-lead-form {
  gap: 14px;
  padding: 24px;
}

.jtd-lead-form input,
.jtd-lead-form select,
.jtd-lead-form textarea {
  min-height: 42px;
}

.jtd-contact-info {
  padding: 18px;
  margin-top: 22px;
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
}

.jtd-site-footer {
  margin-top: 0;
}

.jtd-footer__top {
  padding: 56px 0 34px;
}

.jtd-footer__grid {
  padding-top: 34px;
}

.jtd-mobile-quickbar {
  border-top: 1px solid #e7edf5;
  box-shadow: 0 -12px 30px rgba(16, 24, 40, 0.1);
}

.jtd-mobile-quickbar a {
  min-height: 56px;
}

@media (min-width: 1181px) {
  body.post-type-archive-jtd_product .jtd-card-grid--3,
  body.post-type-archive-jtd_solution .jtd-card-grid--3,
  body.post-type-archive-jtd_news .jtd-card-grid--3,
  body.post-type-archive-jtd_service .jtd-card-grid--4,
  body.post-type-archive-jtd_qualification .jtd-card-grid--3 {
    gap: 16px;
  }

  body.post-type-archive-jtd_product .jtd-product-card,
  body.post-type-archive-jtd_solution .jtd-solution-card,
  body.post-type-archive-jtd_news .jtd-news-card,
  body.post-type-archive-jtd_service .jtd-service-card,
  body.post-type-archive-jtd_qualification .jtd-qualification-card {
    min-height: 0;
  }
}

@media (max-width: 1180px) {
  .jtd-header__inner {
    min-height: 64px;
  }

  .jtd-primary-nav__item > a,
  .jtd-nav-row > a {
    min-height: 48px;
  }

  .jtd-page-hero .jtd-split,
  .jtd-split,
  .jtd-split--cta,
  .jtd-case-layout,
  .jtd-security-grid {
    grid-template-columns: 1fr;
  }

  .jtd-product-showcase:not(.jtd-product-showcase--hero) {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 58px;
  }

  .jtd-container {
    width: min(100% - 28px, var(--jtd-container));
  }

  .jtd-site-header {
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.05);
  }

  .jtd-header__inner {
    min-height: 60px;
  }

  .jtd-logo__image,
  .custom-logo-link img {
    width: 128px;
    max-width: 46vw;
  }

  .jtd-nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .jtd-primary-nav {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 10px 14px 18px;
    overflow-y: auto;
  }

  .jtd-primary-nav__item {
    border-bottom-color: #eef2f7;
  }

  .jtd-primary-nav__item > a,
  .jtd-nav-row > a {
    min-height: 44px;
    font-size: 15px;
  }

  .jtd-mega-menu {
    margin: 0 0 10px;
    padding: 10px;
    border-radius: 8px;
  }

  .jtd-mega-menu a {
    padding: 11px;
  }

  .jtd-mega-menu span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
  }

  .jtd-section {
    padding: 48px 0;
  }

  .jtd-section--compact {
    padding: 30px 0;
  }

  .jtd-section__header {
    margin-bottom: 22px;
  }

  .jtd-section__header h2 {
    font-size: 25px;
    line-height: 1.24;
  }

  .jtd-section__header p:not(.jtd-eyebrow) {
    font-size: 13px;
    line-height: 1.62;
  }

  .jtd-page-hero {
    padding: 38px 0 30px;
  }

  .jtd-page-hero .jtd-split {
    gap: 18px;
  }

  .jtd-page-hero h1 {
    font-size: 29px;
    line-height: 1.16;
  }

  .jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow),
  .jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow) {
    font-size: 13px;
    line-height: 1.66;
  }

  .jtd-actions {
    gap: 9px;
  }

  .jtd-btn {
    min-height: 40px;
    padding: 0 14px;
  }

  .jtd-card__body,
  .jtd-lead-form,
  .jtd-contact-info,
  .jtd-case-meta,
  .jtd-conversion-panel {
    padding: 15px;
  }

  .jtd-card h2,
  .jtd-card h3 {
    font-size: 18px;
  }

  .jtd-card p,
  .jtd-card small,
  .jtd-process-card p,
  .jtd-value-card p,
  .jtd-decision-row p,
  .jtd-case-principles p {
    font-size: 13px;
    line-height: 1.56;
  }

  .jtd-product-showcase:not(.jtd-product-showcase--hero),
  .jtd-product-showcase:not(.jtd-product-showcase--hero) .jtd-product-showcase__desktop {
    min-height: 214px;
  }

  .jtd-product-showcase__bar {
    min-height: 32px;
  }

  .jtd-product-showcase__head {
    padding: 12px 0 8px;
  }

  .jtd-product-showcase__head strong {
    font-size: 17px;
  }

  .jtd-product-showcase__kpis span {
    min-height: 48px;
    padding: 8px;
  }

  .jtd-product-showcase__kpis b {
    font-size: 14px;
  }

  .jtd-product-showcase__modules span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .jtd-decision-panel,
  .jtd-ecosystem-visual,
  .jtd-service-visual,
  .jtd-security-visual,
  .jtd-trust-console,
  .jtd-vision-orbit,
  .jtd-solution-visual-card,
  .jtd-case-visual-card,
  .jtd-case-proof-panel {
    min-height: auto;
    padding: 14px;
  }

  .jtd-service-visual strong,
  .jtd-security-visual strong,
  .jtd-ecosystem-visual strong,
  .jtd-solution-visual-card strong,
  .jtd-case-visual-card strong,
  .jtd-case-proof-panel strong {
    font-size: 20px;
  }

  .jtd-service-visual span,
  .jtd-security-visual span,
  .jtd-ecosystem-visual span,
  .jtd-decision-panel span,
  .jtd-trust-console span {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .jtd-product-strip__inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jtd-product-strip article {
    min-height: 0;
    padding: 14px;
  }

  .jtd-product-strip strong {
    font-size: 13px;
  }

  .jtd-step-list li {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.55;
  }

  .jtd-richtext h2 {
    font-size: 22px;
  }

  .jtd-richtext p,
  .jtd-richtext li {
    font-size: 14px;
    line-height: 1.72;
  }

  .jtd-note-box {
    padding: 14px;
  }

  .jtd-lead-form {
    gap: 10px;
    padding: 13px;
  }

  .jtd-lead-form label {
    gap: 4px;
    font-size: 12px;
  }

  .jtd-lead-form input,
  .jtd-lead-form select,
  .jtd-lead-form textarea {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .jtd-lead-form textarea {
    min-height: 78px;
  }

  .jtd-mobile-quickbar a {
    min-height: 52px;
    font-size: 13px;
  }

  .jtd-footer__top {
    padding: 30px 0 18px;
  }

  .jtd-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 18px;
    gap: 16px 18px;
  }

  .jtd-footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .jtd-footer__brand p,
  .jtd-site-footer a,
  .jtd-site-footer p {
    font-size: 13px;
    line-height: 1.58;
  }

  .jtd-logo--footer {
    margin-bottom: 10px;
  }

  .jtd-logo--footer .jtd-logo__image {
    width: 128px;
  }

  .jtd-footer__grid h2 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .jtd-footer__grid a {
    margin: 5px 0;
  }

  .jtd-footer__contact {
    margin-top: 8px;
  }

  .jtd-footer__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0 18px;
  }

  .jtd-footer__trust span {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .jtd-footer__bottom {
    gap: 8px;
    padding-top: 16px;
    margin-top: 20px;
    font-size: 12px;
  }
}

/* Complete visual polish v1.3 */
@media (max-width: 760px) {
  .jtd-page-hero .jtd-lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jtd-page-hero .jtd-lead-form__full,
  .jtd-page-hero .jtd-form-message,
  .jtd-page-hero .jtd-lead-form button,
  .jtd-page-hero .jtd-form-note {
    grid-column: 1 / -1;
  }

  .jtd-page-hero .jtd-lead-form label span {
    min-height: 18px;
    line-height: 1.35;
  }

  .jtd-solution-visual-card {
    gap: 10px;
  }

  .jtd-solution-visual-card__title {
    gap: 4px;
  }

  .jtd-solution-visual-card__title strong {
    font-size: 18px;
    line-height: 1.28;
  }

  .jtd-solution-visual-card__modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .jtd-solution-visual-card__modules span {
    min-height: 42px;
    padding: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .jtd-solution-visual-card__flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
  }

  .jtd-solution-visual-card__flow i {
    display: none;
  }

  .jtd-solution-visual-card__flow span {
    min-height: 30px;
    padding: 0 6px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .jtd-page-hero .jtd-lead-form {
    grid-template-columns: 1fr;
  }
}

/* JD POP tone and typography trial v1.4 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-strong: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-ink: #1c1d1f;
  --jtd-muted: #515357;
  --jtd-subtle: #8c8d91;
  --jtd-soft: #f7f8fa;
  --jtd-line: #ebedf0;
  --jtd-shadow: 0 14px 34px rgba(28, 29, 31, 0.065);
  --jtd-shadow-soft: 0 8px 22px rgba(28, 29, 31, 0.045);
}

body {
  background: #fff;
  color: var(--jtd-ink);
  font-size: 15px;
  line-height: 1.72;
}

p,
li,
.jtd-card p,
.jtd-richtext p,
.jtd-richtext li,
.jtd-section__header p:not(.jtd-eyebrow),
.jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow),
.jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow),
.jtd-hero__content > p:not(.jtd-eyebrow) {
  color: var(--jtd-muted);
}

h1,
h2,
h3,
.jtd-card h2,
.jtd-card h3,
.jtd-section__header h2,
.jtd-page-hero h1,
.jtd-hero__content h1,
.jtd-product-showcase__head strong,
.jtd-stat-panel h2 {
  color: var(--jtd-ink);
  font-weight: 700;
}

.jtd-site-header {
  border-bottom-color: rgba(235, 237, 240, 0.95);
  box-shadow: 0 6px 20px rgba(28, 29, 31, 0.035);
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a,
.jtd-header__phone {
  color: #1c1d1f;
  font-size: 14px;
  font-weight: 500;
}

.jtd-primary-nav__item.is-active > a,
.jtd-primary-nav__item > a:hover,
.jtd-nav-row > a:hover,
.jtd-text-link,
.jtd-eyebrow {
  color: var(--jtd-red);
}

.jtd-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.jtd-btn--primary {
  background: var(--jtd-red);
  box-shadow: 0 8px 18px rgba(225, 37, 27, 0.14);
}

.jtd-btn--primary:hover {
  background: var(--jtd-red-dark);
  box-shadow: 0 10px 22px rgba(225, 37, 27, 0.18);
}

.jtd-btn--secondary {
  border-color: #f2c9c5;
  background: #fff;
  color: var(--jtd-red-dark);
}

.jtd-eyebrow {
  min-height: 28px;
  padding: 0 10px;
  background: #fff1f0;
  border-color: #ffd9d6;
  font-size: 12px;
  font-weight: 600;
}

.jtd-hero {
  background:
    linear-gradient(115deg, #fff 0%, #fff 48%, #fff6f5 48.1%, #f7f8fa 100%);
}

.jtd-hero::before {
  opacity: 0.46;
  background:
    linear-gradient(90deg, rgba(28, 29, 31, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(28, 29, 31, 0.02) 1px, transparent 1px);
}

.jtd-hero::after {
  opacity: 0.7;
  background: linear-gradient(102deg, rgba(225, 37, 27, 0.075), rgba(225, 37, 27, 0));
}

.jtd-hero__content h1 {
  max-width: 660px;
  font-size: clamp(40px, 3.8vw, 54px);
  line-height: 1.12;
}

.jtd-hero__content .jtd-hero-title--split {
  max-width: 620px;
  font-size: clamp(40px, 3.8vw, 54px);
  line-height: 1.12;
}

.jtd-hero__content .jtd-hero-title--normal {
  font-size: clamp(36px, 3.2vw, 48px);
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.78;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  color: #515357;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(28, 29, 31, 0.035);
}

.jtd-hero__dots button.is-active {
  background: var(--jtd-red);
}

.jtd-section {
  background-color: #fff;
}

.jtd-section--muted,
.jtd-stat-section,
.jtd-platform-section {
  background: #f7f8fa;
}

.jtd-section__header h2 {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.26;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  font-size: 14px;
  line-height: 1.72;
}

.jtd-card,
.jtd-customer-card,
.jtd-process-card,
.jtd-value-card,
.jtd-roadmap article,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-long-roadmap article,
.jtd-product-paths article,
.jtd-platform-principles article,
.jtd-conversion-panel,
.jtd-lead-form,
.jtd-case-meta,
.jtd-note-box {
  border-color: var(--jtd-line);
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-paths article:hover,
.jtd-decision-row article:hover,
.jtd-process-card:hover {
  border-color: rgba(225, 37, 27, 0.18);
  box-shadow: var(--jtd-shadow);
}

.jtd-card h2,
.jtd-card h3,
.jtd-product-strip strong,
.jtd-service-visual strong,
.jtd-security-visual strong,
.jtd-ecosystem-visual strong,
.jtd-solution-visual-card strong,
.jtd-case-visual-card strong,
.jtd-case-proof-panel strong {
  font-size: 18px;
  line-height: 1.36;
}

.jtd-card p,
.jtd-process-card p,
.jtd-value-card p,
.jtd-decision-row p,
.jtd-case-principles p,
.jtd-long-roadmap p,
.jtd-platform-principles p {
  font-size: 14px;
  line-height: 1.68;
}

.jtd-page-hero {
  background: linear-gradient(115deg, #fff 0%, #fff 52%, #fff7f6 52.1%, #f7f8fa 100%);
}

.jtd-page-hero h1 {
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.18;
}

.jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow),
.jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow) {
  font-size: 15px;
  line-height: 1.76;
}

.jtd-richtext {
  color: var(--jtd-muted);
}

.jtd-richtext h2 {
  color: var(--jtd-ink);
  font-size: 24px;
  font-weight: 650;
}

.jtd-richtext p,
.jtd-richtext li {
  font-size: 15px;
  line-height: 1.82;
}

.jtd-note-box {
  background: #fff7f6;
}

.jtd-product-showcase__desktop,
.jtd-product-showcase__bar {
  background: #262a33;
}

.jtd-product-showcase__desktop::before,
.jtd-product-showcase__head::before,
.jtd-product-showcase__chart i:first-child,
.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-stat-grid strong,
.jtd-footer__top .jtd-eyebrow {
  color: var(--jtd-red);
}

.jtd-product-showcase__desktop::before {
  background: linear-gradient(90deg, var(--jtd-red), rgba(225, 37, 27, 0.08));
}

.jtd-product-showcase__chart i:first-child,
.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i {
  background: linear-gradient(180deg, #e1251b, var(--jtd-red));
}

.jtd-product-showcase__head strong {
  font-size: 20px;
}

.jtd-product-showcase__head span,
.jtd-product-showcase__modules span,
.jtd-product-showcase__rows span,
.jtd-product-showcase__kpis span {
  color: #515357;
}

.jtd-decision-panel,
.jtd-ecosystem-visual,
.jtd-service-visual,
.jtd-security-visual,
.jtd-trust-console,
.jtd-vision-orbit,
.jtd-solution-visual-card,
.jtd-case-visual-card,
.jtd-case-proof-panel {
  box-shadow: 0 18px 42px rgba(28, 29, 31, 0.095);
}

.jtd-stat-panel {
  background:
    linear-gradient(135deg, rgba(225, 37, 27, 0.045), rgba(37, 99, 235, 0.028) 62%, rgba(255, 255, 255, 0)),
    #fff;
  color: var(--jtd-ink);
}

.jtd-stat-grid article {
  background: #fff;
  border-color: var(--jtd-line);
}

.jtd-stat-grid span {
  color: var(--jtd-ink);
}

.jtd-stat-grid small {
  color: var(--jtd-subtle);
}

.jtd-site-footer {
  background: #20242d;
}

.jtd-footer__top {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), rgba(225, 37, 27, 0.055)),
    #242933;
}

.jtd-site-footer p,
.jtd-site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.jtd-site-footer h2,
.jtd-footer__top h2 {
  color: #fff;
  font-weight: 650;
}

.jtd-mobile-quickbar {
  box-shadow: 0 -10px 24px rgba(28, 29, 31, 0.08);
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .jtd-primary-nav__item > a,
  .jtd-nav-row > a {
    font-size: 14px;
    font-weight: 500;
  }

  .jtd-hero__content h1,
  .jtd-hero__content .jtd-hero-title--normal,
  .jtd-hero__content .jtd-hero-title--split {
    font-size: 30px;
    line-height: 1.16;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    font-size: 14px;
    line-height: 1.68;
  }

  .jtd-section__header h2,
  .jtd-page-hero h1 {
    font-size: 24px;
    line-height: 1.25;
  }

  .jtd-section__header p:not(.jtd-eyebrow),
  .jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow),
  .jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow),
  .jtd-card p,
  .jtd-process-card p,
  .jtd-value-card p,
  .jtd-decision-row p,
  .jtd-case-principles p {
    font-size: 13px;
    line-height: 1.62;
  }

  .jtd-card h2,
  .jtd-card h3,
  .jtd-service-visual strong,
  .jtd-security-visual strong,
  .jtd-ecosystem-visual strong,
  .jtd-solution-visual-card strong,
  .jtd-case-visual-card strong,
  .jtd-case-proof-panel strong {
    font-size: 17px;
  }

  .jtd-btn {
    min-height: 38px;
    font-size: 13px;
    font-weight: 600;
  }

  .jtd-richtext h2 {
    font-size: 20px;
  }

  .jtd-richtext p,
  .jtd-richtext li {
    font-size: 14px;
  }
}

/* Clarity cleanup v1.5: fix wrapping, dots, and header noise */
.jtd-operating-section::before {
  opacity: 0.45;
  background:
    linear-gradient(90deg, rgba(28, 29, 31, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(28, 29, 31, 0.016) 1px, transparent 1px);
  background-size: 76px 76px;
}

.jtd-operating-grid {
  grid-template-columns: minmax(430px, 0.82fr) minmax(640px, 1.18fr);
  gap: 48px;
  align-items: center;
}

.jtd-operating-copy h2 {
  max-width: 640px;
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1.22;
  font-weight: 700;
}

.jtd-operating-copy p:not(.jtd-eyebrow) {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.76;
}

.jtd-operating-board {
  gap: 12px;
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2) {
  display: grid;
  grid-template-columns: 72px minmax(170px, 0.72fr) minmax(260px, 1fr);
  gap: 12px 18px;
  align-items: start;
  min-height: 126px;
  padding: 20px 22px;
  transform: none;
}

.jtd-operating-board article > span {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  color: rgba(225, 37, 27, 0.22);
  font-size: 30px;
  font-weight: 700;
}

.jtd-operating-board article > h3 {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding-top: 2px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.32;
}

.jtd-operating-board article > p {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
  color: #515357;
  font-size: 14px;
  line-height: 1.7;
}

.jtd-operating-board article > div {
  grid-column: 2 / 4;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.jtd-operating-board b,
.jtd-resource-flow span {
  min-width: max-content;
  min-height: 26px;
  padding: 0 10px;
  background: #fff7f6;
  border-color: #ffd7d4;
  color: #e1251b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.jtd-process-row {
  gap: 14px;
}

.jtd-process-card {
  min-height: 178px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(28, 29, 31, 0.04);
}

.jtd-process-card span {
  width: auto;
  height: 24px;
  min-width: 42px;
  margin-bottom: 22px;
  padding: 0 10px;
  background: #fff7f6;
  border: 1px solid #ffd7d4;
  border-radius: 999px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.jtd-process-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 650;
}

.jtd-process-card p {
  color: #515357;
  font-size: 14px;
  line-height: 1.68;
}

.jtd-language-switcher {
  gap: 0;
  padding: 2px;
  border-color: #e3e6eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.jtd-language-switcher a {
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  color: #515357;
  font-size: 12px;
  font-weight: 600;
  border-radius: 14px;
}

.jtd-language-switcher a[aria-current="page"],
.jtd-language-switcher a:hover {
  background: #fff1f0;
  color: var(--jtd-red);
}

.jtd-header__phone {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .jtd-operating-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .jtd-operating-copy h2,
  .jtd-operating-copy p:not(.jtd-eyebrow) {
    max-width: 760px;
  }

  .jtd-operating-board article,
  .jtd-operating-board article:nth-child(2) {
    grid-template-columns: 64px minmax(150px, 0.58fr) minmax(240px, 1fr);
  }
}

@media (max-width: 760px) {
  .jtd-operating-copy h2 {
    font-size: 25px;
  }

  .jtd-operating-copy p:not(.jtd-eyebrow) {
    font-size: 13px;
  }

  .jtd-operating-board article,
  .jtd-operating-board article:nth-child(2) {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    padding: 16px;
  }

  .jtd-operating-board article > span {
    grid-column: 1;
    grid-row: 1 / 4;
    font-size: 24px;
  }

  .jtd-operating-board article > h3,
  .jtd-operating-board article > p,
  .jtd-operating-board article > div {
    grid-column: 2;
  }

  .jtd-operating-board article > h3 {
    font-size: 17px;
  }

  .jtd-operating-board article > p {
    grid-row: 2;
    font-size: 13px;
  }

  .jtd-operating-board article > div {
    grid-row: 3;
    gap: 6px;
  }

  .jtd-operating-board b,
  .jtd-resource-flow span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .jtd-process-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jtd-process-card {
    min-height: 0;
    padding: 16px;
  }

  .jtd-process-card span {
    margin-bottom: 12px;
  }
}

/* JD Cloud style polish v1.6 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-strong: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-ink: #262626;
  --jtd-muted: #595959;
  --jtd-subtle: #999999;
  --jtd-soft: #fafafc;
  --jtd-line: #f0f1f5;
  --jtd-shadow: 0 2px 21px rgba(233, 234, 237, 0.72);
  --jtd-shadow-soft: 0 2px 8px rgba(8, 20, 49, 0.03);
}

body {
  color: var(--jtd-ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.72;
}

p,
li,
.jtd-card p,
.jtd-richtext p,
.jtd-richtext li {
  color: var(--jtd-muted);
}

h1,
h2,
h3,
.jtd-card h2,
.jtd-card h3,
.jtd-section__header h2,
.jtd-page-hero h1,
.jtd-hero__content h1 {
  color: var(--jtd-ink);
  font-weight: 600;
}

.jtd-site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #edf0f5;
  box-shadow: none;
}

.jtd-header__inner {
  min-height: 64px;
  gap: 22px;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  min-height: 64px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
}

.jtd-header__phone {
  color: #262626;
  font-size: 15px;
  font-weight: 600;
}

.jtd-btn {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.jtd-btn--primary {
  background: var(--jtd-red);
  box-shadow: none;
}

.jtd-btn--primary:hover {
  background: var(--jtd-red-strong);
  box-shadow: none;
}

.jtd-btn--secondary {
  border-color: #d9dce3;
  background: #fff;
  color: #333333;
}

.jtd-btn--secondary:hover {
  border-color: #ffb4ae;
  background: #fff7f6;
  color: var(--jtd-red);
}

.jtd-eyebrow {
  min-height: 24px;
  padding: 0 9px;
  background: #fff;
  border-color: #ffd7d4;
  color: var(--jtd-red);
  font-size: 12px;
  font-weight: 500;
}

.jtd-hero {
  min-height: 560px;
  padding: 64px 0 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
}

.jtd-hero::before,
.jtd-hero::after,
.jtd-operating-section::before {
  display: none;
}

.jtd-hero__slides {
  min-height: 470px;
}

.jtd-hero__slide {
  gap: 52px;
}

.jtd-hero__content h1,
.jtd-hero__content .jtd-hero-title--split {
  max-width: 600px;
  font-size: clamp(38px, 3.2vw, 46px);
  line-height: 1.16;
  font-weight: 600;
}

.jtd-hero__content .jtd-hero-title--normal {
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.2;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 600px;
  margin-top: 18px;
  color: #595959;
  font-size: 16px;
  line-height: 1.78;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  min-height: 28px;
  border-color: #eceff5;
  color: #595959;
  box-shadow: none;
}

.jtd-section {
  padding: 72px 0;
}

.jtd-section--compact {
  padding: 42px 0;
}

.jtd-section--muted,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-resource-section {
  background: #fafafc;
}

.jtd-featured-product {
  background: #fff;
}

.jtd-section__header {
  margin-bottom: 30px;
}

.jtd-section__header h2 {
  max-width: 820px;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.32;
  font-weight: 600;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  max-width: 760px;
  color: #595959;
  font-size: 14px;
  line-height: 1.75;
}

.jtd-card,
.jtd-customer-card,
.jtd-process-card,
.jtd-value-card,
.jtd-roadmap article,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-long-roadmap article,
.jtd-product-paths article,
.jtd-platform-principles article,
.jtd-conversion-panel,
.jtd-lead-form,
.jtd-case-meta,
.jtd-note-box,
.jtd-stat-grid article,
.jtd-ai-grid article,
.jtd-product-card,
.jtd-solution-card,
.jtd-news-card,
.jtd-service-card,
.jtd-qualification-card {
  border-color: var(--jtd-line);
  border-radius: 4px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-process-card:hover,
.jtd-value-card:hover,
.jtd-stat-grid article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-product-paths article:hover,
.jtd-decision-row article:hover {
  border-color: rgba(225, 37, 27, 0.18);
  box-shadow: 0 2px 21px rgba(233, 234, 237, 0.72);
  transform: translateY(-1px);
}

.jtd-card__body {
  padding: 20px;
}

.jtd-card h2,
.jtd-card h3,
.jtd-product-strip strong,
.jtd-service-visual strong,
.jtd-security-visual strong,
.jtd-ecosystem-visual strong,
.jtd-solution-visual-card strong,
.jtd-case-visual-card strong,
.jtd-case-proof-panel strong {
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.jtd-card p,
.jtd-process-card p,
.jtd-value-card p,
.jtd-decision-row p,
.jtd-case-principles p,
.jtd-long-roadmap p,
.jtd-platform-principles p {
  color: #595959;
  font-size: 14px;
  line-height: 1.7;
}

.jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-ai-grid span {
  background: #fff;
  border: 1px solid #ffd7d4;
  color: var(--jtd-red);
  box-shadow: none;
}

.jtd-capability-card:hover .jtd-capability-card__icon {
  background: #fff1f0;
  color: var(--jtd-red);
}

.jtd-value-card {
  background: #fff;
}

.jtd-value-card::before,
.jtd-ai-grid article::before,
.jtd-long-roadmap article::before {
  opacity: 0.45;
}

.jtd-operating-section {
  padding: 72px 0;
  background: #fafafc;
}

.jtd-operating-grid {
  grid-template-columns: minmax(420px, 0.78fr) minmax(640px, 1.22fr);
  gap: 44px;
}

.jtd-operating-copy h2 {
  max-width: 580px;
  font-size: clamp(28px, 2.2vw, 34px);
  line-height: 1.28;
  font-weight: 600;
}

.jtd-operating-copy p:not(.jtd-eyebrow) {
  max-width: 590px;
  color: #595959;
  font-size: 15px;
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2) {
  min-height: 116px;
  padding: 18px 20px;
  border-color: #f0f1f5;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(8, 20, 49, 0.03);
}

.jtd-operating-board article > span {
  color: rgba(225, 37, 27, 0.18);
  font-size: 28px;
  font-weight: 600;
}

.jtd-operating-board article > h3 {
  font-size: 18px;
  font-weight: 500;
}

.jtd-operating-board b,
.jtd-resource-flow span,
.jtd-tag {
  background: #fff;
  border-color: #ffd7d4;
  color: var(--jtd-red);
  font-weight: 500;
}

.jtd-process-card {
  min-height: 160px;
}

.jtd-process-card span {
  border-color: #ffd7d4;
  background: #fff;
  color: var(--jtd-red);
}

.jtd-stat-panel {
  background: #fff;
  border: 1px solid #f0f1f5;
  border-radius: 4px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-stat-panel h2 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
}

.jtd-stat-grid strong {
  color: var(--jtd-red);
  font-weight: 600;
}

.jtd-future-section {
  background: #fafafc;
}

.jtd-future-section h2 {
  color: #262626;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
}

.jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  color: #595959;
  font-size: 15px;
}

.jtd-future-section .jtd-btn--secondary {
  background: #fff;
  border-color: #d9dce3;
  color: #333;
}

.jtd-future-board {
  min-height: 0;
  background: #fff;
  background-size: auto;
  border: 1px solid #f0f1f5;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(8, 20, 49, 0.03);
}

.jtd-future-board::before,
.jtd-future-board__scan {
  display: none;
}

.jtd-future-board article {
  min-height: 220px;
  background: #fff;
  border-color: #f0f1f5;
  border-radius: 4px;
  box-shadow: none;
  backdrop-filter: none;
}

.jtd-future-board span {
  color: rgba(225, 37, 27, 0.55);
  font-weight: 600;
}

.jtd-future-board h3 {
  color: #262626;
  font-size: 20px;
  font-weight: 500;
}

.jtd-future-board p {
  color: #595959;
}

.jtd-page-hero {
  padding: 64px 0 44px;
  background: linear-gradient(180deg, #fff 0%, #fafafc 100%);
}

.jtd-page-hero h1 {
  font-size: clamp(30px, 2.8vw, 38px);
  line-height: 1.24;
  font-weight: 600;
}

.jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow),
.jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow) {
  color: #595959;
  font-size: 15px;
}

.jtd-product-showcase__desktop,
.jtd-decision-panel,
.jtd-ecosystem-visual,
.jtd-service-visual,
.jtd-security-visual,
.jtd-trust-console,
.jtd-vision-orbit,
.jtd-solution-visual-card,
.jtd-case-visual-card,
.jtd-case-proof-panel {
  border-radius: 4px;
  box-shadow: 0 2px 21px rgba(233, 234, 237, 0.72);
}

.jtd-language-switcher {
  border-radius: 4px;
}

.jtd-language-switcher a {
  border-radius: 3px;
}

.jtd-site-footer {
  background: #262626;
}

.jtd-footer__top {
  background: #2b2b2b;
}

@media (max-width: 1180px) {
  .jtd-hero__slides {
    min-height: auto;
  }

  .jtd-operating-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .jtd-header__inner {
    min-height: 58px;
  }

  .jtd-primary-nav {
    top: 58px;
  }

  .jtd-hero {
    padding: 34px 0 24px;
    background: linear-gradient(180deg, #fff 0%, #fafafc 100%);
  }

  .jtd-hero__content h1,
  .jtd-hero__content .jtd-hero-title--normal,
  .jtd-hero__content .jtd-hero-title--split {
    font-size: 28px;
    line-height: 1.22;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.66;
  }

  .jtd-section {
    padding: 46px 0;
  }

  .jtd-section__header {
    margin-bottom: 20px;
  }

  .jtd-section__header h2,
  .jtd-page-hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .jtd-card__body,
  .jtd-customer-card,
  .jtd-process-card,
  .jtd-value-card {
    padding: 16px;
  }

  .jtd-operating-section {
    padding: 48px 0;
  }

  .jtd-operating-copy h2 {
    font-size: 24px;
  }

  .jtd-operating-board article,
  .jtd-operating-board article:nth-child(2) {
    padding: 14px;
  }

  .jtd-process-card {
    min-height: 0;
  }
}

/* Floating lead modal v1.7 */
.jtd-modal-lock {
  overflow: hidden;
}

.jtd-floating-demo {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 180;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 56px;
  min-height: 132px;
  padding: 12px 8px;
  background: #e1251b;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 8px 18px rgba(225, 37, 27, 0.18);
  transform: translateY(-50%);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.jtd-floating-demo:hover,
.jtd-floating-demo:focus-visible {
  background: #e1251b;
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 37, 27, 0.22);
  transform: translateY(-50%) translateX(-2px);
}

.jtd-floating-demo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 13px;
}

.jtd-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  padding: 18px;
}

.jtd-lead-modal[aria-hidden="true"] {
  display: none;
}

.jtd-lead-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
}

.jtd-lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 30px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #f0f1f5;
  border-radius: 4px;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.18);
}

.jtd-lead-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: #fafafc;
  border: 1px solid #edf0f5;
  border-radius: 4px;
  color: #595959;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.jtd-lead-modal__close:hover,
.jtd-lead-modal__close:focus-visible {
  border-color: #ffd7d4;
  color: #e1251b;
}

.jtd-lead-modal__head {
  padding-right: 46px;
  margin-bottom: 22px;
}

.jtd-lead-modal__head h2 {
  max-width: 560px;
  margin: 10px 0 8px;
  color: #262626;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.32;
}

.jtd-lead-modal__head p:not(.jtd-eyebrow) {
  max-width: 600px;
  color: #595959;
  font-size: 14px;
}

.jtd-lead-modal .jtd-lead-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.jtd-lead-modal .jtd-lead-form input,
.jtd-lead-modal .jtd-lead-form select,
.jtd-lead-modal .jtd-lead-form textarea {
  background: #fff;
}

.jtd-lead-modal .jtd-lead-form textarea {
  min-height: 118px;
}

@media (max-width: 760px) {
  .jtd-floating-demo {
    display: none;
  }

  .jtd-lead-modal {
    justify-content: center;
    padding: 10px;
  }

  .jtd-lead-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 20px 14px 18px;
  }

  .jtd-lead-modal__head {
    padding-right: 42px;
    margin-bottom: 16px;
  }

  .jtd-lead-modal__head h2 {
    font-size: 20px;
  }

  .jtd-lead-modal .jtd-lead-form {
    grid-template-columns: 1fr;
  }
}

/* Feishu SaaS polish v1.8 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-strong: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-red-soft: #fff1f0;
  --jtd-ink: #1f2329;
  --jtd-muted: #646a73;
  --jtd-subtle: #8f959e;
  --jtd-soft: #f7f8fa;
  --jtd-line: #eff1f5;
  --jtd-card: #ffffff;
  --jtd-blue: #3370ff;
  --jtd-green: #00b578;
  --jtd-radius: 8px;
  --jtd-shadow: 0 12px 36px rgba(31, 35, 41, 0.06);
  --jtd-shadow-soft: 0 6px 18px rgba(31, 35, 41, 0.04);
}

html {
  background: #fff;
}

body {
  color: var(--jtd-ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

p,
li,
.jtd-card p,
.jtd-richtext p,
.jtd-richtext li {
  color: var(--jtd-muted);
}

h1,
h2,
h3,
.jtd-page-hero h1,
.jtd-hero__content h1,
.jtd-section__header h2 {
  color: var(--jtd-ink);
  font-weight: 600;
  letter-spacing: 0;
}

.jtd-container {
  width: min(100% - 48px, 1180px);
}

.jtd-site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(239, 241, 245, 0.92);
  box-shadow: 0 1px 0 rgba(31, 35, 41, 0.02);
}

.jtd-header__inner {
  min-height: 66px;
  gap: 22px;
}

.jtd-primary-nav__list {
  gap: 12px;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  min-height: 66px;
  padding: 0 4px;
  color: #333842;
  font-size: 14px;
  font-weight: 500;
}

.jtd-primary-nav__item:hover > a,
.jtd-primary-nav__item:focus-within > a,
.jtd-primary-nav__item:hover > .jtd-nav-row > a,
.jtd-primary-nav__item:focus-within > .jtd-nav-row > a {
  color: var(--jtd-red);
}

.jtd-header__phone {
  color: #333842;
  font-size: 14px;
  font-weight: 600;
}

.jtd-language-switcher {
  gap: 2px;
  padding: 3px;
  background: #f7f8fa;
  border: 1px solid #e8eaef;
  border-radius: 8px;
}

.jtd-language-switcher a {
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  color: #646a73;
  font-size: 12px;
  font-weight: 600;
}

.jtd-language-switcher a[aria-current="page"],
.jtd-language-switcher a:hover {
  background: #fff;
  color: var(--jtd-red);
  box-shadow: 0 1px 3px rgba(31, 35, 41, 0.08);
}

.jtd-mega-menu {
  top: 66px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-color: #e8eaef;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.1);
}

.jtd-mega-menu a {
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.jtd-mega-menu a:hover {
  background: #f7f8fa;
  color: var(--jtd-red);
}

.jtd-mega-menu span {
  color: var(--jtd-muted);
}

.jtd-mega-menu__cta {
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  border-color: #e8eaef;
  border-radius: 8px;
}

.jtd-btn {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

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

.jtd-btn--primary {
  background: var(--jtd-red);
  color: #fff;
}

.jtd-btn--primary:hover {
  background: var(--jtd-red-strong);
}

.jtd-btn--secondary {
  background: #fff;
  border-color: #d8dce5;
  color: #333842;
}

.jtd-btn--secondary:hover {
  background: #fbfcff;
  border-color: #f4b8b8;
  color: var(--jtd-red);
}

.jtd-text-link {
  color: var(--jtd-red);
  font-weight: 600;
}

.jtd-eyebrow,
.jtd-tag,
.jtd-operating-board b,
.jtd-resource-flow span {
  background: #fff;
  border: 1px solid #ffd6d6;
  color: var(--jtd-red);
  border-radius: 999px;
  font-weight: 600;
}

.jtd-eyebrow {
  min-height: 26px;
  padding: 0 10px;
  margin-bottom: 14px;
  font-size: 12px;
}

.jtd-hero {
  min-height: 586px;
  padding: 66px 0 30px;
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  background-size: 88px 88px, 88px 88px, auto;
  border-bottom: 1px solid #eff1f5;
}

.jtd-hero::before,
.jtd-hero::after {
  display: none;
}

.jtd-hero__slides {
  min-height: 492px;
}

.jtd-hero__slide {
  grid-template-columns: minmax(470px, 0.92fr) minmax(500px, 1.08fr);
  gap: 54px;
}

.jtd-hero__content h1,
.jtd-hero__content .jtd-hero-title--split {
  max-width: 620px;
  font-size: clamp(40px, 3.4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: keep-all;
}

.jtd-hero__content .jtd-hero-title--normal {
  font-size: clamp(36px, 3.1vw, 46px);
  line-height: 1.18;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 630px;
  margin-top: 18px;
  color: var(--jtd-muted);
  font-size: 16px;
  line-height: 1.8;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  min-height: 28px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.86);
  border-color: #e8eaef;
  color: #4e5969;
  font-size: 12px;
  font-weight: 600;
  box-shadow: none;
}

.jtd-hero__dots button {
  width: 28px;
  height: 4px;
  background: #dfe3eb;
}

.jtd-hero__dots button.is-active {
  background: var(--jtd-red);
}

.jtd-hero__signal {
  left: 8px;
  top: 42px;
  gap: 8px;
}

.jtd-hero__signal span {
  min-width: 60px;
  min-height: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e8eaef;
  color: #333842;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(31, 35, 41, 0.06);
}

.jtd-product-showcase {
  width: min(100%, 650px);
  padding-right: 58px;
}

.jtd-product-showcase__desktop {
  background: linear-gradient(90deg, #f7f8fa 0 22%, #fff 22.1% 100%);
  border-color: #e1e6ef;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
}

.jtd-product-showcase__desktop::before {
  height: 2px;
  background: linear-gradient(90deg, var(--jtd-red), rgba(51, 112, 255, 0.68), transparent);
}

.jtd-product-showcase__bar {
  background: #f7f8fa;
  border: 1px solid #e8eaef;
  border-radius: 7px;
}

.jtd-product-showcase__bar b {
  color: #333842;
  font-weight: 600;
}

.jtd-product-showcase__bar span {
  background: #d8dce5;
}

.jtd-product-showcase__head::before {
  background:
    linear-gradient(var(--jtd-red) 0 0) 0 0 / 38px 7px no-repeat,
    linear-gradient(#dfe3eb 0 0) 0 31px / 72px 7px no-repeat,
    linear-gradient(#dfe3eb 0 0) 0 60px / 54px 7px no-repeat,
    linear-gradient(#dfe3eb 0 0) 0 89px / 66px 7px no-repeat,
    linear-gradient(#dfe3eb 0 0) 0 118px / 48px 7px no-repeat;
}

.jtd-product-showcase__head span {
  color: var(--jtd-red);
  font-weight: 600;
}

.jtd-product-showcase__head strong {
  color: var(--jtd-ink);
  font-size: 24px;
  font-weight: 600;
}

.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span {
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
}

.jtd-product-showcase__kpis b {
  color: var(--jtd-ink);
  font-size: 20px;
  font-weight: 600;
}

.jtd-section {
  padding: 70px 0;
}

.jtd-section--muted,
.jtd-section--audience,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-resource-section,
.jtd-operating-section {
  background: #f7f8fa;
}

.jtd-featured-product,
.jtd-future-section {
  background: #fff;
}

.jtd-section__header {
  max-width: 800px;
  margin-bottom: 32px;
}

.jtd-section__header h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.34;
  font-weight: 600;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  max-width: 720px;
  color: var(--jtd-muted);
  font-size: 14px;
  line-height: 1.78;
}

.jtd-trust-strip {
  background: #fff;
  border-bottom: 1px solid #eff1f5;
}

.jtd-trust-strip__inner {
  gap: 10px;
  padding: 14px 0;
}

.jtd-trust-strip span {
  min-height: 44px;
  background: #fff;
  border: 1px solid #eff1f5;
  border-radius: 8px;
  color: #4e5969;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.jtd-card,
.jtd-customer-card,
.jtd-process-card,
.jtd-value-card,
.jtd-roadmap article,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-long-roadmap article,
.jtd-product-paths article,
.jtd-platform-principles article,
.jtd-conversion-panel,
.jtd-lead-form,
.jtd-case-meta,
.jtd-note-box,
.jtd-stat-grid article,
.jtd-ai-grid article,
.jtd-product-card,
.jtd-solution-card,
.jtd-news-card,
.jtd-service-card,
.jtd-qualification-card {
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(31, 35, 41, 0.02);
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-process-card:hover,
.jtd-value-card:hover,
.jtd-stat-grid article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-product-paths article:hover,
.jtd-decision-row article:hover {
  border-color: #d8dce5;
  box-shadow: 0 12px 30px rgba(31, 35, 41, 0.07);
  transform: translateY(-1px);
}

.jtd-card__body {
  padding: 20px;
}

.jtd-card h2,
.jtd-card h3,
.jtd-product-strip strong,
.jtd-service-visual strong,
.jtd-security-visual strong,
.jtd-ecosystem-visual strong,
.jtd-solution-visual-card strong,
.jtd-case-visual-card strong,
.jtd-case-proof-panel strong {
  color: var(--jtd-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
}

.jtd-card p,
.jtd-process-card p,
.jtd-value-card p,
.jtd-decision-row p,
.jtd-case-principles p,
.jtd-long-roadmap p,
.jtd-platform-principles p {
  color: var(--jtd-muted);
  font-size: 14px;
  line-height: 1.72;
}

.jtd-customer-card {
  min-height: 268px;
  padding: 20px;
}

.jtd-customer-card::before,
.jtd-value-card::before,
.jtd-ai-grid article::before,
.jtd-long-roadmap article::before {
  opacity: 0.16;
}

.jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-ai-grid span,
.jtd-process-card span {
  background: #fff;
  border: 1px solid #ffd6d6;
  color: var(--jtd-red);
  box-shadow: none;
}

.jtd-customer-card__index {
  color: rgba(230, 69, 69, 0.18);
  font-weight: 600;
}

#products .jtd-card-grid--3 {
  gap: 14px;
}

#products .jtd-product-card__preview {
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.025) 1px, transparent 1px),
    #fbfcff;
  background-size: 36px 36px;
  border-bottom: 1px solid #eff1f5;
}

#products .jtd-product-card__preview strong {
  color: #4e5969;
  font-weight: 600;
}

#products .jtd-product-card__preview span {
  background: #fff;
  border: 1px solid #e8eaef;
  color: #646a73;
}

#products .jtd-product-card__preview i {
  background: linear-gradient(90deg, var(--jtd-red), var(--jtd-blue), var(--jtd-green));
  opacity: 0.78;
}

#products .jtd-product-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.jtd-section-actions {
  margin-top: 28px;
}

.jtd-stat-section {
  padding: 54px 0;
}

.jtd-stat-panel {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 28px;
  padding: 26px;
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-stat-panel h2 {
  max-width: 470px;
  font-size: clamp(25px, 2.3vw, 32px);
  font-weight: 600;
}

.jtd-stat-grid {
  gap: 10px;
}

.jtd-stat-grid article {
  min-height: 112px;
  padding: 16px;
}

.jtd-stat-grid strong {
  color: var(--jtd-red);
  font-size: 31px;
  font-weight: 600;
}

.jtd-future-section {
  padding: 72px 0;
}

.jtd-future-section .jtd-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: 42px;
}

.jtd-future-section h2 {
  max-width: 520px;
  color: var(--jtd-ink);
  font-size: clamp(26px, 2.3vw, 34px);
  font-weight: 600;
}

.jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  max-width: 560px;
  color: var(--jtd-muted);
  font-size: 15px;
  line-height: 1.82;
}

.jtd-future-board {
  min-height: 300px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.025) 1px, transparent 1px),
    #fbfcff;
  background-size: 44px 44px;
  border: 1px solid #e8eaef;
  border-radius: 8px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-future-board article {
  min-height: 218px;
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: none;
}

.jtd-future-board span {
  color: var(--jtd-blue);
  font-weight: 600;
}

.jtd-future-board h3 {
  color: var(--jtd-ink);
  font-size: 19px;
  font-weight: 600;
}

.jtd-ai-section {
  padding: 72px 0;
}

.jtd-ai-grid {
  gap: 12px;
}

.jtd-ai-grid article {
  min-height: 142px;
  padding: 17px;
  overflow: hidden;
}

.jtd-ai-grid span {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.jtd-ai-grid h3 {
  margin-bottom: 7px;
  color: var(--jtd-ink);
  font-size: 17px;
  font-weight: 600;
}

.jtd-platform-section {
  padding: 74px 0;
  background: #f7f8fa;
}

.jtd-platform-layout {
  gap: 28px;
}

.jtd-ecosystem-map {
  min-height: 410px;
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
  border: 1px solid #e8eaef;
  border-radius: 8px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-ecosystem-map::before,
.jtd-ecosystem-map::after {
  background: linear-gradient(90deg, transparent, rgba(51, 112, 255, 0.18), transparent);
}

.jtd-ecosystem-map strong {
  width: 152px;
  height: 76px;
  background: #fff;
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  color: var(--jtd-red);
  font-size: 19px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(230, 69, 69, 0.1);
}

.jtd-ecosystem-map__node {
  min-width: 82px;
  min-height: 34px;
  padding: 0 12px;
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  color: #333842;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(31, 35, 41, 0.06);
}

.jtd-platform-principles article {
  padding: 20px;
}

.jtd-operating-section {
  padding: 72px 0;
}

.jtd-operating-grid {
  grid-template-columns: minmax(390px, 0.74fr) minmax(620px, 1.26fr);
  gap: 40px;
}

.jtd-operating-copy h2 {
  max-width: 560px;
  font-size: clamp(27px, 2.15vw, 34px);
  font-weight: 600;
}

.jtd-operating-copy p:not(.jtd-eyebrow) {
  max-width: 580px;
  color: var(--jtd-muted);
  font-size: 15px;
}

.jtd-operating-board {
  gap: 12px;
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2) {
  grid-template-columns: 56px minmax(170px, 0.52fr) minmax(250px, 1fr);
  gap: 10px 18px;
  min-height: 104px;
  padding: 16px 18px;
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-operating-board article > span {
  color: rgba(230, 69, 69, 0.2);
  font-size: 26px;
  font-weight: 600;
}

.jtd-operating-board article > h3 {
  color: var(--jtd-ink);
  font-size: 17px;
  font-weight: 600;
}

.jtd-operating-board article > p {
  color: var(--jtd-muted);
  font-size: 14px;
}

.jtd-operating-board article > div {
  gap: 7px;
}

.jtd-operating-board b,
.jtd-resource-flow span {
  min-height: 26px;
  padding: 0 9px;
  font-size: 12px;
  white-space: nowrap;
}

.jtd-featured-product__modules span {
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: none;
}

.jtd-resource-flow {
  background: #fff;
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-security-main {
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.03) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
  border: 1px solid #e8eaef;
  color: var(--jtd-ink);
}

.jtd-security-main h3 {
  color: var(--jtd-ink);
}

.jtd-security-main p {
  color: var(--jtd-muted);
}

.jtd-site-footer {
  background: #1f2329;
}

.jtd-footer__top {
  background: #252a31;
}

.jtd-floating-demo {
  width: 54px;
  min-height: 124px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e8eaef;
  border-radius: 8px;
  color: #333842;
  font-weight: 600;
  box-shadow: 0 12px 34px rgba(31, 35, 41, 0.12);
}

.jtd-floating-demo:hover,
.jtd-floating-demo:focus-visible {
  background: #fff;
  color: var(--jtd-red);
  border-color: #ffd6d6;
  box-shadow: 0 16px 40px rgba(31, 35, 41, 0.16);
}

.jtd-floating-demo__icon {
  background: var(--jtd-red-soft);
  color: var(--jtd-red);
}

.jtd-lead-modal__backdrop {
  background: rgba(31, 35, 41, 0.36);
}

.jtd-lead-modal__dialog {
  border-color: #e8eaef;
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(31, 35, 41, 0.16);
}

.jtd-lead-modal__close {
  background: #f7f8fa;
  border-color: #e8eaef;
  border-radius: 8px;
  color: #646a73;
}

.jtd-lead-form label {
  color: #333842;
  font-weight: 600;
}

.jtd-lead-form input,
.jtd-lead-form select,
.jtd-lead-form textarea {
  border-color: #dfe3eb;
  border-radius: 8px;
  background: #fbfcff;
}

.jtd-lead-form input:focus,
.jtd-lead-form select:focus,
.jtd-lead-form textarea:focus {
  outline: none;
  border-color: rgba(230, 69, 69, 0.65);
  box-shadow: 0 0 0 3px rgba(230, 69, 69, 0.1);
}

@media (max-width: 1180px) {
  .jtd-hero__slide,
  .jtd-future-section .jtd-split,
  .jtd-operating-grid {
    grid-template-columns: 1fr;
  }

  .jtd-hero__slides {
    min-height: auto;
  }

  .jtd-operating-board article,
  .jtd-operating-board article:nth-child(2) {
    grid-template-columns: 56px minmax(180px, 0.42fr) minmax(260px, 1fr);
  }
}

@media (max-width: 760px) {
  .jtd-container {
    width: min(100% - 32px, 1180px);
  }

  .jtd-header__inner {
    min-height: 58px;
  }

  .jtd-primary-nav {
    top: 58px;
  }

  .jtd-hero {
    min-height: 0;
    padding: 34px 0 24px;
    background:
      linear-gradient(90deg, rgba(51, 112, 255, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(31, 35, 41, 0.025) 1px, transparent 1px),
      linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
    background-size: 58px 58px, 58px 58px, auto;
  }

  .jtd-hero__content h1,
  .jtd-hero__content .jtd-hero-title--normal,
  .jtd-hero__content .jtd-hero-title--split {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.22;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    font-size: 14px;
    line-height: 1.7;
  }

  .jtd-hero__signal {
    display: none;
  }

  .jtd-product-showcase,
  .jtd-product-showcase--hero {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .jtd-product-showcase__desktop {
    min-height: 0;
    padding: 12px;
  }

  .jtd-section {
    padding: 48px 0;
  }

  .jtd-section__header {
    margin-bottom: 22px;
  }

  .jtd-section__header h2,
  .jtd-page-hero h1 {
    font-size: 24px;
    line-height: 1.32;
  }

  .jtd-card__body,
  .jtd-customer-card,
  .jtd-process-card,
  .jtd-value-card,
  .jtd-stat-grid article,
  .jtd-ai-grid article {
    padding: 16px;
  }

  .jtd-customer-card {
    min-height: 0;
  }

  .jtd-stat-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .jtd-future-board article {
    min-height: 0;
  }

  .jtd-ecosystem-map {
    min-height: 360px;
  }

  .jtd-ecosystem-map strong {
    width: 132px;
    height: 68px;
    font-size: 17px;
  }

  .jtd-operating-board article,
  .jtd-operating-board article:nth-child(2) {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    padding: 15px;
  }

  .jtd-operating-board article > span {
    grid-column: 1;
    grid-row: 1 / 4;
    font-size: 23px;
  }

  .jtd-operating-board article > h3,
  .jtd-operating-board article > p,
  .jtd-operating-board article > div {
    grid-column: 2;
  }

  .jtd-operating-board article > div {
    gap: 6px;
  }

  .jtd-operating-board b,
  .jtd-resource-flow span {
    white-space: normal;
  }

  .jtd-lead-modal__dialog {
    border-radius: 8px;
  }
}

/* Lively Feishu color rhythm v1.9 */
:root {
  --jtd-ink: #202124;
  --jtd-muted: #4e5969;
  --jtd-subtle: #86909c;
  --jtd-blue: #3370ff;
  --jtd-blue-soft: #eef4ff;
  --jtd-green: #00b578;
  --jtd-green-soft: #ecfbf4;
  --jtd-orange: #ff8f1f;
  --jtd-orange-soft: #fff7ed;
  --jtd-purple: #7b61ff;
  --jtd-purple-soft: #f3f0ff;
  --jtd-cyan: #14b8c4;
  --jtd-cyan-soft: #ecfeff;
}

body {
  color: var(--jtd-ink);
  font-weight: 400;
}

p,
li,
.jtd-card p,
.jtd-richtext p,
.jtd-richtext li {
  color: var(--jtd-muted);
  font-weight: 400;
}

.jtd-hero__content h1,
.jtd-page-hero h1 {
  color: var(--jtd-ink);
  font-weight: 650;
}

.jtd-section__header h2,
.jtd-operating-copy h2,
.jtd-future-section h2,
.jtd-stat-panel h2 {
  color: var(--jtd-ink);
  font-weight: 620;
}

.jtd-card h2,
.jtd-card h3,
.jtd-customer-card h3,
.jtd-ai-grid h3,
.jtd-platform-principles h3,
.jtd-operating-board article > h3,
.jtd-value-card h3,
.jtd-process-card h3,
.jtd-roadmap h3 {
  color: var(--jtd-ink);
  font-weight: 600;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a,
.jtd-header__phone {
  font-weight: 520;
}

.jtd-btn,
.jtd-text-link,
.jtd-eyebrow,
.jtd-tag,
.jtd-operating-board b,
.jtd-resource-flow span {
  font-weight: 600;
}

.jtd-hero {
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 181, 120, 0.026) 1px, transparent 1px),
    linear-gradient(115deg, #ffffff 0%, #f8fbff 48%, #fff8f3 100%);
  background-size: 88px 88px, 88px 88px, auto;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  color: var(--jtd-muted);
  font-weight: 400;
}

.jtd-hero__proof span:nth-child(1) {
  border-color: #dbe7ff;
  color: #245bdb;
}

.jtd-hero__proof span:nth-child(2) {
  border-color: #cdeee0;
  color: #0b8f62;
}

.jtd-hero__proof span:nth-child(3) {
  border-color: #ffe1bf;
  color: #b86200;
}

.jtd-hero__dots button.is-active {
  background: var(--jtd-blue);
}

.jtd-product-showcase__desktop {
  background:
    linear-gradient(90deg, #f5f8ff 0 22%, #fff 22.1% 100%);
}

.jtd-product-showcase__desktop::before {
  background: linear-gradient(90deg, var(--jtd-blue), var(--jtd-green), var(--jtd-orange), transparent);
}

.jtd-product-showcase__head span,
.jtd-product-showcase__modules span:first-child {
  color: var(--jtd-blue);
}

.jtd-product-showcase__kpis span:nth-child(1) {
  background: var(--jtd-blue-soft);
  border-color: #dbe7ff;
}

.jtd-product-showcase__kpis span:nth-child(2) {
  background: var(--jtd-green-soft);
  border-color: #cdeee0;
}

.jtd-product-showcase__kpis span:nth-child(3) {
  background: var(--jtd-orange-soft);
  border-color: #ffe1bf;
}

.jtd-section--audience {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.jtd-stat-section,
.jtd-ai-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f7f8fa 100%);
}

.jtd-resource-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.jtd-platform-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.jtd-section--muted:not(.jtd-operating-section) {
  background: linear-gradient(180deg, #f7f8fa 0%, #fbfcff 100%);
}

.jtd-customer-card,
.jtd-product-card,
.jtd-value-card,
.jtd-process-card,
.jtd-stat-grid article,
.jtd-ai-grid article,
.jtd-platform-principles article {
  border-color: #e6eaf2;
}

.jtd-customer-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 1),
.jtd-value-card:nth-child(5n + 1),
.jtd-process-card:nth-child(5n + 1) {
  box-shadow: inset 0 3px 0 rgba(51, 112, 255, 0.72), 0 1px 2px rgba(31, 35, 41, 0.02);
}

.jtd-customer-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 2),
.jtd-value-card:nth-child(5n + 2),
.jtd-process-card:nth-child(5n + 2) {
  box-shadow: inset 0 3px 0 rgba(0, 181, 120, 0.68), 0 1px 2px rgba(31, 35, 41, 0.02);
}

.jtd-customer-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n + 3),
.jtd-value-card:nth-child(5n + 3),
.jtd-process-card:nth-child(5n + 3) {
  box-shadow: inset 0 3px 0 rgba(255, 143, 31, 0.72), 0 1px 2px rgba(31, 35, 41, 0.02);
}

.jtd-customer-card:nth-child(4n),
#products .jtd-product-card:nth-child(4n),
.jtd-value-card:nth-child(5n + 4),
.jtd-process-card:nth-child(5n + 4) {
  box-shadow: inset 0 3px 0 rgba(123, 97, 255, 0.62), 0 1px 2px rgba(31, 35, 41, 0.02);
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-process-card:hover,
.jtd-value-card:hover,
.jtd-product-card:hover,
.jtd-stat-grid article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover {
  border-color: #dbe3f0;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.08);
}

.jtd-customer-card:nth-child(4n + 1) .jtd-customer-card__icon,
.jtd-capability-card:nth-child(4n + 1) .jtd-capability-card__icon,
.jtd-process-card:nth-child(5n + 1) span {
  background: var(--jtd-blue-soft);
  border-color: #dbe7ff;
  color: var(--jtd-blue);
}

.jtd-customer-card:nth-child(4n + 2) .jtd-customer-card__icon,
.jtd-capability-card:nth-child(4n + 2) .jtd-capability-card__icon,
.jtd-process-card:nth-child(5n + 2) span {
  background: var(--jtd-green-soft);
  border-color: #cdeee0;
  color: var(--jtd-green);
}

.jtd-customer-card:nth-child(4n + 3) .jtd-customer-card__icon,
.jtd-capability-card:nth-child(4n + 3) .jtd-capability-card__icon,
.jtd-process-card:nth-child(5n + 3) span {
  background: var(--jtd-orange-soft);
  border-color: #ffe1bf;
  color: var(--jtd-orange);
}

.jtd-customer-card:nth-child(4n) .jtd-customer-card__icon,
.jtd-capability-card:nth-child(4n) .jtd-capability-card__icon,
.jtd-process-card:nth-child(5n + 4) span {
  background: var(--jtd-purple-soft);
  border-color: #ddd6ff;
  color: var(--jtd-purple);
}

#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview {
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.052) 1px, transparent 1px),
    linear-gradient(180deg, rgba(51, 112, 255, 0.04) 1px, transparent 1px),
    #f8fbff;
}

#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview {
  background:
    linear-gradient(90deg, rgba(0, 181, 120, 0.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 181, 120, 0.036) 1px, transparent 1px),
    #f7fdfb;
}

#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview {
  background:
    linear-gradient(90deg, rgba(255, 143, 31, 0.048) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 143, 31, 0.035) 1px, transparent 1px),
    #fffaf5;
}

#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  background:
    linear-gradient(90deg, rgba(123, 97, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(123, 97, 255, 0.034) 1px, transparent 1px),
    #faf8ff;
}

.jtd-stat-grid article:nth-child(3n + 1) strong {
  color: var(--jtd-blue);
}

.jtd-stat-grid article:nth-child(3n + 2) strong {
  color: var(--jtd-green);
}

.jtd-stat-grid article:nth-child(3n) strong {
  color: var(--jtd-orange);
}

.jtd-future-board article:nth-child(4n + 1) span,
.jtd-operating-board article:nth-child(3n + 1) > span {
  color: rgba(51, 112, 255, 0.42);
}

.jtd-future-board article:nth-child(4n + 2) span,
.jtd-operating-board article:nth-child(3n + 2) > span {
  color: rgba(0, 181, 120, 0.38);
}

.jtd-future-board article:nth-child(4n + 3) span,
.jtd-operating-board article:nth-child(3n) > span {
  color: rgba(255, 143, 31, 0.42);
}

.jtd-future-board article:nth-child(4n) span {
  color: rgba(123, 97, 255, 0.4);
}

.jtd-operating-board article:nth-child(3n + 1) {
  box-shadow: inset 3px 0 0 rgba(51, 112, 255, 0.72), var(--jtd-shadow-soft);
}

.jtd-operating-board article:nth-child(3n + 2) {
  box-shadow: inset 3px 0 0 rgba(0, 181, 120, 0.68), var(--jtd-shadow-soft);
}

.jtd-operating-board article:nth-child(3n) {
  box-shadow: inset 3px 0 0 rgba(255, 143, 31, 0.72), var(--jtd-shadow-soft);
}

.jtd-ai-grid article:nth-child(4n + 1) span {
  background: var(--jtd-blue-soft);
  border-color: #dbe7ff;
  color: var(--jtd-blue);
}

.jtd-ai-grid article:nth-child(4n + 2) span {
  background: var(--jtd-green-soft);
  border-color: #cdeee0;
  color: var(--jtd-green);
}

.jtd-ai-grid article:nth-child(4n + 3) span {
  background: var(--jtd-orange-soft);
  border-color: #ffe1bf;
  color: var(--jtd-orange);
}

.jtd-ai-grid article:nth-child(4n) span {
  background: var(--jtd-purple-soft);
  border-color: #ddd6ff;
  color: var(--jtd-purple);
}

.jtd-ecosystem-map {
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.058) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 181, 120, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #fffaf5 100%);
}

.jtd-ecosystem-map strong {
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  color: var(--jtd-red);
}

.jtd-ecosystem-map__node:nth-of-type(4n + 1) {
  border-color: #dbe7ff;
  color: #245bdb;
}

.jtd-ecosystem-map__node:nth-of-type(4n + 2) {
  border-color: #cdeee0;
  color: #0b8f62;
}

.jtd-ecosystem-map__node:nth-of-type(4n + 3) {
  border-color: #ffe1bf;
  color: #b86200;
}

.jtd-ecosystem-map__node:nth-of-type(4n) {
  border-color: #ddd6ff;
  color: #6346d8;
}

.jtd-resource-flow strong {
  color: var(--jtd-ink);
  font-weight: 620;
}

.jtd-resource-flow span:nth-of-type(5n + 1) {
  background: var(--jtd-blue-soft);
  border-color: #dbe7ff;
  color: var(--jtd-blue);
}

.jtd-resource-flow span:nth-of-type(5n + 2) {
  background: var(--jtd-green-soft);
  border-color: #cdeee0;
  color: var(--jtd-green);
}

.jtd-resource-flow span:nth-of-type(5n + 3) {
  background: var(--jtd-orange-soft);
  border-color: #ffe1bf;
  color: var(--jtd-orange);
}

.jtd-resource-flow span:nth-of-type(5n + 4) {
  background: var(--jtd-purple-soft);
  border-color: #ddd6ff;
  color: var(--jtd-purple);
}

.jtd-resource-flow span:nth-of-type(5n) {
  background: var(--jtd-cyan-soft);
  border-color: #c7f5f8;
  color: #078895;
}

.jtd-security-main {
  background:
    linear-gradient(90deg, rgba(51, 112, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 181, 120, 0.033) 1px, transparent 1px),
    linear-gradient(135deg, #fff 0%, #f8fbff 62%, #fffaf5 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.jtd-floating-demo__icon {
  background: var(--jtd-blue-soft);
  color: var(--jtd-blue);
}

.jtd-floating-demo:hover .jtd-floating-demo__icon,
.jtd-floating-demo:focus-visible .jtd-floating-demo__icon {
  background: var(--jtd-red-soft);
  color: var(--jtd-red);
}

@media (max-width: 760px) {
  .jtd-hero {
    background:
      linear-gradient(90deg, rgba(51, 112, 255, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, rgba(0, 181, 120, 0.025) 1px, transparent 1px),
      linear-gradient(145deg, #fff 0%, #f8fbff 56%, #fffaf5 100%);
    background-size: 58px 58px, 58px 58px, auto;
  }

  .jtd-hero__content h1,
  .jtd-hero__content .jtd-hero-title--normal,
  .jtd-hero__content .jtd-hero-title--split {
    font-weight: 650;
  }

  .jtd-section__header h2,
  .jtd-page-hero h1 {
    font-weight: 620;
  }
}

/* Enterprise tech palette v2.0 */
:root {
  --jtd-red: #e1251b;
  --jtd-red-strong: #e1251b;
  --jtd-red-dark: #e1251b;
  --jtd-red-soft: #fff2f0;
  --jtd-ink: #1f2329;
  --jtd-muted: #4e5969;
  --jtd-subtle: #8f959e;
  --jtd-soft: #f7f9fc;
  --jtd-line: #e9eef6;
  --jtd-blue: #1d6bff;
  --jtd-blue-soft: #f2f6ff;
  --jtd-cyan: #00a3ff;
  --jtd-cyan-soft: #eefbff;
  --jtd-green: #00a870;
  --jtd-green-soft: #f0faf5;
  --jtd-shadow: 0 14px 36px rgba(31, 35, 41, 0.06);
  --jtd-shadow-soft: 0 6px 18px rgba(31, 35, 41, 0.035);
}

body {
  color: var(--jtd-ink);
  background: #fff;
  font-weight: 400;
}

p,
li,
.jtd-card p,
.jtd-richtext p,
.jtd-richtext li {
  color: var(--jtd-muted);
  font-weight: 400;
}

.jtd-hero__content h1,
.jtd-page-hero h1,
.jtd-section__header h2,
.jtd-operating-copy h2,
.jtd-future-section h2,
.jtd-stat-panel h2 {
  color: var(--jtd-ink);
  font-weight: 600;
}

.jtd-card h2,
.jtd-card h3,
.jtd-customer-card h3,
.jtd-ai-grid h3,
.jtd-platform-principles h3,
.jtd-operating-board article > h3,
.jtd-value-card h3,
.jtd-process-card h3,
.jtd-roadmap h3 {
  font-weight: 600;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a,
.jtd-header__phone {
  font-weight: 500;
}

.jtd-btn,
.jtd-text-link,
.jtd-eyebrow,
.jtd-tag,
.jtd-operating-board b,
.jtd-resource-flow span {
  font-weight: 600;
}

.jtd-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(29, 107, 255, 0.09), transparent 32%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  background-size: auto, 88px 88px, 88px 88px, auto;
}

.jtd-hero__content h1,
.jtd-hero__content .jtd-hero-title--split,
.jtd-hero__content .jtd-hero-title--normal {
  font-weight: 600;
}

.jtd-hero__dots button.is-active {
  background: var(--jtd-red);
}

.jtd-hero__proof span:nth-child(1),
.jtd-hero__proof span:nth-child(2),
.jtd-hero__proof span:nth-child(3) {
  background: rgba(255, 255, 255, 0.88);
  border-color: #dfe7f3;
  color: #4e5969;
}

.jtd-product-showcase__desktop {
  background: linear-gradient(90deg, #f5f8ff 0 22%, #fff 22.1% 100%);
  border-color: #dfe7f3;
  box-shadow: 0 18px 48px rgba(31, 35, 41, 0.08);
}

.jtd-product-showcase__desktop::before {
  background: linear-gradient(90deg, var(--jtd-red), var(--jtd-blue), transparent 78%);
}

.jtd-product-showcase__head span {
  color: var(--jtd-blue);
}

.jtd-product-showcase__kpis span:nth-child(1),
.jtd-product-showcase__kpis span:nth-child(2),
.jtd-product-showcase__kpis span:nth-child(3),
.jtd-product-showcase__modules span:first-child {
  background: #fff;
  border-color: #e6edf7;
  color: var(--jtd-muted);
}

.jtd-product-showcase__kpis b {
  color: var(--jtd-ink);
}

.jtd-section--audience,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-section--muted:not(.jtd-operating-section) {
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}

.jtd-resource-section,
.jtd-featured-product,
.jtd-future-section {
  background: #fff;
}

.jtd-customer-card:nth-child(4n + 1),
.jtd-customer-card:nth-child(4n + 2),
.jtd-customer-card:nth-child(4n + 3),
.jtd-customer-card:nth-child(4n),
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n),
.jtd-value-card:nth-child(5n + 1),
.jtd-value-card:nth-child(5n + 2),
.jtd-value-card:nth-child(5n + 3),
.jtd-value-card:nth-child(5n + 4),
.jtd-process-card:nth-child(5n + 1),
.jtd-process-card:nth-child(5n + 2),
.jtd-process-card:nth-child(5n + 3),
.jtd-process-card:nth-child(5n + 4) {
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-customer-card,
.jtd-product-card,
.jtd-value-card,
.jtd-process-card,
.jtd-stat-grid article,
.jtd-ai-grid article,
.jtd-platform-principles article {
  border-color: #e6edf7;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-process-card:hover,
.jtd-value-card:hover,
.jtd-product-card:hover,
.jtd-stat-grid article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover {
  border-color: #cfd9ea;
  box-shadow: 0 16px 38px rgba(31, 35, 41, 0.08);
}

.jtd-customer-card:nth-child(4n + 1) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 2) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 3) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n) .jtd-customer-card__icon,
.jtd-capability-card:nth-child(4n + 1) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 2) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 3) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n) .jtd-capability-card__icon,
.jtd-process-card:nth-child(5n + 1) span,
.jtd-process-card:nth-child(5n + 2) span,
.jtd-process-card:nth-child(5n + 3) span,
.jtd-process-card:nth-child(5n + 4) span {
  background: var(--jtd-blue-soft);
  border-color: #dbe7ff;
  color: var(--jtd-blue);
}

#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
#products .jtd-product-card__preview {
  background:
    radial-gradient(circle at 88% 18%, rgba(29, 107, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.02) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, 40px 40px, 40px 40px, auto;
}

#products .jtd-product-card__preview strong {
  color: #3f4a5f;
}

#products .jtd-product-card__preview span {
  background: rgba(255, 255, 255, 0.88);
  border-color: #dfe7f3;
  color: #4e5969;
}

#products .jtd-product-card__preview i {
  display: none;
}

#products .jtd-product-card h3 {
  font-weight: 600;
}

.jtd-stat-grid article:nth-child(3n + 1) strong,
.jtd-stat-grid article:nth-child(3n + 2) strong,
.jtd-stat-grid article:nth-child(3n) strong,
.jtd-stat-grid strong {
  color: var(--jtd-red);
}

.jtd-future-board {
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 107, 255, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.022) 1px, transparent 1px),
    #fbfdff;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span,
.jtd-operating-board article:nth-child(3n + 1) > span,
.jtd-operating-board article:nth-child(3n + 2) > span,
.jtd-operating-board article:nth-child(3n) > span {
  color: rgba(29, 107, 255, 0.34);
}

.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n) {
  box-shadow: var(--jtd-shadow-soft);
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2) {
  border-left: 3px solid rgba(29, 107, 255, 0.55);
}

.jtd-operating-board b,
.jtd-resource-flow span,
.jtd-tag {
  background: #fff;
  border-color: #ffd6d3;
  color: var(--jtd-red);
}

.jtd-ai-grid article:nth-child(4n + 1) span,
.jtd-ai-grid article:nth-child(4n + 2) span,
.jtd-ai-grid article:nth-child(4n + 3) span,
.jtd-ai-grid article:nth-child(4n) span,
.jtd-ai-grid span {
  background: var(--jtd-blue-soft);
  border-color: #dbe7ff;
  color: var(--jtd-blue);
}

.jtd-ai-grid article:nth-child(3n + 2) span {
  background: var(--jtd-cyan-soft);
  border-color: #d7f1ff;
  color: #0576b9;
}

.jtd-ai-grid article:nth-child(3n) span {
  background: var(--jtd-green-soft);
  border-color: #d7f0e3;
  color: var(--jtd-green);
}

.jtd-ecosystem-map {
  background:
    radial-gradient(circle at 50% 50%, rgba(29, 107, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.025) 1px, transparent 1px),
    #fff;
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.jtd-ecosystem-map strong {
  background: #fff;
  border-color: #ffd6d3;
  color: var(--jtd-red);
}

.jtd-ecosystem-map__node:nth-of-type(4n + 1),
.jtd-ecosystem-map__node:nth-of-type(4n + 2),
.jtd-ecosystem-map__node:nth-of-type(4n + 3),
.jtd-ecosystem-map__node:nth-of-type(4n),
.jtd-ecosystem-map__node {
  background: rgba(255, 255, 255, 0.94);
  border-color: #dfe7f3;
  color: #3f4a5f;
}

.jtd-resource-flow span:nth-of-type(5n + 1),
.jtd-resource-flow span:nth-of-type(5n + 2),
.jtd-resource-flow span:nth-of-type(5n + 3),
.jtd-resource-flow span:nth-of-type(5n + 4),
.jtd-resource-flow span:nth-of-type(5n),
.jtd-resource-flow span {
  background: #fff;
  border-color: #dfe7f3;
  color: #3f4a5f;
}

.jtd-resource-flow span:first-of-type,
.jtd-resource-flow span:nth-of-type(3) {
  border-color: #dbe7ff;
  color: var(--jtd-blue);
}

.jtd-security-main {
  background:
    radial-gradient(circle at 88% 20%, rgba(29, 107, 255, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.022) 1px, transparent 1px),
    #fff;
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.jtd-floating-demo__icon {
  background: var(--jtd-red-soft);
  color: var(--jtd-red);
}

.jtd-language-switcher a[aria-current="page"],
.jtd-language-switcher a:hover {
  color: var(--jtd-red);
}

@media (max-width: 760px) {
  .jtd-hero {
    background:
      radial-gradient(circle at 84% 18%, rgba(29, 107, 255, 0.08), transparent 32%),
      linear-gradient(90deg, rgba(29, 107, 255, 0.032) 1px, transparent 1px),
      linear-gradient(180deg, rgba(31, 35, 41, 0.02) 1px, transparent 1px),
      linear-gradient(180deg, #fff 0%, #f7faff 100%);
    background-size: auto, 58px 58px, 58px 58px, auto;
  }

  .jtd-hero__content h1,
  .jtd-hero__content .jtd-hero-title--normal,
  .jtd-hero__content .jtd-hero-title--split,
  .jtd-section__header h2,
  .jtd-page-hero h1 {
    font-weight: 600;
  }
}

/* Enterprise tech visible pass v2.1 */
.jtd-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(29, 107, 255, 0.12), transparent 34%),
    radial-gradient(circle at 92% 72%, rgba(225, 37, 27, 0.045), transparent 30%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  background-size: auto, auto, 88px 88px, 88px 88px, auto;
}

.jtd-hero__content h1,
.jtd-hero__content .jtd-hero-title--split,
.jtd-hero__content .jtd-hero-title--normal {
  color: #182033;
  font-weight: 620;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  color: #3f4a5f;
}

#products .jtd-card-grid--3 {
  gap: 18px;
}

#products .jtd-product-card {
  border: 1px solid #dbe4f2;
  box-shadow: 0 10px 28px rgba(31, 35, 41, 0.055);
}

#products .jtd-product-card:hover {
  border-color: rgba(29, 107, 255, 0.36);
  box-shadow: 0 18px 42px rgba(29, 107, 255, 0.12);
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(29, 107, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #f7faff 0%, #eef5ff 100%);
  border-bottom: 1px solid #dfe8f6;
}

#products .jtd-product-card__preview::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -42px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(29, 107, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

#products .jtd-product-card__preview::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--jtd-red) 0%, var(--jtd-blue) 42%, rgba(29, 107, 255, 0) 100%);
}

#products .jtd-product-card__preview strong {
  position: relative;
  z-index: 1;
  color: #243b64;
  font-size: 13px;
  font-weight: 650;
}

#products .jtd-product-card__preview div {
  position: relative;
  z-index: 1;
}

#products .jtd-product-card__preview span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d7e2f3;
  color: #334155;
  box-shadow: 0 6px 14px rgba(29, 107, 255, 0.06);
}

#products .jtd-product-card__preview i {
  display: none !important;
}

#products .jtd-product-card .jtd-card__body {
  background: #fff;
}

#products .jtd-product-card__head .jtd-tag,
#products .jtd-product-card .jtd-tag {
  background: #fff2f0;
  border-color: #ffd6d3;
  color: var(--jtd-red);
}

#products .jtd-product-card__head > span:last-child {
  color: #9aa4b2;
  font-weight: 650;
}

#products .jtd-product-card h3 {
  color: #182033;
  font-weight: 650;
}

.jtd-section--audience .jtd-customer-card {
  border-color: #dbe4f2;
  box-shadow: 0 10px 26px rgba(31, 35, 41, 0.045);
}

.jtd-section--audience .jtd-customer-card__icon {
  background: #f2f6ff !important;
  border-color: #dbe7ff !important;
  color: var(--jtd-blue) !important;
}

.jtd-section--audience .jtd-customer-card__index {
  color: rgba(29, 107, 255, 0.18);
}

.jtd-stat-panel {
  border-color: #dbe4f2;
  background:
    radial-gradient(circle at 90% 18%, rgba(29, 107, 255, 0.08), transparent 28%),
    #fff;
  box-shadow: 0 14px 36px rgba(31, 35, 41, 0.055);
}

.jtd-ai-grid article {
  border-color: #dbe4f2;
  box-shadow: 0 10px 26px rgba(31, 35, 41, 0.04);
}

.jtd-platform-section,
.jtd-section--audience,
.jtd-stat-section,
.jtd-ai-section {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2) {
  border-color: #dbe4f2;
  border-left-color: var(--jtd-blue);
  box-shadow: 0 10px 26px rgba(31, 35, 41, 0.045);
}

.jtd-floating-demo {
  border-color: #dbe4f2;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.13);
}

@media (max-width: 760px) {
  .jtd-hero {
    background:
      radial-gradient(circle at 84% 18%, rgba(29, 107, 255, 0.11), transparent 34%),
      linear-gradient(90deg, rgba(29, 107, 255, 0.04) 1px, transparent 1px),
      linear-gradient(180deg, rgba(31, 35, 41, 0.022) 1px, transparent 1px),
      linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
    background-size: auto, 58px 58px, 58px 58px, auto;
  }

  #products .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
    min-height: 92px;
  }
}

/* Remove low-value decoration lines v2.2 */
.jtd-customer-card::before,
.jtd-customer-card:hover::before {
  display: none !important;
  opacity: 0 !important;
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2),
.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n) {
  border-left: 1px solid #dbe4f2 !important;
  box-shadow: 0 12px 30px rgba(31, 35, 41, 0.05);
}

.jtd-operating-board article:hover {
  border-color: #cbd7ea !important;
  box-shadow: 0 18px 42px rgba(31, 35, 41, 0.08);
}

#products .jtd-product-card__preview::before,
#products .jtd-product-card__preview::after {
  display: none !important;
  content: none !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  min-height: 104px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 107, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
  border-bottom: 1px solid #e3eaf6;
}

#products .jtd-product-card__preview span {
  box-shadow: none;
}

.jtd-product-showcase__desktop::before,
.jtd-product-showcase__bar {
  display: none !important;
}

.jtd-product-showcase__desktop {
  padding-top: 24px;
}

.jtd-product-showcase__head {
  padding-top: 4px;
}

.jtd-product-showcase__head::before {
  top: 12px;
}

.jtd-product-showcase__phone {
  box-shadow: 0 18px 42px rgba(31, 35, 41, 0.12);
}

.jtd-future-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 310px;
  padding: 34px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(29, 107, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dfe8f6;
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(31, 35, 41, 0.07);
}

.jtd-future-board::before {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  top: 78px;
  height: 1px;
  background: #dce6f5;
}

.jtd-future-board::after {
  content: "";
  position: absolute;
  left: 56px;
  top: 78px;
  width: 22%;
  height: 1px;
  background: linear-gradient(90deg, var(--jtd-red), var(--jtd-blue));
  animation: jtd-progress-line 5.2s ease-in-out infinite;
}

.jtd-future-board__scan {
  display: none !important;
}

.jtd-future-board article {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 72px 18px 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 180ms ease;
}

.jtd-future-board article:hover {
  transform: translateY(-4px);
}

.jtd-future-board span {
  position: absolute;
  left: 18px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1px solid #dbe7ff;
  border-radius: 50%;
  color: var(--jtd-blue) !important;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 8px 20px rgba(29, 107, 255, 0.1);
}

.jtd-future-board h3 {
  color: #182033;
  font-size: 21px;
  font-weight: 650;
}

.jtd-future-board p {
  color: #4e5969;
}

@keyframes jtd-progress-line {
  0% {
    width: 0;
    opacity: 0.35;
  }

  45% {
    width: calc(100% - 112px);
    opacity: 0.85;
  }

  100% {
    width: calc(100% - 112px);
    opacity: 0.25;
  }
}

@media (max-width: 1180px) {
  .jtd-future-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 0;
  }

  .jtd-future-board::before,
  .jtd-future-board::after {
    display: none;
  }
}

@media (max-width: 760px) {
  #products .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
    min-height: 82px;
  }

  .jtd-future-board {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .jtd-future-board article {
    min-height: 0;
    padding: 58px 0 16px;
    border-bottom: 1px solid #e7edf6;
  }

  .jtd-future-board article:last-child {
    border-bottom: 0;
  }

  .jtd-future-board span {
    left: 0;
    top: 12px;
  }
}

/* Neutralize all odd decorative motion colors v2.3 */
.jtd-product-card::after,
.jtd-product-card:hover::after,
.jtd-customer-card::before,
.jtd-customer-card:hover::before,
#products .jtd-product-card__preview::before,
#products .jtd-product-card__preview::after,
.jtd-product-showcase__desktop::before,
.jtd-product-showcase__bar,
.jtd-dashboard-card__top {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

.jtd-card,
.jtd-customer-card,
.jtd-product-card,
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n),
.jtd-value-card,
.jtd-value-card:nth-child(5n + 1),
.jtd-value-card:nth-child(5n + 2),
.jtd-value-card:nth-child(5n + 3),
.jtd-value-card:nth-child(5n + 4),
.jtd-process-card,
.jtd-process-card:nth-child(5n + 1),
.jtd-process-card:nth-child(5n + 2),
.jtd-process-card:nth-child(5n + 3),
.jtd-process-card:nth-child(5n + 4),
.jtd-operating-board article,
.jtd-operating-board article:nth-child(2),
.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n) {
  border-color: #dfe6f1 !important;
  box-shadow: 0 10px 28px rgba(31, 35, 41, 0.045) !important;
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2),
.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n) {
  border-left: 1px solid #dfe6f1 !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  background: #f7f9fc !important;
  border-bottom: 1px solid #e4eaf3 !important;
}

#products .jtd-product-card__preview span,
.jtd-product-showcase__modules span,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-resource-flow span,
.jtd-ecosystem-map__node {
  background: #fff !important;
  border-color: #dfe6f1 !important;
  color: #3f4a5f !important;
  box-shadow: none !important;
}

.jtd-future-board {
  background: #fff !important;
  border-color: #dfe6f1 !important;
  box-shadow: 0 16px 40px rgba(31, 35, 41, 0.055) !important;
}

.jtd-future-board::before {
  display: block !important;
  content: "" !important;
  background: #dfe6f1 !important;
  opacity: 1 !important;
}

.jtd-future-board::after {
  display: none !important;
  content: none !important;
  animation: none !important;
  background: transparent !important;
}

.jtd-future-board span,
.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span,
.jtd-operating-board article:nth-child(3n + 1) > span,
.jtd-operating-board article:nth-child(3n + 2) > span,
.jtd-operating-board article:nth-child(3n) > span {
  background: #fff !important;
  border-color: #dfe6f1 !important;
  color: #7b8794 !important;
  box-shadow: 0 8px 18px rgba(31, 35, 41, 0.05) !important;
}

.jtd-ai-grid article:nth-child(4n + 1) span,
.jtd-ai-grid article:nth-child(4n + 2) span,
.jtd-ai-grid article:nth-child(4n + 3) span,
.jtd-ai-grid article:nth-child(4n) span,
.jtd-ai-grid article:nth-child(3n + 2) span,
.jtd-ai-grid article:nth-child(3n) span,
.jtd-ai-grid span,
.jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-process-card span {
  background: #f7f9fc !important;
  border-color: #dfe6f1 !important;
  color: #4e5969 !important;
  box-shadow: none !important;
}

.jtd-product-showcase__head::before {
  display: none !important;
}

.jtd-product-showcase__head span,
.jtd-stat-grid strong,
.jtd-resource-flow span:first-of-type,
.jtd-resource-flow span:nth-of-type(3) {
  color: var(--jtd-red) !important;
}

.jtd-future-board__scan {
  display: none !important;
}

@media (max-width: 1180px) {
  .jtd-future-board::before,
  .jtd-future-board::after {
    display: none !important;
  }
}

/* Sitewide decorative strip cleanup v2.4 */
.jtd-product-card::before,
.jtd-product-card::after,
.jtd-product-card__preview::before,
.jtd-product-card__preview::after,
.jtd-product-card__preview i,
.jtd-solution-card::before,
.jtd-solution-card::after,
.jtd-case-card::before,
.jtd-case-card::after,
.jtd-news-card::before,
.jtd-news-card::after,
.jtd-service-card::before,
.jtd-service-card::after,
.jtd-qualification-card::before,
.jtd-qualification-card::after,
.jtd-customer-card::before,
.jtd-customer-card::after,
.jtd-value-card::before,
.jtd-value-card::after,
.jtd-ai-grid article::before,
.jtd-ai-grid article::after,
.jtd-long-roadmap article::before,
.jtd-long-roadmap article::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: none !important;
  animation: none !important;
}

.jtd-product-card,
.jtd-product-card:nth-child(4n + 1),
.jtd-product-card:nth-child(4n + 2),
.jtd-product-card:nth-child(4n + 3),
.jtd-product-card:nth-child(4n),
.jtd-solution-card,
.jtd-case-card,
.jtd-news-card,
.jtd-service-card,
.jtd-qualification-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-roadmap article,
.jtd-operating-board article {
  border-color: #dfe6f1 !important;
}

.jtd-product-card,
.jtd-product-card:nth-child(4n + 1),
.jtd-product-card:nth-child(4n + 2),
.jtd-product-card:nth-child(4n + 3),
.jtd-product-card:nth-child(4n) {
  box-shadow: 0 10px 28px rgba(31, 35, 41, 0.045) !important;
}

/* Hero neutral tech background v2.5 */
.jtd-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(29, 107, 255, 0.11), transparent 34%),
    radial-gradient(circle at 92% 72%, rgba(31, 35, 41, 0.035), transparent 30%),
    linear-gradient(90deg, rgba(29, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 35, 41, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%) !important;
  background-size: auto, auto, 88px 88px, 88px 88px, auto !important;
}

@media (max-width: 760px) {
  .jtd-hero {
    background:
      radial-gradient(circle at 84% 18%, rgba(29, 107, 255, 0.1), transparent 34%),
      radial-gradient(circle at 90% 74%, rgba(31, 35, 41, 0.028), transparent 30%),
      linear-gradient(90deg, rgba(29, 107, 255, 0.032) 1px, transparent 1px),
      linear-gradient(180deg, rgba(31, 35, 41, 0.02) 1px, transparent 1px),
      linear-gradient(180deg, #fff 0%, #f5f8ff 100%) !important;
    background-size: auto, auto, 58px 58px, 58px 58px, auto !important;
  }
}

/* Subtle blue technology surfaces v2.6 */
.jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-roadmap article,
.jtd-operating-board article,
.jtd-stat-grid article {
  background:
    radial-gradient(circle at 88% 0%, rgba(29, 107, 255, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n) {
  background:
    radial-gradient(circle at 86% 0%, rgba(29, 107, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  background:
    radial-gradient(circle at 82% 8%, rgba(29, 107, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%) !important;
}

.jtd-stat-panel,
.jtd-resource-flow,
.jtd-ecosystem-map,
.jtd-security-main,
.jtd-future-board {
  background:
    radial-gradient(circle at 88% 8%, rgba(29, 107, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.jtd-product-showcase__desktop {
  background:
    radial-gradient(circle at 88% 8%, rgba(29, 107, 255, 0.08), transparent 32%),
    linear-gradient(90deg, #f3f7ff 0 21%, #ffffff 21.1% 100%) !important;
}

.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__modules span {
  background:
    radial-gradient(circle at 90% 0%, rgba(29, 107, 255, 0.045), transparent 36%),
    #ffffff !important;
}

.jtd-card__media {
  position: relative;
  border-bottom: 1px solid #e4eaf3;
  background:
    radial-gradient(circle at 88% 8%, rgba(29, 107, 255, 0.12), transparent 34%),
    #f7f9fc;
}

.jtd-card__media img {
  filter: saturate(0.96) contrast(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.jtd-card:hover .jtd-card__media img {
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.025);
}

.jtd-section--audience,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-section--muted:not(.jtd-operating-section) {
  background:
    radial-gradient(circle at 88% 8%, rgba(29, 107, 255, 0.055), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%) !important;
}

.jtd-resource-section,
.jtd-featured-product,
.jtd-future-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(29, 107, 255, 0.04), transparent 28%),
    #ffffff !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-process-card:hover,
.jtd-value-card:hover,
.jtd-product-card:hover,
.jtd-stat-grid article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover {
  border-color: #cbd7ea !important;
  box-shadow: 0 18px 42px rgba(29, 107, 255, 0.085) !important;
}

/* Clean cloud-style blue surfaces v2.7 */
:root {
  --jtd-tech-blue: #1f6bff;
  --jtd-tech-blue-soft: rgba(31, 107, 255, 0.08);
  --jtd-tech-line: rgba(31, 107, 255, 0.075);
  --jtd-tech-border: #dfe8f6;
  --jtd-tech-surface: #f7fbff;
}

.jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-service-path-card,
.jtd-news-card,
.jtd-case-card,
.jtd-solution-card,
.jtd-qualification-card,
.jtd-founder-card,
.jtd-about-capability-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-roadmap article,
.jtd-long-roadmap article,
.jtd-operating-board article,
.jtd-stat-grid article,
.jtd-news-topics article,
.jtd-about-position article {
  border-color: var(--jtd-tech-border) !important;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0) 0 48%, rgba(31, 107, 255, 0.06) 49%, rgba(31, 107, 255, 0.018) 62%, rgba(255, 255, 255, 0) 63%),
    linear-gradient(90deg, rgba(31, 107, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 107, 255, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, var(--jtd-tech-surface) 100%) !important;
  background-size: auto, 72px 72px, 72px 72px, auto !important;
  box-shadow: 0 12px 32px rgba(18, 40, 78, 0.055) !important;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background-position 420ms ease;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-value-card:hover,
.jtd-process-card:hover,
.jtd-service-path-card:hover,
.jtd-news-card:hover,
.jtd-case-card:hover,
.jtd-solution-card:hover,
.jtd-qualification-card:hover,
.jtd-founder-card:hover,
.jtd-about-capability-card:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-roadmap article:hover,
.jtd-long-roadmap article:hover,
.jtd-operating-board article:hover,
.jtd-stat-grid article:hover,
.jtd-news-topics article:hover,
.jtd-about-position article:hover {
  border-color: #cbd8ee !important;
  background-position: 0 0, 10px 0, 0 10px, 0 0 !important;
  box-shadow: 0 20px 48px rgba(31, 107, 255, 0.09) !important;
}

.jtd-product-card,
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n) {
  overflow: hidden;
  border-color: var(--jtd-tech-border) !important;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0) 0 54%, rgba(31, 107, 255, 0.055) 55%, rgba(31, 107, 255, 0.016) 68%, rgba(255, 255, 255, 0) 69%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 14px 34px rgba(18, 40, 78, 0.06) !important;
}

.jtd-product-card::before,
.jtd-product-card::after,
.jtd-product-card:hover::before,
.jtd-product-card:hover::after,
#products .jtd-product-card__preview::before,
#products .jtd-product-card__preview::after,
#products .jtd-product-card__preview i {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  background: none !important;
  animation: none !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  min-height: 154px;
  border-top: 0 !important;
  border-bottom: 1px solid var(--jtd-tech-border) !important;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0) 0 40%, rgba(31, 107, 255, 0.1) 41%, rgba(31, 107, 255, 0.035) 56%, rgba(255, 255, 255, 0) 57%),
    linear-gradient(90deg, rgba(31, 107, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 107, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%) !important;
  background-size: auto, 54px 54px, 54px 54px, auto !important;
}

#products .jtd-product-card__preview strong {
  color: #244166 !important;
  font-weight: 720;
}

#products .jtd-product-card__preview span,
.jtd-product-showcase__modules span,
.jtd-product-showcase__kpis span,
.jtd-resource-flow span,
.jtd-ecosystem-map__node {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: #d9e4f4 !important;
  color: #2e405d !important;
  box-shadow: 0 8px 18px rgba(31, 107, 255, 0.055) !important;
}

.jtd-product-showcase__desktop,
.jtd-stat-panel,
.jtd-resource-flow,
.jtd-ecosystem-map,
.jtd-security-main,
.jtd-future-board {
  border-color: var(--jtd-tech-border) !important;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0) 0 45%, rgba(31, 107, 255, 0.07) 46%, rgba(31, 107, 255, 0.018) 63%, rgba(255, 255, 255, 0) 64%),
    linear-gradient(90deg, rgba(31, 107, 255, 0.036) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 107, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  background-size: auto, 76px 76px, 76px 76px, auto !important;
  box-shadow: 0 18px 48px rgba(18, 40, 78, 0.065) !important;
}

.jtd-future-board::before,
.jtd-future-board::after,
.jtd-future-board__scan {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  animation: none !important;
}

.jtd-future-board {
  animation: jtdTechSurfaceDrift 14s ease-in-out infinite alternate;
}

.jtd-future-board article {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: #dfe8f6 !important;
  box-shadow: 0 10px 22px rgba(31, 107, 255, 0.055) !important;
}

.jtd-future-board article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(31, 107, 255, 0.09) !important;
}

.jtd-future-board span,
.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span {
  background: #ffffff !important;
  border-color: #d9e4f4 !important;
  color: var(--jtd-tech-blue) !important;
  box-shadow: 0 8px 20px rgba(31, 107, 255, 0.08) !important;
}

.jtd-section--audience,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-section--muted:not(.jtd-operating-section) {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0) 0 52%, rgba(31, 107, 255, 0.038) 53%, rgba(31, 107, 255, 0.012) 68%, rgba(255, 255, 255, 0) 69%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
}

.jtd-resource-section,
.jtd-featured-product,
.jtd-future-section {
  background:
    linear-gradient(126deg, rgba(31, 107, 255, 0.035) 0%, rgba(255, 255, 255, 0) 38%),
    #ffffff !important;
}

.jtd-card__media {
  border-bottom: 1px solid var(--jtd-tech-border) !important;
  background:
    linear-gradient(132deg, rgba(31, 107, 255, 0.09) 0%, rgba(255, 255, 255, 0) 44%),
    #f5f8fd !important;
}

.jtd-card__media img {
  filter: saturate(0.98) contrast(1.03);
}

@keyframes jtdTechSurfaceDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 18px 0, 0 18px, 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jtd-future-board {
    animation: none !important;
  }
}

@media (max-width: 760px) {
  .jtd-card,
  .jtd-customer-card,
  .jtd-value-card,
  .jtd-process-card,
  .jtd-service-path-card,
  .jtd-news-card,
  .jtd-case-card,
  .jtd-solution-card,
  .jtd-qualification-card,
  .jtd-founder-card,
  .jtd-about-capability-card,
  .jtd-ai-grid article,
  .jtd-platform-principles article,
  .jtd-roadmap article,
  .jtd-long-roadmap article,
  .jtd-operating-board article,
  .jtd-stat-grid article,
  .jtd-news-topics article,
  .jtd-about-position article {
    background-size: auto, 52px 52px, 52px 52px, auto !important;
  }

  #products .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
    min-height: 132px;
    background-size: auto, 42px 42px, 42px 42px, auto !important;
  }
}

/* Executive SaaS visual reset v2.8 */
:root {
  --jtd-saas-blue: #2468f2;
  --jtd-saas-cyan: #00a3ff;
  --jtd-saas-ink: #1f2633;
  --jtd-saas-muted: #667085;
  --jtd-saas-line: #e2eaf6;
  --jtd-saas-fill: #f7faff;
  --jtd-saas-shadow: 0 16px 40px rgba(23, 46, 86, 0.07);
}

.jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-service-path-card,
.jtd-news-card,
.jtd-case-card,
.jtd-solution-card,
.jtd-qualification-card,
.jtd-founder-card,
.jtd-about-capability-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-roadmap article,
.jtd-long-roadmap article,
.jtd-operating-board article,
.jtd-stat-grid article,
.jtd-news-topics article,
.jtd-about-position article {
  border-color: var(--jtd-saas-line) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  background-size: auto !important;
  box-shadow: 0 10px 28px rgba(23, 46, 86, 0.045) !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-value-card:hover,
.jtd-process-card:hover,
.jtd-service-path-card:hover,
.jtd-news-card:hover,
.jtd-case-card:hover,
.jtd-solution-card:hover,
.jtd-qualification-card:hover,
.jtd-founder-card:hover,
.jtd-about-capability-card:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-roadmap article:hover,
.jtd-long-roadmap article:hover,
.jtd-operating-board article:hover,
.jtd-stat-grid article:hover,
.jtd-news-topics article:hover,
.jtd-about-position article:hover {
  border-color: #cbd8ea !important;
  background: #ffffff !important;
  box-shadow: 0 18px 44px rgba(36, 104, 242, 0.08) !important;
}

.jtd-section--audience,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-section--muted:not(.jtd-operating-section),
.jtd-resource-section,
.jtd-featured-product,
.jtd-future-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.92) 0%, #ffffff 100%) !important;
}

.jtd-product-card,
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n) {
  border-color: var(--jtd-saas-line) !important;
  background: #ffffff !important;
  box-shadow: var(--jtd-saas-shadow) !important;
}

#products .jtd-product-card:hover,
#products .jtd-product-card:nth-child(4n + 1):hover,
#products .jtd-product-card:nth-child(4n + 2):hover,
#products .jtd-product-card:nth-child(4n + 3):hover,
#products .jtd-product-card:nth-child(4n):hover {
  border-color: #c7d6ec !important;
  box-shadow: 0 22px 54px rgba(36, 104, 242, 0.1) !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  min-height: 150px;
  padding: 26px 24px;
  border: 0 !important;
  border-bottom: 1px solid var(--jtd-saas-line) !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(36, 104, 242, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%) !important;
  background-size: auto, 58px 58px, 58px 58px, auto !important;
}

#products .jtd-product-card__preview strong {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(36, 104, 242, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #27507e !important;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(36, 104, 242, 0.05);
}

#products .jtd-product-card__preview div {
  align-items: flex-end;
  margin-top: 24px;
}

#products .jtd-product-card__preview span {
  min-height: 34px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84) !important;
  border-color: rgba(36, 104, 242, 0.14) !important;
  color: #34445c !important;
  box-shadow: 0 8px 18px rgba(36, 104, 242, 0.045) !important;
}

.jtd-product-showcase__desktop,
.jtd-stat-panel,
.jtd-resource-flow,
.jtd-ecosystem-map,
.jtd-security-main {
  border-color: var(--jtd-saas-line) !important;
  background:
    radial-gradient(circle at 86% 10%, rgba(36, 104, 242, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  background-size: auto, 76px 76px, 76px 76px, auto !important;
  box-shadow: 0 18px 48px rgba(23, 46, 86, 0.07) !important;
}

.jtd-future-board {
  gap: 16px;
  border-color: var(--jtd-saas-line) !important;
  background:
    linear-gradient(90deg, rgba(36, 104, 242, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
  box-shadow: 0 18px 48px rgba(23, 46, 86, 0.07) !important;
  animation: none !important;
}

.jtd-future-board article {
  border-color: rgba(36, 104, 242, 0.12) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 10px 22px rgba(23, 46, 86, 0.05) !important;
}

.jtd-future-board article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(36, 104, 242, 0.085) !important;
}

.jtd-future-board span,
.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span,
.jtd-operating-board article:nth-child(3n + 1) > span,
.jtd-operating-board article:nth-child(3n + 2) > span,
.jtd-operating-board article:nth-child(3n) > span {
  background: #ffffff !important;
  border-color: #d7e3f5 !important;
  color: var(--jtd-saas-blue) !important;
  box-shadow: 0 8px 18px rgba(36, 104, 242, 0.07) !important;
}

.jtd-product-showcase__modules span,
.jtd-product-showcase__kpis span,
.jtd-resource-flow span,
.jtd-ecosystem-map__node {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: #dbe6f6 !important;
  color: #2d3f58 !important;
  box-shadow: 0 8px 18px rgba(23, 46, 86, 0.04) !important;
}

.jtd-card__media {
  border-bottom: 1px solid var(--jtd-saas-line) !important;
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%) !important;
}

.jtd-card__media img {
  filter: saturate(1.02) contrast(1.02);
}

.jtd-hero,
.jtd-page-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(36, 104, 242, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  background-size: auto, 96px 96px, 96px 96px, auto !important;
}

@media (max-width: 760px) {
  #products .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
    min-height: 132px;
    padding: 22px 20px;
    background-size: auto, 48px 48px, 48px 48px, auto !important;
  }

  .jtd-product-showcase__desktop,
  .jtd-stat-panel,
  .jtd-resource-flow,
  .jtd-ecosystem-map,
  .jtd-security-main,
  .jtd-future-board {
    background-size: auto, 56px 56px, 56px 56px, auto !important;
  }
}

/* Product matrix polish v2.9 */
#products .jtd-card-grid {
  gap: 20px;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  min-height: 142px;
  background:
    radial-gradient(circle at 86% 12%, rgba(36, 104, 242, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%) !important;
  background-size: auto, 64px 64px, 64px 64px, auto !important;
}

#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview {
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 163, 255, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.023) 1px, transparent 1px),
    linear-gradient(180deg, #f9fcff 0%, #eef8ff 100%) !important;
}

#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview {
  background:
    radial-gradient(circle at 86% 12%, rgba(69, 89, 245, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.023) 1px, transparent 1px),
    linear-gradient(180deg, #fbfbff 0%, #f2f4ff 100%) !important;
}

#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  background:
    radial-gradient(circle at 86% 12%, rgba(18, 185, 129, 0.07), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, #fbfffd 0%, #f1fbf7 100%) !important;
}

#products .jtd-product-card__preview strong {
  position: relative;
  z-index: 1;
  border-color: rgba(36, 104, 242, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

#products .jtd-product-card__preview div {
  position: relative;
  z-index: 1;
  gap: 10px;
  margin-top: 26px;
}

#products .jtd-product-card__preview span {
  min-width: 72px;
  justify-content: center;
  border-color: rgba(36, 104, 242, 0.12) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.jtd-tag {
  border-color: rgba(225, 37, 27, 0.16);
  background: rgba(225, 37, 27, 0.045);
}

.jtd-text-link {
  color: #e1251b;
}

.jtd-stat-panel,
.jtd-resource-flow,
.jtd-ecosystem-map,
.jtd-security-main,
.jtd-future-board {
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 104, 242, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  background-size: auto, 88px 88px, 88px 88px, auto !important;
}

.jtd-news-card .jtd-card__media,
.jtd-card__media {
  background: #f7faff !important;
}

@media (max-width: 760px) {
  #products .jtd-card-grid {
    gap: 16px;
  }

  #products .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
    min-height: 124px;
    background-size: auto, 54px 54px, 54px 54px, auto !important;
  }
}

/* Hero dashboard and rhythm polish v3.0 */
.jtd-hero {
  min-height: 680px;
}

.jtd-hero__slide {
  align-items: center;
  gap: 54px;
}

.jtd-hero__visual {
  transform: translateY(-4px);
}

.jtd-product-showcase {
  min-height: 420px;
  padding-right: 50px;
}

.jtd-product-showcase__desktop,
.jtd-product-showcase--hero .jtd-product-showcase__desktop {
  min-height: 404px;
  padding: 18px;
  border-color: #dce7f5 !important;
  background:
    radial-gradient(circle at 84% 12%, rgba(36, 104, 242, 0.09), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  background-size: auto, 88px 88px, 88px 88px, auto !important;
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(21, 44, 83, 0.12) !important;
}

.jtd-product-showcase__desktop::before,
.jtd-product-showcase__head::before,
.jtd-product-showcase__bar span {
  display: none !important;
  content: none !important;
}

.jtd-product-showcase__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.76) !important;
  border: 1px solid #dce7f5 !important;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 104, 242, 0.045);
}

.jtd-product-showcase__bar b {
  margin: 0;
  color: #25364f !important;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.jtd-product-showcase__bar em {
  color: #61708a;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.jtd-product-showcase__bar small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #1a7f64;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.jtd-product-showcase__bar small::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #19c37d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(25, 195, 125, 0.12);
}

.jtd-product-showcase__head {
  padding: 20px 4px 14px;
}

.jtd-product-showcase__head span {
  color: #2468f2 !important;
  font-size: 13px;
  font-weight: 680;
}

.jtd-product-showcase__head strong {
  color: #1f2633 !important;
  font-size: 25px;
  font-weight: 760;
}

.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span {
  background: rgba(255, 255, 255, 0.84) !important;
  border-color: #dce7f5 !important;
  box-shadow: 0 10px 22px rgba(21, 44, 83, 0.045) !important;
}

.jtd-product-showcase__kpis span {
  min-height: 82px;
}

.jtd-product-showcase__kpis b {
  color: #1f2633 !important;
  font-size: 19px;
  font-weight: 760;
}

.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-product-card__preview i {
  background: linear-gradient(90deg, #2468f2 0 58%, #d9e5f7 58% 100%) !important;
}

.jtd-product-showcase__chart {
  align-items: end;
  background:
    linear-gradient(180deg, rgba(36, 104, 242, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84) !important;
  background-size: 100% 34px, auto !important;
}

.jtd-product-showcase__chart i {
  min-height: 34px;
  background: linear-gradient(180deg, #7db3ff, #2468f2) !important;
  border-radius: 7px 7px 3px 3px;
}

.jtd-product-showcase__chart i:nth-child(2) {
  min-height: 88px;
  background: linear-gradient(180deg, #8fd8ff, #00a3ff) !important;
}

.jtd-product-showcase__chart i:nth-child(3) {
  min-height: 62px;
  background: linear-gradient(180deg, #6ee7b7, #12b981) !important;
}

.jtd-product-showcase__chart i:nth-child(4) {
  min-height: 112px;
  background: linear-gradient(180deg, #9aa8ff, #5867e8) !important;
}

.jtd-product-showcase__rows {
  gap: 10px;
}

.jtd-product-showcase__rows b {
  color: #34445c !important;
  font-weight: 680;
}

.jtd-product-showcase__modules span {
  min-height: 30px;
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: #dce7f5 !important;
  color: #334767 !important;
  font-weight: 680;
}

.jtd-product-showcase__phone {
  width: 158px;
  min-height: 248px;
  padding: 18px 13px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  border-color: #dce7f5 !important;
  border-radius: 22px;
  box-shadow: 0 28px 62px rgba(21, 44, 83, 0.14) !important;
}

.jtd-product-showcase__phone::before {
  background: #ccd6e3;
}

.jtd-product-showcase__phone strong {
  color: #1f2633;
  font-weight: 760;
}

.jtd-product-showcase__phone span {
  min-height: 34px;
  border-color: #dfe7f2;
  color: #40506a;
  font-weight: 680;
}

.jtd-hero__signal {
  left: 2px;
  top: 34px;
}

.jtd-hero__signal span {
  min-width: 54px;
  min-height: 28px;
  background: rgba(255, 255, 255, 0.86);
  border-color: #dce7f5;
  color: #40506a;
  box-shadow: 0 10px 22px rgba(21, 44, 83, 0.07);
}

.jtd-section {
  padding: 66px 0;
}

.jtd-trust-strip + .jtd-section--audience {
  padding-top: 58px;
}

.jtd-section--audience {
  padding-bottom: 54px;
}

#products {
  padding-top: 62px;
}

.jtd-section__header {
  margin-bottom: 34px;
}

.jtd-customer-grid {
  gap: 18px;
}

.jtd-section-actions {
  margin-top: 30px;
}

@media (max-width: 1180px) {
  .jtd-hero {
    min-height: auto;
  }

  .jtd-product-showcase {
    padding-right: 38px;
  }
}

@media (max-width: 760px) {
  .jtd-product-showcase {
    min-height: auto;
    padding-right: 0;
  }

  .jtd-product-showcase--hero .jtd-product-showcase__desktop,
  .jtd-product-showcase__desktop {
    min-height: 342px;
    padding: 14px;
  }

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

  .jtd-product-showcase__kpis span {
    min-height: 64px;
    padding: 10px;
  }

  .jtd-product-showcase__kpis b {
    font-size: 15px;
  }

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

  .jtd-product-showcase__phone,
  .jtd-hero__signal {
    display: none;
  }

  .jtd-section {
    padding: 52px 0;
  }
}

/* Inner pages consistency polish v3.1 */
.jtd-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 64px;
  background:
    linear-gradient(90deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  background-size: 96px 96px, 96px 96px, auto !important;
}

.jtd-page-hero .jtd-split {
  align-items: center;
  gap: 56px;
}

.jtd-page-hero h1 {
  max-width: 760px;
  color: #171d2a;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 760;
  letter-spacing: 0;
}

.jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
  max-width: 680px;
  color: #56657a;
  font-size: 17px;
  line-height: 1.85;
}

.jtd-page-hero .jtd-actions {
  margin-top: 28px;
}

.jtd-breadcrumb {
  margin-bottom: 20px;
}

.jtd-breadcrumb a,
.jtd-breadcrumb span {
  font-weight: 650;
}

.jtd-product-paths,
.jtd-decision-row,
.jtd-case-principles,
.jtd-security-layers,
.jtd-about-position {
  display: grid;
  gap: 18px;
}

.jtd-product-paths,
.jtd-decision-row,
.jtd-case-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-case-principles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jtd-product-paths article,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-security-layers article,
.jtd-about-position article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid #dfe8f6;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 30px rgba(21, 44, 83, 0.045);
}

.jtd-product-paths article:hover,
.jtd-decision-row article:hover,
.jtd-case-principles article:hover,
.jtd-security-layers article:hover,
.jtd-about-position article:hover {
  border-color: #cbd8ea;
  box-shadow: 0 18px 42px rgba(36, 104, 242, 0.08);
  transform: translateY(-2px);
}

.jtd-product-paths span,
.jtd-decision-row span,
.jtd-security-layers span,
.jtd-long-roadmap article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 11px;
  margin-bottom: 18px;
  border: 1px solid #d9e4f4;
  border-radius: 999px;
  background: #ffffff;
  color: #2468f2;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(36, 104, 242, 0.06);
}

.jtd-product-paths h2,
.jtd-decision-row h2,
.jtd-case-principles h2,
.jtd-security-layers h3,
.jtd-about-position h2 {
  margin-bottom: 10px;
  color: #1f2633;
  font-size: 21px;
  font-weight: 760;
}

.jtd-product-paths p,
.jtd-decision-row p,
.jtd-case-principles p,
.jtd-security-layers p,
.jtd-about-position p {
  color: #607086;
  line-height: 1.75;
}

.jtd-decision-panel,
.jtd-ecosystem-visual,
.jtd-case-proof-panel,
.jtd-trust-console,
.jtd-security-visual,
.jtd-vision-orbit {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 340px;
  padding: 28px;
  border: 1px solid #dce7f5;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(36, 104, 242, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 72px 72px, 72px 72px, auto;
  box-shadow: 0 24px 64px rgba(21, 44, 83, 0.1);
}

.jtd-decision-panel strong,
.jtd-ecosystem-visual strong,
.jtd-case-proof-panel strong,
.jtd-trust-console strong,
.jtd-security-visual strong,
.jtd-vision-orbit strong {
  color: #1f2633;
  font-size: 24px;
  font-weight: 780;
}

.jtd-decision-panel span,
.jtd-ecosystem-visual span,
.jtd-case-proof-panel span,
.jtd-trust-console span,
.jtd-security-visual span,
.jtd-vision-orbit span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #34445c;
  font-weight: 680;
  box-shadow: 0 9px 20px rgba(21, 44, 83, 0.045);
}

.jtd-decision-panel span:nth-child(2),
.jtd-ecosystem-visual span:nth-child(2),
.jtd-case-proof-panel span:nth-child(2),
.jtd-trust-console span:nth-child(2),
.jtd-security-visual span:nth-child(2),
.jtd-vision-orbit span:nth-child(2) {
  color: #2468f2;
}

.jtd-ecosystem-visual div {
  display: grid;
  gap: 10px;
}

.jtd-vision-orbit {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
}

.jtd-vision-orbit strong {
  grid-column: 1 / -1;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dce7f5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
}

.jtd-trust-console strong {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dce7f5;
}

.jtd-card-grid > .jtd-card,
.jtd-solution-card,
.jtd-case-card,
.jtd-partner-card,
.jtd-trust-card,
.jtd-vision-card {
  min-height: 100%;
}

.jtd-solution-card .jtd-card__body,
.jtd-case-card .jtd-card__body,
.jtd-partner-card .jtd-card__body,
.jtd-trust-card .jtd-card__body,
.jtd-vision-card .jtd-card__body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.jtd-solution-card .jtd-text-link,
.jtd-case-card .jtd-text-link,
.jtd-partner-card .jtd-text-link,
.jtd-product-card .jtd-text-link {
  margin-top: auto;
}

.jtd-solution-card__points,
.jtd-case-card__meta,
.jtd-trust-notes,
.jtd-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jtd-solution-card__points span,
.jtd-case-card__meta span,
.jtd-trust-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dce7f5;
  border-radius: 999px;
  background: #ffffff;
  color: #40506a;
  font-size: 13px;
  font-weight: 680;
}

.jtd-product-card__preview {
  border-bottom: 1px solid #dce7f5 !important;
  background:
    linear-gradient(90deg, rgba(36, 104, 242, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%) !important;
  background-size: 64px 64px, 64px 64px, auto !important;
}

.jtd-product-card__preview strong {
  border-color: rgba(36, 104, 242, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #27507e !important;
}

.jtd-product-card__preview span {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(36, 104, 242, 0.12) !important;
  color: #34445c !important;
  box-shadow: 0 8px 18px rgba(36, 104, 242, 0.045) !important;
}

.jtd-conversion-panel,
.jtd-split--cta {
  align-items: center;
  padding: 32px;
  border: 1px solid #dce7f5;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 84px 84px, 84px 84px, auto;
  box-shadow: 0 18px 48px rgba(21, 44, 83, 0.07);
}

.jtd-split--cta .jtd-actions,
.jtd-conversion-panel .jtd-actions {
  justify-content: flex-end;
}

.jtd-lead-form {
  border-color: #dce7f5;
  box-shadow: 0 18px 48px rgba(21, 44, 83, 0.07);
}

.jtd-lead-form input,
.jtd-lead-form select,
.jtd-lead-form textarea {
  border-color: #dce7f5;
  background: #fbfdff;
}

.jtd-lead-form input:focus,
.jtd-lead-form select:focus,
.jtd-lead-form textarea:focus {
  outline: 2px solid rgba(36, 104, 242, 0.16);
  border-color: #9dbaf2;
}

.jtd-long-roadmap {
  gap: 18px;
}

.jtd-long-roadmap article {
  border-color: #dce7f5 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

.jtd-long-roadmap b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 10px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.045);
  color: #e1251b;
  font-size: 13px;
}

@media (max-width: 980px) {
  .jtd-product-paths,
  .jtd-decision-row,
  .jtd-case-principles {
    grid-template-columns: 1fr;
  }

  .jtd-page-hero .jtd-split {
    gap: 34px;
  }

  .jtd-decision-panel,
  .jtd-ecosystem-visual,
  .jtd-case-proof-panel,
  .jtd-trust-console,
  .jtd-security-visual,
  .jtd-vision-orbit {
    min-height: auto;
  }

  .jtd-split--cta .jtd-actions,
  .jtd-conversion-panel .jtd-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .jtd-page-hero {
    padding: 70px 0 44px;
    background-size: 64px 64px, 64px 64px, auto !important;
  }

  .jtd-page-hero h1 {
    font-size: 32px;
  }

  .jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
    font-size: 15px;
  }

  .jtd-product-paths article,
  .jtd-decision-row article,
  .jtd-case-principles article,
  .jtd-security-layers article,
  .jtd-about-position article,
  .jtd-conversion-panel,
  .jtd-split--cta {
    padding: 22px;
  }

  .jtd-vision-orbit {
    grid-template-columns: 1fr;
  }
}

/* Product archive card cleanup v3.2 */
body.post-type-archive-jtd_product .jtd-card-grid {
  align-items: stretch;
}

body.post-type-archive-jtd_product .jtd-product-card {
  overflow: hidden;
  background: #ffffff !important;
}

body.post-type-archive-jtd_product .jtd-product-card__preview {
  min-height: 132px;
  padding: 22px 22px 20px;
  border-bottom: 1px solid #dce7f5 !important;
  background:
    linear-gradient(90deg, rgba(36, 104, 242, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, #f9fbff 0%, #f1f6ff 100%) !important;
  background-size: 64px 64px, 64px 64px, auto !important;
}

body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: #24527c !important;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.4;
}

body.post-type-archive-jtd_product .jtd-product-card__preview div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

body.post-type-archive-jtd_product .jtd-product-card__preview span {
  min-width: 0;
  min-height: 34px;
  justify-content: center;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #34445c !important;
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.post-type-archive-jtd_product .jtd-product-card__preview::before,
body.post-type-archive-jtd_product .jtd-product-card__preview::after,
body.post-type-archive-jtd_product .jtd-product-card__preview i {
  display: none !important;
  content: none !important;
}

body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body {
  min-height: 246px;
  padding: 28px 26px 26px;
}

body.post-type-archive-jtd_product .jtd-product-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  min-height: 32px;
  margin-bottom: 14px;
}

body.post-type-archive-jtd_product .jtd-product-card__head .jtd-tag {
  max-width: 68%;
  min-height: 28px;
  padding: 0 10px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.post-type-archive-jtd_product .jtd-product-card__head > span:last-child {
  flex: 0 0 auto;
  color: #a0aaba;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
}

body.post-type-archive-jtd_product .jtd-product-card h2 {
  margin: 0 0 12px;
  color: #1f2633;
  font-size: 23px;
  font-weight: 760;
  line-height: 1.3;
}

body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body > h2:first-child,
.jtd-section #products .jtd-product-card .jtd-card__body > h3:first-child,
#products .jtd-product-card .jtd-card__body > h3:first-child {
  margin-top: 0;
}

#products .jtd-product-card .jtd-card__body {
  padding-top: 28px;
}

body.post-type-archive-jtd_product .jtd-product-card p {
  color: #5f6f86;
  font-size: 15px;
  line-height: 1.78;
}

@media (max-width: 760px) {
  body.post-type-archive-jtd_product .jtd-product-card__preview {
    min-height: 118px;
    padding: 20px;
  }

  body.post-type-archive-jtd_product .jtd-product-card__preview div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  body.post-type-archive-jtd_product .jtd-product-card__preview span {
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }
}

/* Product card density reset v3.3 */
#products .jtd-card-grid--3,
body.post-type-archive-jtd_product .jtd-card-grid--3 {
  gap: 18px;
}

#products .jtd-product-card,
body.post-type-archive-jtd_product .jtd-product-card {
  display: flex;
  flex-direction: column;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  min-height: 120px !important;
  padding: 20px 22px 18px !important;
  border-top: 0 !important;
  border-bottom: 1px solid #e1e9f5 !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(36, 104, 242, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%) !important;
  background-size: auto, 68px 68px, 68px 68px, auto !important;
}

#products .jtd-product-card__preview strong,
body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  display: block !important;
  width: auto;
  max-width: 100%;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #27466d !important;
  font-size: 15px !important;
  font-weight: 720 !important;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#products .jtd-product-card__preview div,
body.post-type-archive-jtd_product .jtd-product-card__preview div {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 9px !important;
  margin-top: 20px !important;
}

#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span {
  min-width: 0 !important;
  min-height: 32px !important;
  justify-content: center !important;
  padding: 0 9px !important;
  border-radius: 7px !important;
  border-color: #dce7f5 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #35445d !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(21, 44, 83, 0.035) !important;
}

#products .jtd-product-card .jtd-card__body,
body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body {
  flex: 1;
  min-height: 0 !important;
  padding: 22px 24px 24px !important;
  display: flex;
  flex-direction: column;
}

#products .jtd-product-card h3,
body.post-type-archive-jtd_product .jtd-product-card h2 {
  margin: 0 0 10px !important;
  color: #202939;
  font-size: 21px !important;
  font-weight: 720 !important;
  line-height: 1.35;
}

#products .jtd-product-card h3 a,
body.post-type-archive-jtd_product .jtd-product-card h2 a {
  color: inherit;
}

#products .jtd-product-card p,
body.post-type-archive-jtd_product .jtd-product-card p {
  margin: 0 !important;
  color: #5d6b82 !important;
  font-size: 15px !important;
  line-height: 1.68 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#products .jtd-product-card small,
body.post-type-archive-jtd_product .jtd-product-card small {
  display: -webkit-box !important;
  margin-top: 14px !important;
  padding-top: 13px;
  border-top: 1px solid #edf2f8;
  color: #7a8799 !important;
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.55 !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#products .jtd-product-card small:empty,
body.post-type-archive-jtd_product .jtd-product-card small:empty {
  display: none !important;
}

#products .jtd-product-card small::before,
body.post-type-archive-jtd_product .jtd-product-card small::before {
  content: "适用：";
  color: #98a2b3;
  font-weight: 680;
}

#products .jtd-product-card .jtd-text-link,
body.post-type-archive-jtd_product .jtd-product-card .jtd-text-link {
  width: fit-content;
  margin-top: 16px !important;
  color: #e1251b !important;
  font-size: 14px;
  font-weight: 760;
}

body.post-type-archive-jtd_product .jtd-product-card__head,
#products .jtd-product-card__head {
  display: none !important;
}

@media (max-width: 980px) {
  #products .jtd-card-grid--3,
  body.post-type-archive-jtd_product .jtd-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #products .jtd-card-grid--3,
  body.post-type-archive-jtd_product .jtd-card-grid--3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #products .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
  #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
  body.post-type-archive-jtd_product .jtd-product-card__preview {
    min-height: 108px !important;
    padding: 18px !important;
    background-size: auto, 52px 52px, 52px 52px, auto !important;
  }

  #products .jtd-product-card__preview div,
  body.post-type-archive-jtd_product .jtd-product-card__preview div {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  #products .jtd-product-card .jtd-card__body,
  body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body {
    padding: 20px !important;
  }

  #products .jtd-product-card h3,
  body.post-type-archive-jtd_product .jtd-product-card h2 {
    font-size: 20px !important;
  }
}

/* Sitewide closing polish v3.4 */
:root {
  --jtd-final-ink: #202939;
  --jtd-final-text: #536176;
  --jtd-final-muted: #7a8799;
  --jtd-final-line: #e4ebf5;
  --jtd-final-blue: #2468f2;
  --jtd-final-red: #e1251b;
  --jtd-final-shadow: 0 16px 42px rgba(21, 44, 83, 0.075);
}

.jtd-page-hero {
  padding: 78px 0 50px !important;
  background:
    radial-gradient(circle at 82% 24%, rgba(36, 104, 242, 0.08), transparent 31%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  background-size: auto, 96px 96px, 96px 96px, auto !important;
}

.jtd-page-hero .jtd-split {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr) !important;
  gap: 44px !important;
  min-height: 0 !important;
}

.jtd-page-hero h1 {
  max-width: 780px !important;
  color: var(--jtd-final-ink) !important;
  font-size: clamp(40px, 4.15vw, 56px) !important;
  font-weight: 760 !important;
  line-height: 1.13 !important;
  letter-spacing: 0 !important;
}

.jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
.jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
  max-width: 680px !important;
  margin-top: 16px !important;
  color: var(--jtd-final-text) !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.jtd-page-hero .jtd-actions {
  margin-top: 26px !important;
}

.jtd-breadcrumb {
  margin-bottom: 14px !important;
  color: #8a95a6 !important;
}

.jtd-eyebrow {
  min-height: 28px;
  padding: 0 10px !important;
  border-color: rgba(225, 37, 27, 0.14) !important;
  background: rgba(225, 37, 27, 0.035) !important;
  color: #e1251b !important;
  font-size: 13px !important;
  font-weight: 720 !important;
}

.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-trust-console,
.jtd-ecosystem-visual,
.jtd-vision-orbit,
.jtd-page-hero .jtd-product-showcase__desktop {
  min-height: 320px !important;
  border-color: var(--jtd-final-line) !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 88% 14%, rgba(36, 104, 242, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(36, 104, 242, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 104, 242, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  background-size: auto, 78px 78px, 78px 78px, auto !important;
  box-shadow: var(--jtd-final-shadow) !important;
}

.jtd-decision-panel span,
.jtd-case-proof-panel span,
.jtd-trust-console span,
.jtd-ecosystem-visual span,
.jtd-vision-orbit span,
.jtd-vision-orbit strong {
  border-color: #dce7f5 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #33445f !important;
  box-shadow: 0 8px 18px rgba(21, 44, 83, 0.035) !important;
}

.jtd-section {
  padding: 74px 0 !important;
}

.jtd-section--compact {
  padding: 36px 0 !important;
}

.jtd-section__header {
  max-width: 820px !important;
  margin-bottom: 30px !important;
}

.jtd-section__header h2 {
  color: var(--jtd-final-ink) !important;
  font-size: clamp(30px, 3vw, 40px) !important;
  font-weight: 740 !important;
  line-height: 1.22 !important;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  color: var(--jtd-final-text) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.jtd-card-grid {
  gap: 18px !important;
}

.jtd-card,
.jtd-customer-card,
.jtd-product-card,
.jtd-solution-card,
.jtd-case-card,
.jtd-partner-card,
.jtd-trust-card,
.jtd-vision-card,
.jtd-service-card,
.jtd-news-card,
.jtd-qualification-card,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-security-layers article,
.jtd-process-card,
.jtd-value-card {
  border-color: var(--jtd-final-line) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 10px 28px rgba(21, 44, 83, 0.045) !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-card:hover,
.jtd-solution-card:hover,
.jtd-case-card:hover,
.jtd-partner-card:hover,
.jtd-trust-card:hover,
.jtd-vision-card:hover,
.jtd-service-card:hover,
.jtd-news-card:hover,
.jtd-qualification-card:hover {
  border-color: #ccd9eb !important;
  box-shadow: 0 18px 42px rgba(36, 104, 242, 0.08) !important;
  transform: translateY(-2px);
}

.jtd-solution-card .jtd-card__body,
.jtd-case-card .jtd-card__body,
.jtd-partner-card .jtd-card__body,
.jtd-trust-card .jtd-card__body,
.jtd-vision-card .jtd-card__body {
  min-height: 236px !important;
  padding: 24px !important;
}

.jtd-solution-card .jtd-text-link,
.jtd-case-card .jtd-text-link,
.jtd-partner-card .jtd-text-link,
.jtd-product-card .jtd-text-link {
  margin-top: 18px !important;
}

.jtd-product-card__head {
  min-height: 28px !important;
  margin-bottom: 14px !important;
}

.jtd-product-card__head .jtd-tag {
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jtd-split--cta,
.jtd-conversion-panel {
  gap: 28px !important;
  padding: 30px !important;
  border-radius: 12px !important;
  border-color: var(--jtd-final-line) !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(36, 104, 242, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: 0 14px 38px rgba(21, 44, 83, 0.065) !important;
}

.jtd-split--cta h2,
.jtd-conversion-panel h2 {
  margin-bottom: 10px !important;
  color: var(--jtd-final-ink) !important;
  font-size: clamp(26px, 2.5vw, 34px) !important;
  line-height: 1.24 !important;
}

.jtd-split--cta p:not(.jtd-eyebrow),
.jtd-conversion-panel p:not(.jtd-eyebrow) {
  color: var(--jtd-final-text) !important;
  line-height: 1.72 !important;
}

.jtd-btn {
  min-height: 42px !important;
  border-radius: 7px !important;
  font-size: 14px !important;
  font-weight: 720 !important;
}

.jtd-btn--primary {
  background: var(--jtd-final-red) !important;
  box-shadow: 0 10px 22px rgba(225, 37, 27, 0.16) !important;
}

.jtd-btn--primary:hover {
  background: #e1251b !important;
  box-shadow: 0 14px 28px rgba(225, 37, 27, 0.18) !important;
}

.jtd-btn--secondary,
.jtd-btn--light {
  border-color: #dce4ef !important;
  background: #ffffff !important;
  color: #2f3b4f !important;
}

.jtd-btn--secondary:hover,
.jtd-btn--light:hover {
  border-color: rgba(225, 37, 27, 0.22) !important;
  color: var(--jtd-final-red) !important;
}

.jtd-floating-demo {
  right: 22px !important;
  top: auto !important;
  bottom: 92px !important;
  width: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  flex-direction: row !important;
  gap: 0 !important;
  border: 1px solid rgba(225, 37, 27, 0.16) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--jtd-final-red) !important;
  box-shadow: 0 14px 34px rgba(21, 44, 83, 0.12) !important;
  transform: none !important;
}

.jtd-floating-demo:hover,
.jtd-floating-demo:focus-visible {
  background: var(--jtd-final-red) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.jtd-floating-demo__icon {
  width: 30px !important;
  height: 30px !important;
  background: rgba(225, 37, 27, 0.08) !important;
  color: inherit !important;
  font-weight: 760;
}

.jtd-floating-demo > span:not(.jtd-floating-demo__icon) {
  position: absolute;
  right: 62px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: #202939;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.jtd-floating-demo:hover > span:not(.jtd-floating-demo__icon),
.jtd-floating-demo:focus-visible > span:not(.jtd-floating-demo__icon) {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (max-width: 1180px) {
  .jtd-page-hero h1 {
    font-size: clamp(36px, 5vw, 48px) !important;
  }
}

@media (max-width: 980px) {
  .jtd-page-hero .jtd-split {
    grid-template-columns: 1fr !important;
  }

  .jtd-decision-panel,
  .jtd-case-proof-panel,
  .jtd-trust-console,
  .jtd-ecosystem-visual,
  .jtd-vision-orbit,
  .jtd-page-hero .jtd-product-showcase__desktop {
    min-height: 260px !important;
  }
}

@media (max-width: 760px) {
  .jtd-page-hero {
    padding: 48px 0 34px !important;
    background-size: auto, 64px 64px, 64px 64px, auto !important;
  }

  .jtd-page-hero h1 {
    font-size: 28px !important;
    line-height: 1.22 !important;
  }

  .jtd-page-hero .jtd-split > div > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
  .jtd-page-hero > .jtd-container > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
    font-size: 14px !important;
    line-height: 1.68 !important;
  }

  .jtd-section {
    padding: 50px 0 !important;
  }

  .jtd-section--compact {
    padding: 28px 0 !important;
  }

  .jtd-section__header h2 {
    font-size: 24px !important;
  }

  .jtd-solution-card .jtd-card__body,
  .jtd-case-card .jtd-card__body,
  .jtd-partner-card .jtd-card__body,
  .jtd-trust-card .jtd-card__body,
  .jtd-vision-card .jtd-card__body,
  .jtd-split--cta,
  .jtd-conversion-panel {
    min-height: 0 !important;
    padding: 20px !important;
  }

  .jtd-floating-demo {
    display: none !important;
  }

  .jtd-nav-lock .jtd-mobile-quickbar {
    display: none !important;
  }
}

/* Lead modal conversion polish v3.5 */
.jtd-lead-modal {
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
}

.jtd-lead-modal__backdrop {
  background: rgba(15, 23, 42, 0.46) !important;
  backdrop-filter: blur(6px);
}

.jtd-lead-modal__dialog {
  width: min(900px, calc(100vw - 48px)) !important;
  max-height: calc(100vh - 48px) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  padding: 24px !important;
  border: 1px solid #e4ebf5 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24) !important;
}

.jtd-lead-modal__close {
  right: 18px !important;
  top: 18px !important;
  z-index: 3;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.jtd-lead-modal__head {
  min-height: 100%;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid #e4ebf5;
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 6%, rgba(36, 104, 242, 0.12), transparent 31%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.jtd-lead-modal__head h2 {
  margin: 12px 0 10px !important;
  color: #202939 !important;
  font-size: 25px !important;
  font-weight: 740 !important;
}

.jtd-lead-modal__head p:not(.jtd-eyebrow) {
  color: #5d6b82 !important;
  line-height: 1.7;
}

.jtd-lead-modal__trust {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.jtd-lead-modal__trust span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #dfe8f6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #33445f;
  font-size: 13px;
  font-weight: 680;
}

.jtd-lead-modal .jtd-lead-form {
  align-self: start;
  gap: 13px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jtd-lead-modal .jtd-lead-form label {
  gap: 6px;
  color: #263244;
  font-size: 13px;
}

.jtd-lead-modal .jtd-lead-form input,
.jtd-lead-modal .jtd-lead-form select,
.jtd-lead-modal .jtd-lead-form textarea {
  min-height: 40px !important;
  border-color: #dfe8f6 !important;
  border-radius: 8px !important;
  background: #fbfdff !important;
}

.jtd-lead-modal .jtd-lead-form textarea {
  min-height: 104px !important;
}

.jtd-lead-modal .jtd-form-note {
  margin: 0 !important;
  color: #7a8799 !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}

@media (max-width: 760px) {
  .jtd-lead-modal {
    padding: 10px !important;
  }

  .jtd-lead-modal__dialog {
    width: 100% !important;
    max-height: calc(100vh - 20px) !important;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px !important;
    border-radius: 14px !important;
  }

  .jtd-lead-modal__head {
    min-height: 0;
    padding: 18px !important;
  }

  .jtd-lead-modal__head h2 {
    padding-right: 42px;
    font-size: 20px !important;
  }

  .jtd-lead-modal__trust {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .jtd-lead-modal__trust span {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .jtd-lead-modal .jtd-lead-form {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile first-screen rhythm v3.6 */
@media (max-width: 760px) {
  .jtd-hero {
    min-height: 0 !important;
    padding: 42px 0 34px !important;
  }

  .jtd-hero__slide {
    gap: 22px !important;
  }

  .jtd-hero__visual,
  .jtd-page-hero .jtd-split > div:nth-child(2) {
    max-height: 238px;
    overflow: hidden;
  }

  .jtd-hero .jtd-product-showcase,
  .jtd-page-hero .jtd-product-showcase {
    min-height: 0 !important;
    padding-right: 0 !important;
  }

  .jtd-hero .jtd-product-showcase__desktop,
  .jtd-page-hero .jtd-product-showcase__desktop,
  .jtd-decision-panel,
  .jtd-case-proof-panel,
  .jtd-trust-console,
  .jtd-ecosystem-visual,
  .jtd-vision-orbit {
    min-height: 210px !important;
    padding: 16px !important;
  }

  .jtd-product-showcase__desktop {
    transform: none !important;
  }

  .jtd-product-showcase__head {
    min-height: 48px !important;
  }

  .jtd-product-showcase__head strong {
    font-size: 18px !important;
  }

  .jtd-product-showcase__kpis {
    gap: 8px !important;
  }

  .jtd-product-showcase__kpis span,
  .jtd-product-showcase__modules span,
  .jtd-decision-panel span,
  .jtd-case-proof-panel span,
  .jtd-trust-console span,
  .jtd-ecosystem-visual span,
  .jtd-vision-orbit span {
    min-height: 32px !important;
    font-size: 12px !important;
  }

  .jtd-hero__proof {
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .jtd-hero__dots {
    margin-top: 18px !important;
  }

  .page-template-page-about .jtd-page-hero h1,
  .page-template-page-vision .jtd-page-hero h1 {
    font-size: 28px !important;
  }
}

/* Detail conversion polish v3.7 */
.single-jtd_product .jtd-page-hero,
.single-jtd_solution .jtd-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(36, 104, 242, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.single-jtd_product .jtd-page-hero h1,
.single-jtd_solution .jtd-page-hero h1 {
  max-width: 720px !important;
  font-size: clamp(38px, 3.85vw, 52px) !important;
  font-weight: 740 !important;
}

.single-jtd_product .jtd-tag-row,
.single-jtd_solution .jtd-tag-row {
  gap: 8px !important;
  margin-top: 18px !important;
}

.single-jtd_product .jtd-tag-row .jtd-tag,
.single-jtd_solution .jtd-tag-row .jtd-tag {
  min-height: 30px !important;
  border-color: #dce6f4 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #42526b !important;
  font-size: 13px !important;
  font-weight: 620 !important;
}

.jtd-product-hero__proof {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  margin-top: 22px !important;
}

.jtd-product-hero__proof span {
  min-height: 32px !important;
  padding: 0 12px !important;
  border: 1px solid #e3ebf6 !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #536176 !important;
  font-size: 13px !important;
  font-weight: 620 !important;
  box-shadow: none !important;
}

.jtd-product-strip {
  border-top: 1px solid #edf2f8 !important;
  border-bottom: 1px solid #edf2f8 !important;
  background: #ffffff !important;
}

.jtd-product-strip__inner {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  padding: 0 !important;
}

.jtd-product-strip article {
  padding: 24px 28px !important;
  border: 0 !important;
  border-right: 1px solid #edf2f8 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jtd-product-strip article:last-child {
  border-right: 0 !important;
}

.jtd-product-strip span {
  display: block;
  margin-bottom: 8px;
  color: #7a8799 !important;
  font-size: 13px !important;
  font-weight: 680 !important;
}

.jtd-product-strip strong {
  color: #253149 !important;
  font-size: 17px !important;
  font-weight: 720 !important;
  line-height: 1.55 !important;
}

.jtd-line-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(36, 104, 242, 0.055), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

.jtd-line-card::before {
  display: none !important;
  content: none !important;
}

.jtd-line-card .jtd-card__body {
  min-height: 198px !important;
  padding: 24px !important;
}

.jtd-line-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 28px;
  margin-bottom: 22px;
  border: 1px solid #dfe8f6;
  border-radius: 999px;
  background: #f8fbff;
  color: #2468f2;
  font-size: 13px;
  font-weight: 760;
}

.jtd-line-card h3 {
  margin: 0 0 12px !important;
  color: #202939 !important;
  font-size: 21px !important;
  font-weight: 720 !important;
  line-height: 1.35 !important;
}

.jtd-line-card p {
  margin: 0 !important;
  color: #5d6b82 !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.jtd-step-list {
  gap: 10px !important;
}

.jtd-step-list li {
  min-height: 54px !important;
  padding: 12px 14px !important;
  border-color: #e4ebf5 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #33445f !important;
  box-shadow: 0 8px 20px rgba(21, 44, 83, 0.035) !important;
}

.jtd-step-list span {
  width: 30px !important;
  height: 30px !important;
  border: 1px solid #dfe8f6 !important;
  background: #f8fbff !important;
  color: #2468f2 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.jtd-solution-visual-card {
  border-color: #e4ebf5 !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(36, 104, 242, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: 0 16px 42px rgba(21, 44, 83, 0.075) !important;
}

.jtd-solution-visual-card__modules span,
.jtd-solution-visual-card__flow span {
  border-color: #dfe8f6 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #33445f !important;
}

.jtd-solution-visual-card__flow i {
  background: #dfe8f6 !important;
}

@media (max-width: 980px) {
  .jtd-product-strip__inner {
    grid-template-columns: 1fr !important;
  }

  .jtd-product-strip article {
    border-right: 0 !important;
    border-bottom: 1px solid #edf2f8 !important;
  }

  .jtd-product-strip article:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  .single-jtd_product .jtd-page-hero h1,
  .single-jtd_solution .jtd-page-hero h1 {
    font-size: 28px !important;
  }

  .jtd-product-strip article,
  .jtd-line-card .jtd-card__body {
    padding: 20px !important;
  }

  .jtd-line-card .jtd-card__body {
    min-height: 0 !important;
  }

  .jtd-line-card__index {
    margin-bottom: 16px;
  }

  .jtd-line-card h3 {
    font-size: 20px !important;
  }
}

/* Enterprise SaaS visual system v4.0 */
:root {
  --jtd-v4-ink: #172033;
  --jtd-v4-text: #546179;
  --jtd-v4-muted: #7d899c;
  --jtd-v4-soft: #f4f7fc;
  --jtd-v4-soft-2: #f8fafc;
  --jtd-v4-line: rgba(125, 137, 156, 0.16);
  --jtd-v4-card: rgba(255, 255, 255, 0.92);
  --jtd-v4-red: #e1251b;
  --jtd-v4-red-2: #e1251b;
  --jtd-v4-blue: #2f6bff;
  --jtd-v4-indigo: #3f56d9;
  --jtd-v4-radius: 16px;
  --jtd-v4-radius-sm: 12px;
  --jtd-v4-shadow: 0 18px 48px -22px rgba(23, 32, 51, 0.32);
  --jtd-v4-shadow-hover: 0 26px 62px -24px rgba(47, 107, 255, 0.34);
  --jtd-v4-brand-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 52%, #e1251b 100%);
  --jtd-v4-blue-gradient: linear-gradient(135deg, #2f6bff 0%, #38bdf8 100%);
}

body {
  color: var(--jtd-v4-ink) !important;
  background: #ffffff !important;
}

.jtd-site-main > .jtd-section:nth-of-type(even):not(.jtd-section--related),
main > .jtd-section:nth-of-type(even):not(.jtd-section--related) {
  background: var(--jtd-v4-soft-2);
}

.jtd-section {
  padding: 96px 0 !important;
}

.jtd-section--compact {
  padding: 58px 0 !important;
}

.jtd-section--muted,
.jtd-ai-section,
.jtd-platform-section,
.jtd-trust-strip,
.jtd-product-strip {
  background: var(--jtd-v4-soft) !important;
}

.jtd-section__header {
  margin-bottom: 44px !important;
}

.jtd-section__header h2,
.jtd-page-hero h1,
.jtd-hero__content h1 {
  color: var(--jtd-v4-ink) !important;
  font-weight: 740 !important;
  letter-spacing: 0 !important;
}

.jtd-section__header p:not(.jtd-eyebrow),
.jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
.jtd-hero__content > p:not(.jtd-eyebrow) {
  color: var(--jtd-v4-text) !important;
}

.jtd-eyebrow {
  min-height: 30px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(225, 37, 27, 0.075) !important;
  color: #e1251b !important;
  box-shadow: inset 0 0 0 1px rgba(225, 37, 27, 0.1) !important;
}

.jtd-btn {
  min-height: 44px !important;
  border-radius: 12px !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease !important;
}

.jtd-btn:hover {
  transform: translateY(-2px);
}

.jtd-btn--primary {
  border: 0 !important;
  background: var(--jtd-v4-brand-gradient) !important;
  box-shadow: 0 16px 32px -16px rgba(225, 37, 27, 0.55) !important;
}

.jtd-btn--primary:hover {
  background: #e1251b !important;
  box-shadow: 0 22px 42px -18px rgba(225, 37, 27, 0.58) !important;
}

.jtd-btn--secondary,
.jtd-btn--light {
  border: 0 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #26344f !important;
  box-shadow: inset 0 0 0 1px var(--jtd-v4-line), 0 12px 28px -22px rgba(23, 32, 51, 0.28) !important;
}

.jtd-btn--secondary:hover,
.jtd-btn--light:hover {
  color: var(--jtd-v4-blue) !important;
  box-shadow: inset 0 0 0 1px rgba(47, 107, 255, 0.22), 0 18px 36px -24px rgba(47, 107, 255, 0.42) !important;
}

.jtd-hero,
.jtd-page-hero,
.single-jtd_product .jtd-page-hero,
.single-jtd_solution .jtd-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 107, 255, 0.11), transparent 30%),
    radial-gradient(circle at 18% 28%, rgba(225, 37, 27, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
}

.jtd-hero {
  padding: 98px 0 80px !important;
}

.jtd-page-hero {
  padding: 96px 0 66px !important;
}

.jtd-hero__slide {
  gap: 66px !important;
}

.jtd-hero__visual,
.jtd-page-hero .jtd-split > div:nth-child(2) {
  filter: drop-shadow(0 24px 44px rgba(23, 32, 51, 0.12));
}

.jtd-product-showcase__desktop,
.jtd-page-hero .jtd-product-showcase__desktop,
.jtd-solution-visual-card,
.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-trust-console,
.jtd-ecosystem-visual,
.jtd-vision-orbit {
  border: 0 !important;
  border-radius: 20px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.86)),
    radial-gradient(circle at 86% 10%, rgba(47, 107, 255, 0.12), transparent 30%) !important;
  box-shadow:
    0 26px 72px -34px rgba(23, 32, 51, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    inset 0 0 0 1px rgba(125, 137, 156, 0.08) !important;
  backdrop-filter: blur(18px);
}

.jtd-product-showcase__bar {
  border: 0 !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  box-shadow: inset 0 0 0 1px rgba(125, 137, 156, 0.12) !important;
}

.jtd-product-showcase__bar b {
  color: #27344f !important;
}

.jtd-product-showcase__head::before,
.jtd-product-showcase__desktop::before,
.jtd-product-showcase__phone::before,
.jtd-hero::before,
.jtd-hero::after {
  opacity: 0.55 !important;
}

.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span,
.jtd-solution-visual-card__modules span,
.jtd-solution-visual-card__flow span {
  border: 0 !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: inset 0 0 0 1px rgba(125, 137, 156, 0.12), 0 10px 28px -22px rgba(23, 32, 51, 0.3) !important;
}

.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-product-card__preview i {
  background: var(--jtd-v4-blue-gradient) !important;
}

.jtd-product-showcase__chart i:nth-child(1),
.jtd-product-showcase__chart i:nth-child(4) {
  background: linear-gradient(180deg, #e1251b, #e1251b) !important;
}

.jtd-product-showcase__chart i:nth-child(2) {
  background: linear-gradient(180deg, #38bdf8, #2f6bff) !important;
}

.jtd-product-showcase__chart i:nth-child(3) {
  background: linear-gradient(180deg, #69d7ad, #15b889) !important;
}

.jtd-product-showcase__phone {
  border: 0 !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 28px 72px -34px rgba(225, 37, 27, 0.32), inset 0 0 0 1px rgba(225, 37, 27, 0.18) !important;
}

.jtd-card,
.jtd-customer-card,
.jtd-product-card,
.jtd-solution-card,
.jtd-case-card,
.jtd-partner-card,
.jtd-trust-card,
.jtd-vision-card,
.jtd-service-card,
.jtd-news-card,
.jtd-qualification-card,
.jtd-decision-row article,
.jtd-product-paths article,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-process-card,
.jtd-value-card,
.jtd-line-card {
  border: 0 !important;
  border-radius: var(--jtd-v4-radius) !important;
  background: var(--jtd-v4-card) !important;
  box-shadow: var(--jtd-v4-shadow) !important;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-card:hover,
.jtd-solution-card:hover,
.jtd-case-card:hover,
.jtd-partner-card:hover,
.jtd-trust-card:hover,
.jtd-vision-card:hover,
.jtd-service-card:hover,
.jtd-news-card:hover,
.jtd-qualification-card:hover,
.jtd-decision-row article:hover,
.jtd-product-paths article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-line-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--jtd-v4-shadow-hover), 0 0 0 1px rgba(47, 107, 255, 0.08) !important;
}

.jtd-card__body,
.jtd-solution-card .jtd-card__body,
.jtd-case-card .jtd-card__body,
.jtd-partner-card .jtd-card__body,
.jtd-trust-card .jtd-card__body,
.jtd-vision-card .jtd-card__body,
.jtd-line-card .jtd-card__body {
  padding: 28px !important;
}

.jtd-product-card__preview,
#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  border: 0 !important;
  border-radius: 16px 16px 0 0 !important;
  background:
    radial-gradient(circle at 84% 8%, rgba(47, 107, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #f7faff 0%, #edf4ff 100%) !important;
  box-shadow: inset 0 -1px 0 rgba(125, 137, 156, 0.1) !important;
}

.jtd-product-card__preview strong,
#products .jtd-product-card__preview strong {
  color: #27466d !important;
}

.jtd-product-card__preview span,
#products .jtd-product-card__preview span {
  border: 0 !important;
  border-radius: 11px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: inset 0 0 0 1px rgba(125, 137, 156, 0.1), 0 10px 24px -22px rgba(23, 32, 51, 0.36) !important;
}

.jtd-path-icon,
.jtd-decision-row > article > span:first-child,
.jtd-line-card__icon,
.jtd-ai-grid > article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-customer-card__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  margin-bottom: 18px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--jtd-v4-blue-gradient) !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  box-shadow: 0 14px 28px -18px rgba(47, 107, 255, 0.72) !important;
}

.jtd-ai-grid article:nth-child(3n + 2) > span:first-child,
.jtd-product-paths article:nth-child(3n + 2) .jtd-path-icon,
.jtd-decision-row article:nth-child(3n + 2) > span:first-child {
  background: linear-gradient(135deg, #e1251b 0%, #e1251b 100%) !important;
  box-shadow: 0 14px 28px -18px rgba(225, 37, 27, 0.62) !important;
}

.jtd-ai-grid article:nth-child(3n) > span:first-child,
.jtd-product-paths article:nth-child(3n) .jtd-path-icon,
.jtd-decision-row article:nth-child(3n) > span:first-child {
  background: linear-gradient(135deg, #15b889 0%, #38bdf8 100%) !important;
  box-shadow: 0 14px 28px -18px rgba(21, 184, 137, 0.62) !important;
}

.jtd-line-card__index {
  display: none !important;
}

.jtd-product-paths,
.jtd-decision-row {
  gap: 22px !important;
}

.jtd-product-paths h2,
.jtd-decision-row h2,
.jtd-card h2,
.jtd-card h3 {
  color: var(--jtd-v4-ink) !important;
}

.jtd-product-paths p,
.jtd-decision-row p,
.jtd-card p {
  color: var(--jtd-v4-text) !important;
}

.jtd-split--cta,
.jtd-conversion-panel {
  border: 0 !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 86% 8%, rgba(47, 107, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  box-shadow: var(--jtd-v4-shadow) !important;
}

input,
select,
textarea,
.jtd-lead-modal .jtd-lead-form input,
.jtd-lead-modal .jtd-lead-form select,
.jtd-lead-modal .jtd-lead-form textarea {
  border-radius: 12px !important;
}

.jtd-lead-modal__dialog {
  border: 0 !important;
  border-radius: 20px !important;
}

.jtd-lead-modal__head {
  border: 0 !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 86% 6%, rgba(47, 107, 255, 0.11), transparent 31%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%) !important;
}

.jtd-site-footer {
  border-top: 1px solid rgba(125, 137, 156, 0.12) !important;
  background:
    radial-gradient(circle at 82% 0%, rgba(47, 107, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%) !important;
  color: var(--jtd-v4-text) !important;
}

.jtd-footer__top {
  border: 0 !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: var(--jtd-v4-shadow) !important;
}

.jtd-footer__top h2,
.jtd-footer__grid h2 {
  color: var(--jtd-v4-ink) !important;
}

.jtd-footer__top p,
.jtd-footer__brand p,
.jtd-footer__grid p,
.jtd-footer__bottom {
  color: var(--jtd-v4-text) !important;
}

.jtd-footer__grid a,
.jtd-footer__legal a,
.jtd-footer__contact a {
  color: #4e5c74 !important;
}

.jtd-footer__grid a:hover,
.jtd-footer__legal a:hover,
.jtd-footer__contact a:hover {
  color: var(--jtd-v4-blue) !important;
}

.jtd-footer__trust span {
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #41506a !important;
  box-shadow: inset 0 0 0 1px rgba(125, 137, 156, 0.12) !important;
}

.jtd-floating-demo {
  border: 0 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 42px -22px rgba(225, 37, 27, 0.62) !important;
}

@media (max-width: 980px) {
  .jtd-section {
    padding: 72px 0 !important;
  }

  .jtd-hero,
  .jtd-page-hero {
    padding-top: 70px !important;
  }
}

@media (max-width: 760px) {
  .jtd-section {
    padding: 56px 0 !important;
  }

  .jtd-section--compact {
    padding: 34px 0 !important;
  }

  .jtd-hero,
  .jtd-page-hero {
    padding: 48px 0 38px !important;
  }

  .jtd-card__body,
  .jtd-solution-card .jtd-card__body,
  .jtd-case-card .jtd-card__body,
  .jtd-partner-card .jtd-card__body,
  .jtd-trust-card .jtd-card__body,
  .jtd-vision-card .jtd-card__body,
  .jtd-line-card .jtd-card__body {
    padding: 22px !important;
  }

  .jtd-path-icon,
  .jtd-decision-row > article > span:first-child,
  .jtd-line-card__icon,
  .jtd-ai-grid > article > span:first-child,
  .jtd-about-capability-card .jtd-card__body > span:first-child,
  .jtd-customer-card__icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
  }
}

/* JTD high-gloss minimal technology system v5.1 final override */
/* JTD high-gloss minimal technology system v5.3 final precision layer */
.jtd-future-board,
.jtd-stat-panel,
.jtd-resource-flow,
.jtd-ecosystem-map,
.jtd-security-main {
  border-color: rgba(15, 23, 42, 0.07) !important;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(248, 250, 252, 0.62) 100%) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset, 0 20px 54px -38px rgba(15, 23, 42, 0.38) !important;
  animation: none !important;
}

.jtd-future-board::before,
.jtd-future-board::after,
.jtd-future-board__scan {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  animation: none !important;
}

.jtd-future-board span,
.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span,
.jtd-operating-board article:nth-child(3n + 1) > span,
.jtd-operating-board article:nth-child(3n + 2) > span,
.jtd-operating-board article:nth-child(3n) > span,
.jtd-long-roadmap span,
.jtd-long-roadmap b {
  border-color: rgba(225, 37, 27, 0.16) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #e1251b !important;
  box-shadow: 0 8px 18px rgba(184, 20, 20, 0.045) !important;
}

.jtd-future-board article,
.jtd-long-roadmap article,
.jtd-operating-board article,
.jtd-operating-board article:nth-child(2),
.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n),
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n),
body.post-type-archive-jtd_product .jtd-product-card {
  border-color: rgba(15, 23, 42, 0.06) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--jtd-v5-shadow) !important;
}

.jtd-product-showcase__head strong,
.jtd-product-showcase__desktop > strong,
.jtd-product-showcase__desktop strong,
.jtd-product-card__preview strong,
#products .jtd-product-card__preview strong,
body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  border-color: rgba(225, 37, 27, 0.16) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #e1251b !important;
  box-shadow: 0 8px 18px rgba(184, 20, 20, 0.045) !important;
}

#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  border-bottom: 1px solid rgba(15, 23, 42, 0.055) !important;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  background-size: 58px 58px, 58px 58px, auto !important;
}

#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span,
.jtd-product-showcase__modules span,
.jtd-product-showcase__kpis span,
.jtd-resource-flow span,
.jtd-ecosystem-map__node {
  border-color: rgba(15, 23, 42, 0.07) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
}

#products .jtd-product-card__preview i,
body.post-type-archive-jtd_product .jtd-product-card__preview i,
.jtd-product-showcase__chart i,
.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i {
  background: var(--jtd-v5-red-gradient) !important;
}

:root {
  --jtd-v4-ink: #0f172a;
  --jtd-v4-text: #475569;
  --jtd-v4-muted: #64748b;
  --jtd-v4-soft: #f1f5f9;
  --jtd-v4-soft-2: #f8fafc;
  --jtd-v4-line: rgba(15, 23, 42, 0.08);
  --jtd-v4-card: rgba(255, 255, 255, 0.94);
  --jtd-v4-red: #e1251b;
  --jtd-v4-red-2: #e1251b;
  --jtd-v4-blue: #e1251b;
  --jtd-v4-indigo: #0f172a;
  --jtd-v4-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 30px -26px rgba(15, 23, 42, 0.28);
  --jtd-v4-shadow-hover: 0 2px 6px rgba(15, 23, 42, 0.05), 0 18px 38px -28px rgba(184, 20, 20, 0.28);
  --jtd-v4-brand-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 54%, #e1251b 100%);
  --jtd-v4-blue-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 100%);
  --jtd-v5-ink: #0f172a;
  --jtd-v5-text: #475569;
  --jtd-v5-red: #e1251b;
  --jtd-v5-red-deep: #e1251b;
  --jtd-v5-red-gradient: linear-gradient(135deg, #e1251b 0%, #e1251b 54%, #e1251b 100%);
  --jtd-v5-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 32px -28px rgba(15, 23, 42, 0.32);
  --jtd-v5-shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.06), 0 22px 42px -32px rgba(184, 20, 20, 0.34);
}

html,
body {
  color: #0f172a !important;
  background: #ffffff !important;
}

.jtd-section {
  padding-top: 104px !important;
  padding-bottom: 104px !important;
}

.jtd-section--compact {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

main > .jtd-section:nth-of-type(even):not(.jtd-section--related),
.jtd-section--muted,
.jtd-ai-section,
.jtd-platform-section,
.jtd-trust-strip,
.jtd-product-strip {
  background: #f8fafc !important;
}

.jtd-section__header h2,
.jtd-page-hero h1,
.jtd-hero__content h1,
.jtd-card h2,
.jtd-card h3,
.jtd-product-paths h2,
.jtd-decision-row h2 {
  color: #0f172a !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
}

.jtd-section__header p:not(.jtd-eyebrow),
.jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
.jtd-hero__content > p:not(.jtd-eyebrow),
.jtd-card p,
.jtd-product-paths p,
.jtd-decision-row p,
.jtd-product-card p,
.jtd-product-card small {
  color: #475569 !important;
  line-height: 1.78 !important;
}

.jtd-eyebrow,
.jtd-tag,
.jtd-product-card__head .jtd-tag {
  border: 1px solid rgba(225, 37, 27, 0.16) !important;
  background: rgba(225, 37, 27, 0.055) !important;
  color: #e1251b !important;
  box-shadow: none !important;
}

.jtd-btn--primary,
.jtd-mobile-quickbar a:last-child,
.jtd-floating-demo {
  border: 0 !important;
  background: var(--jtd-v5-red-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px -18px rgba(184, 20, 20, 0.6) !important;
}

.jtd-btn--primary:hover,
.jtd-mobile-quickbar a:last-child:hover,
.jtd-floating-demo:hover {
  background: linear-gradient(135deg, #e1251b 0%, #e1251b 48%, #e1251b 100%) !important;
  box-shadow: 0 18px 34px -22px rgba(184, 20, 20, 0.66) !important;
}

.jtd-btn--secondary,
.jtd-btn--light {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #0f172a !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
  backdrop-filter: blur(12px);
}

.jtd-btn--secondary:hover,
.jtd-btn--light:hover,
.jtd-text-link:hover {
  color: #e1251b !important;
  border-color: rgba(225, 37, 27, 0.18) !important;
}

.jtd-text-link {
  color: #e1251b !important;
}

.jtd-hero,
.jtd-page-hero,
.single-jtd_product .jtd-page-hero,
.single-jtd_solution .jtd-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 23, 42, 0.045), transparent 31%),
    radial-gradient(circle at 18% 30%, rgba(225, 37, 27, 0.045), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-hero::before,
.jtd-hero::after,
.jtd-page-hero::before,
.jtd-page-hero::after {
  opacity: 0.14 !important;
  filter: grayscale(1) saturate(0.35);
}

.jtd-product-showcase__desktop,
.jtd-page-hero .jtd-product-showcase__desktop,
.jtd-solution-visual-card,
.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-trust-console,
.jtd-ecosystem-visual,
.jtd-vision-orbit {
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(248, 250, 252, 0.48)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(241, 245, 249, 0.56)) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset, 0 20px 54px -38px rgba(15, 23, 42, 0.38) !important;
  backdrop-filter: blur(18px) saturate(1.08);
}

.jtd-product-showcase__bar,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span,
.jtd-solution-visual-card__modules span,
.jtd-solution-visual-card__flow span,
.jtd-decision-panel span {
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #1e293b !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
  backdrop-filter: blur(10px);
}

.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-product-showcase__chart i,
.jtd-product-card__preview i,
.jtd-solution-visual-card__flow i {
  background: var(--jtd-v5-red-gradient) !important;
}

.jtd-product-showcase__chart i:nth-child(2),
.jtd-product-showcase__chart i:nth-child(3),
.jtd-product-showcase__rows i:nth-child(2n) {
  background: rgba(225, 37, 27, 0.18) !important;
}

.jtd-product-showcase__phone {
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  background: rgba(255, 255, 255, 0.68) !important;
  box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.32), inset 0 0 0 1px rgba(225, 37, 27, 0.08) !important;
  backdrop-filter: blur(16px);
}

.jtd-card,
.jtd-customer-card,
.jtd-product-card,
.jtd-solution-card,
.jtd-case-card,
.jtd-partner-card,
.jtd-trust-card,
.jtd-vision-card,
.jtd-service-card,
.jtd-news-card,
.jtd-qualification-card,
.jtd-decision-row article,
.jtd-product-paths article,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-process-card,
.jtd-value-card,
.jtd-line-card {
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: var(--jtd-v5-shadow) !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-card:hover,
.jtd-solution-card:hover,
.jtd-case-card:hover,
.jtd-partner-card:hover,
.jtd-trust-card:hover,
.jtd-vision-card:hover,
.jtd-service-card:hover,
.jtd-news-card:hover,
.jtd-qualification-card:hover,
.jtd-decision-row article:hover,
.jtd-product-paths article:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-line-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(225, 37, 27, 0.14) !important;
  box-shadow: var(--jtd-v5-shadow-hover) !important;
}

.jtd-product-card__preview,
#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.96)) !important;
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.055) !important;
}

.jtd-product-card__preview strong,
#products .jtd-product-card__preview strong,
body.post-type-archive-jtd_product .jtd-product-card__preview strong {
  color: #334155 !important;
}

.jtd-product-card__preview span,
#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.035) !important;
}

.jtd-path-icon,
.jtd-product-paths article > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-line-card__icon,
.jtd-ai-grid article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-customer-card__icon,
.jtd-ai-grid article:nth-child(3n + 2) > span:first-child,
.jtd-ai-grid article:nth-child(3n) > span:first-child,
.jtd-product-paths article:nth-child(3n + 2) .jtd-path-icon,
.jtd-product-paths article:nth-child(3n) .jtd-path-icon,
.jtd-decision-row article:nth-child(3n + 2) > span:first-child,
.jtd-decision-row article:nth-child(3n) > span:first-child {
  background: var(--jtd-v5-red-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px -18px rgba(184, 20, 20, 0.72) !important;
}

.jtd-split--cta,
.jtd-conversion-panel,
.jtd-lead-modal__head {
  background:
    radial-gradient(circle at 82% 8%, rgba(225, 37, 27, 0.045), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: var(--jtd-v5-shadow) !important;
}

.jtd-site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 38%),
    radial-gradient(circle at 72% 18%, rgba(225, 37, 27, 0.035), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0f172a !important;
  background-size: auto, auto, 48px 48px, 48px 48px, auto !important;
  color: rgba(255, 255, 255, 0.42) !important;
}

.jtd-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%, rgba(0, 0, 0, 0.16));
}

.jtd-site-footer .jtd-container {
  position: relative;
  z-index: 1;
}

.jtd-footer__top {
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: 0 18px 54px -34px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
  backdrop-filter: blur(16px);
}

.jtd-site-footer .jtd-eyebrow {
  border-color: rgba(225, 37, 27, 0.28) !important;
  background: rgba(225, 37, 27, 0.12) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.jtd-footer__top h2,
.jtd-footer__grid h2 {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 760 !important;
}

.jtd-footer__top p,
.jtd-footer__brand p,
.jtd-footer__grid p,
.jtd-footer__bottom {
  color: rgba(255, 255, 255, 0.42) !important;
}

.jtd-footer__grid a,
.jtd-footer__legal a,
.jtd-footer__contact a {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 180ms ease, transform 180ms ease;
}

.jtd-footer__grid a:hover,
.jtd-footer__legal a:hover,
.jtd-footer__contact a:hover {
  color: rgba(255, 255, 255, 0.94) !important;
}

.jtd-footer__trust span {
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(255, 255, 255, 0.58) !important;
  box-shadow: none !important;
}

.jtd-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.055) !important;
}

.jtd-site-footer .jtd-btn--light {
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: rgba(255, 255, 255, 0.86) !important;
  box-shadow: none !important;
}

.jtd-site-footer .jtd-btn--light:hover {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

@media (max-width: 980px) {
  .jtd-section {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }
}

@media (max-width: 760px) {
  .jtd-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .jtd-section--compact {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
}

/* JTD v5.6 footer CTA containment and alignment */
.jtd-site-footer .jtd-footer__top {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  min-height: 218px !important;
  padding: 46px 56px !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.046) !important;
  box-shadow: 0 18px 54px -34px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
  backdrop-filter: blur(16px);
}

.jtd-site-footer .jtd-footer__top::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  top: 20px !important;
  left: 24px !important;
  width: 178px !important;
  height: 178px !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.035), transparent 64%) !important;
  opacity: 0.72 !important;
  pointer-events: none !important;
}

.jtd-site-footer .jtd-footer__top::after {
  content: none !important;
  display: none !important;
}

.jtd-site-footer .jtd-footer__top-content,
.jtd-site-footer .jtd-footer__top-actions {
  position: relative !important;
  z-index: 1 !important;
}

.jtd-site-footer .jtd-footer__top-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.jtd-site-footer .jtd-footer__top > div.jtd-footer__top-content:first-child {
  align-self: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.jtd-site-footer .jtd-footer__top-content .jtd-eyebrow {
  margin: 0 0 14px !important;
}

.jtd-site-footer .jtd-footer__top-content h2 {
  width: 100% !important;
  max-width: 820px !important;
  margin: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

.jtd-site-footer .jtd-footer__top-content p:not(.jtd-eyebrow) {
  width: 100% !important;
  max-width: 680px !important;
  margin: 14px auto 0 !important;
  text-align: center !important;
}

.jtd-site-footer .jtd-footer__top-actions {
  margin: 0 !important;
  justify-content: center !important;
}

@media (max-width: 760px) {
  .jtd-site-footer .jtd-footer__top {
    min-height: auto !important;
    gap: 20px !important;
    padding: 34px 22px !important;
    border-radius: 20px !important;
  }

  .jtd-site-footer .jtd-footer__top::before {
    top: 18px !important;
    left: 18px !important;
    width: 120px !important;
    height: 120px !important;
  }
}

/* JTD v5.7 crystal glass card and icon system */
:root {
  --jtd-crystal-bg: rgba(255, 255, 255, 0.65);
  --jtd-crystal-bg-strong: rgba(255, 255, 255, 0.72);
  --jtd-crystal-border: rgba(255, 255, 255, 0.4);
  --jtd-crystal-border-soft: rgba(255, 255, 255, 0.28);
  --jtd-crystal-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --jtd-crystal-shadow-hover: 0 16px 46px rgba(31, 38, 135, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.jtd-card,
.jtd-card-grid > .jtd-card,
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n),
body.post-type-archive-jtd_product .jtd-product-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-roadmap article,
.jtd-product-paths article,
.jtd-decision-row article,
.jtd-security-main,
.jtd-trust-card,
.jtd-vision-card,
.jtd-service-card,
.jtd-qualification-card,
.jtd-line-card,
.jtd-solution-card,
.jtd-case-card,
.jtd-news-card,
.jtd-about-capability-card,
.jtd-partner-type-card,
.jtd-security-layers article,
.jtd-stat-grid article {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.65) !important;
  box-shadow: var(--jtd-crystal-shadow) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.jtd-card:hover,
.jtd-card-grid > .jtd-card:hover,
#products .jtd-product-card:hover,
#products .jtd-product-card:nth-child(4n + 1):hover,
#products .jtd-product-card:nth-child(4n + 2):hover,
#products .jtd-product-card:nth-child(4n + 3):hover,
#products .jtd-product-card:nth-child(4n):hover,
body.post-type-archive-jtd_product .jtd-product-card:hover,
.jtd-customer-card:hover,
.jtd-value-card:hover,
.jtd-process-card:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-roadmap article:hover,
.jtd-product-paths article:hover,
.jtd-decision-row article:hover,
.jtd-security-main:hover,
.jtd-trust-card:hover,
.jtd-vision-card:hover,
.jtd-service-card:hover,
.jtd-qualification-card:hover,
.jtd-line-card:hover,
.jtd-solution-card:hover,
.jtd-case-card:hover,
.jtd-news-card:hover,
.jtd-about-capability-card:hover,
.jtd-partner-type-card:hover,
.jtd-security-layers article:hover,
.jtd-stat-grid article:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.58) !important;
  box-shadow: var(--jtd-crystal-shadow-hover), 0 0 0 1px rgba(225, 37, 27, 0.045) !important;
}

.jtd-stat-panel,
#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview,
.jtd-product-showcase__desktop,
.jtd-product-showcase__phone,
.jtd-product-showcase__bar,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__modules span,
.jtd-resource-flow,
.jtd-future-board,
.jtd-ecosystem-map,
.jtd-trust-console,
.jtd-vision-orbit,
.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-solution-visual-card,
.jtd-security-visual {
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.65) !important;
  box-shadow: var(--jtd-crystal-shadow) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.jtd-product-showcase__bar,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span,
.jtd-product-card__preview span,
#products .jtd-product-card__preview span,
body.post-type-archive-jtd_product .jtd-product-card__preview span,
.jtd-tag,
.jtd-trust-strip__inner span,
.jtd-footer__trust span {
  border: 1px solid var(--jtd-crystal-border-soft) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 4px 20px rgba(31, 38, 135, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(10px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.08) !important;
}

.jtd-stat-grid article {
  min-height: 142px !important;
  padding: 24px 22px !important;
  background: rgba(255, 255, 255, 0.68) !important;
}

.jtd-stat-grid strong {
  color: #e1251b !important;
  text-shadow: 0 8px 28px rgba(225, 37, 27, 0.1);
}

.jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 1) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 2) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 3) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n) .jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 1) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 2) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 3) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n) .jtd-capability-card__icon,
.jtd-line-card__icon,
.jtd-path-icon,
.jtd-product-paths article:nth-child(3n + 2) .jtd-path-icon,
.jtd-product-paths article:nth-child(3n) .jtd-path-icon,
.jtd-partner-type-card__icon,
.jtd-process-card > span:first-child,
.jtd-ai-grid article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-product-paths article > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-decision-row article:nth-child(3n + 2) > span:first-child,
.jtd-decision-row article:nth-child(3n) > span:first-child {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(255, 255, 255, 0.52) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), transparent 46%) !important;
  color: #e1251b !important;
  box-shadow: 0 8px 28px rgba(31, 38, 135, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(10px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.1) !important;
}

.jtd-site-footer .jtd-footer__top,
.jtd-site-footer .jtd-footer__trust span {
  border-color: rgba(255, 255, 255, 0.15) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.08) !important;
}

body.home #products .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  background: rgba(255, 255, 255, 0.65) !important;
  background-color: rgba(255, 255, 255, 0.65) !important;
  background-image: none !important;
  box-shadow: var(--jtd-crystal-shadow) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.jtd-product-showcase .jtd-product-showcase__desktop,
.jtd-hero .jtd-product-showcase__desktop,
.jtd-page-hero .jtd-product-showcase__desktop,
.jtd-featured-product .jtd-product-showcase__desktop,
.jtd-product-showcase__phone,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows {
  background: rgba(255, 255, 255, 0.65) !important;
  background-color: rgba(255, 255, 255, 0.65) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: var(--jtd-crystal-shadow) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.jtd-product-showcase .jtd-product-showcase__desktop::before {
  opacity: 0.08 !important;
}

body.home .jtd-capability-card,
body.home .jtd-process-card,
body.home .jtd-ai-grid article,
body.home .jtd-platform-principles article,
body.home .jtd-roadmap article,
body.home .jtd-customer-card,
body.home .jtd-value-card,
body.home .jtd-stat-grid article {
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.65) !important;
  background-color: rgba(255, 255, 255, 0.65) !important;
  background-image: none !important;
  box-shadow: var(--jtd-crystal-shadow) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

@media (max-width: 760px) {
  .jtd-card,
  .jtd-card-grid > .jtd-card,
  #products .jtd-product-card,
  #products .jtd-product-card:nth-child(4n + 1),
  #products .jtd-product-card:nth-child(4n + 2),
  #products .jtd-product-card:nth-child(4n + 3),
  #products .jtd-product-card:nth-child(4n),
  .jtd-customer-card,
  .jtd-value-card,
  .jtd-process-card,
  .jtd-ai-grid article,
  .jtd-platform-principles article,
  .jtd-product-paths article,
  .jtd-decision-row article,
  .jtd-stat-grid article {
    backdrop-filter: blur(10px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.06) !important;
  }
}

/* JTD v5.8 hard crystal override: stronger glass cards and luminous icon bases */
:root {
  --jtd-hard-glass-bg: rgba(255, 255, 255, 0.75);
  --jtd-hard-glass-bg-hover: rgba(255, 255, 255, 0.9);
  --jtd-hard-glass-border: rgba(255, 255, 255, 0.6);
  --jtd-hard-glass-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 1px 0 rgba(0, 0, 0, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  --jtd-hard-glass-shadow-hover: 0 20px 40px -15px rgba(225, 37, 27, 0.08), 0 1px 2px rgba(15, 23, 42, 0.025), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.jtd-main {
  background:
    radial-gradient(circle at 12% 8%, rgba(225, 37, 27, 0.035), transparent 26rem),
    radial-gradient(circle at 86% 28%, rgba(30, 64, 175, 0.035), transparent 30rem),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 22%, #f5f8fc 100%) !important;
}

.jtd-main .jtd-section--muted,
.jtd-main .jtd-featured-product,
.jtd-main .jtd-resource-section,
.jtd-main .jtd-section:has(.jtd-card-grid),
.jtd-main .jtd-section:has(.jtd-process-row),
.jtd-main .jtd-section:has(.jtd-stat-panel),
.jtd-main .jtd-section:has(.jtd-product-paths),
.jtd-main .jtd-section:has(.jtd-decision-row) {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 18rem),
    radial-gradient(circle at 86% 10%, rgba(225, 37, 27, 0.028), transparent 22rem),
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.82)) !important;
}

.jtd-primary-nav__item .jtd-mega-menu,
.jtd-product-showcase,
.jtd-stat-panel,
.jtd-resource-flow,
.jtd-future-board,
.jtd-ecosystem-map,
.jtd-trust-console,
.jtd-vision-orbit,
.jtd-decision-panel,
.jtd-case-proof-panel,
.jtd-solution-visual-card,
.jtd-security-visual,
[class*="card"]:not([class*="grid"]):not([class*="__body"]):not([class*="__head"]):not([class*="__media"]):not([class*="__meta"]):not([class*="__points"]):not([class*="__preview"]):not([class*="__icon"]),
main [class*="item"]:not(.jtd-primary-nav__item):not(.menu-item):not(.jtd-language-switcher__item):not(.jtd-primary-nav__language) {
  background: rgba(255, 255, 255, 0.75) !important;
  background-color: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(16px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: var(--jtd-hard-glass-shadow) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.jtd-product-showcase__desktop,
.jtd-product-showcase__phone,
.jtd-product-showcase__bar,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__kpis span,
.jtd-product-showcase__modules span,
#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  background: rgba(255, 255, 255, 0.75) !important;
  background-color: rgba(255, 255, 255, 0.75) !important;
  background-image: none !important;
  backdrop-filter: blur(16px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: var(--jtd-hard-glass-shadow) !important;
}

/* JTD v6.1 Feishu-style qualification endorsement cards */
.jtd-trust-strip {
  border-top: 1px solid rgba(226, 232, 240, 0.82) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82) !important;
  background: #ffffff !important;
}

.jtd-trust-strip__inner {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 0 !important;
  padding: 0 !important;
  border-left: 1px solid rgba(241, 245, 249, 0.96) !important;
  border-right: 1px solid rgba(241, 245, 249, 0.96) !important;
}

.jtd-trust-strip .jtd-trust-badge-card {
  --jtd-trust-tone: #2563eb;
  --jtd-trust-soft: rgba(37, 99, 235, 0.08);
  position: relative !important;
  display: flex !important;
  min-height: 106px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 23px 22px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-right: 1px solid rgba(241, 245, 249, 0.96) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  background-image: none !important;
  color: #1e293b !important;
  text-decoration: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease !important;
}

.jtd-trust-strip .jtd-trust-badge-card:last-child {
  border-right: 0 !important;
}

.jtd-trust-strip .jtd-trust-badge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 0%, var(--jtd-trust-soft), transparent 42%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.5), #ffffff 78%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.jtd-trust-strip .jtd-trust-badge-card span {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: left !important;
}

.jtd-trust-strip .jtd-trust-badge-card--blue {
  --jtd-trust-tone: #2563eb;
  --jtd-trust-soft: rgba(37, 99, 235, 0.12);
}

.jtd-trust-strip .jtd-trust-badge-card--emerald {
  --jtd-trust-tone: #059669;
  --jtd-trust-soft: rgba(5, 150, 105, 0.11);
}

.jtd-trust-strip .jtd-trust-badge-card--indigo {
  --jtd-trust-tone: #4f46e5;
  --jtd-trust-soft: rgba(79, 70, 229, 0.12);
}

.jtd-trust-strip .jtd-trust-badge-card--amber {
  --jtd-trust-tone: #d97706;
  --jtd-trust-soft: rgba(217, 119, 6, 0.12);
}

.jtd-trust-strip .jtd-trust-badge-card--purple {
  --jtd-trust-tone: #7c3aed;
  --jtd-trust-soft: rgba(124, 58, 237, 0.12);
}

.jtd-trust-strip .jtd-trust-badge-card__title,
.jtd-trust-strip .jtd-trust-badge-card__desc {
  position: relative;
  z-index: 1;
}

.jtd-trust-strip .jtd-trust-badge-card__title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #1e293b !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.jtd-trust-strip .jtd-trust-badge-card__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  color: var(--jtd-trust-tone) !important;
}

.jtd-trust-strip .jtd-trust-badge-card__icon svg {
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  fill: none !important;
  filter: none !important;
}

.jtd-trust-strip .jtd-trust-badge-card__desc {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

.jtd-trust-strip .jtd-trust-badge-card__arrow {
  flex: 0 0 auto !important;
  color: #cbd5e1 !important;
  transform: translateX(0) !important;
  transition: color 220ms ease, transform 220ms ease !important;
}

.jtd-trust-strip .jtd-trust-badge-card:hover,
.jtd-trust-strip .jtd-trust-badge-card:focus-visible {
  background: #ffffff !important;
  border-color: rgba(241, 245, 249, 0.96) !important;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08), inset 0 18px 42px var(--jtd-trust-soft) !important;
  outline: none !important;
  transform: none !important;
}

.jtd-trust-strip .jtd-trust-badge-card:hover::before,
.jtd-trust-strip .jtd-trust-badge-card:focus-visible::before {
  opacity: 1;
}

.jtd-trust-strip .jtd-trust-badge-card:hover .jtd-trust-badge-card__arrow,
.jtd-trust-strip .jtd-trust-badge-card:focus-visible .jtd-trust-badge-card__arrow {
  color: var(--jtd-trust-tone) !important;
  transform: translateX(4px) !important;
}

@media (max-width: 1180px) {
  .jtd-trust-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .jtd-trust-strip .jtd-trust-badge-card:nth-child(3n) {
    border-right: 0 !important;
  }

  .jtd-trust-strip .jtd-trust-badge-card:nth-child(n + 4) {
    border-top: 1px solid rgba(241, 245, 249, 0.96) !important;
  }
}

@media (max-width: 760px) {
  .jtd-trust-strip__inner {
    grid-template-columns: 1fr !important;
  }

  .jtd-trust-strip .jtd-trust-badge-card {
    min-height: 92px !important;
    padding: 20px 18px !important;
    border-right: 0 !important;
    border-top: 1px solid rgba(241, 245, 249, 0.96) !important;
  }

  .jtd-trust-strip .jtd-trust-badge-card:first-child {
    border-top: 0 !important;
  }
}

/* JTD v6.0 brand red lock: main red and buttons must stay #e1251b */
:root {
  --jtd-red: #e1251b !important;
  --jtd-red-dark: #e1251b !important;
  --jtd-red-soft: rgba(225, 37, 27, 0.08) !important;
  --jtd-v4-red: #e1251b !important;
  --jtd-v4-red-2: #e1251b !important;
  --jtd-v5-red: #e1251b !important;
  --jtd-v5-red-deep: #e1251b !important;
  --jtd-final-red: #e1251b !important;
}

.jtd-btn--primary,
.jtd-btn--primary:hover,
.jtd-btn--primary:focus-visible,
.jtd-site-footer .jtd-footer__top .jtd-btn--primary,
.jtd-site-footer .jtd-footer__top .jtd-btn--primary:hover,
.jtd-site-footer .jtd-footer__top .jtd-btn--primary:focus-visible,
.jtd-floating-demo,
.jtd-mobile-quickbar a:last-child {
  background: #e1251b !important;
  background-color: #e1251b !important;
  background-image: none !important;
  border-color: #e1251b !important;
  color: #ffffff !important;
}

.jtd-text-link,
.jtd-product-card .jtd-text-link,
#products .jtd-product-card .jtd-text-link,
body.post-type-archive-jtd_product .jtd-product-card .jtd-text-link {
  color: #e1251b !important;
}

/* JTD v5.9 footer CTA reset: minimal dark tech surface and micro trust tags */
.jtd-site-footer {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 37, 27, 0.08), transparent 34rem),
    radial-gradient(circle at 12% 26%, rgba(51, 112, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #0b132b 0%, #0a0e1a 100%) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.jtd-site-footer::before {
  opacity: 0.16 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
}

.jtd-site-footer .jtd-footer__top {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  min-height: auto !important;
  margin: 0 auto !important;
  padding: 44px 48px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.jtd-site-footer .jtd-footer__top::before,
.jtd-site-footer .jtd-footer__top::after {
  display: none !important;
  content: none !important;
}

.jtd-site-footer .jtd-footer__top-content {
  max-width: 680px !important;
  margin: 0 !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.jtd-site-footer .jtd-footer__top-content h2,
.jtd-site-footer .jtd-footer__top h2 {
  max-width: 680px !important;
  margin: 0 !important;
  color: #ffffff !important;
  text-align: left !important;
}

.jtd-site-footer .jtd-footer__top-content p:not(.jtd-eyebrow),
.jtd-site-footer .jtd-footer__top p {
  max-width: 620px !important;
  color: rgba(203, 213, 225, 0.78) !important;
  text-align: left !important;
}

.jtd-site-footer .jtd-footer__top-actions {
  margin: 0 !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
}

.jtd-site-footer .jtd-footer__top .jtd-btn--primary {
  border-color: #e1251b !important;
  background: #e1251b !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(225, 37, 27, 0.2) !important;
}

.jtd-site-footer .jtd-footer__top .jtd-btn--primary:hover,
.jtd-site-footer .jtd-footer__top .jtd-btn--primary:focus-visible {
  background: #e1251b !important;
  border-color: #e1251b !important;
  box-shadow: 0 18px 34px rgba(225, 37, 27, 0.26) !important;
}

.jtd-site-footer .jtd-footer__top .jtd-btn--light {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
}

.jtd-site-footer .jtd-footer__top .jtd-btn--light:hover,
.jtd-site-footer .jtd-footer__top .jtd-btn--light:focus-visible {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #ffffff !important;
}

.jtd-site-footer .jtd-footer__trust {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px 14px !important;
  margin: 18px auto 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.jtd-site-footer .jtd-footer__trust span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(148, 163, 184, 0.94) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.jtd-site-footer .jtd-footer__trust span::before {
  content: "" !important;
  width: 4px !important;
  height: 4px !important;
  flex: 0 0 4px !important;
  border-radius: 999px !important;
  background: #e1251b !important;
  box-shadow: 0 0 8px #e1251b !important;
}

@media (max-width: 760px) {
  .jtd-site-footer .jtd-footer__top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
    padding: 34px 24px !important;
    border-radius: 20px !important;
  }

  .jtd-site-footer .jtd-footer__top-actions {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}

.jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 1) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 2) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n + 3) .jtd-customer-card__icon,
.jtd-customer-card:nth-child(4n) .jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 1) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 2) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n + 3) .jtd-capability-card__icon,
.jtd-capability-card:nth-child(4n) .jtd-capability-card__icon,
.jtd-partner-type-card__icon,
.jtd-line-card__icon,
.jtd-path-icon,
.jtd-product-paths article:nth-child(3n + 2) .jtd-path-icon,
.jtd-product-paths article:nth-child(3n) .jtd-path-icon,
.jtd-process-card > span:first-child,
.jtd-ai-grid article > span:first-child,
.jtd-ai-grid article:nth-child(3n + 2) > span:first-child,
.jtd-ai-grid article:nth-child(3n) > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-product-paths article > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-decision-row article:nth-child(3n + 2) > span:first-child,
.jtd-decision-row article:nth-child(3n) > span:first-child,
.jtd-floating-demo__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(225, 37, 27, 0.15) !important;
  background:
    radial-gradient(circle at 68% 32%, rgba(225, 37, 27, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 245, 247, 0.5)) !important;
  color: #e1251b !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  backdrop-filter: blur(10px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.08) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

[class*="card"]:not([class*="grid"]):not([class*="__body"]):not([class*="__head"]):not([class*="__media"]):not([class*="__meta"]):not([class*="__points"]):not([class*="__preview"]):not([class*="__icon"]):hover,
main [class*="item"]:not(.jtd-primary-nav__item):not(.menu-item):not(.jtd-language-switcher__item):not(.jtd-primary-nav__language):hover,
.jtd-primary-nav__item .jtd-mega-menu:hover,
.jtd-product-showcase:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(225, 37, 27, 0.2) !important;
  box-shadow: var(--jtd-hard-glass-shadow-hover) !important;
}

[class*="icon-container"],
.jtd-mega-menu a span::before,
.jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-partner-type-card__icon,
.jtd-line-card__icon,
.jtd-path-icon,
.jtd-process-card > span:first-child,
.jtd-ai-grid article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-product-paths article > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-floating-demo__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(225, 37, 27, 0.15) !important;
  background:
    radial-gradient(circle at 68% 32%, rgba(225, 37, 27, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 245, 247, 0.5)) !important;
  color: #e1251b !important;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.jtd-primary-nav__item .jtd-mega-menu {
  background: rgba(255, 255, 255, 0.92) !important;
  background-color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(18px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.12) !important;
  overflow: hidden !important;
  z-index: 1000 !important;
}

.jtd-mega-menu a span::before {
  content: "" !important;
  flex: 0 0 40px !important;
  margin-right: 10px !important;
  background:
    radial-gradient(circle at 58% 38%, rgba(225, 37, 27, 0.85) 0 4px, transparent 4.5px),
    linear-gradient(135deg, rgba(225, 37, 27, 0.08), rgba(255, 255, 255, 0.75)) !important;
}

.jtd-mega-menu a span {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

[class*="icon-container"] svg,
.jtd-customer-card__icon svg,
.jtd-capability-card__icon svg,
.jtd-partner-type-card__icon svg,
.jtd-line-card__icon svg,
.jtd-path-icon svg {
  stroke: currentColor !important;
  fill: none !important;
  filter: drop-shadow(0 3px 6px rgba(225, 37, 27, 0.16)) !important;
}

@media (max-width: 760px) {
  .jtd-primary-nav__item .jtd-mega-menu,
  .jtd-product-showcase,
  .jtd-stat-panel,
  .jtd-resource-flow,
  [class*="card"]:not([class*="grid"]):not([class*="__body"]):not([class*="__head"]):not([class*="__media"]):not([class*="__meta"]):not([class*="__points"]):not([class*="__preview"]):not([class*="__icon"]),
  main [class*="item"]:not(.jtd-primary-nav__item):not(.menu-item):not(.jtd-language-switcher__item):not(.jtd-primary-nav__language) {
    backdrop-filter: blur(12px) saturate(1.08) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
  }
}

/* JTD v5.8 specificity locks for legacy nth-child product/card rules */
body.home #products .jtd-product-card,
body.home #products .jtd-product-card:nth-child(4n + 1),
body.home #products .jtd-product-card:nth-child(4n + 2),
body.home #products .jtd-product-card:nth-child(4n + 3),
body.home #products .jtd-product-card:nth-child(4n),
#products .jtd-product-card,
#products .jtd-product-card:nth-child(4n + 1),
#products .jtd-product-card:nth-child(4n + 2),
#products .jtd-product-card:nth-child(4n + 3),
#products .jtd-product-card:nth-child(4n),
body.post-type-archive-jtd_product .jtd-product-card {
  background: rgba(255, 255, 255, 0.75) !important;
  background-color: rgba(255, 255, 255, 0.75) !important;
  background-image: none !important;
  backdrop-filter: blur(16px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: var(--jtd-hard-glass-shadow) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.home #products .jtd-product-card:hover,
body.home #products .jtd-product-card:nth-child(4n + 1):hover,
body.home #products .jtd-product-card:nth-child(4n + 2):hover,
body.home #products .jtd-product-card:nth-child(4n + 3):hover,
body.home #products .jtd-product-card:nth-child(4n):hover,
#products .jtd-product-card:hover,
#products .jtd-product-card:nth-child(4n + 1):hover,
#products .jtd-product-card:nth-child(4n + 2):hover,
#products .jtd-product-card:nth-child(4n + 3):hover,
#products .jtd-product-card:nth-child(4n):hover,
body.post-type-archive-jtd_product .jtd-product-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(225, 37, 27, 0.2) !important;
  box-shadow: var(--jtd-hard-glass-shadow-hover) !important;
}

body.home #products .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
#products .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
#products .jtd-product-card:nth-child(4n) .jtd-product-card__preview,
body.post-type-archive-jtd_product .jtd-product-card__preview {
  background: rgba(255, 255, 255, 0.75) !important;
  background-color: rgba(255, 255, 255, 0.75) !important;
  background-image: none !important;
  backdrop-filter: blur(16px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: var(--jtd-hard-glass-shadow) !important;
}

/* JTD v6.3 final lock: trust strip and h2 size */
body.home .jtd-trust-strip .jtd-trust-badge-card,
body.home .jtd-trust-strip .jtd-trust-badge-card:hover,
body.home .jtd-trust-strip .jtd-trust-badge-card:focus-visible {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 1px solid rgba(241, 245, 249, 0.96) !important;
  border-radius: 0 !important;
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card {
  background-image: none !important;
  box-shadow: none !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card:last-child {
  border-right: 0 !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card:hover,
body.home .jtd-trust-strip .jtd-trust-badge-card:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08), inset 0 18px 42px var(--jtd-trust-soft) !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card span,
body.home .jtd-trust-strip .jtd-trust-badge-card span:hover {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: left !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card__title {
  display: flex !important;
  align-items: center !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card__desc {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card__arrow {
  transform: translateX(0) !important;
}

body.home .jtd-trust-strip .jtd-trust-badge-card:hover .jtd-trust-badge-card__arrow,
body.home .jtd-trust-strip .jtd-trust-badge-card:focus-visible .jtd-trust-badge-card__arrow {
  color: var(--jtd-trust-tone) !important;
  transform: translateX(4px) !important;
}

/* JTD v6.4 high-specificity lock for the Feishu-style trust strip */
html body.home main#main.jtd-main section.jtd-trust-strip > .jtd-container.jtd-trust-strip__inner > a.jtd-trust-badge-card {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 1px solid rgba(241, 245, 249, 0.96) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

html body.home main#main.jtd-main section.jtd-trust-strip > .jtd-container.jtd-trust-strip__inner > a.jtd-trust-badge-card:last-child {
  border-right: 0 !important;
}

html body.home main#main.jtd-main section.jtd-trust-strip > .jtd-container.jtd-trust-strip__inner > a.jtd-trust-badge-card:hover,
html body.home main#main.jtd-main section.jtd-trust-strip > .jtd-container.jtd-trust-strip__inner > a.jtd-trust-badge-card:focus-visible {
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08), inset 0 18px 42px var(--jtd-trust-soft) !important;
  transform: none !important;
}

html body.home main#main.jtd-main section.jtd-trust-strip .jtd-trust-badge-card span {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: left !important;
}

html body.home main#main.jtd-main section.jtd-trust-strip .jtd-trust-badge-card .jtd-trust-badge-card__arrow {
  transform: translateX(0) !important;
}

html body.home main#main.jtd-main section.jtd-trust-strip .jtd-trust-badge-card:hover .jtd-trust-badge-card__arrow,
html body.home main#main.jtd-main section.jtd-trust-strip .jtd-trust-badge-card:focus-visible .jtd-trust-badge-card__arrow {
  color: var(--jtd-trust-tone) !important;
  transform: translateX(4px) !important;
}

/* JTD v6.5 enterprise typography system: ONES/Feishu-style scale */
:root {
  --jtd-type-ink: #0f172a;
  --jtd-type-body: #4b5563;
  --jtd-type-caption: #94a3b8;
}

body {
  color: var(--jtd-type-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
  letter-spacing: 0 !important;
}

.jtd-hero__content h1,
.jtd-hero-title--split,
.jtd-hero-title--normal,
.jtd-page-hero h1 {
  margin: 0 !important;
  color: var(--jtd-type-ink) !important;
  font-size: clamp(32px, 3.8vw, 48px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

.jtd-hero__content h1 span {
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.jtd-page-hero h1 {
  font-size: clamp(32px, 3.6vw, 46px) !important;
}

.jtd-section__header h2,
.jtd-site-footer .jtd-footer__top h2,
.jtd-conversion-panel h2,
.jtd-richtext h2 {
  margin: 0 !important;
  color: var(--jtd-type-ink) !important;
  font-size: clamp(24px, 2.4vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

.jtd-site-footer .jtd-footer__top h2 {
  color: #ffffff !important;
}

.jtd-card h3,
.jtd-product-card h3,
.jtd-customer-card h3,
.jtd-capability-card h3,
.jtd-line-card h3,
.jtd-operating-board article > h3,
.jtd-ai-grid h3,
.jtd-platform-principles h3,
.jtd-process-card h3,
.jtd-roadmap h3,
.jtd-security-main h3,
.jtd-future-board h3,
.jtd-richtext h3 {
  margin: 0 !important;
  color: var(--jtd-type-ink) !important;
  font-size: clamp(22px, 1.7vw, 24px) !important;
  font-weight: 600 !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
}

.jtd-hero__content > p:not(.jtd-eyebrow),
.jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
.jtd-section__header p:not(.jtd-eyebrow),
.jtd-card p,
.jtd-product-card p,
.jtd-customer-card p,
.jtd-capability-card p,
.jtd-line-card p,
.jtd-operating-board p,
.jtd-ai-grid p,
.jtd-platform-principles p,
.jtd-process-card p,
.jtd-roadmap p,
.jtd-richtext p,
.jtd-conversion-panel p {
  color: var(--jtd-type-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
  letter-spacing: 0 !important;
}

.jtd-hero__content h1 + p,
.jtd-page-hero h1 + p,
.jtd-section__header h2 + p,
.jtd-card h3 + p,
.jtd-product-card h3 + p,
.jtd-customer-card h3 + p,
.jtd-line-card h3 + p {
  margin-top: 10px !important;
}

.jtd-eyebrow,
.jtd-tag,
.jtd-breadcrumb,
.jtd-product-card__meta,
.jtd-card small,
.jtd-trust-badge-card__desc,
.jtd-footer__bottom,
.jtd-site-footer a,
.jtd-primary-nav a,
.jtd-mega-menu span {
  font-size: 14px !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

.jtd-trust-badge-card__desc,
.jtd-footer__bottom,
.jtd-card small {
  color: var(--jtd-type-caption) !important;
  font-weight: 400 !important;
}

.jtd-section {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.jtd-section--compact {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.jtd-section__header {
  margin-bottom: 40px !important;
}

@media (max-width: 760px) {
  .jtd-hero__content h1,
  .jtd-hero-title--split,
  .jtd-hero-title--normal,
  .jtd-page-hero h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  .jtd-section__header h2,
  .jtd-site-footer .jtd-footer__top h2,
  .jtd-conversion-panel h2,
  .jtd-richtext h2 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  .jtd-card h3,
  .jtd-product-card h3,
  .jtd-customer-card h3,
  .jtd-capability-card h3,
  .jtd-line-card h3,
  .jtd-operating-board article > h3,
  .jtd-ai-grid h3,
  .jtd-platform-principles h3,
  .jtd-process-card h3,
  .jtd-roadmap h3,
  .jtd-security-main h3,
  .jtd-future-board h3,
  .jtd-richtext h3 {
    font-size: 18px !important;
    line-height: 1.35 !important;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow),
  .jtd-page-hero p:not(.jtd-eyebrow):not(.jtd-breadcrumb *),
  .jtd-section__header p:not(.jtd-eyebrow),
  .jtd-card p,
  .jtd-product-card p,
  .jtd-customer-card p,
  .jtd-capability-card p,
  .jtd-line-card p,
  .jtd-operating-board p,
  .jtd-ai-grid p,
  .jtd-platform-principles p,
  .jtd-process-card p,
  .jtd-roadmap p,
  .jtd-richtext p,
  .jtd-conversion-panel p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  .jtd-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .jtd-section--compact {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .jtd-section__header {
    margin-bottom: 28px !important;
  }
}

html body main#main #products .jtd-product-card h3,
html body main#main #products .jtd-product-card h3 a {
  color: var(--jtd-type-ink) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
}

html body main#main #products .jtd-product-card p {
  color: var(--jtd-type-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
}

@media (max-width: 760px) {
  html body main#main #products .jtd-product-card h3,
  html body main#main #products .jtd-product-card h3 a {
    font-size: 18px !important;
    line-height: 1.35 !important;
  }

  html body main#main #products .jtd-product-card p {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }
}

/* JTD v6: enterprise SaaS visual unification */
:root {
  --jtd-red: #e1251b;
  --jtd-v6-ink: #111827;
  --jtd-v6-text: #4b5563;
  --jtd-v6-muted: #7b8494;
  --jtd-v6-soft: #f6f8fb;
  --jtd-v6-soft-2: #f9fbfd;
  --jtd-v6-line: rgba(17, 24, 39, 0.08);
  --jtd-v6-line-strong: rgba(17, 24, 39, 0.12);
  --jtd-v6-red-soft: rgba(225, 37, 27, 0.075);
  --jtd-v6-radius: 18px;
  --jtd-v6-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 18px 44px -34px rgba(17, 24, 39, 0.34);
  --jtd-v6-shadow-hover: 0 6px 16px rgba(17, 24, 39, 0.06), 0 26px 54px -38px rgba(17, 24, 39, 0.38);
  --jtd-v6-red-shadow: 0 12px 28px -20px rgba(225, 37, 27, 0.72);
  --jtd-container: 1188px;
}

html body {
  background: #ffffff !important;
  color: var(--jtd-v6-ink) !important;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0 !important;
  -webkit-font-smoothing: antialiased;
}

.jtd-container {
  width: min(100% - 48px, var(--jtd-container)) !important;
}

.jtd-main {
  background: #ffffff !important;
}

.jtd-site-header {
  background: rgba(255, 255, 255, 0.86) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78) !important;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.035) !important;
  backdrop-filter: blur(22px) saturate(1.12) !important;
}

.jtd-header__inner {
  min-height: 68px !important;
  gap: 24px !important;
}

.jtd-primary-nav__list {
  gap: 18px !important;
}

.jtd-primary-nav__item > a,
.jtd-nav-row > a {
  min-height: 68px !important;
  color: #1f2937 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
}

.jtd-header__phone {
  color: #374151 !important;
  font-weight: 650 !important;
}

.jtd-language-switcher {
  border-color: rgba(17, 24, 39, 0.08) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04) !important;
}

.jtd-language-switcher a[aria-current="page"],
.jtd-language-switcher a:hover {
  background: var(--jtd-red) !important;
  color: #ffffff !important;
}

.jtd-mega-menu {
  top: 68px !important;
  padding: 20px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 0 0 18px 18px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 24px 72px rgba(17, 24, 39, 0.14) !important;
  backdrop-filter: blur(22px) saturate(1.08) !important;
}

.jtd-mega-menu h3 {
  margin-bottom: 12px !important;
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.jtd-mega-menu a {
  padding: 11px 12px !important;
  border-radius: 12px !important;
  font-weight: 650 !important;
}

.jtd-mega-menu a:hover {
  background: #f8fafc !important;
  color: var(--jtd-red) !important;
}

.jtd-mega-menu span {
  color: #6b7280 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.jtd-mega-menu__cta {
  border: 1px solid rgba(225, 37, 27, 0.12) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 88% 8%, rgba(225, 37, 27, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff8f7 100%) !important;
  color: var(--jtd-v6-ink) !important;
  box-shadow: 0 14px 36px -30px rgba(225, 37, 27, 0.32) !important;
}

.jtd-mega-menu__cta strong {
  color: var(--jtd-v6-ink) !important;
}

.jtd-mega-menu__cta p {
  color: var(--jtd-v6-text) !important;
}

.jtd-btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease !important;
}

.jtd-btn:hover,
.jtd-btn:focus-visible {
  transform: translateY(-1px) !important;
}

.jtd-btn--primary,
.jtd-floating-demo,
.jtd-mobile-quickbar a:last-child {
  background: #e1251b !important;
  color: #ffffff !important;
  box-shadow: var(--jtd-v6-red-shadow) !important;
}

.jtd-btn--primary:hover,
.jtd-floating-demo:hover,
.jtd-mobile-quickbar a:last-child:hover {
  background: #e1251b !important;
  box-shadow: 0 16px 34px -22px rgba(225, 37, 27, 0.78) !important;
}

.jtd-btn--secondary,
.jtd-btn--light {
  border: 1px solid rgba(17, 24, 39, 0.1) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #111827 !important;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.035) !important;
}

.jtd-btn--secondary:hover,
.jtd-btn--light:hover {
  border-color: rgba(225, 37, 27, 0.22) !important;
  color: var(--jtd-red) !important;
}

.jtd-hero {
  min-height: 650px !important;
  padding: 76px 0 42px !important;
  background:
    radial-gradient(circle at 72% 18%, rgba(225, 37, 27, 0.06), transparent 28%),
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.035), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-hero::before {
  opacity: 0.5 !important;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.11) 1px, transparent 1px) !important;
  background-size: 84px 84px !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 82%, transparent 100%) !important;
}

.jtd-hero__slides {
  min-height: 500px !important;
}

.jtd-hero__slide {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr) !important;
  gap: 60px !important;
}

.jtd-hero__content h1 {
  max-width: 640px !important;
  color: #0f172a !important;
  font-size: clamp(40px, 4vw, 52px) !important;
  font-weight: 760 !important;
  line-height: 1.16 !important;
}

.jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 590px !important;
  margin-top: 18px !important;
  color: var(--jtd-v6-text) !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.jtd-hero .jtd-actions {
  margin-top: 28px !important;
}

.jtd-hero__proof {
  margin-top: 22px !important;
}

.jtd-hero__proof span,
.jtd-product-hero__proof span {
  min-height: 28px !important;
  border-color: rgba(17, 24, 39, 0.08) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #64748b !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}

.jtd-eyebrow,
.jtd-tag {
  min-height: 26px !important;
  padding: 0 10px !important;
  border: 1px solid rgba(225, 37, 27, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(225, 37, 27, 0.06) !important;
  color: var(--jtd-red) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.jtd-hero__visual {
  justify-content: center !important;
}

.jtd-hero__signal {
  left: 8px !important;
  top: 34px !important;
}

.jtd-hero__signal span {
  min-width: 56px !important;
  min-height: 30px !important;
  border-color: rgba(17, 24, 39, 0.08) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: #334155 !important;
  box-shadow: 0 10px 22px -18px rgba(17, 24, 39, 0.32) !important;
  font-size: 12px !important;
}

.jtd-product-showcase {
  width: min(100%, 570px) !important;
}

.jtd-product-showcase__desktop,
.jtd-hero .jtd-product-showcase__desktop,
.jtd-featured-product .jtd-product-showcase__desktop,
.jtd-page-hero .jtd-product-showcase__desktop {
  min-height: 440px !important;
  padding: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 250, 252, 0.72) 100%) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 30px 80px -44px rgba(17, 24, 39, 0.46) !important;
  backdrop-filter: blur(20px) saturate(1.06) !important;
}

.jtd-product-showcase__desktop::before,
.jtd-product-showcase__head::before {
  display: none !important;
  content: none !important;
}

.jtd-product-showcase__bar {
  height: 36px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(17, 24, 39, 0.07) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04) !important;
}

.jtd-product-showcase__bar b,
.jtd-product-showcase__bar em,
.jtd-product-showcase__bar small {
  color: #334155 !important;
}

.jtd-product-showcase__head {
  padding: 22px 4px 16px !important;
}

.jtd-product-showcase__head span {
  color: var(--jtd-red) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.jtd-product-showcase__head strong {
  max-width: 380px !important;
  color: #111827 !important;
  font-size: 28px !important;
  font-weight: 760 !important;
  line-height: 1.22 !important;
}

.jtd-product-showcase__kpis,
.jtd-product-showcase__body,
.jtd-product-showcase__modules {
  gap: 10px !important;
}

.jtd-product-showcase__kpis span,
.jtd-product-showcase__chart,
.jtd-product-showcase__rows,
.jtd-product-showcase__modules span,
.jtd-resource-flow span,
.jtd-ecosystem-map__node {
  border: 1px solid rgba(17, 24, 39, 0.07) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #334155 !important;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.035) !important;
}

.jtd-product-showcase__kpis b,
.jtd-product-showcase__rows b,
.jtd-product-showcase__modules span {
  color: #334155 !important;
  font-weight: 650 !important;
}

.jtd-product-showcase__kpis i,
.jtd-product-showcase__rows i,
.jtd-product-showcase__chart i {
  background: var(--jtd-red) !important;
}

.jtd-product-showcase__chart i:nth-child(2),
.jtd-product-showcase__chart i:nth-child(3),
.jtd-product-showcase__chart i:nth-child(4),
.jtd-product-showcase__rows i:nth-child(2n) {
  background: rgba(225, 37, 27, 0.18) !important;
}

.jtd-product-showcase__phone {
  right: -12px !important;
  bottom: -16px !important;
  border: 1px solid rgba(17, 24, 39, 0.07) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 24px 54px -36px rgba(17, 24, 39, 0.46) !important;
}

.jtd-section {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
  background: #ffffff !important;
}

.jtd-section--muted,
.jtd-stat-section,
.jtd-ai-section,
.jtd-platform-section,
.jtd-section--audience {
  background: var(--jtd-v6-soft) !important;
}

.jtd-future-section,
.jtd-resource-section,
.jtd-featured-product {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-section__header {
  max-width: 880px !important;
  margin-bottom: 44px !important;
}

.jtd-section__header h2,
.jtd-future-section h2,
.jtd-operating-copy h2,
.jtd-featured-product h2,
.jtd-resource-section h2 {
  color: #111827 !important;
  font-size: clamp(28px, 2.5vw, 36px) !important;
  font-weight: 720 !important;
  line-height: 1.26 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.jtd-section__header p:not(.jtd-eyebrow),
.jtd-future-section .jtd-split > div:first-child > p:not(.jtd-eyebrow),
.jtd-operating-copy p:not(.jtd-eyebrow),
.jtd-featured-product__copy > p:not(.jtd-eyebrow),
.jtd-resource-section .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  color: var(--jtd-v6-text) !important;
  font-size: 16px !important;
  line-height: 1.68 !important;
}

.jtd-card,
.jtd-customer-card,
.jtd-product-card,
.jtd-value-card,
.jtd-process-card,
.jtd-roadmap article,
.jtd-capability-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-operating-board article,
.jtd-stat-grid article {
  border: 1px solid var(--jtd-v6-line) !important;
  border-radius: var(--jtd-v6-radius) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: var(--jtd-v6-shadow) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.jtd-card:hover,
.jtd-customer-card:hover,
.jtd-product-card:hover,
.jtd-value-card:hover,
.jtd-process-card:hover,
.jtd-roadmap article:hover,
.jtd-capability-card:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-operating-board article:hover,
.jtd-stat-grid article:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(225, 37, 27, 0.18) !important;
  box-shadow: var(--jtd-v6-shadow-hover) !important;
}

.jtd-card__body {
  padding: 26px !important;
}

.jtd-card h3,
.jtd-product-card h3,
.jtd-customer-card h3,
.jtd-value-card h3,
.jtd-process-card h3,
.jtd-roadmap h3,
.jtd-capability-card h3,
.jtd-ai-grid h3,
.jtd-platform-principles h3,
.jtd-operating-board h3,
.jtd-future-board h3 {
  color: #111827 !important;
  font-size: 22px !important;
  font-weight: 650 !important;
  line-height: 1.32 !important;
}

.jtd-card p,
.jtd-product-card p,
.jtd-customer-card p,
.jtd-value-card p,
.jtd-process-card p,
.jtd-roadmap p,
.jtd-capability-card p,
.jtd-ai-grid p,
.jtd-platform-principles p,
.jtd-operating-board p,
.jtd-future-board p {
  color: var(--jtd-v6-text) !important;
  font-size: 15px !important;
  line-height: 1.68 !important;
}

.jtd-card small,
.jtd-product-card small {
  color: var(--jtd-v6-muted) !important;
  line-height: 1.55 !important;
}

.jtd-text-link {
  color: var(--jtd-red) !important;
  font-weight: 700 !important;
}

.jtd-customer-grid,
.jtd-card-grid {
  gap: 22px !important;
}

.jtd-customer-card {
  min-height: 318px !important;
  padding: 26px !important;
}

.jtd-customer-card::before,
.jtd-product-card::after,
.jtd-value-card::before {
  display: none !important;
  content: none !important;
}

.jtd-customer-card__icon,
.jtd-capability-card__icon,
.jtd-ai-grid article > span:first-child,
.jtd-process-card span {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid rgba(225, 37, 27, 0.14) !important;
  border-radius: 12px !important;
  background: rgba(225, 37, 27, 0.07) !important;
  color: var(--jtd-red) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 760 !important;
}

.jtd-customer-card__index {
  color: rgba(17, 24, 39, 0.16) !important;
  font-size: 30px !important;
}

body.home #products .jtd-product-card {
  min-height: 430px !important;
}

body.home #products .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview,
body.home #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview {
  min-height: 84px !important;
  padding: 20px 22px !important;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06) !important;
  background:
    linear-gradient(180deg, rgba(249, 251, 253, 0.98), rgba(241, 245, 249, 0.78)) !important;
}

body.home #products .jtd-product-card__preview div {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

body.home #products .jtd-product-card__preview span {
  min-height: 34px !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(17, 24, 39, 0.07) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #334155 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  box-shadow: none !important;
}

.jtd-stat-panel,
.jtd-future-board,
.jtd-resource-flow,
.jtd-ecosystem-map {
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(rgba(148, 163, 184, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.065) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88)) !important;
  background-size: 82px 82px, 82px 82px, auto !important;
  box-shadow: var(--jtd-v6-shadow) !important;
}

.jtd-stat-panel {
  padding: 34px !important;
}

.jtd-stat-grid article {
  min-height: 142px !important;
  padding: 22px !important;
}

.jtd-stat-grid strong {
  color: var(--jtd-red) !important;
  font-weight: 760 !important;
}

.jtd-future-section .jtd-split,
.jtd-platform-layout {
  gap: 56px !important;
}

.jtd-future-board {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  min-height: auto !important;
  padding: 20px !important;
}

.jtd-future-board::before,
.jtd-future-board::after,
.jtd-future-board__scan {
  display: none !important;
  content: none !important;
}

.jtd-future-board article {
  min-height: 190px !important;
  padding: 22px !important;
  border: 1px solid rgba(17, 24, 39, 0.07) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: none !important;
}

.jtd-future-board span,
.jtd-future-board article:nth-child(4n + 1) span,
.jtd-future-board article:nth-child(4n + 2) span,
.jtd-future-board article:nth-child(4n + 3) span,
.jtd-future-board article:nth-child(4n) span {
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(225, 37, 27, 0.76) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.jtd-ai-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.jtd-ai-grid article {
  min-height: 218px !important;
  padding: 22px !important;
}

.jtd-ai-grid article::before,
.jtd-ai-grid article::after {
  display: none !important;
  content: none !important;
}

.jtd-ai-grid article > span:first-child {
  margin-bottom: 22px !important;
}

.jtd-ecosystem-map {
  min-height: 520px !important;
}

.jtd-ecosystem-map::before,
.jtd-ecosystem-map::after {
  opacity: 0.28 !important;
  border-color: rgba(225, 37, 27, 0.16) !important;
}

.jtd-ecosystem-map strong {
  border: 1px solid rgba(225, 37, 27, 0.18) !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 18px 44px -32px rgba(225, 37, 27, 0.36) !important;
}

.jtd-platform-principles {
  gap: 16px !important;
}

.jtd-platform-principles article {
  min-height: 148px !important;
  padding: 24px !important;
}

.jtd-operating-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.jtd-operating-section::before {
  opacity: 0.16 !important;
}

.jtd-operating-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr) !important;
  gap: 52px !important;
}

.jtd-operating-board {
  gap: 14px !important;
}

.jtd-operating-board article,
.jtd-operating-board article:nth-child(2),
.jtd-operating-board article:nth-child(3n + 1),
.jtd-operating-board article:nth-child(3n + 2),
.jtd-operating-board article:nth-child(3n) {
  padding: 24px !important;
  background: rgba(255, 255, 255, 0.96) !important;
}

.jtd-operating-board span,
.jtd-operating-board article:nth-child(3n + 1) > span,
.jtd-operating-board article:nth-child(3n + 2) > span,
.jtd-operating-board article:nth-child(3n) > span {
  border: 0 !important;
  background: transparent !important;
  color: rgba(225, 37, 27, 0.5) !important;
  box-shadow: none !important;
  font-size: 24px !important;
}

.jtd-operating-board b {
  border-color: rgba(225, 37, 27, 0.14) !important;
  background: rgba(225, 37, 27, 0.055) !important;
  color: var(--jtd-red) !important;
}

.jtd-featured-product {
  color: #111827 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(225, 37, 27, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-featured-product::before {
  opacity: 0.5 !important;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px) !important;
  background-size: 84px 84px !important;
}

.jtd-featured-product .jtd-eyebrow {
  border-color: rgba(225, 37, 27, 0.14) !important;
  background: rgba(225, 37, 27, 0.06) !important;
  color: var(--jtd-red) !important;
}

.jtd-featured-product h2 {
  color: #111827 !important;
}

.jtd-featured-product p {
  color: var(--jtd-v6-text) !important;
}

.jtd-featured-product .jtd-btn--secondary {
  background: #ffffff !important;
  border-color: rgba(17, 24, 39, 0.1) !important;
  color: #111827 !important;
}

.jtd-resource-flow {
  display: grid !important;
  gap: 14px !important;
  padding: 30px !important;
}

.jtd-resource-flow strong {
  color: #111827 !important;
  font-size: 22px !important;
  font-weight: 720 !important;
}

.jtd-resource-flow span {
  min-height: 48px !important;
  justify-content: flex-start !important;
  padding: 0 18px !important;
}

.jtd-resource-flow span::after {
  opacity: 0.35 !important;
}

.jtd-security-main {
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.16), transparent 30%),
    #111827 !important;
}

.jtd-card__media {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06) !important;
  background: #eef2f7 !important;
}

.jtd-photo-filter,
.jtd-card__media img {
  filter: saturate(1.03) contrast(1.04) !important;
}

.jtd-site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.045), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #0f172a !important;
  background-size: auto, 56px 56px, 56px 56px, auto !important;
}

.jtd-site-footer .jtd-footer__top {
  padding: 32px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.jtd-site-footer .jtd-footer__top h2 {
  color: #ffffff !important;
}

@media (max-width: 1024px) {
  .jtd-container {
    width: min(100% - 40px, var(--jtd-container)) !important;
  }

  .jtd-hero {
    min-height: auto !important;
    padding-top: 58px !important;
  }

  .jtd-hero__slides {
    min-height: 0 !important;
  }

  .jtd-hero__slide,
  .jtd-operating-grid,
  .jtd-platform-layout,
  .jtd-future-section .jtd-split,
  .jtd-split {
    grid-template-columns: 1fr !important;
  }

  .jtd-hero__slide {
    gap: 36px !important;
  }

  .jtd-product-showcase,
  .jtd-product-showcase__desktop {
    width: min(100%, 620px) !important;
  }

  .jtd-card-grid--4,
  .jtd-customer-grid,
  .jtd-ai-grid,
  .jtd-value-row,
  .jtd-process-row,
  .jtd-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .jtd-container {
    width: min(100% - 28px, var(--jtd-container)) !important;
  }

  .jtd-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .jtd-section__header h2,
  .jtd-future-section h2,
  .jtd-operating-copy h2,
  .jtd-featured-product h2,
  .jtd-resource-section h2 {
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .jtd-hero {
    padding-top: 36px !important;
    padding-bottom: 26px !important;
  }

  .jtd-hero__content h1 {
    font-size: 32px !important;
  }

  .jtd-hero__content > p:not(.jtd-eyebrow) {
    font-size: 15px !important;
  }

  .jtd-hero__proof {
    display: none !important;
  }

  .jtd-product-showcase,
  .jtd-product-showcase__desktop {
    width: 100% !important;
  }

  .jtd-product-showcase__desktop,
  .jtd-hero .jtd-product-showcase__desktop,
  .jtd-featured-product .jtd-product-showcase__desktop {
    min-height: auto !important;
    padding: 14px !important;
    border-radius: 20px !important;
  }

  .jtd-product-showcase__head {
    padding-top: 18px !important;
  }

  .jtd-product-showcase__head strong {
    font-size: 22px !important;
  }

  .jtd-product-showcase__kpis,
  .jtd-product-showcase__body,
  .jtd-product-showcase__modules,
  .jtd-future-board,
  .jtd-stat-grid,
  .jtd-ai-grid,
  .jtd-card-grid--3,
  .jtd-card-grid--4,
  .jtd-customer-grid,
  .jtd-value-row,
  .jtd-process-row,
  .jtd-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .jtd-product-showcase__phone {
    display: none !important;
  }

  body.home #products .jtd-product-card {
    min-height: 0 !important;
  }

  body.home #products .jtd-product-card__preview div {
    grid-template-columns: 1fr !important;
  }

  .jtd-stat-panel,
  .jtd-resource-flow,
  .jtd-future-board,
  .jtd-ecosystem-map,
  .jtd-site-footer .jtd-footer__top {
    padding: 22px !important;
    border-radius: 20px !important;
  }

  .jtd-ecosystem-map {
    min-height: 440px !important;
  }

  .jtd-ecosystem-map__node {
    font-size: 12px !important;
  }

  .jtd-card h3,
  .jtd-product-card h3,
  .jtd-customer-card h3,
  .jtd-value-card h3,
  .jtd-process-card h3,
  .jtd-roadmap h3,
  .jtd-capability-card h3,
  .jtd-ai-grid h3,
  .jtd-platform-principles h3,
  .jtd-operating-board h3,
  .jtd-future-board h3 {
    font-size: 18px !important;
  }
}

/* Homepage real-asset integration v1: product proof without visual noise */
.jtd-real-showcase {
  position: relative;
  width: min(100%, 720px);
  margin-left: auto;
}

.jtd-real-showcase__glass {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 6%, rgba(225, 37, 27, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.72));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 28px 72px -46px rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(18px) saturate(1.05);
}

.jtd-real-showcase__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px 18px 10px 10px;
  background: rgba(255, 255, 255, 0.86);
}

.jtd-real-showcase__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.jtd-real-showcase__bar span:nth-child(2) {
  background: #f59e0b;
}

.jtd-real-showcase__bar span:nth-child(3) {
  background: #10b981;
}

.jtd-real-showcase__bar b {
  margin-left: auto;
  color: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.jtd-real-showcase__stage {
  position: relative;
  margin-top: 12px;
}

.jtd-real-showcase__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.4;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  background: #f8fafc;
}

.jtd-real-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(255, 255, 255, 0.14));
}

.jtd-real-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.01);
}

.jtd-real-showcase__float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 136px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px -28px rgba(15, 23, 42, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.08);
  animation: jtd-showcase-card-float 5.8s ease-in-out infinite;
}

.jtd-real-showcase__float-card::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e1251b;
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.34);
}

.jtd-real-showcase__float-card::after {
  content: "";
  width: 72px;
  height: 5px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 37, 27, 0.72), rgba(226, 232, 240, 0.72));
}

.jtd-real-showcase__float-card b {
  color: #0f172a;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
}

.jtd-real-showcase__float-card span {
  max-width: 150px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.jtd-real-showcase__float-card--0 {
  top: 18%;
  left: 0;
}

.jtd-real-showcase__float-card--1 {
  top: 15%;
  right: 0;
  animation-delay: -1.6s;
}

.jtd-real-showcase__float-card--2 {
  bottom: 11%;
  left: 6%;
  animation-delay: -3.2s;
}

.jtd-real-showcase__float-card--3 {
  right: 6%;
  bottom: 9%;
  animation-delay: -4.4s;
}

@keyframes jtd-showcase-card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.jtd-real-showcase__meta {
  display: grid;
  gap: 8px;
  padding: 16px 6px 2px;
}

.jtd-real-showcase__meta span {
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 800;
}

.jtd-real-showcase__meta strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.25;
}

.jtd-real-showcase__meta p {
  max-width: 520px;
  color: #64748b !important;
  font-size: 14px;
  line-height: 1.6 !important;
}

.jtd-real-showcase__meta div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.jtd-real-showcase__meta em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.045);
  color: #e1251b;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.jtd-real-showcase--featured {
  width: min(100%, 640px);
  margin-right: auto;
  margin-left: 0;
}

.jtd-real-showcase--smart-dashboard {
  width: min(100%, 760px);
}

.jtd-real-showcase--smart-dashboard .jtd-real-showcase__glass {
  padding: 18px;
  background:
    radial-gradient(circle at 78% 8%, rgba(225, 37, 27, 0.07), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.78));
}

.jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
  min-height: 390px;
  padding: 28px 24px 38px;
}

.jtd-real-showcase--smart-dashboard .jtd-real-showcase__media {
  z-index: 1;
  width: min(100%, 690px);
  margin: 0 auto;
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 28px 66px -38px rgba(15, 23, 42, 0.42);
}

.jtd-real-showcase--smart-dashboard .jtd-real-showcase__media img {
  object-position: 62% top;
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.22);
  transform-origin: 62% 14%;
}

.jtd-real-showcase--smart-dashboard .jtd-real-showcase__meta {
  display: none;
}

.jtd-featured-product .jtd-real-showcase__glass {
  border-color: rgba(15, 23, 42, 0.07);
  background:
    radial-gradient(circle at 12% 12%, rgba(225, 37, 27, 0.055), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.8));
}

body.post-type-archive-jtd_product .jtd-product-archive-hero {
  position: relative;
  min-height: 760px;
  padding: 118px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(59, 130, 246, 0.14), transparent 30%),
    radial-gradient(circle at 72% 70%, rgba(225, 37, 27, 0.07), transparent 30%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 38%, #f4f8ff 72%, #eff7ff 100%);
}

body.post-type-archive-jtd_product .jtd-product-archive-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -42% 46%;
  height: 76%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.18), transparent 58%);
  filter: blur(18px);
  pointer-events: none;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.024) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000 100%);
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-container {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 96px));
  max-width: none;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split {
  position: relative;
  display: block;
  min-height: 560px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split > div:first-child {
  position: relative;
  z-index: 4;
  max-width: 600px;
  padding-top: 44px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero h1 {
  max-width: 600px;
  font-size: clamp(44px, 3.7vw, 58px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
  max-width: 740px;
  margin-top: 24px;
  color: #475569 !important;
  font-size: clamp(18px, 1.18vw, 22px) !important;
  line-height: 1.72 !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-actions {
  margin-top: 34px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -300px;
  width: min(64vw, 1080px);
  margin-left: 0;
  transform: translateY(-50%);
  transform-origin: center;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__glass {
  border-radius: 34px;
  box-shadow: 0 48px 110px -60px rgba(15, 23, 42, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__bar {
  height: 50px;
  border-radius: 25px 25px 14px 14px;
  padding: 0 18px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
  min-height: 520px;
  padding: 42px 54px 58px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media {
  width: min(100%, 820px);
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media img {
  transform: scale(1.18);
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card {
  min-width: 168px;
  padding: 15px 18px;
  border-radius: 18px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card b {
  font-size: 17px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card span {
  font-size: 14px;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card--0 {
  top: 16%;
  left: 1%;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card--1 {
  top: 14%;
  right: 1%;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card--2 {
  bottom: 10%;
  left: 7%;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card--3 {
  right: 7%;
  bottom: 8%;
}

body.home #products .jtd-product-card,
body.post-type-archive-jtd_product .jtd-product-card {
  display: flex !important;
  flex-direction: column !important;
}

body.home #products .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n) .jtd-product-card__preview--image {
  position: relative !important;
  display: block !important;
  min-height: 188px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  background: #eef2f7 !important;
  box-shadow: none !important;
}

body.home #products .jtd-product-card__preview--image > img,
body.post-type-archive-jtd_product .jtd-product-card__preview--image > img {
  width: 100% !important;
  height: 188px !important;
  object-fit: cover !important;
  object-position: center top !important;
  filter: saturate(0.98) contrast(1.02) !important;
  transform: scale(1.24) !important;
  transform-origin: center top !important;
  transition: transform 240ms ease, filter 240ms ease !important;
}

body.home #products .jtd-product-card:hover .jtd-product-card__preview--image > img,
body.post-type-archive-jtd_product .jtd-product-card:hover .jtd-product-card__preview--image > img {
  transform: scale(1.32) !important;
  filter: saturate(1.03) contrast(1.04) !important;
}

body.home #products .jtd-product-card__preview--image::after,
body.post-type-archive-jtd_product .jtd-product-card__preview--image::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  display: block !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 23, 42, 0.04)) !important;
}

body.home #products .jtd-product-card__preview--image .jtd-product-card__preview-meta,
body.post-type-archive-jtd_product .jtd-product-card__preview--image .jtd-product-card__preview-meta {
  position: absolute !important;
  right: 14px !important;
  bottom: 14px !important;
  left: 14px !important;
  z-index: 2 !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.74) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 12px 30px -22px rgba(15, 23, 42, 0.42) !important;
  backdrop-filter: blur(12px) saturate(1.05) !important;
}

body.home #products .jtd-product-card__preview--image .jtd-product-card__preview-icon,
body.post-type-archive-jtd_product .jtd-product-card__preview--image .jtd-product-card__preview-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 6px !important;
  border: 1px solid rgba(225, 37, 27, 0.12) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
}

body.home #products .jtd-product-card__preview--image .jtd-product-card__preview-icon img,
body.post-type-archive-jtd_product .jtd-product-card__preview--image .jtd-product-card__preview-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.home #products .jtd-product-card__preview--image b,
body.post-type-archive-jtd_product .jtd-product-card__preview--image b {
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 760 !important;
  line-height: 1.25 !important;
}

.jtd-section--audience .jtd-customer-card__icon--asset {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 10px !important;
  border: 1px solid rgba(225, 37, 27, 0.11) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.82)) !important;
  color: inherit !important;
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.34) !important;
}

.jtd-section--audience .jtd-customer-card__icon--asset img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.jtd-section--audience .jtd-customer-card__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

@media (max-width: 1024px) {
  .jtd-real-showcase,
  .jtd-real-showcase--featured {
    width: min(100%, 680px);
    margin-right: auto;
    margin-left: 0;
  }

  .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 360px;
    padding: 26px 34px 34px;
  }

  .jtd-real-showcase__float-card {
    min-width: 124px;
    padding: 10px 12px;
  }

  .jtd-real-showcase__float-card--0,
  .jtd-real-showcase__float-card--2 {
    left: 1%;
  }

  .jtd-real-showcase__float-card--1,
  .jtd-real-showcase__float-card--3 {
    right: 1%;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero {
    min-height: auto;
    padding: 92px 0 72px;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-container {
    width: min(100% - 48px, 960px);
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 820px);
    transform: none;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 430px;
    padding: 34px 44px 44px;
  }

  body.home #products .jtd-product-card__preview--image,
  body.home #products .jtd-product-card__preview--image > img,
  body.post-type-archive-jtd_product .jtd-product-card__preview--image,
  body.post-type-archive-jtd_product .jtd-product-card__preview--image > img {
    min-height: 210px !important;
    height: 210px !important;
  }
}

@media (max-width: 760px) {
  .jtd-real-showcase__glass {
    padding: 12px;
    border-radius: 22px;
  }

  .jtd-real-showcase__media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 300px;
    padding: 14px 8px 90px;
  }

  .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media {
    width: 100%;
    border-radius: 18px;
  }

  .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media img {
    object-position: 58% top;
    transform: scale(1.1);
  }

  .jtd-real-showcase__float-card {
    min-width: 112px;
    max-width: 136px;
    padding: 9px 10px;
    animation: none;
  }

  .jtd-real-showcase__float-card b {
    font-size: 12px;
  }

  .jtd-real-showcase__float-card span {
    font-size: 11px;
  }

  .jtd-real-showcase__float-card--0 {
    top: auto;
    bottom: 38px;
    left: 8px;
  }

  .jtd-real-showcase__float-card--1 {
    top: auto;
    right: 8px;
    bottom: 38px;
  }

  .jtd-real-showcase__float-card--2,
  .jtd-real-showcase__float-card--3 {
    display: none;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero {
    padding: 56px 0 48px;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-container {
    width: min(100% - 28px, 620px);
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__glass {
    border-radius: 26px;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__bar {
    height: 42px;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 320px;
    padding: 16px 10px 92px;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card {
    min-width: 120px;
    padding: 10px 12px;
  }

  .jtd-real-showcase__meta {
    padding: 14px 4px 2px;
  }

  .jtd-real-showcase__meta strong {
    font-size: 19px;
  }

  body.home #products .jtd-product-card__preview--image,
  body.home #products .jtd-product-card__preview--image > img,
  body.post-type-archive-jtd_product .jtd-product-card__preview--image,
  body.post-type-archive-jtd_product .jtd-product-card__preview--image > img {
    min-height: 190px !important;
    height: 190px !important;
  }
}

/* Product archive rescue v2: calm Feishu-style hero, no oversized collage noise */
body.post-type-archive-jtd_product .jtd-product-archive-hero {
  isolation: isolate !important;
  min-height: auto !important;
  padding: 78px 0 72px !important;
  background:
    radial-gradient(circle at 75% 22%, rgba(37, 99, 235, 0.095), transparent 29%),
    radial-gradient(circle at 92% 72%, rgba(14, 165, 233, 0.07), transparent 24%),
    radial-gradient(circle at 64% 76%, rgba(225, 37, 27, 0.03), transparent 24%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 38%, #f9fbff 71%, #f1f7ff 100%) !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero::before {
  z-index: -2 !important;
  inset: -16% -18% -22% 50% !important;
  height: auto !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 45% 36%, rgba(255, 255, 255, 0.94), transparent 27%),
    radial-gradient(circle at 70% 43%, rgba(37, 99, 235, 0.11), transparent 34%),
    radial-gradient(circle at 34% 72%, rgba(225, 37, 27, 0.035), transparent 31%) !important;
  filter: blur(30px) !important;
  transform: none !important;
  animation: jtd-product-hero-aura 11s ease-in-out infinite alternate !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero::after {
  z-index: -1 !important;
  background:
    linear-gradient(103deg, transparent 38%, rgba(37, 99, 235, 0.07) 48%, transparent 57%),
    linear-gradient(108deg, transparent 50%, rgba(225, 37, 27, 0.033) 58%, transparent 66%),
    linear-gradient(rgba(37, 99, 235, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.016) 1px, transparent 1px) !important;
  background-size: 180% 100%, 160% 100%, 96px 96px, 96px 96px !important;
  background-position: -30% 0, 120% 0, 0 0, 0 0 !important;
  mask-image: linear-gradient(90deg, transparent 28%, #000 55%, transparent 100%) !important;
  opacity: 0.62 !important;
  animation: jtd-product-hero-flow 13s linear infinite !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-container {
  width: min(1440px, calc(100% - 96px)) !important;
  max-width: none !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split {
  display: grid !important;
  grid-template-columns: minmax(390px, 0.72fr) minmax(660px, 1.28fr) !important;
  align-items: center !important;
  gap: clamp(34px, 4.2vw, 72px) !important;
  min-height: 510px !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-breadcrumb {
  display: none !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split > div:first-child {
  max-width: 560px !important;
  padding-top: 0 !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero h1 {
  max-width: 560px !important;
  font-size: clamp(38px, 2.65vw, 44px) !important;
  line-height: 1.14 !important;
  color: #0f172a !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
  max-width: 600px !important;
  margin-top: 20px !important;
  color: #475569 !important;
  font-size: clamp(17px, 1.02vw, 20px) !important;
  line-height: 1.72 !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-actions {
  margin-top: 32px !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase {
  position: relative !important;
  z-index: 2 !important;
  top: auto !important;
  right: auto !important;
  width: min(100%, 900px) !important;
  margin: 0 !important;
  transform: none !important;
  animation: jtd-product-hero-visual-float 7.5s ease-in-out infinite !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__glass {
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__bar {
  display: none !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
  min-height: 500px !important;
  padding: 18px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(ellipse at 58% 78%, rgba(15, 23, 42, 0.055), transparent 44%),
    radial-gradient(circle at 75% 22%, rgba(37, 99, 235, 0.05), transparent 33%) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: 0 34px 70px -58px rgba(15, 23, 42, 0.42) !important;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 96%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 95%, transparent 100%) !important;
  mask-composite: intersect !important;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 96%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 95%, transparent 100%) !important;
  -webkit-mask-composite: source-in !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media img {
  object-fit: contain !important;
  object-position: 60% top !important;
  filter: saturate(1.02) contrast(1.025) drop-shadow(0 24px 32px rgba(15, 23, 42, 0.1)) !important;
  mix-blend-mode: normal !important;
  transform: none !important;
  transform-origin: 60% 12% !important;
}

body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase__float-card {
  display: none !important;
}

@keyframes jtd-product-hero-aura {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(0.99);
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.02);
  }
}

@keyframes jtd-product-hero-flow {
  0% {
    background-position: -34% 0, 118% 0, 0 0, 0 0;
  }

  100% {
    background-position: 132% 0, -28% 0, 0 0, 0 0;
  }
}

@keyframes jtd-product-hero-visual-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 1120px) {
  body.post-type-archive-jtd_product .jtd-product-archive-hero {
    padding: 88px 0 70px !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-container {
    width: min(100% - 48px, 960px) !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
    min-height: auto !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase {
    width: min(100%, 820px) !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 430px !important;
    padding: 14px 0 !important;
  }
}

@media (max-width: 760px) {
  body.post-type-archive-jtd_product .jtd-product-archive-hero {
    padding: 54px 0 48px !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-container {
    width: min(100% - 28px, 620px) !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero h1 {
    font-size: clamp(30px, 8.2vw, 36px) !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow):not(.jtd-breadcrumb *) {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-actions {
    margin-top: 26px !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 310px !important;
    padding: 10px 0 !important;
    border-radius: 24px !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media {
    border-radius: 0 !important;
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 4%, #000 91%, transparent 100%) !important;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 4%, #000 91%, transparent 100%) !important;
  }

  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media img {
    transform: scale(1.04) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.post-type-archive-jtd_product .jtd-product-archive-hero::before,
  body.post-type-archive-jtd_product .jtd-product-archive-hero::after,
  body.post-type-archive-jtd_product .jtd-product-archive-hero .jtd-real-showcase {
    animation: none !important;
  }
}

/* Boundaryless hero rollout v1: home and solutions follow the accepted product style */
body.home .jtd-hero,
body.post-type-archive-jtd_solution .jtd-solution-archive-hero {
  isolation: isolate !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 74% 18%, rgba(37, 99, 235, 0.1), transparent 29%),
    radial-gradient(circle at 91% 68%, rgba(14, 165, 233, 0.065), transparent 24%),
    radial-gradient(circle at 58% 76%, rgba(225, 37, 27, 0.028), transparent 24%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 39%, #f9fbff 72%, #f2f8ff 100%) !important;
}

body.home .jtd-hero::before,
body.post-type-archive-jtd_solution .jtd-solution-archive-hero::before {
  z-index: -2 !important;
  inset: -16% -18% -22% 50% !important;
  height: auto !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 45% 36%, rgba(255, 255, 255, 0.94), transparent 27%),
    radial-gradient(circle at 70% 43%, rgba(37, 99, 235, 0.1), transparent 34%),
    radial-gradient(circle at 34% 72%, rgba(225, 37, 27, 0.035), transparent 31%) !important;
  filter: blur(30px) !important;
  transform: none !important;
  opacity: 1 !important;
  animation: jtd-product-hero-aura 11s ease-in-out infinite alternate !important;
}

body.home .jtd-hero::after,
body.post-type-archive-jtd_solution .jtd-solution-archive-hero::after {
  z-index: -1 !important;
  background:
    linear-gradient(103deg, transparent 38%, rgba(37, 99, 235, 0.065) 48%, transparent 57%),
    linear-gradient(108deg, transparent 50%, rgba(225, 37, 27, 0.03) 58%, transparent 66%),
    linear-gradient(rgba(37, 99, 235, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.016) 1px, transparent 1px) !important;
  background-size: 180% 100%, 160% 100%, 96px 96px, 96px 96px !important;
  background-position: -30% 0, 120% 0, 0 0, 0 0 !important;
  mask-image: linear-gradient(90deg, transparent 28%, #000 55%, transparent 100%) !important;
  opacity: 0.58 !important;
  animation: jtd-product-hero-flow 13s linear infinite !important;
}

body.home .jtd-hero {
  padding: 78px 0 72px !important;
}

body.home .jtd-hero .jtd-container,
body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-container {
  width: min(1440px, calc(100% - 96px)) !important;
  max-width: none !important;
}

body.home .jtd-hero__slide {
  grid-template-columns: minmax(390px, 0.72fr) minmax(660px, 1.28fr) !important;
  align-items: center !important;
  gap: clamp(34px, 4.2vw, 72px) !important;
  min-height: 510px !important;
}

body.home .jtd-hero__content {
  max-width: 560px !important;
}

body.home .jtd-hero__content h1,
body.home .jtd-hero__content .jtd-hero-title--split,
body.home .jtd-hero__content .jtd-hero-title--normal {
  max-width: 560px !important;
  color: #0f172a !important;
  font-size: clamp(38px, 2.65vw, 44px) !important;
  line-height: 1.14 !important;
}

body.home .jtd-hero__content > p:not(.jtd-eyebrow) {
  max-width: 600px !important;
  color: #475569 !important;
  font-size: clamp(17px, 1.02vw, 20px) !important;
  line-height: 1.72 !important;
}

body.home .jtd-hero__visual {
  min-height: 500px !important;
}

body.home .jtd-hero__signal {
  display: none !important;
}

body.home .jtd-hero .jtd-real-showcase {
  width: min(100%, 900px) !important;
  animation: jtd-product-hero-visual-float 7.5s ease-in-out infinite !important;
}

body.home .jtd-hero .jtd-real-showcase__glass {
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home .jtd-hero .jtd-real-showcase__bar,
body.home .jtd-hero .jtd-real-showcase__float-card,
body.home .jtd-hero .jtd-real-showcase__meta {
  display: none !important;
}

body.home .jtd-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
  min-height: 500px !important;
  padding: 18px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(ellipse at 58% 78%, rgba(15, 23, 42, 0.055), transparent 44%),
    radial-gradient(circle at 75% 22%, rgba(37, 99, 235, 0.05), transparent 33%) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home .jtd-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: 0 34px 70px -58px rgba(15, 23, 42, 0.42) !important;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 96%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 95%, transparent 100%) !important;
  mask-composite: intersect !important;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 5%, #000 96%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 95%, transparent 100%) !important;
  -webkit-mask-composite: source-in !important;
}

body.home .jtd-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__media img {
  object-fit: contain !important;
  object-position: 60% top !important;
  filter: saturate(1.02) contrast(1.025) drop-shadow(0 24px 32px rgba(15, 23, 42, 0.1)) !important;
  mix-blend-mode: normal !important;
  transform: none !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero {
  min-height: auto !important;
  padding: 78px 0 72px !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-split {
  grid-template-columns: minmax(390px, 0.72fr) minmax(560px, 1fr) !important;
  align-items: center !important;
  gap: clamp(40px, 5vw, 86px) !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-breadcrumb {
  display: none !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero h1 {
  max-width: 590px !important;
  font-size: clamp(38px, 2.65vw, 44px) !important;
  line-height: 1.14 !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  max-width: 590px !important;
  color: #475569 !important;
  font-size: clamp(17px, 1.02vw, 20px) !important;
  line-height: 1.72 !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  min-height: 340px !important;
  padding: 48px 22px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(ellipse at 54% 72%, rgba(15, 23, 42, 0.055), transparent 44%),
    radial-gradient(circle at 72% 18%, rgba(37, 99, 235, 0.07), transparent 32%) !important;
  box-shadow: none !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 6% !important;
  left: 6% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), rgba(225, 37, 27, 0.1), transparent) !important;
  animation: jtd-product-hero-flow 13s linear infinite !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel span {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 82px !important;
  padding: 14px 12px !important;
  border: 1px solid rgba(226, 232, 240, 0.72) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  box-shadow: 0 26px 58px -44px rgba(15, 23, 42, 0.36) !important;
  backdrop-filter: blur(12px) !important;
  animation: jtd-product-hero-visual-float 7.5s ease-in-out infinite !important;
}

body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel span:nth-child(2n) {
  transform: translateY(30px) !important;
  animation-delay: -2s !important;
}

@media (max-width: 1120px) {
  body.home .jtd-hero .jtd-container,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-container {
    width: min(100% - 48px, 960px) !important;
  }

  body.home .jtd-hero__slide,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-split {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
    min-height: auto !important;
  }

  body.home .jtd-hero__visual,
  body.home .jtd-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 430px !important;
  }

  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel {
    min-height: 280px !important;
  }
}

@media (max-width: 760px) {
  body.home .jtd-hero,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero {
    padding: 54px 0 48px !important;
  }

  body.home .jtd-hero .jtd-container,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-container {
    width: min(100% - 28px, 620px) !important;
  }

  body.home .jtd-hero__content h1,
  body.home .jtd-hero__content .jtd-hero-title--split,
  body.home .jtd-hero__content .jtd-hero-title--normal,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero h1 {
    font-size: clamp(27px, 7vw, 32px) !important;
    line-height: 1.18 !important;
  }

  body.home .jtd-hero__content > p:not(.jtd-eyebrow),
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  body.home .jtd-hero__visual,
  body.home .jtd-hero .jtd-real-showcase--smart-dashboard .jtd-real-showcase__stage {
    min-height: 310px !important;
  }

  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    min-height: auto !important;
    padding: 10px 0 4px !important;
    background:
      radial-gradient(ellipse at 50% 62%, rgba(37, 99, 235, 0.055), transparent 52%) !important;
  }

  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel::before {
    display: none !important;
  }

  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel span,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel span:nth-child(2n) {
    justify-content: flex-start !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .jtd-hero::before,
  body.home .jtd-hero::after,
  body.home .jtd-hero .jtd-real-showcase,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero::before,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero::after,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel::before,
  body.post-type-archive-jtd_solution .jtd-solution-archive-hero .jtd-decision-panel span {
    animation: none !important;
  }
}

/* Inner page boundaryless hero v1: align core entry pages with the accepted product hero language */
.jtd-about-hero,
.jtd-vision-hero,
.jtd-trust-hero,
.jtd-partner-hero,
body.post-type-archive-jtd_news .jtd-news-hero,
body.post-type-archive-jtd_service .jtd-service-hero,
body.post-type-archive-jtd_case .jtd-case-archive-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  min-height: auto !important;
  padding: 76px 0 70px !important;
  background:
    radial-gradient(circle at 76% 18%, rgba(37, 99, 235, 0.09), transparent 28%),
    radial-gradient(circle at 92% 68%, rgba(14, 165, 233, 0.055), transparent 24%),
    radial-gradient(circle at 56% 78%, rgba(225, 37, 27, 0.026), transparent 23%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 38%, #f9fbff 72%, #f2f8ff 100%) !important;
}

.jtd-about-hero::before,
.jtd-vision-hero::before,
.jtd-trust-hero::before,
.jtd-partner-hero::before,
body.post-type-archive-jtd_news .jtd-news-hero::before,
body.post-type-archive-jtd_service .jtd-service-hero::before,
body.post-type-archive-jtd_case .jtd-case-archive-hero::before {
  content: "" !important;
  position: absolute !important;
  z-index: -2 !important;
  inset: -20% -18% -20% 48% !important;
  height: auto !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.95), transparent 27%),
    radial-gradient(circle at 70% 44%, rgba(37, 99, 235, 0.1), transparent 34%),
    radial-gradient(circle at 34% 74%, rgba(225, 37, 27, 0.032), transparent 31%) !important;
  filter: blur(30px) !important;
  opacity: 1 !important;
  animation: jtd-product-hero-aura 11s ease-in-out infinite alternate !important;
}

.jtd-about-hero::after,
.jtd-vision-hero::after,
.jtd-trust-hero::after,
.jtd-partner-hero::after,
body.post-type-archive-jtd_news .jtd-news-hero::after,
body.post-type-archive-jtd_service .jtd-service-hero::after,
body.post-type-archive-jtd_case .jtd-case-archive-hero::after {
  content: "" !important;
  position: absolute !important;
  z-index: -1 !important;
  inset: 0 !important;
  background:
    linear-gradient(103deg, transparent 39%, rgba(37, 99, 235, 0.058) 49%, transparent 58%),
    linear-gradient(108deg, transparent 51%, rgba(225, 37, 27, 0.026) 59%, transparent 66%),
    linear-gradient(rgba(37, 99, 235, 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.015) 1px, transparent 1px) !important;
  background-size: 180% 100%, 160% 100%, 96px 96px, 96px 96px !important;
  background-position: -30% 0, 120% 0, 0 0, 0 0 !important;
  mask-image: linear-gradient(90deg, transparent 27%, #000 55%, transparent 100%) !important;
  opacity: 0.5 !important;
  animation: jtd-product-hero-flow 13s linear infinite !important;
}

.jtd-about-hero .jtd-container,
.jtd-vision-hero .jtd-container,
.jtd-trust-hero .jtd-container,
.jtd-partner-hero .jtd-container,
body.post-type-archive-jtd_news .jtd-news-hero .jtd-container,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-container,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-container {
  width: min(1280px, calc(100% - 96px)) !important;
  max-width: none !important;
}

.jtd-about-hero .jtd-split,
.jtd-vision-hero .jtd-split,
.jtd-trust-hero .jtd-split,
.jtd-partner-hero .jtd-split,
body.post-type-archive-jtd_news .jtd-news-hero .jtd-split,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-split,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-split {
  grid-template-columns: minmax(380px, 0.86fr) minmax(460px, 1fr) !important;
  align-items: center !important;
  gap: clamp(40px, 5vw, 82px) !important;
}

.jtd-about-hero .jtd-breadcrumb,
.jtd-vision-hero .jtd-breadcrumb,
.jtd-trust-hero .jtd-breadcrumb,
.jtd-partner-hero .jtd-breadcrumb,
body.post-type-archive-jtd_news .jtd-news-hero .jtd-breadcrumb,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-breadcrumb,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-breadcrumb {
  display: none !important;
}

.jtd-about-hero h1,
.jtd-vision-hero h1,
.jtd-trust-hero h1,
.jtd-partner-hero h1,
body.post-type-archive-jtd_news .jtd-news-hero h1,
body.post-type-archive-jtd_service .jtd-service-hero h1,
body.post-type-archive-jtd_case .jtd-case-archive-hero h1 {
  max-width: 640px !important;
  color: #0f172a !important;
  font-size: clamp(36px, 2.55vw, 42px) !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.jtd-about-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
.jtd-vision-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
.jtd-trust-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
.jtd-partner-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
body.post-type-archive-jtd_news .jtd-news-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
body.post-type-archive-jtd_service .jtd-service-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
  max-width: 640px !important;
  color: #475569 !important;
  font-size: clamp(16px, 1vw, 19px) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

.jtd-about-hero .jtd-actions,
.jtd-vision-hero .jtd-actions,
.jtd-trust-hero .jtd-actions,
.jtd-partner-hero .jtd-actions,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-actions,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-actions {
  margin-top: 30px !important;
}

.jtd-about-hero .jtd-photo-card,
.jtd-vision-hero .jtd-vision-orbit,
.jtd-trust-hero .jtd-trust-console,
.jtd-partner-hero .jtd-ecosystem-visual,
body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel {
  position: relative !important;
  min-height: 330px !important;
  padding: 34px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(ellipse at 52% 78%, rgba(15, 23, 42, 0.05), transparent 44%),
    radial-gradient(circle at 76% 20%, rgba(37, 99, 235, 0.07), transparent 31%) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.jtd-about-hero .jtd-photo-card::before,
.jtd-vision-hero .jtd-vision-orbit::before,
.jtd-trust-hero .jtd-trust-console::before,
.jtd-partner-hero .jtd-ecosystem-visual::before,
body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics::before,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual::before,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 16px 26px 42px !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.62) !important;
  border: 1px solid rgba(226, 232, 240, 0.64) !important;
  box-shadow: 0 28px 72px -54px rgba(15, 23, 42, 0.5) !important;
  backdrop-filter: blur(14px) !important;
}

.jtd-about-hero .jtd-photo-card::after {
  display: none !important;
}

.jtd-about-hero .jtd-photo-card img {
  position: relative !important;
  z-index: 1 !important;
  width: min(92%, 520px) !important;
  height: 270px !important;
  min-height: 0 !important;
  margin: 18px auto 0 !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  filter: saturate(0.92) contrast(1.05) brightness(1.04) !important;
  opacity: 0.9 !important;
  box-shadow: 0 28px 62px -50px rgba(15, 23, 42, 0.34) !important;
}

.jtd-about-hero .jtd-photo-card__caption {
  position: relative !important;
  z-index: 2 !important;
  inset: auto !important;
  width: min(88%, 440px) !important;
  margin: -42px auto 0 !important;
  padding: 18px 22px !important;
  border: 1px solid rgba(226, 232, 240, 0.7) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  color: #0f172a !important;
  box-shadow: 0 22px 52px -38px rgba(15, 23, 42, 0.38) !important;
  backdrop-filter: blur(12px) !important;
}

.jtd-about-hero .jtd-photo-card__caption strong {
  color: #0f172a !important;
}

.jtd-about-hero .jtd-photo-card__caption span {
  color: #64748b !important;
}

.jtd-vision-hero .jtd-vision-orbit,
.jtd-trust-hero .jtd-trust-console,
.jtd-partner-hero .jtd-ecosystem-visual,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel {
  display: grid !important;
  place-items: center !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.jtd-vision-hero .jtd-vision-orbit strong,
.jtd-trust-hero .jtd-trust-console strong,
.jtd-partner-hero .jtd-ecosystem-visual strong,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual strong,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel strong {
  position: relative !important;
  z-index: 2 !important;
  inset: auto !important;
  transform: none !important;
  grid-column: 1 / -1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 74px !important;
  padding: 0 28px !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.74)) !important;
  color: #0f172a !important;
  font-size: 18px !important;
  font-weight: 780 !important;
  box-shadow: 0 22px 52px -40px rgba(15, 23, 42, 0.35) !important;
}

.jtd-vision-hero .jtd-vision-orbit span,
.jtd-trust-hero .jtd-trust-console span,
.jtd-partner-hero .jtd-ecosystem-visual span,
body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual span,
body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel span {
  position: relative !important;
  z-index: 2 !important;
  inset: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  width: 100% !important;
  padding: 0 14px !important;
  border: 1px solid rgba(226, 232, 240, 0.7) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-align: center !important;
  box-shadow: 0 18px 44px -38px rgba(15, 23, 42, 0.32) !important;
  backdrop-filter: blur(12px) !important;
  animation: jtd-product-hero-visual-float 8s ease-in-out infinite !important;
}

.jtd-partner-hero .jtd-ecosystem-visual div,
body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics {
  position: relative !important;
  z-index: 2 !important;
}

.jtd-partner-hero .jtd-ecosystem-visual div {
  display: contents !important;
}

body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: end !important;
  gap: 14px !important;
  padding-top: 74px !important;
}

body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics article {
  position: relative !important;
  z-index: 2 !important;
  min-height: 170px !important;
  padding: 22px 18px !important;
  border: 1px solid rgba(226, 232, 240, 0.7) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  box-shadow: 0 20px 50px -42px rgba(15, 23, 42, 0.34) !important;
  backdrop-filter: blur(12px) !important;
}

body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics h2 {
  color: #0f172a !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics p {
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

@media (max-width: 1120px) {
  .jtd-about-hero .jtd-container,
  .jtd-vision-hero .jtd-container,
  .jtd-trust-hero .jtd-container,
  .jtd-partner-hero .jtd-container,
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-container,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-container,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-container {
    width: min(100% - 48px, 960px) !important;
  }

  .jtd-about-hero .jtd-split,
  .jtd-vision-hero .jtd-split,
  .jtd-trust-hero .jtd-split,
  .jtd-partner-hero .jtd-split,
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-split,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-split,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-split {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }
}

@media (max-width: 760px) {
  .jtd-about-hero,
  .jtd-vision-hero,
  .jtd-trust-hero,
  .jtd-partner-hero,
  body.post-type-archive-jtd_news .jtd-news-hero,
  body.post-type-archive-jtd_service .jtd-service-hero,
  body.post-type-archive-jtd_case .jtd-case-archive-hero {
    padding: 52px 0 46px !important;
  }

  .jtd-about-hero .jtd-container,
  .jtd-vision-hero .jtd-container,
  .jtd-trust-hero .jtd-container,
  .jtd-partner-hero .jtd-container,
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-container,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-container,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-container {
    width: min(100% - 28px, 620px) !important;
  }

  .jtd-about-hero h1,
  .jtd-vision-hero h1,
  .jtd-trust-hero h1,
  .jtd-partner-hero h1,
  body.post-type-archive-jtd_news .jtd-news-hero h1,
  body.post-type-archive-jtd_service .jtd-service-hero h1,
  body.post-type-archive-jtd_case .jtd-case-archive-hero h1 {
    font-size: clamp(27px, 7vw, 32px) !important;
    line-height: 1.18 !important;
  }

  .jtd-about-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
  .jtd-vision-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
  .jtd-trust-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
  .jtd-partner-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow),
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-split > div:first-child > p:not(.jtd-eyebrow) {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .jtd-about-hero .jtd-photo-card,
  .jtd-vision-hero .jtd-vision-orbit,
  .jtd-trust-hero .jtd-trust-console,
  .jtd-partner-hero .jtd-ecosystem-visual,
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel {
    min-height: auto !important;
    padding: 16px 0 8px !important;
  }

  .jtd-about-hero .jtd-photo-card::before,
  .jtd-vision-hero .jtd-vision-orbit::before,
  .jtd-trust-hero .jtd-trust-console::before,
  .jtd-partner-hero .jtd-ecosystem-visual::before,
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics::before,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual::before,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel::before {
    inset: 0 !important;
    border-radius: 22px !important;
  }

  .jtd-vision-hero .jtd-vision-orbit,
  .jtd-trust-hero .jtd-trust-console,
  .jtd-partner-hero .jtd-ecosystem-visual,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel,
  body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
  }

  .jtd-vision-hero .jtd-vision-orbit strong,
  .jtd-trust-hero .jtd-trust-console strong,
  .jtd-partner-hero .jtd-ecosystem-visual strong,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual strong,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel strong,
  .jtd-vision-hero .jtd-vision-orbit span,
  .jtd-trust-hero .jtd-trust-console span,
  .jtd-partner-hero .jtd-ecosystem-visual span,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual span,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel span {
    min-height: 48px !important;
    justify-content: flex-start !important;
    padding: 0 16px !important;
    animation: none !important;
  }

  body.post-type-archive-jtd_news .jtd-news-hero .jtd-news-topics article {
    min-height: auto !important;
    padding: 18px 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jtd-about-hero::before,
  .jtd-about-hero::after,
  .jtd-vision-hero::before,
  .jtd-vision-hero::after,
  .jtd-trust-hero::before,
  .jtd-trust-hero::after,
  .jtd-partner-hero::before,
  .jtd-partner-hero::after,
  body.post-type-archive-jtd_news .jtd-news-hero::before,
  body.post-type-archive-jtd_news .jtd-news-hero::after,
  body.post-type-archive-jtd_service .jtd-service-hero::before,
  body.post-type-archive-jtd_service .jtd-service-hero::after,
  body.post-type-archive-jtd_case .jtd-case-archive-hero::before,
  body.post-type-archive-jtd_case .jtd-case-archive-hero::after,
  .jtd-vision-hero .jtd-vision-orbit span,
  .jtd-trust-hero .jtd-trust-console span,
  .jtd-partner-hero .jtd-ecosystem-visual span,
  body.post-type-archive-jtd_service .jtd-service-hero .jtd-service-visual span,
  body.post-type-archive-jtd_case .jtd-case-archive-hero .jtd-case-proof-panel span {
    animation: none !important;
  }
}

/* Content card refinement v1: quieter SaaS blocks below the hero */
.jtd-main > .jtd-section {
  position: relative !important;
  overflow: hidden !important;
  padding-top: 92px !important;
  padding-bottom: 92px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #fbfdff 100%) !important;
}

.jtd-main > .jtd-section--muted,
.jtd-main > .jtd-section:nth-of-type(even):not(.jtd-section--related) {
  background:
    radial-gradient(circle at 84% 12%, rgba(37, 99, 235, 0.045), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f6f9fe 100%) !important;
}

.jtd-main > .jtd-section--compact {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.jtd-section__header {
  max-width: 820px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  margin-bottom: 42px !important;
  text-align: center !important;
}

.jtd-section__header .jtd-eyebrow {
  margin-bottom: 12px !important;
}

.jtd-section__header h2,
.jtd-conversion-panel h2,
.jtd-richtext h2 {
  color: #0f172a !important;
  font-size: clamp(28px, 2.25vw, 32px) !important;
  font-weight: 720 !important;
  line-height: 1.28 !important;
}

.jtd-section__header p:not(.jtd-eyebrow) {
  max-width: 720px !important;
  margin: 12px auto 0 !important;
  color: #64748b !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}

.jtd-card-grid,
.jtd-customer-grid,
.jtd-case-principles,
.jtd-decision-row {
  gap: 24px !important;
}

.jtd-card,
.jtd-card-grid > .jtd-card,
.jtd-customer-card,
.jtd-value-card,
.jtd-process-card,
.jtd-roadmap article,
.jtd-capability-card,
.jtd-ai-grid article,
.jtd-platform-principles article,
.jtd-operating-board article,
.jtd-stat-grid article,
.jtd-product-paths article,
.jtd-decision-row article,
.jtd-case-principles article,
.jtd-security-layers article,
.jtd-about-position article {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 253, 255, 0.92) 100%) !important;
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.26) !important;
  backdrop-filter: blur(10px) saturate(1.04) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.04) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.jtd-card::before,
.jtd-customer-card::before,
.jtd-value-card::before,
.jtd-process-card::before,
.jtd-roadmap article::before,
.jtd-capability-card::before,
.jtd-ai-grid article::before,
.jtd-platform-principles article::before,
.jtd-operating-board article::before,
.jtd-stat-grid article::before,
.jtd-product-paths article::before,
.jtd-decision-row article::before,
.jtd-case-principles article::before,
.jtd-security-layers article::before,
.jtd-about-position article::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 18px !important;
  left: 18px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), transparent) !important;
  opacity: 0.9 !important;
}

.jtd-card:hover,
.jtd-card-grid > .jtd-card:hover,
.jtd-customer-card:hover,
.jtd-value-card:hover,
.jtd-process-card:hover,
.jtd-roadmap article:hover,
.jtd-capability-card:hover,
.jtd-ai-grid article:hover,
.jtd-platform-principles article:hover,
.jtd-operating-board article:hover,
.jtd-stat-grid article:hover,
.jtd-product-paths article:hover,
.jtd-decision-row article:hover,
.jtd-case-principles article:hover,
.jtd-security-layers article:hover,
.jtd-about-position article:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(225, 37, 27, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 253, 255, 0.96) 100%) !important;
  box-shadow: 0 24px 58px -40px rgba(15, 23, 42, 0.32), 0 0 0 1px rgba(225, 37, 27, 0.035) !important;
}

.jtd-card__body,
.jtd-product-card .jtd-card__body,
.jtd-solution-card .jtd-card__body,
.jtd-case-card .jtd-card__body,
.jtd-news-card .jtd-card__body,
.jtd-service-card .jtd-card__body,
.jtd-partner-card .jtd-card__body,
.jtd-trust-card .jtd-card__body,
.jtd-vision-card .jtd-card__body,
.jtd-line-card .jtd-card__body {
  padding: 28px !important;
}

.jtd-card h2,
.jtd-card h3,
.jtd-product-card h2,
.jtd-product-card h3,
.jtd-solution-card h2,
.jtd-solution-card h3,
.jtd-case-card h2,
.jtd-news-card h2,
.jtd-service-card h2,
.jtd-partner-card h3,
.jtd-customer-card h3,
.jtd-value-card h3,
.jtd-process-card h3,
.jtd-roadmap h3,
.jtd-capability-card h3,
.jtd-ai-grid h3,
.jtd-platform-principles h3,
.jtd-operating-board h3,
.jtd-product-paths h3,
.jtd-decision-row h2,
.jtd-case-principles h2,
.jtd-security-layers h3,
.jtd-about-position h2 {
  color: #0f172a !important;
  font-size: clamp(20px, 1.45vw, 22px) !important;
  font-weight: 650 !important;
  line-height: 1.34 !important;
}

.jtd-card p,
.jtd-product-card p,
.jtd-solution-card p,
.jtd-case-card p,
.jtd-news-card p,
.jtd-service-card p,
.jtd-partner-card p,
.jtd-customer-card p,
.jtd-value-card p,
.jtd-process-card p,
.jtd-roadmap p,
.jtd-capability-card p,
.jtd-ai-grid p,
.jtd-platform-principles p,
.jtd-operating-board p,
.jtd-product-paths p,
.jtd-decision-row p,
.jtd-case-principles p,
.jtd-security-layers p,
.jtd-about-position p {
  color: #64748b !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

.jtd-product-card__head,
.jtd-tag-row,
.jtd-case-card__meta {
  gap: 8px !important;
}

.jtd-tag,
.jtd-product-card__head span,
.jtd-case-card__meta span,
.jtd-trust-notes span {
  border-color: rgba(225, 37, 27, 0.13) !important;
  background: rgba(225, 37, 27, 0.035) !important;
  color: #e1251b !important;
  font-weight: 650 !important;
  box-shadow: none !important;
}

.jtd-process-card > span:first-child,
.jtd-decision-row article > span:first-child,
.jtd-about-capability-card .jtd-card__body > span:first-child,
.jtd-partner-type-card__icon,
.jtd-customer-card__icon,
.jtd-capability-card__icon {
  border: 1px solid rgba(225, 37, 27, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.82)),
    radial-gradient(circle at 34% 30%, rgba(225, 37, 27, 0.12), transparent 42%) !important;
  color: #e1251b !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 14px 30px -24px rgba(225, 37, 27, 0.34) !important;
}

@media (max-width: 760px) {
  .jtd-main > .jtd-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .jtd-main > .jtd-section--compact {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .jtd-section__header {
    margin-bottom: 30px !important;
    text-align: left !important;
  }

  .jtd-section__header p:not(.jtd-eyebrow) {
    margin-left: 0 !important;
  }

  .jtd-card-grid,
  .jtd-customer-grid,
  .jtd-case-principles,
  .jtd-decision-row {
    gap: 16px !important;
  }

  .jtd-card__body,
  .jtd-product-card .jtd-card__body,
  .jtd-solution-card .jtd-card__body,
  .jtd-case-card .jtd-card__body,
  .jtd-news-card .jtd-card__body,
  .jtd-service-card .jtd-card__body,
  .jtd-partner-card .jtd-card__body,
  .jtd-trust-card .jtd-card__body,
  .jtd-vision-card .jtd-card__body,
  .jtd-line-card .jtd-card__body {
    padding: 22px !important;
  }

  .jtd-card h2,
  .jtd-card h3,
  .jtd-product-card h2,
  .jtd-product-card h3,
  .jtd-solution-card h2,
  .jtd-solution-card h3,
  .jtd-case-card h2,
  .jtd-news-card h2,
  .jtd-service-card h2,
  .jtd-partner-card h3,
  .jtd-customer-card h3,
  .jtd-value-card h3,
  .jtd-process-card h3,
  .jtd-roadmap h3,
  .jtd-capability-card h3,
  .jtd-ai-grid h3,
  .jtd-platform-principles h3,
  .jtd-operating-board h3,
  .jtd-product-paths h3,
  .jtd-decision-row h2,
  .jtd-case-principles h2,
  .jtd-security-layers h3,
  .jtd-about-position h2 {
    font-size: 18px !important;
    line-height: 1.36 !important;
  }
}

/* Qualification assets v1: render real certificates without making the page heavy */
body.post-type-archive-jtd_qualification {
  background: #f8fafc !important;
}

body.post-type-archive-jtd_qualification .jtd-qualification-long-hero {
  position: relative !important;
  overflow: hidden !important;
  padding: 82px 0 72px !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.08), transparent 30%) !important;
}

body.post-type-archive-jtd_qualification .jtd-qualification-long-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px) !important;
  background-size: 88px 88px !important;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.58) 62%, transparent 100%) !important;
}

.jtd-qualification-hero-intro {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr) !important;
  align-items: end !important;
  gap: 42px !important;
  margin: 26px 0 34px !important;
}

.jtd-qualification-hero-intro h1 {
  max-width: 720px !important;
  color: #0f172a !important;
  font-size: clamp(32px, 3vw, 44px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

.jtd-qualification-hero-intro > p {
  max-width: 520px !important;
  margin: 0 !important;
  color: #475569 !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}

.jtd-qualification-long-hero__image {
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  margin: 0 !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.82) !important;
  background: #fff !important;
  box-shadow:
    0 34px 90px -62px rgba(15, 23, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.jtd-qualification-long-hero__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  filter: saturate(1.02) contrast(1.03) brightness(1.02) !important;
}

.jtd-qualification-hero-actions {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 28px !important;
}

.jtd-qualification-map-section {
  padding-top: 94px !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(225, 37, 27, 0.04), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-qualification-long-map {
  display: grid !important;
  gap: 30px !important;
  margin-top: 38px !important;
}

.jtd-qualification-long-image {
  overflow: hidden !important;
  margin: 0 !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: 26px !important;
  background: #fff !important;
  box-shadow: 0 26px 72px -58px rgba(15, 23, 42, 0.38) !important;
}

.jtd-qualification-long-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.jtd-qualification-story-card {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr) !important;
  gap: 26px !important;
  align-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(226, 232, 240, 0.86) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)) !important;
  box-shadow: 0 26px 72px -58px rgba(15, 23, 42, 0.38) !important;
}

.jtd-qualification-story-card__copy {
  padding: 34px 0 34px 34px !important;
}

.jtd-qualification-story-card__copy span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  margin-bottom: 22px !important;
  border-radius: 16px !important;
  color: #e1251b !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  background: rgba(225, 37, 27, 0.07) !important;
  box-shadow: inset 0 0 0 1px rgba(225, 37, 27, 0.12) !important;
}

.jtd-qualification-story-card__copy h2 {
  margin: 0 0 12px !important;
  color: #0f172a !important;
  font-size: 26px !important;
  line-height: 1.32 !important;
  font-weight: 750 !important;
}

.jtd-qualification-story-card__copy p {
  max-width: 420px !important;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
}

.jtd-qualification-story-card figure {
  margin: 0 !important;
  padding: 18px !important;
}

.jtd-qualification-story-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 20px 54px -44px rgba(15, 23, 42, 0.42) !important;
}

.jtd-qualification-proof-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.jtd-qualification-index-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  grid-column: 1 / -1 !important;
  margin-top: 10px !important;
}

.jtd-qualification-index-card {
  min-height: 0 !important;
  border-color: rgba(226, 232, 240, 0.9) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 18px 46px -40px rgba(15, 23, 42, 0.34) !important;
}

.jtd-qualification-index-card .jtd-card__body {
  min-height: 248px !important;
  padding: 22px !important;
}

.jtd-qualification-index-card h2 {
  margin-top: 14px !important;
  font-size: 21px !important;
  line-height: 1.35 !important;
}

.jtd-qualification-index-card p {
  color: #64748b !important;
  font-size: 14px !important;
  line-height: 1.68 !important;
}

body.post-type-archive-jtd_qualification .jtd-security-main {
  grid-column: 1 / -1 !important;
  min-height: auto !important;
  padding: 30px 32px !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(37, 99, 235, 0.052), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)) !important;
  color: #0f172a !important;
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.26) !important;
}

@media (max-width: 1180px) {
  .jtd-qualification-hero-intro {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .jtd-qualification-story-card {
    grid-template-columns: 1fr !important;
  }

  .jtd-qualification-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .jtd-qualification-story-card__copy {
    padding: 30px 30px 0 !important;
  }
}

@media (max-width: 760px) {
  body.post-type-archive-jtd_qualification .jtd-qualification-long-hero {
    min-height: auto !important;
    padding: 64px 0 46px !important;
  }

  .jtd-qualification-hero-intro {
    margin: 18px 0 24px !important;
  }

  .jtd-qualification-hero-intro h1 {
    font-size: 29px !important;
  }

  .jtd-qualification-long-hero__image,
  .jtd-qualification-long-image {
    border-radius: 18px !important;
  }

  .jtd-qualification-map-section {
    padding-top: 66px !important;
  }

  .jtd-qualification-story-card {
    border-radius: 20px !important;
  }

  .jtd-qualification-story-card__copy {
    padding: 24px 22px 0 !important;
  }

  .jtd-qualification-story-card__copy h2 {
    font-size: 22px !important;
  }

  .jtd-qualification-story-card figure {
    padding: 14px !important;
  }

  .jtd-qualification-index-grid {
    grid-template-columns: 1fr !important;
  }

  .jtd-qualification-index-card .jtd-card__body {
    min-height: auto !important;
  }
}

body.post-type-archive-jtd_qualification .jtd-security-main h3 {
  color: #0f172a !important;
}

body.post-type-archive-jtd_qualification .jtd-security-main p {
  max-width: 960px !important;
  color: #64748b !important;
}

.jtd-qualification-proof-wall {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
  grid-column: 1 / -1 !important;
  margin: 24px 0 34px !important;
}

.jtd-qualification-proof-wall figure,
.jtd-qualification-card__media,
.jtd-qualification-detail-image {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)) !important;
  box-shadow: 0 20px 52px -42px rgba(15, 23, 42, 0.34) !important;
}

.jtd-qualification-proof-wall figure {
  min-height: 236px !important;
  margin: 0 !important;
}

.jtd-qualification-proof-wall img,
.jtd-qualification-card__media img {
  display: block !important;
  width: 100% !important;
  height: 170px !important;
  object-fit: cover !important;
  object-position: top center !important;
  filter: saturate(0.96) contrast(1.04) brightness(1.02) !important;
  transition: transform 220ms ease, filter 220ms ease !important;
}

.jtd-qualification-proof-wall figure:hover img,
.jtd-qualification-card:hover .jtd-qualification-card__media img {
  transform: scale(1.025) !important;
  filter: saturate(1.02) contrast(1.06) brightness(1.03) !important;
}

.jtd-qualification-proof-wall figcaption {
  display: grid !important;
  gap: 4px !important;
  padding: 14px 14px 16px !important;
}

.jtd-qualification-proof-wall figcaption strong {
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.jtd-qualification-proof-wall figcaption span {
  color: #64748b !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.jtd-qualification-card__media {
  margin: 0 !important;
  border-right: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  box-shadow: none !important;
}

.jtd-qualification-card__media img {
  height: 168px !important;
}

.jtd-qualification-detail-image {
  margin: 0 0 28px !important;
  padding: 18px !important;
}

.jtd-qualification-detail-image img {
  display: block !important;
  width: 100% !important;
  max-height: 720px !important;
  object-fit: contain !important;
  object-position: top center !important;
  border-radius: 12px !important;
  background: #fff !important;
}

.jtd-qualification-detail-image figcaption {
  margin-top: 12px !important;
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

@media (max-width: 1180px) {
  .jtd-qualification-proof-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .jtd-qualification-proof-wall {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin: 18px 0 26px !important;
  }

  .jtd-qualification-proof-wall img,
  .jtd-qualification-card__media img {
    height: 148px !important;
  }

  .jtd-qualification-proof-wall figcaption {
    padding: 12px !important;
  }

  .jtd-qualification-detail-image {
    padding: 12px !important;
  }
}

/* Product matrix cleanup v1: no cropped screenshot wall, no noisy overlay labels */
body.home #products .jtd-product-card,
body.post-type-archive-jtd_product .jtd-product-card {
  border-color: rgba(226, 232, 240, 0.86) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 18px 48px -38px rgba(15, 23, 42, 0.38) !important;
}

body.home #products .jtd-product-card:hover,
body.post-type-archive-jtd_product .jtd-product-card:hover {
  border-color: rgba(225, 37, 27, 0.18) !important;
  box-shadow: 0 24px 62px -42px rgba(15, 23, 42, 0.42) !important;
}

body.home #products .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview--image,
body.home #products .jtd-product-card:nth-child(4n) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n + 1) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n + 2) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n + 3) .jtd-product-card__preview--image,
body.post-type-archive-jtd_product .jtd-product-card:nth-child(4n) .jtd-product-card__preview--image {
  min-height: 156px !important;
  height: 156px !important;
  padding: 18px !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.78) !important;
  background:
    radial-gradient(circle at 74% 20%, rgba(37, 99, 235, 0.08), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(225, 37, 27, 0.045), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%) !important;
}

body.home #products .jtd-product-card__preview--image > img,
body.post-type-archive-jtd_product .jtd-product-card__preview--image > img {
  width: 100% !important;
  height: 120px !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: saturate(1.02) contrast(1.02) !important;
  transform: none !important;
  transform-origin: center !important;
}

body.home #products .jtd-product-card:hover .jtd-product-card__preview--image > img,
body.post-type-archive-jtd_product .jtd-product-card:hover .jtd-product-card__preview--image > img {
  transform: translateY(-2px) !important;
  filter: saturate(1.04) contrast(1.03) !important;
}

body.home #products .jtd-product-card__preview--image::after,
body.post-type-archive-jtd_product .jtd-product-card__preview--image::after,
body.home #products .jtd-product-card__preview--image .jtd-product-card__preview-meta,
body.post-type-archive-jtd_product .jtd-product-card__preview--image .jtd-product-card__preview-meta {
  display: none !important;
}

body.home #products .jtd-product-card .jtd-card__body,
body.post-type-archive-jtd_product .jtd-product-card .jtd-card__body {
  padding-top: 24px !important;
}

/* Mega menu stability hotfix v1: fixed desktop positioning and hover bridge */
@media (min-width: 1025px) {
  .jtd-site-header,
  .jtd-header__inner,
  .jtd-primary-nav,
  .jtd-primary-nav__list,
  .jtd-primary-nav__item,
  .jtd-has-mega {
    overflow: visible !important;
  }

  .jtd-primary-nav,
  .jtd-primary-nav__list,
  .jtd-primary-nav__item,
  .jtd-has-mega {
    position: static !important;
  }

  .jtd-primary-nav__item .jtd-mega-menu,
  .jtd-mega-menu {
    position: fixed !important;
    top: 76px !important;
    left: 50% !important;
    right: auto !important;
    z-index: 140 !important;
    display: block !important;
    width: min(calc(100vw - 64px), 1120px) !important;
    max-height: calc(100vh - 96px) !important;
    overflow: auto !important;
    padding: 28px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 0 0 24px 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 60px -38px rgba(15, 23, 42, 0.42), 0 1px 0 rgba(255, 255, 255, 0.82) inset !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(-50%, -6px, 0) !important;
    transition: opacity 140ms ease, visibility 140ms ease, transform 140ms ease !important;
    will-change: opacity, transform !important;
    backdrop-filter: blur(18px) saturate(1.05) !important;
  }

  .jtd-primary-nav__item .jtd-mega-menu:hover,
  .jtd-mega-menu:hover {
    background: #ffffff !important;
  }

  .jtd-primary-nav__item .jtd-mega-menu::before,
  .jtd-mega-menu::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 100% !important;
    left: 0 !important;
    display: block !important;
    height: 16px !important;
    background: transparent !important;
  }

  .jtd-has-mega:hover > .jtd-mega-menu,
  .jtd-has-mega:focus-within > .jtd-mega-menu,
  .jtd-has-mega.is-hover-open > .jtd-mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(-50%, 0, 0) !important;
  }

  .jtd-has-mega:hover > .jtd-nav-row > a,
  .jtd-has-mega:focus-within > .jtd-nav-row > a,
  .jtd-has-mega.is-hover-open > .jtd-nav-row > a {
    color: var(--jtd-red) !important;
  }
}

/* Header brand upgrade v1: clearer logo mass, separated tagline, fixed nav height */
.jtd-site-header .jtd-header__inner {
  width: min(100% - 48px, 1320px) !important;
  height: 64px !important;
  min-height: 64px !important;
  align-items: center !important;
}

.jtd-site-header .jtd-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  height: 64px !important;
  min-width: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.jtd-site-header .jtd-logo__brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  width: 192px !important;
  height: 24px !important;
  overflow: hidden !important;
}

.jtd-site-header .jtd-logo__image,
.jtd-site-header .custom-logo-link img {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  height: 24px !important;
}

.jtd-site-header .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

.jtd-logo__divider {
  display: inline-block !important;
  width: 1px !important;
  height: 12px !important;
  margin: 0 16px !important;
  border-radius: 999px !important;
  background: rgba(226, 232, 240, 0.7) !important;
}

.jtd-logo__tagline {
  display: inline-flex !important;
  align-items: center !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.jtd-site-header .jtd-primary-nav__item > a,
.jtd-site-header .jtd-nav-row > a {
  min-height: 64px !important;
  white-space: nowrap !important;
  line-height: 1.1 !important;
}

.jtd-site-header .jtd-primary-nav {
  min-width: 0 !important;
}

.jtd-site-header .jtd-primary-nav__list {
  flex-wrap: nowrap !important;
  gap: 16px !important;
}

.jtd-site-header .jtd-header__actions {
  flex: 0 0 auto !important;
  gap: 12px !important;
}

@media (min-width: 1025px) {
  .jtd-primary-nav__item .jtd-mega-menu,
  .jtd-mega-menu {
    top: 64px !important;
    max-height: calc(100vh - 80px) !important;
  }
}

@media (max-width: 1320px) {
  .jtd-logo__divider,
  .jtd-logo__tagline {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .jtd-site-header .jtd-header__inner {
    height: 56px !important;
    min-height: 56px !important;
  }

  .jtd-site-header .jtd-logo {
    height: 56px !important;
  }

  .jtd-site-header .jtd-logo__brand {
    width: 192px !important;
    height: 24px !important;
  }

  .jtd-site-header .jtd-logo__image,
  .jtd-site-header .custom-logo-link img {
    height: 24px !important;
  }

  .jtd-site-header .jtd-primary-nav__item > a,
  .jtd-site-header .jtd-nav-row > a {
    min-height: 48px !important;
  }
}

/* Qualifications trust page v2: Feishu-style authority material + IP marquee */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.animate-marquee-left {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.animate-marquee-right {
  display: flex;
  width: max-content;
  animation: scroll-right 40s linear infinite;
  will-change: transform;
}

.animate-marquee-left:hover,
.animate-marquee-right:hover {
  animation-play-state: paused;
}

.jtd-site-header {
  min-height: 56px !important;
  border-bottom: 1px solid rgba(241, 245, 249, 0.92) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.jtd-site-header .jtd-header__inner,
.jtd-site-header .jtd-logo {
  height: 56px !important;
  min-height: 56px !important;
}

.jtd-site-header .jtd-logo__brand {
  width: 192px !important;
  height: 24px !important;
}

.jtd-site-header .jtd-logo__image,
.jtd-site-header .custom-logo-link img {
  height: 24px !important;
  width: auto !important;
}

.jtd-site-header .jtd-logo__divider {
  height: 12px !important;
  margin-left: 16px !important;
  background: rgba(226, 232, 240, 0.72) !important;
}

.jtd-site-header .jtd-logo__tagline {
  margin-left: 12px !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

body.post-type-archive-jtd_qualification .jtd-section {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

body.post-type-archive-jtd_qualification .jtd-qualification-long-hero {
  padding: 92px 0 92px !important;
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.12), transparent 30%),
    radial-gradient(circle at 14% 26%, rgba(225, 37, 27, 0.055), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)) !important;
}

.jtd-qualification-hero-intro {
  grid-template-columns: minmax(0, 0.5fr) minmax(360px, 0.5fr) !important;
  margin-bottom: 36px !important;
}

.jtd-qualification-hero-intro h1 {
  font-size: clamp(34px, 3.15vw, 48px) !important;
  font-weight: 760 !important;
}

.jtd-qualification-hero-intro > p {
  max-width: 610px !important;
  font-size: 17px !important;
  line-height: 1.86 !important;
}

.jtd-qualification-core-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.jtd-qualification-core-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 8% -12% auto auto !important;
  width: 460px !important;
  height: 460px !important;
  border-radius: 999px !important;
  pointer-events: none !important;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09), transparent 66%) !important;
}

.jtd-qualification-core-grid {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 42px !important;
}

.jtd-qualification-core-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr) !important;
  gap: 26px !important;
  align-items: center !important;
  min-height: 320px !important;
  overflow: hidden !important;
  padding: 26px !important;
  border: 1px solid rgba(226, 232, 240, 0.92) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 18px 58px -50px rgba(15, 23, 42, 0.42) !important;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease !important;
}

.jtd-qualification-core-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 24% 12%, rgba(59, 130, 246, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.42), rgba(255, 255, 255, 0.08)) !important;
  transition: opacity 240ms ease !important;
}

.jtd-qualification-core-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(59, 130, 246, 0.18) !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 28px 86px -58px rgba(37, 99, 235, 0.34) !important;
}

.jtd-qualification-core-card:hover::before {
  opacity: 1 !important;
}

.jtd-qualification-core-card figure,
.jtd-qualification-core-card div {
  position: relative !important;
  z-index: 1 !important;
}

.jtd-qualification-core-card figure {
  overflow: hidden !important;
  margin: 0 !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 18px 52px -42px rgba(15, 23, 42, 0.42) !important;
}

.jtd-qualification-core-card img {
  display: block !important;
  width: 100% !important;
  height: 238px !important;
  object-fit: cover !important;
  object-position: top center !important;
  filter: saturate(0.98) contrast(1.04) brightness(1.02) !important;
}

.jtd-qualification-core-card span {
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 16px !important;
  padding: 5px 11px !important;
  border-radius: 999px !important;
  color: #e1251b !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  background: rgba(225, 37, 27, 0.07) !important;
  box-shadow: inset 0 0 0 1px rgba(225, 37, 27, 0.12) !important;
}

.jtd-qualification-core-card h2 {
  margin: 0 0 14px !important;
  color: #0f172a !important;
  font-size: 25px !important;
  line-height: 1.32 !important;
  font-weight: 760 !important;
}

.jtd-qualification-core-card p {
  margin: 0 !important;
  color: #475569 !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
}

.jtd-qualification-ip-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.09), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.jtd-qualification-marquee {
  position: relative !important;
  display: grid !important;
  gap: 24px !important;
  width: min(100%, 1680px) !important;
  margin: 46px auto 0 !important;
  overflow: hidden !important;
}

.jtd-qualification-marquee::before,
.jtd-qualification-marquee::after {
  content: "" !important;
  position: absolute !important;
  z-index: 2 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: min(16vw, 220px) !important;
  pointer-events: none !important;
}

.jtd-qualification-marquee::before {
  left: 0 !important;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%) !important;
}

.jtd-qualification-marquee::after {
  right: 0 !important;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%) !important;
}

.jtd-qualification-marquee__row {
  overflow: hidden !important;
}

.jtd-qualification-marquee__card {
  flex: 0 0 auto !important;
  width: 192px !important;
  height: 256px !important;
  margin: 0 12px !important;
  padding: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(226, 232, 240, 0.92) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: 0 18px 54px -44px rgba(15, 23, 42, 0.4) !important;
}

.jtd-qualification-marquee__card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: 12px !important;
  filter: saturate(0.98) contrast(1.04) brightness(1.02) !important;
}

@media (max-width: 1180px) {
  .jtd-qualification-core-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body.post-type-archive-jtd_qualification .jtd-section {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }

  .jtd-qualification-hero-intro {
    grid-template-columns: 1fr !important;
  }

  .jtd-qualification-hero-intro > p {
    font-size: 15px !important;
  }

  .jtd-qualification-core-card {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .jtd-qualification-core-card img {
    height: 220px !important;
  }

  .jtd-qualification-marquee__card {
    width: 156px !important;
    height: 216px !important;
    margin: 0 8px !important;
    padding: 9px !important;
  }
}

/* Mega menu icon rebuild v1: replace placeholder dots with semantic line icons */
.jtd-mega-menu a span::before {
  content: none !important;
  display: none !important;
}

.jtd-primary-nav__item .jtd-mega-menu,
.jtd-mega-menu {
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 26px 80px -58px rgba(15, 23, 42, 0.42) !important;
}

.jtd-mega-menu__grid--products {
  width: min(1280px, calc(100vw - 64px)) !important;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) minmax(260px, 1fr) 250px !important;
  gap: 28px !important;
  padding: 32px !important;
}

.jtd-has-mega:first-child > .jtd-mega-menu {
  width: min(1280px, calc(100vw - 64px)) !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.98) !important;
}

.jtd-mega-link {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  min-height: auto !important;
  margin: 4px 0 !important;
  padding: 12px !important;
  border-radius: 14px !important;
  color: #0f172a !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: background 200ms ease, transform 200ms ease, color 200ms ease, box-shadow 200ms ease !important;
}

.jtd-mega-link:hover,
.jtd-mega-link:focus-visible {
  transform: translateY(-1px) !important;
  background:
    radial-gradient(circle at 16% 24%, rgba(225, 37, 27, 0.05), transparent 34%),
    rgba(248, 250, 252, 0.82) !important;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.64) !important;
}

.jtd-mega-link__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(226, 232, 240, 0.88) !important;
  color: #94a3b8 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.82)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px -18px rgba(15, 23, 42, 0.3) !important;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease !important;
}

.jtd-mega-link:hover .jtd-mega-link__icon,
.jtd-mega-link:focus-visible .jtd-mega-link__icon {
  border-color: rgba(225, 37, 27, 0.22) !important;
  color: #e1251b !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 242, 0.64)) !important;
}

.jtd-mega-link__icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.75 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  filter: none !important;
}

.jtd-mega-menu .jtd-mega-link__copy {
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
}

.jtd-mega-menu .jtd-mega-link__copy b {
  display: block !important;
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

.jtd-mega-menu .jtd-mega-link__copy span {
  display: block !important;
  margin-top: 4px !important;
  color: #64748b !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.jtd-mega-menu__grid--products .jtd-mega-menu__cta {
  align-self: stretch !important;
  min-height: 100% !important;
  padding: 26px !important;
  border: 1px solid rgba(226, 232, 240, 0.78) !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 100% 100%, rgba(225, 37, 27, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.94)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}

.jtd-mega-menu__grid--products .jtd-mega-menu__cta .jtd-btn {
  margin-top: 20px !important;
  box-shadow: 0 16px 34px -24px rgba(225, 37, 27, 0.56) !important;
}

@media (max-width: 1180px) {
  .jtd-mega-menu__grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .jtd-mega-menu__grid--products {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 16px !important;
  }

  .jtd-mega-link {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    padding: 10px !important;
  }

  .jtd-mega-link__icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
}

/* Homepage v3: restrained B2B business narrative */
:root {
  --jtd-red: #E1251B;
  --jtd-red-hover: #C91F17;
  --jtd-red-pressed: #A91612;
  --jtd-red-soft: #FFF1F0;
  --jtd-red-border: #F7B8B5;
  --jtd-navy-900: #08111F;
  --jtd-navy-800: #0B1220;
  --jtd-gray-900: #111827;
  --jtd-gray-700: #344054;
  --jtd-gray-600: #475467;
  --jtd-gray-500: #667085;
  --jtd-bg: #FFFFFF;
  --jtd-bg-soft: #F8FAFC;
  --jtd-bg-blue: #F3F7FC;
  --jtd-border: #E5EAF0;
  --jtd-tech-blue: #2563EB;
  --jtd-data-cyan: #06AED4;
}

.jtd-home-v3-hero,
.jtd-v3-section,
.jtd-v3-trust,
.jtd-v3-bottom-cta {
  color: var(--jtd-gray-900);
  background: var(--jtd-bg);
}

.jtd-home-v3-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  background:
    radial-gradient(circle at 83% 18%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.jtd-home-v3-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(226, 234, 240, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 234, 240, 0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.jtd-home-v3-hero__grid,
.jtd-v3-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  z-index: 1;
}

.jtd-home-v3-hero__copy h1 {
  max-width: 680px;
  margin: 18px 0 18px;
  color: var(--jtd-navy-900);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.jtd-home-v3-hero__lead {
  max-width: 690px;
  margin: 0;
  color: var(--jtd-gray-600);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.jtd-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jtd-red);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.jtd-v3-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.08);
}

.jtd-home-v3-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.jtd-home-v3-hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--jtd-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--jtd-gray-600);
  font-size: 13px;
  font-weight: 500;
}

.jtd-v3-weak-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--jtd-gray-700);
  font-weight: 700;
  text-decoration: none;
}

.jtd-v3-weak-link:hover {
  color: var(--jtd-red);
}

.jtd-chain-hub {
  position: relative;
  min-height: 620px;
}

.jtd-chain-hub__panel {
  position: relative;
  width: min(100%, 720px);
  min-height: 600px;
  margin-left: auto;
  border: 1px solid rgba(229, 234, 240, 0.86);
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.12), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(6, 174, 212, 0.1), transparent 26%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 36px 92px -72px rgba(8, 17, 31, 0.62);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.jtd-chain-hub__panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(229, 234, 240, 0.68);
  border-radius: 26px;
  background-image:
    linear-gradient(rgba(226, 234, 240, 0.46) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 234, 240, 0.46) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.jtd-chain-hub__lines {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  z-index: 1;
}

.jtd-chain-hub__lines path {
  fill: none;
  stroke: rgba(71, 84, 103, 0.22);
  stroke-width: 0.75;
  transition: stroke 220ms ease, stroke-width 220ms ease, opacity 220ms ease;
}

.jtd-chain-hub__lines .jtd-chain-hub__ring {
  stroke: rgba(37, 99, 235, 0.16);
  stroke-dasharray: 3 4;
}

.jtd-chain-hub[data-active="resource"] [data-chain-line="resource"],
.jtd-chain-hub[data-active="product"] [data-chain-line="product"],
.jtd-chain-hub[data-active="channel"] [data-chain-line="channel"],
.jtd-chain-hub[data-active="order"] [data-chain-line="order"],
.jtd-chain-hub[data-active="contract"] [data-chain-line="contract"],
.jtd-chain-hub[data-active="finance"] [data-chain-line="finance"],
.jtd-chain-hub[data-active="dashboard"] [data-chain-line="dashboard"] {
  stroke: var(--jtd-red);
  stroke-width: 1.2;
  opacity: 0.95;
}

.jtd-chain-hub__center,
.jtd-chain-node,
.jtd-chain-shot {
  position: absolute;
}

.jtd-chain-hub__center { z-index: 4; }
.jtd-chain-node { z-index: 8; }
.jtd-chain-shot { z-index: 5; pointer-events: none; }

.jtd-chain-hub__center {
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  padding: 22px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.92));
  color: var(--jtd-navy-900);
  text-align: center;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
  box-shadow: 0 28px 70px -50px rgba(37, 99, 235, 0.66);
}

.jtd-chain-node {
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 10px 14px;
  border: 1px solid rgba(229, 234, 240, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--jtd-gray-700);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 36px -30px rgba(8, 17, 31, 0.52);
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.jtd-chain-node.is-active,
.jtd-chain-node:hover {
  transform: translate(-50%, -50%) translateY(-3px);
  border-color: rgba(225, 37, 27, 0.42);
  color: var(--jtd-red);
  box-shadow: 0 22px 44px -30px rgba(225, 37, 27, 0.66);
}

.jtd-chain-shot {
  overflow: hidden;
  width: 198px;
  border: 1px solid rgba(229, 234, 240, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px -46px rgba(8, 17, 31, 0.58);
  opacity: 0.78;
  transform: translateY(0) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.jtd-chain-shot img {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
  object-position: top left;
}

.jtd-chain-shot b,
.jtd-chain-shot span {
  display: block;
  padding: 0 14px;
}

.jtd-chain-shot b {
  padding-top: 12px;
  color: var(--jtd-navy-900);
  font-size: 14px;
}

.jtd-chain-shot span {
  padding-bottom: 14px;
  color: var(--jtd-gray-500);
  font-size: 12px;
  line-height: 1.45;
}

.jtd-chain-shot--order { right: 32px; top: 92px; }
.jtd-chain-shot--contract { left: 34px; bottom: 78px; }
.jtd-chain-shot--finance { right: 42px; bottom: 74px; }
.jtd-chain-shot--dashboard { left: 38px; top: 86px; }

.jtd-chain-shot.is-active {
  opacity: 1;
  transform: translateY(-7px) scale(1);
  border-color: rgba(225, 37, 27, 0.28);
  box-shadow: 0 30px 70px -45px rgba(225, 37, 27, 0.48);
}

.jtd-v3-section {
  padding: 92px 0;
}

.jtd-v3-section--blue {
  background: var(--jtd-bg-blue);
}

.jtd-v3-section--navy {
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(180deg, var(--jtd-navy-900), var(--jtd-navy-800));
  color: #fff;
}

.jtd-v3-section__head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.jtd-v3-section__head--left {
  margin-left: 0;
  text-align: left;
}

.jtd-v3-section__head h2,
.jtd-v3-split h2,
.jtd-v3-bottom-cta h2 {
  margin: 14px 0 10px;
  color: var(--jtd-navy-900);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 730;
  line-height: 1.25;
  letter-spacing: 0;
}

.jtd-v3-section__head p,
.jtd-v3-split p,
.jtd-v3-bottom-cta p {
  margin: 0;
  color: var(--jtd-gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.jtd-v3-section--navy .jtd-v3-section__head h2,
.jtd-v3-section--navy .jtd-v3-split h2,
.jtd-v3-section--navy .jtd-v3-section__head p,
.jtd-v3-section--navy .jtd-v3-split p {
  color: rgba(255, 255, 255, 0.92);
}

.jtd-v3-section--navy .jtd-v3-section__head p,
.jtd-v3-section--navy .jtd-v3-split p {
  color: rgba(255, 255, 255, 0.66);
}

.jtd-v3-trust {
  border-top: 1px solid var(--jtd-border);
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-v3-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jtd-v3-trust__grid a {
  display: block;
  min-height: 112px;
  padding: 28px 24px;
  border-right: 1px solid var(--jtd-border);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease;
}

.jtd-v3-trust__grid a:last-child {
  border-right: 0;
}

.jtd-v3-trust__grid a:hover {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.045), #fff);
}

.jtd-v3-trust__grid strong,
.jtd-v3-trust__grid span {
  display: block;
}

.jtd-v3-trust__grid strong {
  color: var(--jtd-navy-900);
  font-size: 15px;
}

.jtd-v3-trust__grid span {
  margin-top: 8px;
  color: var(--jtd-gray-500);
  font-size: 13px;
  line-height: 1.45;
}

.jtd-v3-role-grid,
.jtd-v3-pain-grid,
.jtd-solution-grid-v3,
.jtd-case-grid-v3,
.jtd-update-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.jtd-v3-role-card,
.jtd-v3-pain-grid article,
.jtd-solution-grid-v3 article,
.jtd-case-grid-v3 article,
.jtd-update-grid-v3 article {
  border: 1px solid var(--jtd-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 52px -48px rgba(8, 17, 31, 0.45);
}

.jtd-v3-role-card {
  min-height: 220px;
  padding: 26px;
}

.jtd-v3-role-card h3,
.jtd-v3-pain-grid h3,
.jtd-solution-grid-v3 h3,
.jtd-case-grid-v3 h3,
.jtd-update-grid-v3 h3 {
  margin: 0 0 12px;
  color: var(--jtd-navy-900);
  font-size: 21px;
  font-weight: 720;
  line-height: 1.35;
}

.jtd-v3-role-card p,
.jtd-v3-pain-grid p,
.jtd-solution-grid-v3 dd,
.jtd-case-grid-v3 p,
.jtd-update-grid-v3 p {
  color: var(--jtd-gray-600);
  font-size: 15px;
  line-height: 1.65;
}

.jtd-v3-role-card a,
.jtd-solution-grid-v3 a,
.jtd-update-grid-v3 a,
.jtd-product-group__items a {
  color: var(--jtd-red);
  font-weight: 700;
  text-decoration: none;
}

.jtd-v3-role-card__sub {
  display: block;
  margin-top: 10px;
  color: var(--jtd-gray-600) !important;
  font-size: 14px;
}

.jtd-v3-pain-grid article {
  padding: 24px;
  background: #fff;
}

.jtd-five-flow {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid var(--jtd-border);
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08), transparent 30%),
    #fff;
  overflow: hidden;
}

.jtd-five-flow::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(37, 99, 235, 0.24);
  border-radius: 999px;
}

.jtd-five-flow strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 174px;
  height: 174px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--jtd-navy-900);
  color: #fff;
  text-align: center;
  padding: 22px;
  font-size: 18px;
  line-height: 1.35;
  z-index: 2;
}

.jtd-five-flow__item {
  position: absolute;
  width: 180px;
  padding: 18px;
  border: 1px solid var(--jtd-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px -42px rgba(8, 17, 31, 0.5);
}

.jtd-five-flow__item h3 {
  margin: 0 0 8px;
  color: var(--jtd-navy-900);
  font-size: 18px;
}

.jtd-five-flow__item p {
  color: var(--jtd-gray-500);
  font-size: 13px;
  line-height: 1.55;
}

.jtd-five-flow__item--1 { top: 42px; left: 50%; transform: translateX(-50%); }
.jtd-five-flow__item--2 { top: 160px; right: 38px; }
.jtd-five-flow__item--3 { right: 86px; bottom: 44px; }
.jtd-five-flow__item--4 { left: 86px; bottom: 44px; }
.jtd-five-flow__item--5 { top: 160px; left: 38px; }

.jtd-business-loop-v3 {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
}

.jtd-business-loop-v3__rail {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
}

.jtd-business-loop-v3__rail button {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.jtd-business-loop-v3__rail button span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.jtd-business-loop-v3__rail button.is-active,
.jtd-business-loop-v3__rail button:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 37, 27, 0.5);
  background: var(--jtd-red);
  color: #fff;
}

.jtd-business-loop-v3__rail button.is-active span,
.jtd-business-loop-v3__rail button:hover span {
  color: rgba(255, 255, 255, 0.76);
}

.jtd-business-loop-v3__detail {
  margin-top: 22px;
}

.jtd-business-loop-v3__detail article {
  display: none;
  min-height: 120px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.jtd-business-loop-v3__detail article.is-active {
  display: block;
}

.jtd-business-loop-v3__detail h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.jtd-business-loop-v3__detail p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.jtd-architecture {
  display: grid;
  gap: 14px;
}

.jtd-architecture article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--jtd-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.jtd-architecture h3 {
  margin: 0;
  color: var(--jtd-navy-900);
  font-size: 20px;
}

.jtd-architecture div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jtd-architecture span,
.jtd-ecosystem-types span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--jtd-border);
  border-radius: 999px;
  background: #fff;
  color: var(--jtd-gray-600);
  font-size: 13px;
  font-weight: 600;
}

.jtd-v3-security-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--jtd-tech-blue);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--jtd-gray-600);
  line-height: 1.65;
}

.jtd-product-matrix-v3 {
  display: grid;
  gap: 20px;
}

.jtd-product-group {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--jtd-border);
  border-radius: 24px;
  background: #fff;
}

.jtd-product-group--1 {
  border-color: rgba(225, 37, 27, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 241, 240, 0.72), #fff 34%);
}

.jtd-product-group__head h3 {
  margin: 0 0 8px;
  color: var(--jtd-navy-900);
  font-size: 22px;
}

.jtd-product-group__head p {
  color: var(--jtd-gray-500);
  font-size: 14px;
  line-height: 1.65;
}

.jtd-product-group__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.jtd-product-group__items a {
  display: block;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--jtd-border);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.72);
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.jtd-product-group__items a:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 37, 27, 0.24);
  background: #fff;
}

.jtd-product-group__items strong,
.jtd-product-group__items span {
  display: block;
}

.jtd-product-group__items strong {
  color: var(--jtd-navy-900);
  font-size: 16px;
}

.jtd-product-group__items span {
  margin-top: 8px;
  color: var(--jtd-gray-600);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.jtd-solution-grid-v3 article,
.jtd-case-grid-v3 article,
.jtd-update-grid-v3 article {
  padding: 26px;
}

.jtd-solution-grid-v3 dl {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
}

.jtd-solution-grid-v3 dt {
  color: var(--jtd-navy-900);
  font-size: 13px;
  font-weight: 760;
}

.jtd-solution-grid-v3 dd {
  margin: -6px 0 6px;
}

.jtd-case-grid-v3 p b {
  display: inline-block;
  min-width: 42px;
  margin-right: 8px;
  color: var(--jtd-navy-900);
}

.jtd-delivery-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jtd-delivery-flow article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--jtd-border);
  border-radius: 18px;
  background: #fff;
}

.jtd-delivery-flow span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--jtd-bg-blue);
  color: var(--jtd-tech-blue);
  font-weight: 760;
}

.jtd-delivery-flow h3 {
  margin: 0;
  color: var(--jtd-navy-900);
  font-size: 18px;
}

.jtd-v3-section--ecosystem .jtd-btn--secondary,
.jtd-v3-bottom-cta .jtd-btn--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.jtd-ecosystem-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.jtd-ecosystem-types span {
  min-height: 72px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.jtd-update-grid-v3 article > span {
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 760;
}

.jtd-v3-bottom-cta {
  padding: 52px 0 0;
  background: var(--jtd-bg-soft);
}

.jtd-v3-bottom-cta__panel {
  position: relative;
  overflow: hidden;
  padding: 50px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(225, 37, 27, 0.12), transparent 28%),
    var(--jtd-navy-900);
  color: #fff;
}

.jtd-v3-bottom-cta__panel h2,
.jtd-v3-bottom-cta__panel p {
  color: #fff;
}

.jtd-v3-bottom-cta__panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  .jtd-chain-node,
  .jtd-chain-shot,
  .jtd-business-loop-v3__rail button,
  .jtd-product-group__items a {
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .jtd-home-v3-hero__grid,
  .jtd-v3-split {
    grid-template-columns: 1fr;
  }

  .jtd-chain-hub__panel {
    margin: 0 auto;
  }

  .jtd-v3-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-v3-trust__grid a {
    border-bottom: 1px solid var(--jtd-border);
  }

  .jtd-business-loop-v3__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-product-group,
  .jtd-architecture article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .jtd-home-v3-hero {
    padding: 72px 0 56px;
  }

  .jtd-home-v3-hero__copy h1 {
    font-size: 32px;
  }

  .jtd-home-v3-hero__lead {
    font-size: 15px;
  }

  .jtd-chain-hub {
    min-height: 580px;
    margin-inline: -8px;
  }

  .jtd-chain-hub__panel {
    min-height: 560px;
    border-radius: 24px;
  }

  .jtd-chain-hub__center {
    width: 136px;
    height: 136px;
    font-size: 15px;
  }

  .jtd-chain-node {
    padding: 8px 10px;
    font-size: 12px;
  }

  .jtd-chain-shot {
    width: 160px;
  }

  .jtd-chain-shot img {
    height: 78px;
  }

  .jtd-chain-shot--order { right: 18px; top: 82px; }
  .jtd-chain-shot--dashboard { left: 18px; top: 82px; }
  .jtd-chain-shot--contract { left: 18px; bottom: 64px; }
  .jtd-chain-shot--finance { right: 18px; bottom: 64px; }

  .jtd-v3-section {
    padding: 64px 0;
  }

  .jtd-v3-section__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .jtd-v3-section__head h2,
  .jtd-v3-split h2,
  .jtd-v3-bottom-cta h2 {
    font-size: 26px;
  }

  .jtd-v3-trust__grid,
  .jtd-v3-role-grid,
  .jtd-v3-pain-grid,
  .jtd-solution-grid-v3,
  .jtd-case-grid-v3,
  .jtd-update-grid-v3,
  .jtd-delivery-flow,
  .jtd-ecosystem-types,
  .jtd-product-group__items {
    grid-template-columns: 1fr;
  }

  .jtd-v3-trust__grid a {
    border-right: 0;
  }

  .jtd-five-flow {
    min-height: auto;
    padding: 160px 18px 18px;
  }

  .jtd-five-flow strong {
    top: 30px;
    width: 122px;
    height: 122px;
    font-size: 14px;
  }

  .jtd-five-flow::before {
    display: none;
  }

  .jtd-five-flow__item {
    position: static;
    width: auto;
    margin-top: 12px;
    transform: none;
  }

  .jtd-business-loop-v3 {
    padding: 16px;
  }

  .jtd-business-loop-v3__rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .jtd-business-loop-v3__rail button {
    flex: 0 0 132px;
    scroll-snap-align: start;
  }

  .jtd-v3-bottom-cta__panel {
    padding: 30px 22px;
    border-radius: 22px;
  }
}

/* Homepage v4: heavier visual rhythm and business assets */
.jtd-home-v4-hero {
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 72% 76%, rgba(6, 174, 212, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 62%, #f3f7fc 100%);
}

.jtd-home-v4-hero .jtd-home-v3-hero__grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(680px, 1.22fr);
  gap: clamp(32px, 4vw, 64px);
}

.jtd-home-v4-hero .jtd-home-v3-hero__copy h1 {
  max-width: 620px;
  font-size: clamp(36px, 4vw, 50px);
}

.jtd-chain-hub--v4 {
  min-height: 660px;
  margin-right: -34px;
}

.jtd-chain-hub--v4 .jtd-chain-hub__panel {
  width: min(100%, 820px);
  min-height: 650px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 18%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 32% 88%, rgba(6, 174, 212, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 247, 252, 0.62));
  box-shadow: 0 42px 120px -78px rgba(8, 17, 31, 0.74);
}

.jtd-chain-hub--v4 .jtd-chain-hub__center {
  width: 218px;
  height: 128px;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(145deg, #08111F 0%, #0B1B33 100%);
  color: #fff;
  box-shadow:
    0 0 0 14px rgba(37, 99, 235, 0.06),
    0 0 54px rgba(37, 99, 235, 0.18),
    0 28px 72px -54px rgba(8, 17, 31, 0.88);
}

.jtd-chain-hub--v4 .jtd-chain-hub__center::before,
.jtd-chain-hub--v4 .jtd-chain-hub__center::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.jtd-chain-hub--v4 .jtd-chain-hub__center::before {
  inset: -18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.jtd-chain-hub--v4 .jtd-chain-hub__center::after {
  right: 18px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--jtd-red);
  box-shadow: 0 0 0 0 rgba(225, 37, 27, 0.34);
}

.jtd-chain-hub--v4 .jtd-chain-hub__center strong,
.jtd-chain-hub--v4 .jtd-chain-hub__center span {
  display: block;
}

.jtd-chain-hub--v4 .jtd-chain-hub__center strong {
  font-size: 18px;
  line-height: 1.25;
  white-space: nowrap;
}

.jtd-chain-hub--v4 .jtd-chain-hub__center span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.jtd-chain-hub.is-engaged[data-active] .jtd-chain-hub__center::after {
  animation: jtd-core-pulse 1.8s ease-out infinite;
}

.jtd-chain-hub.is-engaged[data-active] .jtd-chain-node:not(.is-active) {
  opacity: 0.55;
}

.jtd-chain-hub.is-engaged[data-active] .jtd-chain-shot:not(.is-active) {
  opacity: 0.52;
}

@keyframes jtd-core-pulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 37, 27, 0.34); }
  70% { box-shadow: 0 0 0 10px rgba(225, 37, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 37, 27, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .jtd-chain-hub.is-engaged[data-active] .jtd-chain-hub__center::after {
    animation: none;
  }
}

.jtd-chain-hub--v4 .jtd-chain-hub__data-flow {
  stroke: var(--jtd-red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 6 5;
  opacity: 0.82;
}

.jtd-chain-hub--v4 .jtd-chain-shot {
  width: 230px;
}

.jtd-chain-hub--v4 .jtd-chain-shot img {
  height: 118px;
}

.jtd-chain-hub--v4 .jtd-chain-shot--order { right: 26px; top: 98px; }
.jtd-chain-hub--v4 .jtd-chain-shot--dashboard { left: 28px; top: 94px; }
.jtd-chain-hub--v4 .jtd-chain-shot--contract { left: 32px; bottom: 68px; }
.jtd-chain-hub--v4 .jtd-chain-shot--finance { right: 34px; bottom: 70px; }

.jtd-v4-section-title {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.jtd-v4-section-title h2 {
  margin: 14px 0 10px;
  color: var(--jtd-navy-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.22;
  font-weight: 760;
}

.jtd-v4-section-title p {
  margin: 0;
  color: var(--jtd-gray-600);
  font-size: 16px;
  line-height: 1.7;
}

.jtd-v4-proof {
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--jtd-border);
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-v4-proof__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jtd-v4-proof__item {
  min-height: 148px;
  padding: 26px 22px;
  border-right: 1px solid var(--jtd-border);
  color: inherit;
  text-decoration: none;
  background: #fff;
}

.jtd-v4-proof__item:last-child {
  border-right: 0;
}

.jtd-v4-proof__item--result,
.jtd-v4-proof__item--case {
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 37, 27, 0.08), transparent 44%),
    #fff;
}

.jtd-v4-proof__item--result strong,
.jtd-v4-proof__item--case strong {
  color: var(--jtd-red);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.jtd-v4-proof__item--qualification {
  background: rgba(255, 255, 255, 0.78);
}

.jtd-v4-proof__item--qualification strong {
  color: var(--jtd-gray-700);
  font-size: 16px;
}

.jtd-v4-proof__item span,
.jtd-v4-proof__item strong,
.jtd-v4-proof__item small {
  display: block;
}

.jtd-v4-proof__item span {
  color: var(--jtd-red);
  font-size: 12px;
  font-weight: 760;
}

.jtd-v4-proof__item strong {
  margin-top: 12px;
  color: var(--jtd-navy-900);
  font-size: 18px;
  line-height: 1.38;
}

.jtd-v4-proof__item small {
  margin-top: 9px;
  color: var(--jtd-gray-500);
  font-size: 13px;
  line-height: 1.5;
}

.jtd-v4-role-pain,
.jtd-v4-flow-section,
.jtd-v4-product-solution,
.jtd-v4-evidence,
.jtd-v4-download {
  padding: 72px 0;
  scroll-margin-top: 84px;
}

.jtd-v4-dark-system {
  scroll-margin-top: 84px;
}

.jtd-v4-role-pain {
  background: var(--jtd-bg-blue);
}

.jtd-role-console {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--jtd-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px -70px rgba(8, 17, 31, 0.58);
  overflow: hidden;
}

.jtd-role-console__tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(180deg, #f8fafc, #eef4fb);
}

.jtd-role-console__tabs button {
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--jtd-gray-700);
  font-size: 15px;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.jtd-role-console__tabs button.is-active,
.jtd-role-console__tabs button:hover {
  background: var(--jtd-navy-900);
  color: #fff;
}

.jtd-role-console__stage {
  position: relative;
  min-height: 410px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.08), transparent 34%),
    #fff;
}

.jtd-role-console__stage article {
  display: none;
}

.jtd-role-console__stage article.is-active {
  display: block;
}

.jtd-role-console__stage article > span {
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 760;
}

.jtd-role-console__stage h3 {
  margin: 12px 0;
  color: var(--jtd-navy-900);
  font-size: 32px;
  line-height: 1.2;
}

.jtd-role-console__stage p {
  max-width: 720px;
  color: var(--jtd-gray-600);
  font-size: 16px;
  line-height: 1.7;
}

.jtd-role-console__stage ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.jtd-role-console__stage li {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--jtd-border);
  border-radius: 16px;
  background: var(--jtd-bg-soft);
  color: var(--jtd-gray-700);
  font-weight: 650;
  line-height: 1.55;
}

.jtd-five-flow--v4 {
  min-height: 640px;
  max-width: 1040px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(6, 174, 212, 0.11), transparent 30%),
    linear-gradient(180deg, #fff, #f3f7fc);
}

.jtd-five-flow--v4 strong {
  width: 220px;
  height: 136px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.18), transparent 56%),
    linear-gradient(145deg, #08111F 0%, #0B1B33 100%);
  box-shadow:
    0 0 0 16px rgba(37, 99, 235, 0.07),
    0 0 58px rgba(37, 99, 235, 0.16),
    0 28px 72px -56px rgba(8, 17, 31, 0.88);
}

.jtd-five-flow--v4 strong::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.44);
}

.jtd-five-flow--v4 strong span,
.jtd-five-flow--v4 strong small {
  display: block;
}

.jtd-five-flow--v4 strong span {
  font-size: 17px;
  line-height: 1.25;
  white-space: nowrap;
}

.jtd-five-flow--v4 strong small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.jtd-five-flow--v4 .jtd-five-flow__item {
  width: 238px;
  min-height: 136px;
  border-color: rgba(37, 99, 235, 0.14);
}

.jtd-five-flow--v4 .jtd-five-flow__item--1 {
  border-color: rgba(225, 37, 27, 0.26);
  box-shadow: 0 22px 58px -48px rgba(225, 37, 27, 0.48);
}

.jtd-five-flow--v4 .jtd-five-flow__item--1 h3 {
  color: var(--jtd-red);
}

.jtd-v4-dark-system {
  padding: 78px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(225, 37, 27, 0.09), transparent 28%),
    var(--jtd-navy-900);
  color: #fff;
}

.jtd-v4-dark-system .jtd-v4-section-title h2,
.jtd-v4-dark-system .jtd-v4-section-title p {
  color: #fff;
}

.jtd-v4-dark-system .jtd-v4-section-title p {
  color: rgba(255, 255, 255, 0.66);
}

.jtd-business-loop-v3--v4 {
  margin-bottom: 24px;
}

.jtd-architecture--v4 {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  overflow: hidden;
}

.jtd-architecture--v4 article {
  grid-template-columns: 190px minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
}

.jtd-architecture--v4 article:nth-child(3) {
  background:
    radial-gradient(circle at 100% 50%, rgba(225, 37, 27, 0.09), transparent 36%),
    rgba(255, 255, 255, 0.085);
}

.jtd-architecture--v4 article:last-child {
  border-bottom: 0;
}

.jtd-architecture--v4 h3 {
  color: #fff;
}

.jtd-architecture--v4 span {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  min-height: 42px;
  padding: 0 14px;
}

.jtd-architecture--v4 article:nth-child(3) span {
  border-color: rgba(225, 37, 27, 0.22);
  background: rgba(225, 37, 27, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.jtd-v4-dark-system .jtd-v3-security-note {
  border-left-color: var(--jtd-red);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
}

.jtd-v4-product-solution {
  background: #fff;
}

.jtd-product-map-v4 {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--jtd-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, #f8fafc, #fff);
}

.jtd-product-map-v4::before,
.jtd-product-map-v4::after {
  display: block;
  color: var(--jtd-gray-500);
  font-size: 13px;
  font-weight: 700;
}

.jtd-product-map-v4::before {
  content: "底座 → 产品能力 → 行业方案";
}

.jtd-product-map-v4__base {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: 18px;
  background: var(--jtd-navy-900);
  color: #fff;
  font-size: 22px;
  font-weight: 760;
}

.jtd-product-map-v4__core {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jtd-product-map-v4__core a {
  overflow: hidden;
  border: 1px solid var(--jtd-border);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.jtd-product-map-v4__core img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-product-map-v4__core strong,
.jtd-product-map-v4__core span {
  display: block;
  padding-inline: 18px;
}

.jtd-product-map-v4__core strong {
  padding-top: 16px;
  color: var(--jtd-navy-900);
  font-size: 18px;
}

.jtd-product-map-v4__core span {
  padding-top: 8px;
  padding-bottom: 18px;
  color: var(--jtd-gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.jtd-product-map-v4__band,
.jtd-product-map-v4__extend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jtd-product-map-v4__band span,
.jtd-product-map-v4__extend span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.jtd-product-map-v4__band span {
  background: var(--jtd-bg-blue);
  color: var(--jtd-gray-700);
}

.jtd-product-map-v4__extend span {
  background: var(--jtd-bg-soft);
  color: var(--jtd-gray-500);
}

.jtd-solution-grid-v3--v4 article > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 760;
}

.jtd-v4-evidence {
  background: var(--jtd-bg-blue);
}

.jtd-evidence-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.jtd-evidence-wall article {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--jtd-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px -70px rgba(8, 17, 31, 0.6);
}

.jtd-evidence-wall__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--jtd-navy-900);
}

.jtd-evidence-wall__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.08);
}

.jtd-evidence-wall__media strong,
.jtd-evidence-wall__media span {
  position: absolute;
  left: 28px;
  z-index: 1;
}

.jtd-evidence-wall__media strong {
  bottom: 72px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.jtd-evidence-wall__media span {
  bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.jtd-evidence-wall__body {
  padding: 30px;
}

.jtd-evidence-wall__body h3 {
  margin: 0 0 18px;
  color: var(--jtd-navy-900);
  font-size: 26px;
}

.jtd-evidence-wall__body p {
  margin: 12px 0;
  color: var(--jtd-gray-600);
  line-height: 1.65;
}

.jtd-evidence-wall__body b {
  display: inline-block;
  min-width: 42px;
  margin-right: 8px;
  color: var(--jtd-navy-900);
}

.jtd-evidence-wall__body div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.jtd-evidence-wall__body em {
  flex-basis: 100%;
  color: var(--jtd-red);
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.jtd-evidence-wall__body span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--jtd-bg-blue);
  color: var(--jtd-gray-600);
  font-size: 13px;
  font-weight: 650;
}

.jtd-v4-download {
  background:
    radial-gradient(circle at 80% 0%, rgba(225, 37, 27, 0.1), transparent 28%),
    var(--jtd-navy-900);
  color: #fff;
}

.jtd-v4-download__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.jtd-v4-download h2 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.22;
}

.jtd-v4-download p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.jtd-v4-download .jtd-btn--secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.jtd-v4-download__cards article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.jtd-v4-download__cards h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .jtd-home-v4-hero .jtd-home-v3-hero__grid,
  .jtd-v4-download__grid {
    grid-template-columns: 1fr;
  }

  .jtd-chain-hub--v4 {
    margin-right: 0;
  }

  .jtd-v4-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-role-console,
  .jtd-evidence-wall article {
    grid-template-columns: 1fr;
  }

  .jtd-product-map-v4__core,
  .jtd-v4-download__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .jtd-home-v4-hero,
  .jtd-v4-role-pain,
  .jtd-v4-flow-section,
  .jtd-v4-dark-system,
  .jtd-v4-product-solution,
  .jtd-v4-evidence,
  .jtd-v4-download {
    padding: 56px 0;
  }

  .jtd-chain-hub--v4 .jtd-chain-hub__panel {
    min-height: 580px;
  }

  .jtd-chain-hub--v4 .jtd-chain-hub__center {
    width: 132px;
    height: 132px;
    font-size: 14px;
  }

  .jtd-chain-hub--v4 .jtd-chain-shot {
    width: 156px;
  }

  .jtd-chain-hub--v4 .jtd-chain-shot img {
    height: 76px;
  }

  .jtd-v4-proof__grid,
  .jtd-role-console__stage ul,
  .jtd-v4-download__cards {
    grid-template-columns: 1fr;
  }

  .jtd-v4-proof__item {
    border-right: 0;
    border-bottom: 1px solid var(--jtd-border);
  }

  .jtd-role-console__stage {
    padding: 22px;
  }

  .jtd-role-console__stage h3 {
    font-size: 26px;
  }

  .jtd-five-flow--v4 {
    min-height: auto;
  }

  .jtd-architecture--v4 article,
  .jtd-architecture--v4 article:nth-child(3) {
    grid-template-columns: 1fr !important;
  }

  .jtd-architecture__module-grid {
    width: 100%;
    grid-template-columns: 1fr !important;
  }

  .jtd-evidence-wall__media {
    min-height: 220px;
  }

  .jtd-evidence-wall__media strong {
    font-size: 34px;
  }
}

/* Homepage v2.3 targeted refinements */
.jtd-chain-hub--v4 .jtd-chain-hub__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 610px;
  padding: 76px 34px 34px;
}

.jtd-chain-hub--v4 .jtd-chain-hub__panel::before {
  inset: 20px;
  opacity: 0.32;
}

.jtd-chain-hub--v4 .jtd-chain-hub__lines {
  position: absolute;
  top: 98px;
  right: 62px;
  left: 62px;
  width: auto;
  height: 64px;
  inset-inline: 62px;
  z-index: 1;
}

.jtd-chain-hub--v4 .jtd-chain-hub__lines .jtd-chain-hub__ring {
  display: none;
}

.jtd-chain-hub--v4 .jtd-chain-hub__lines path {
  stroke-width: 1.3;
}

.jtd-chain-hub--v4 .jtd-chain-hub__data-flow {
  stroke: rgba(71, 84, 103, 0.22);
  stroke-width: 1.4;
  stroke-dasharray: none;
  opacity: 1;
}

.jtd-chain-hub__flow {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.jtd-chain-hub--v4 .jtd-chain-node {
  position: relative;
  left: auto;
  top: auto;
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px 8px;
  transform: none;
  border-color: rgba(229, 234, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  line-height: 1.3;
}

.jtd-chain-hub--v4 .jtd-chain-node::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(71, 84, 103, 0.18);
}

.jtd-chain-hub--v4 .jtd-chain-node:last-child::after {
  display: none;
}

.jtd-chain-hub--v4 .jtd-chain-node.is-active,
.jtd-chain-hub--v4 .jtd-chain-node:hover {
  transform: translateY(-3px);
}

.jtd-chain-hub--v4 .jtd-chain-node.is-active::after,
.jtd-chain-hub--v4 .jtd-chain-node:hover::after {
  background: var(--jtd-red);
}

.jtd-chain-hub--v4 .jtd-chain-hub__center {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 520px);
  height: auto;
  min-height: 112px;
  margin: 8px auto 0;
  transform: none;
  border-radius: 24px;
}

.jtd-chain-hub--v4 .jtd-chain-hub__center::before {
  inset: -10px;
  border-radius: 30px;
}

.jtd-chain-hub__shots {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.jtd-chain-hub--v4 .jtd-chain-shot {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: auto;
  min-height: 186px;
  opacity: 0.86;
  transform: none;
}

.jtd-chain-hub--v4 .jtd-chain-shot img {
  height: 96px;
  filter: contrast(1.04) saturate(1.04);
}

.jtd-chain-hub--v4 .jtd-chain-shot b {
  padding-top: 10px;
  font-size: 13px;
}

.jtd-chain-hub--v4 .jtd-chain-shot span {
  padding-bottom: 12px;
  font-size: 11px;
}

.jtd-chain-hub.is-engaged[data-active] .jtd-chain-shot:not(.is-active) {
  opacity: 0.55;
}

.jtd-v4-flow-section .jtd-v4-section-title p {
  max-width: 900px;
  margin-inline: auto;
}

.jtd-five-flow--v4 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  grid-template-rows: auto auto;
  gap: 18px 22px;
  min-height: 560px;
  padding: 26px;
}

.jtd-five-flow--v4::before {
  inset: 12% 28% 28% 6%;
  border-color: rgba(37, 99, 235, 0.22);
}

.jtd-five-flow__lines {
  position: absolute;
  inset: 42px 260px 162px 28px;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.jtd-five-flow__lines path {
  fill: none;
  stroke: rgba(37, 99, 235, 0.22);
  stroke-width: 0.9;
  stroke-dasharray: 3 4;
}

.jtd-five-flow--v4 strong {
  top: 210px;
  left: calc(50% - 130px);
  width: 214px;
  height: 126px;
  z-index: 3;
}

.jtd-five-flow--v4 .jtd-five-flow__item {
  z-index: 3;
  width: 218px;
  min-height: 118px;
  padding: 17px;
}

.jtd-five-flow--v4 .jtd-five-flow__item p {
  color: var(--jtd-gray-600);
  font-size: 13px;
  line-height: 1.65;
}

.jtd-five-flow--v4 .jtd-five-flow__item--1 { top: 34px; left: 38%; transform: translateX(-50%); }
.jtd-five-flow--v4 .jtd-five-flow__item--2 { top: 136px; right: 292px; }
.jtd-five-flow--v4 .jtd-five-flow__item--3 { right: 332px; bottom: 154px; }
.jtd-five-flow--v4 .jtd-five-flow__item--4 { left: 70px; bottom: 154px; }
.jtd-five-flow--v4 .jtd-five-flow__item--5 { top: 136px; left: 56px; }

.jtd-five-flow__objects {
  position: absolute;
  right: 292px;
  bottom: 28px;
  left: 28px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 54px -46px rgba(8, 17, 31, 0.42);
}

.jtd-five-flow__objects b {
  margin-right: 4px;
  color: var(--jtd-navy-900);
  font-size: 14px;
}

.jtd-five-flow__objects span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--jtd-gray-600);
  font-size: 12px;
  font-weight: 650;
}

.jtd-five-flow__roles {
  grid-column: 2;
  grid-row: 1 / span 2;
  z-index: 4;
  display: grid;
  gap: 12px;
  align-self: stretch;
}

.jtd-five-flow__roles article {
  padding: 18px;
  border: 1px solid rgba(229, 234, 240, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.86));
  box-shadow: 0 18px 48px -44px rgba(8, 17, 31, 0.5);
}

.jtd-five-flow__roles b,
.jtd-five-flow__roles span {
  display: block;
}

.jtd-five-flow__roles b {
  color: var(--jtd-red);
  font-size: 15px;
}

.jtd-five-flow__roles span {
  margin-top: 8px;
  color: var(--jtd-gray-600);
  font-size: 13px;
  line-height: 1.55;
}

.jtd-evidence-wall article {
  position: relative;
  grid-template-columns: 360px minmax(0, 1fr);
}

.jtd-evidence-wall__media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  background: #eaf0f7;
}

.jtd-evidence-wall__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 31, 0.28));
  pointer-events: none;
}

.jtd-evidence-wall__media img {
  display: block;
  opacity: 1;
  filter: contrast(1.04) saturate(1.05);
}

.jtd-evidence-wall__media strong,
.jtd-evidence-wall__media span {
  position: static;
}

.jtd-evidence-wall__body {
  position: relative;
  padding: 30px 34px;
}

.jtd-evidence-wall__metric {
  display: inline-grid !important;
  gap: 4px !important;
  max-width: 360px;
  margin: 0 0 18px !important;
  padding: 12px 16px;
  border: 1px solid rgba(225, 37, 27, 0.18);
  border-radius: 16px;
  background: var(--jtd-red-soft);
}

.jtd-evidence-wall__metric strong {
  color: var(--jtd-red);
  font-size: 26px;
  line-height: 1.1;
}

.jtd-evidence-wall__metric span {
  color: var(--jtd-gray-600);
  font-size: 13px;
}

.jtd-v4-download__cards article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.jtd-v4-download__cards article:hover {
  transform: translateY(-4px);
  border-color: var(--jtd-red);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 24px 54px -34px rgba(225, 37, 27, 0.32);
}

.jtd-v4-download__cards article > span {
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.jtd-v4-download__cards h3 {
  max-width: 82%;
  color: #fff;
}

.jtd-v4-download__cards article p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.jtd-v4-download__cards ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.jtd-v4-download__cards li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

.jtd-v4-download__cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 10px rgba(225, 37, 27, 0.5);
}

.jtd-v4-download__cards a {
  margin-top: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.jtd-v4-download__cards article:hover p,
.jtd-v4-download__cards article:hover li,
.jtd-v4-download__cards article:hover a {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1180px) {
  .jtd-chain-hub--v4 .jtd-chain-hub__panel {
    width: 100%;
  }

  .jtd-chain-hub__shots {
    grid-template-columns: repeat(5, minmax(148px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .jtd-five-flow--v4 {
    grid-template-columns: 1fr;
  }

  .jtd-five-flow__roles {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-five-flow__objects {
    right: 28px;
  }
}

@media (max-width: 760px) {
  .jtd-home-v4-hero {
    overflow: hidden;
  }

  .jtd-home-v4-hero .jtd-home-v3-hero__grid,
  .jtd-home-v4-hero .jtd-home-v3-hero__copy,
  .jtd-home-v4-hero .jtd-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .jtd-home-v4-hero .jtd-home-v3-hero__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .jtd-home-v4-hero .jtd-home-v3-hero__copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .jtd-home-v4-hero .jtd-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jtd-home-v4-hero .jtd-actions .jtd-btn,
  .jtd-home-v4-hero .jtd-actions a {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .jtd-chain-hub--v4 {
    min-height: auto;
  }

  .jtd-chain-hub--v4 .jtd-chain-hub__panel {
    min-height: 0;
    padding: 26px 18px;
  }

  .jtd-chain-hub--v4 .jtd-chain-hub__lines {
    display: none;
  }

  .jtd-chain-hub__flow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .jtd-chain-hub--v4 .jtd-chain-node {
    flex: 0 0 118px;
    scroll-snap-align: start;
  }

  .jtd-chain-hub--v4 .jtd-chain-node::after {
    display: none;
  }

  .jtd-chain-hub--v4 .jtd-chain-hub__center {
    width: 100%;
    min-height: 104px;
  }

  .jtd-chain-hub--v4 .jtd-chain-shot {
    flex: 0 0 178px;
    min-height: 180px;
  }

  .jtd-chain-hub--v4 .jtd-chain-shot img {
    height: 92px;
  }

  .jtd-five-flow--v4 {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .jtd-five-flow--v4::before,
  .jtd-five-flow__lines {
    display: none;
  }

  .jtd-five-flow--v4 strong,
  .jtd-five-flow--v4 .jtd-five-flow__item,
  .jtd-five-flow__objects,
  .jtd-five-flow__roles {
    position: static;
    width: auto;
    transform: none;
  }

  .jtd-five-flow--v4 strong {
    height: auto;
    min-height: 104px;
  }

  .jtd-five-flow__objects {
    order: 7;
  }

  .jtd-five-flow__roles {
    order: 8;
    grid-template-columns: 1fr;
  }

  .jtd-evidence-wall article {
    grid-template-columns: 1fr;
  }

  .jtd-evidence-wall__media {
    aspect-ratio: 16 / 10;
  }

  .jtd-evidence-wall__body {
    padding: 24px;
  }

  .jtd-evidence-wall__metric strong {
    font-size: 22px;
  }

  .jtd-v4-download__cards article {
    min-height: 0;
  }
}

/* Homepage v2.4 final readability and flow polish */
.jtd-role-console__stage p,
.jtd-role-console__stage li,
.jtd-solution-grid-v3 dd,
.jtd-evidence-wall__body p,
.jtd-v4-download__cards article p,
.jtd-v4-download__cards li {
  font-size: 15px;
  line-height: 1.72;
}

.jtd-role-console__stage li,
.jtd-solution-grid-v3 dd,
.jtd-evidence-wall__body p {
  color: var(--jtd-gray-700);
}

.jtd-solution-grid-v3 dd,
.jtd-evidence-wall__body p,
.jtd-v4-download__cards li {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.jtd-chain-hub__flow {
  counter-reset: jtd-flow-step;
}

.jtd-chain-hub--v4 .jtd-chain-node {
  counter-increment: jtd-flow-step;
  grid-template-rows: auto auto;
  gap: 4px;
  min-height: 64px;
  border-radius: 18px;
}

.jtd-chain-hub--v4 .jtd-chain-node::before {
  content: counter(jtd-flow-step, decimal-leading-zero);
  display: block;
  color: rgba(52, 64, 84, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.jtd-chain-hub--v4 .jtd-chain-node::after {
  right: -14px;
  width: 14px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(71, 84, 103, 0.22), rgba(71, 84, 103, 0.16));
}

.jtd-chain-hub--v4 .jtd-chain-node span {
  color: inherit;
  font-size: 13px;
}

.jtd-chain-hub--v4 .jtd-chain-node.is-active::before,
.jtd-chain-hub--v4 .jtd-chain-node:hover::before {
  color: var(--jtd-red);
}

.jtd-chain-hub--v4 .jtd-chain-node.is-active::after,
.jtd-chain-hub--v4 .jtd-chain-node:hover::after {
  box-shadow: 0 0 10px rgba(225, 37, 27, 0.22);
}

.jtd-chain-hub--v4 .jtd-chain-shot b {
  color: var(--jtd-navy-900);
  font-size: 14px;
  font-weight: 780;
}

.jtd-chain-hub--v4 .jtd-chain-shot span {
  color: var(--jtd-gray-600);
  font-size: 12px;
  line-height: 1.55;
}

.jtd-five-flow--v4 .jtd-five-flow__item h3 {
  font-size: 20px;
  font-weight: 780;
}

.jtd-five-flow--v4 .jtd-five-flow__item p {
  color: var(--jtd-gray-700);
  font-size: 14px;
}

.jtd-five-flow__lines path {
  stroke: rgba(37, 99, 235, 0.34);
  stroke-width: 1.25;
  stroke-dasharray: 4 4;
}

.jtd-five-flow__objects {
  border-color: rgba(37, 99, 235, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  box-shadow: 0 22px 60px -44px rgba(37, 99, 235, 0.28);
}

.jtd-five-flow__objects b {
  color: var(--jtd-red);
  font-size: 15px;
}

.jtd-five-flow__objects span {
  border: 1px solid rgba(229, 234, 240, 0.95);
  background: #fff;
  color: var(--jtd-gray-700);
  font-size: 13px;
}

.jtd-five-flow__roles article {
  border-color: rgba(37, 99, 235, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08), transparent 40%),
    #fff;
}

.jtd-five-flow__roles b {
  font-size: 16px;
}

.jtd-five-flow__roles span {
  color: var(--jtd-gray-700);
  font-size: 14px;
}

.jtd-architecture--v4 article:nth-child(3) {
  position: relative;
  border-color: rgba(225, 37, 27, 0.42);
  background:
    radial-gradient(circle at 100% 50%, rgba(225, 37, 27, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 3px 0 0 var(--jtd-red), 0 24px 60px -54px rgba(225, 37, 27, 0.65);
}

.jtd-architecture--v4 article:nth-child(3) h3 {
  color: #fff;
  font-size: 22px;
}

.jtd-architecture--v4 article:nth-child(3) span {
  border-color: rgba(225, 37, 27, 0.32);
  background: rgba(225, 37, 27, 0.12);
  color: #fff;
}

.jtd-evidence-wall__metric {
  border-color: rgba(225, 37, 27, 0.26);
  box-shadow: 0 18px 42px -34px rgba(225, 37, 27, 0.45);
}

.jtd-evidence-wall__metric strong {
  font-size: clamp(28px, 2.5vw, 34px);
  font-weight: 840;
}

.jtd-evidence-wall__metric span {
  color: var(--jtd-gray-700);
  font-size: 14px;
}

.jtd-v4-download__cards {
  gap: 20px;
}

.jtd-v4-download__cards article {
  min-height: 304px;
  padding: 26px;
}

.jtd-v4-download__cards h3 {
  font-size: 22px;
  line-height: 1.32;
}

.jtd-v4-download__cards a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(225, 37, 27, 0.36);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.13);
  color: #fff;
}

.jtd-v4-download__cards article:hover a {
  border-color: var(--jtd-red);
  background: var(--jtd-red);
}

@media (max-width: 760px) {
  .jtd-chain-hub--v4 .jtd-chain-node {
    grid-template-rows: auto auto;
    flex-basis: 132px;
    min-height: 68px;
  }

  .jtd-chain-hub--v4 .jtd-chain-node::before {
    font-size: 12px;
  }

  .jtd-chain-hub--v4 .jtd-chain-shot b {
    font-size: 14px;
  }

  .jtd-five-flow--v4 .jtd-five-flow__item h3 {
    font-size: 19px;
  }

  .jtd-five-flow__objects,
  .jtd-five-flow__roles article {
    padding: 16px;
  }

  .jtd-evidence-wall__body p {
    -webkit-line-clamp: 3;
  }

  .jtd-v4-download__cards {
    gap: 14px;
  }

  .jtd-v4-download__cards article {
    min-height: 0;
    padding: 24px;
  }
}

/* Homepage v2.5 rebuilt hero console and five-flow business system */
.jtd-console-visual {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 0;
  padding: 20px;
  overflow: visible;
  border: 1px solid rgba(229, 234, 240, 0.92);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.92));
  box-shadow: 0 32px 80px -54px rgba(8, 17, 31, 0.35);
}

.jtd-console-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.jtd-console-flow,
.jtd-console-window,
.jtd-console-base {
  position: relative;
  z-index: 1;
}

.jtd-chain-hub--v4 .jtd-chain-hub__lines,
.jtd-chain-hub--v4 .jtd-chain-hub__center,
.jtd-chain-hub--v4 .jtd-chain-hub__shots {
  display: none !important;
}

.jtd-console-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  padding: 4px;
  border: 1px solid rgba(229, 234, 240, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.jtd-console-flow__line {
  display: none;
}

.jtd-console-flow .jtd-chain-node {
  position: relative !important;
  display: grid !important;
  min-width: 0;
  min-height: 58px;
  padding: 10px 6px;
  border: 0 !important;
  border-radius: 14px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--jtd-gray-700);
  cursor: pointer;
  opacity: 1;
  transform: none !important;
}

.jtd-console-flow .jtd-chain-node::before,
.jtd-console-flow .jtd-chain-node::after {
  content: "" !important;
  position: absolute;
  display: block;
  pointer-events: none;
}

.jtd-console-flow .jtd-chain-node::before {
  left: calc(100% - 7px);
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(71, 84, 103, 0.24);
}

.jtd-console-flow .jtd-chain-node::after {
  left: calc(100% + 3px);
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(71, 84, 103, 0.32);
  border-right: 1px solid rgba(71, 84, 103, 0.32);
  transform: rotate(45deg);
}

.jtd-console-flow .jtd-chain-node:last-of-type::before,
.jtd-console-flow .jtd-chain-node:last-of-type::after {
  display: none;
}

.jtd-console-flow .jtd-chain-node small,
.jtd-console-flow .jtd-chain-node span {
  position: relative;
  z-index: 1;
}

.jtd-console-flow .jtd-chain-node small {
  color: rgba(102, 112, 133, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.jtd-console-flow .jtd-chain-node span {
  margin-top: 2px;
  color: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.jtd-console-flow .jtd-chain-node.is-active,
.jtd-console-flow .jtd-chain-node:hover {
  background: #fff !important;
  color: var(--jtd-red);
  box-shadow: 0 14px 34px -28px rgba(225, 37, 27, 0.35) !important;
}

.jtd-console-flow .jtd-chain-node.is-active::before,
.jtd-console-flow .jtd-chain-node:hover::before {
  height: 2px;
  background: var(--jtd-red);
}

.jtd-console-flow .jtd-chain-node.is-active::after,
.jtd-console-flow .jtd-chain-node:hover::after {
  border-color: var(--jtd-red);
}

.jtd-chain-hub.is-engaged[data-active] .jtd-console-flow .jtd-chain-node:not(.is-active) {
  opacity: 0.55;
}

.jtd-v4-download__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 16px !important;
  font-weight: 760;
}

.jtd-console-window {
  overflow: visible;
  border: 1px solid rgba(229, 234, 240, 0.96);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 28px 70px -42px rgba(8, 17, 31, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.jtd-console-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(229, 234, 240, 0.82);
}

.jtd-console-window__bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d0d5dd;
}

.jtd-console-window__bar span:nth-child(2) { background: #f59e0b; }
.jtd-console-window__bar span:nth-child(3) { background: #10b981; }

.jtd-console-window__bar b {
  margin-left: auto;
  color: rgba(52, 64, 84, 0.86);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.jtd-console-window__screen {
  position: relative;
  min-height: 410px;
  padding: 20px;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
  background:
    linear-gradient(180deg, rgba(243, 247, 252, 0.72), rgba(255, 255, 255, 0.92));
}

.jtd-console-window__screen > img {
  display: block;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: 52% 44%;
  border: 1px solid rgba(229, 234, 240, 0.96);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 58px -42px rgba(8, 17, 31, 0.4);
}

.jtd-console-zone {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(225, 37, 27, 0);
  border-radius: 16px;
  background: rgba(225, 37, 27, 0);
  opacity: 0;
  transition: opacity 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
  pointer-events: none;
}

.jtd-console-zone--order {
  left: 32px;
  top: 108px;
  width: 38%;
  height: 112px;
}

.jtd-console-zone--contract {
  left: 34px;
  bottom: 64px;
  width: 36%;
  height: 102px;
}

.jtd-console-zone--finance {
  right: 34px;
  bottom: 64px;
  width: 42%;
  height: 112px;
}

.jtd-console-zone.is-active {
  opacity: 1;
  border-color: rgba(225, 37, 27, 0.5);
  background: rgba(225, 37, 27, 0.055);
  box-shadow: 0 0 0 4px rgba(225, 37, 27, 0.08);
}

.jtd-console-callouts {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.jtd-console-callout {
  position: absolute;
  width: min(238px, 38%);
  padding: 14px 16px;
  border: 1px solid rgba(229, 234, 240, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 46px -34px rgba(8, 17, 31, 0.34);
  opacity: 0.94;
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.jtd-console-callout::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.28);
}

.jtd-console-callout b,
.jtd-console-callout span {
  display: block;
}

.jtd-console-callout b {
  color: var(--jtd-navy-900);
  font-size: 16px;
  font-weight: 820;
}

.jtd-console-callout span {
  margin-top: 5px;
  color: var(--jtd-gray-600);
  font-size: 13px;
  line-height: 1.48;
}

.jtd-console-callout--order {
  left: 30px;
  top: 76px;
}

.jtd-console-callout--contract {
  left: 74px;
  bottom: 46px;
}

.jtd-console-callout--finance {
  right: 28px;
  bottom: 48px;
}

.jtd-console-callout.is-active {
  opacity: 1;
  transform: translateY(-6px);
  border-color: rgba(225, 37, 27, 0.36);
  box-shadow: 0 28px 58px -34px rgba(225, 37, 27, 0.34);
}

.jtd-chain-hub.is-engaged[data-active] .jtd-console-callout:not(.is-active) {
  opacity: 0.56;
}

.jtd-console-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 50%, rgba(225, 37, 27, 0.16), transparent 32%),
    linear-gradient(135deg, #08111f, #0b1b33);
  box-shadow: 0 20px 44px -36px rgba(8, 17, 31, 0.6);
}

.jtd-console-base strong,
.jtd-console-base span {
  display: block;
}

.jtd-console-base strong {
  color: #fff;
  font-size: 17px;
  font-weight: 820;
}

.jtd-console-base span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.jtd-console-base::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 0 8px rgba(225, 37, 27, 0.12), 0 0 24px rgba(225, 37, 27, 0.32);
}

.jtd-five-flow--v5 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.25fr) minmax(230px, 0.9fr);
  gap: 22px;
  min-height: 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(229, 234, 240, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(243, 247, 252, 0.9), rgba(255, 255, 255, 0.96) 48%, rgba(243, 247, 252, 0.88));
  box-shadow: 0 26px 70px -56px rgba(8, 17, 31, 0.28);
}

.jtd-five-flow--v5::before,
.jtd-five-flow--v5::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.34), rgba(225, 37, 27, 0.18));
  pointer-events: none;
}

.jtd-five-flow--v5::before {
  left: 26%;
  width: 22%;
}

.jtd-five-flow--v5::after {
  right: 24%;
  width: 20%;
  background: linear-gradient(90deg, rgba(225, 37, 27, 0.18), rgba(37, 99, 235, 0.32), rgba(37, 99, 235, 0.06));
}

.jtd-five-flow__column {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
}

.jtd-five-flow__column > h3 {
  margin: 0 0 2px;
  color: var(--jtd-navy-900);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.25;
}

.jtd-five-flow--v5 .jtd-five-flow__item {
  position: relative;
  inset: auto;
  display: block;
  width: auto;
  padding: 14px 15px;
  border: 1px solid rgba(229, 234, 240, 0.96);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  transform: none;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.jtd-five-flow--v5 .jtd-five-flow__item::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(37, 99, 235, 0.22);
}

.jtd-five-flow--v5 .jtd-five-flow__item b {
  display: block;
  color: var(--jtd-navy-900);
  font-size: 17px;
  font-weight: 820;
}

.jtd-five-flow--v5 .jtd-five-flow__item p {
  margin: 7px 0 0;
  color: var(--jtd-gray-600);
  font-size: 14px;
  line-height: 1.54;
}

.jtd-five-flow--v5 .jtd-five-flow__item.is-active,
.jtd-five-flow--v5 .jtd-five-flow__item:hover {
  border-color: rgba(225, 37, 27, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 241, 240, 0.92), rgba(255, 255, 255, 0.92));
  transform: translateX(4px);
  box-shadow: 0 18px 42px -34px rgba(225, 37, 27, 0.34);
}

.jtd-five-flow__column--center {
  padding: 4px 0;
}

.jtd-five-flow__core {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 22%, rgba(225, 37, 27, 0.18), transparent 32%),
    linear-gradient(135deg, #08111f, #0b1b33);
  box-shadow: 0 24px 54px -44px rgba(8, 17, 31, 0.68);
}

.jtd-five-flow__core span,
.jtd-five-flow__core strong,
.jtd-five-flow__core small {
  display: block;
}

.jtd-five-flow__core span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 720;
}

.jtd-five-flow__core strong {
  position: static;
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  text-align: left;
  margin-top: 5px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.24;
}

.jtd-five-flow__core small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects {
  position: relative;
  inset: auto;
  width: auto;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px -38px rgba(37, 99, 235, 0.32);
}

.jtd-five-flow--v5 .jtd-five-flow__objects b {
  display: block;
  margin: 0 0 12px;
  color: var(--jtd-navy-900);
  font-size: 16px;
  font-weight: 820;
}

.jtd-five-flow--v5 .jtd-five-flow__objects div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects span {
  border: 1px solid rgba(229, 234, 240, 0.96);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--jtd-gray-700);
  font-size: 13px;
  font-weight: 680;
  line-height: 1;
  padding: 8px 10px;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.jtd-five-flow--v5 .jtd-five-flow__objects span.is-active {
  border-color: rgba(225, 37, 27, 0.48);
  background: var(--jtd-red-soft);
  color: var(--jtd-red);
  transform: translateY(-2px);
}

.jtd-five-flow--v5 .jtd-five-flow__roles {
  position: relative;
  inset: auto;
  display: grid;
  width: auto;
  gap: 12px;
}

.jtd-five-flow--v5 .jtd-five-flow__roles article {
  padding: 16px;
  border: 1px solid rgba(229, 234, 240, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.jtd-five-flow--v5 .jtd-five-flow__roles article::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.62);
  vertical-align: 2px;
}

.jtd-five-flow--v5 .jtd-five-flow__roles b {
  color: var(--jtd-navy-900);
  font-size: 17px;
  font-weight: 820;
}

.jtd-five-flow--v5 .jtd-five-flow__roles span {
  display: block;
  margin-top: 8px;
  color: var(--jtd-gray-600);
  font-size: 14px;
  line-height: 1.56;
}

.jtd-five-flow--v5 .jtd-five-flow__roles article.is-active {
  border-color: rgba(225, 37, 27, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 37, 27, 0.1), transparent 36%),
    #fff;
  transform: translateX(-4px);
  box-shadow: 0 18px 42px -34px rgba(225, 37, 27, 0.32);
}

.jtd-five-flow--v5 .jtd-five-flow__roles article.is-active::before {
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.28);
}

@media (max-width: 1180px) {
  .jtd-console-window__screen {
    min-height: 360px;
  }

  .jtd-console-window__screen > img {
    min-height: 300px;
  }

  .jtd-console-callout {
    width: min(220px, 42%);
  }

  .jtd-five-flow--v5 {
    grid-template-columns: 1fr;
  }

  .jtd-five-flow--v5::before,
  .jtd-five-flow--v5::after,
  .jtd-five-flow--v5 .jtd-five-flow__item::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .jtd-console-visual {
    padding: 14px;
    border-radius: 24px;
  }

  .jtd-console-flow {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px;
    scroll-snap-type: x mandatory;
  }

  .jtd-console-flow .jtd-chain-node {
    flex: 0 0 132px;
    min-height: 60px;
    scroll-snap-align: start;
  }

  .jtd-console-flow .jtd-chain-node::before,
  .jtd-console-flow .jtd-chain-node::after {
    display: none;
  }

  .jtd-console-window {
    border-radius: 22px;
  }

  .jtd-console-window__screen {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .jtd-console-window__screen > img {
    min-height: 220px;
    object-position: 52% 38%;
  }

  .jtd-console-zone {
    display: none;
  }

  .jtd-console-callouts {
    position: static;
    display: grid;
    gap: 10px;
  }

  .jtd-console-callout {
    position: relative;
    inset: auto;
    width: auto;
    padding: 13px 14px;
  }

  .jtd-console-base {
    align-items: flex-start;
    flex-direction: column;
  }

  .jtd-five-flow--v5 {
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
  }

  .jtd-five-flow__column > h3 {
    font-size: 19px;
  }

  .jtd-five-flow__core strong {
    font-size: 20px;
  }

  .jtd-five-flow--v5 .jtd-five-flow__item p,
  .jtd-five-flow--v5 .jtd-five-flow__roles span {
    font-size: 13px;
  }
}

/* Homepage V3 launch polish: operating metrics, platform modules and conversion weight */
.jtd-console-metrics {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  padding: 14px 16px;
  border: 1px solid rgba(229, 234, 240, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 52px -38px rgba(8, 17, 31, 0.38);
}

.jtd-console-metrics > strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--jtd-navy-900);
  font-size: 14px;
  font-weight: 820;
}

.jtd-console-metrics > strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.34);
}

.jtd-console-metrics small {
  color: var(--jtd-gray-500);
  font-size: 11px;
  font-weight: 650;
}

.jtd-console-metrics > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.jtd-console-metrics span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(229, 234, 240, 0.82);
  border-radius: 13px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.jtd-console-metrics em {
  overflow: hidden;
  color: var(--jtd-gray-500);
  font-size: 11px;
  font-style: normal;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jtd-console-metrics b {
  color: var(--jtd-navy-900);
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
}

.jtd-console-metrics b small {
  margin-left: 2px;
  color: var(--jtd-gray-500);
  font-size: 10px;
}

.jtd-console-callout--contract,
.jtd-console-callout--finance {
  bottom: 158px;
}

.jtd-five-flow--v5 {
  grid-template-columns: minmax(210px, 0.78fr) minmax(390px, 1.48fr) minmax(220px, 0.82fr);
}

.jtd-five-flow__column--input,
.jtd-five-flow__column--result {
  opacity: 0.92;
}

.jtd-five-flow--v5 .jtd-five-flow__objects {
  padding: 20px;
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 26px 62px -42px rgba(37, 99, 235, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.jtd-five-flow--v5 .jtd-five-flow__objects b {
  font-size: 18px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects span {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 760;
}

.jtd-architecture--v4 article:nth-child(3) {
  grid-template-columns: 190px minmax(0, 1fr);
  background:
    radial-gradient(circle at 100% 50%, rgba(225, 37, 27, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.12);
}

.jtd-architecture--v4 article:nth-child(3) > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.jtd-architecture--v4 article:nth-child(3) span {
  justify-content: flex-start;
  min-height: 68px;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  color: #fff;
  font-size: 14px;
  box-shadow: inset 3px 0 0 rgba(225, 37, 27, 0.72);
}

.jtd-product-map-v4__core {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1.18fr) minmax(0, 0.82fr);
  align-items: stretch;
}

.jtd-product-map-v4__core a:nth-child(-n+2) {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 22px 54px -44px rgba(37, 99, 235, 0.32);
}

.jtd-product-map-v4__core a:nth-child(-n+2) img {
  height: 190px;
}

.jtd-product-map-v4__core a:nth-child(-n+2) strong {
  font-size: 21px;
}

.jtd-product-map-v4__core a:nth-child(3) {
  align-self: center;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.jtd-product-map-v4__core a:nth-child(3) img {
  height: 130px;
}

.jtd-product-map-v4__band span {
  min-height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(243, 247, 252, 0.88);
}

.jtd-v4-download__cards {
  gap: 22px;
}

.jtd-v4-download__cards article {
  min-height: 330px;
  padding: 30px;
}

.jtd-v4-download__cards h3 {
  font-size: 23px;
}

.jtd-v4-download__cards a {
  padding: 8px 13px;
  border: 1px solid rgba(225, 37, 27, 0.42);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.13);
  color: #fff;
  font-size: 15px;
}

.jtd-v4-download__cards article:hover a {
  border-color: var(--jtd-red);
  background: var(--jtd-red);
  color: #fff;
}

@media (max-width: 1180px) {
  .jtd-console-metrics {
    position: static;
    margin-top: 12px;
  }

  .jtd-console-metrics > div,
  .jtd-architecture--v4 article:nth-child(3) > div,
  .jtd-product-map-v4__core {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jtd-console-metrics {
    padding: 12px;
  }

  .jtd-console-metrics > div,
  .jtd-architecture--v4 article:nth-child(3) > div,
  .jtd-product-map-v4__core {
    grid-template-columns: 1fr;
  }

  .jtd-console-metrics span {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .jtd-five-flow--v5 {
    grid-template-columns: 1fr;
  }

  .jtd-v4-download__cards article {
    min-height: 0;
    padding: 24px;
  }
}

/* Homepage V3.2 brand upgrade: operating tower, structure graph and evidence density */
.jtd-console-visual {
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
}

.jtd-console-window {
  overflow: hidden;
}

.jtd-console-window__screen {
  min-height: 480px;
  padding: 72px 20px 108px;
}

.jtd-console-window__screen > img {
  min-height: 338px;
  object-position: 50% 42%;
}

.jtd-console-window__screen .jtd-console-flow {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  z-index: 5;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px -36px rgba(8, 17, 31, 0.36);
}

.jtd-console-window__screen .jtd-chain-node {
  min-height: 50px;
  padding: 8px 5px;
}

.jtd-console-window__screen .jtd-chain-node span {
  font-size: 12px;
}

.jtd-console-window__screen .jtd-chain-node small {
  font-size: 10px;
}

.jtd-console-metrics {
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 13px 16px;
  border-color: rgba(8, 17, 31, 0.08);
  background: rgba(8, 17, 31, 0.78);
  color: #fff;
  box-shadow:
    0 22px 52px -36px rgba(8, 17, 31, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.jtd-console-metrics > strong {
  color: rgba(255, 255, 255, 0.9);
}

.jtd-console-metrics small {
  color: rgba(255, 255, 255, 0.52);
}

.jtd-console-metrics span {
  padding: 0 12px 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.jtd-console-metrics span:last-child {
  border-right: 0;
  padding-right: 0;
}

.jtd-console-metrics em {
  color: rgba(255, 255, 255, 0.56);
}

.jtd-console-metrics b {
  color: #fff;
}

.jtd-console-metrics b small {
  color: rgba(255, 255, 255, 0.54);
}

.jtd-console-callout--order {
  top: 126px;
}

.jtd-console-callout--contract,
.jtd-console-callout--finance {
  bottom: 142px;
}

.jtd-five-flow--v5 {
  grid-template-columns: minmax(205px, 0.72fr) minmax(430px, 1.65fr) minmax(205px, 0.76fr);
  gap: 18px;
  background:
    linear-gradient(90deg, rgba(243, 247, 252, 0.78), #fff 48%, rgba(243, 247, 252, 0.78));
}

.jtd-five-flow__column--input,
.jtd-five-flow__column--result {
  opacity: 0.86;
}

.jtd-five-flow--v5 .jtd-five-flow__item {
  padding: 13px 14px;
}

.jtd-five-flow__core {
  padding: 20px 22px;
}

.jtd-five-flow__core strong {
  font-size: 23px;
}

.jtd-five-flow__core small {
  font-size: 12px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects {
  padding: 24px;
  border-color: rgba(37, 99, 235, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.jtd-five-flow--v5 .jtd-five-flow__objects b {
  font-size: 19px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects div {
  gap: 10px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects span {
  min-width: 68px;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px -22px rgba(8, 17, 31, 0.32);
}

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

.jtd-architecture__module-grid section {
  min-height: 104px;
  padding: 17px 18px;
  border: 1px solid rgba(225, 37, 27, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 37, 27, 0.11), transparent 40%),
    rgba(255, 255, 255, 0.105);
  box-shadow: inset 3px 0 0 rgba(225, 37, 27, 0.78);
}

.jtd-architecture__module-grid b,
.jtd-architecture__module-grid small {
  display: block;
}

.jtd-architecture__module-grid b {
  color: #fff;
  font-size: 15px;
  font-weight: 820;
}

.jtd-architecture__module-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.jtd-architecture--v4 article:nth-child(3) span {
  box-shadow: none;
}

.jtd-product-map-v4 {
  gap: 20px;
}

.jtd-product-map-v4::before {
  content: "平台底座 → 三大核心系统 → 扩展能力 → 延展产品";
}

.jtd-product-map-v4__base {
  min-height: 82px;
  background:
    radial-gradient(circle at 96% 50%, rgba(225, 37, 27, 0.16), transparent 32%),
    var(--jtd-navy-900);
}

.jtd-product-map-v4__core {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.jtd-product-map-v4__core a:nth-child(1),
.jtd-product-map-v4__core a:nth-child(2) {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 26px 62px -46px rgba(37, 99, 235, 0.38);
}

.jtd-product-map-v4__core a:nth-child(3) {
  border-style: dashed;
}

.jtd-product-map-v4__extend span:first-child {
  opacity: 0.58;
}

.jtd-evidence-wall__media img {
  filter: contrast(1.06) saturate(1.08);
}

.jtd-evidence-wall__metric {
  border-width: 2px;
  box-shadow: 0 18px 42px -34px rgba(225, 37, 27, 0.48);
}

.jtd-v4-download__cards article {
  background: rgba(10, 18, 32, 0.92);
}

.jtd-v4-download__cards article:hover {
  background: rgba(8, 17, 31, 0.98);
  border-color: var(--jtd-red);
  box-shadow: 0 30px 66px -38px rgba(225, 37, 27, 0.36);
}

@media (max-width: 1180px) {
  .jtd-console-window__screen {
    padding-top: 68px;
  }

  .jtd-console-window__screen .jtd-console-flow {
    position: relative;
    inset: auto;
    margin-bottom: 12px;
  }

  .jtd-console-metrics {
    position: static;
  }

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

@media (max-width: 760px) {
  .jtd-console-window__screen {
    padding: 14px;
  }

  .jtd-console-window__screen .jtd-console-flow {
    display: flex;
    overflow-x: auto;
  }

  .jtd-console-metrics span {
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .jtd-console-metrics span:last-child {
    border-bottom: 0;
  }

  .jtd-architecture__module-grid {
    grid-template-columns: 1fr;
  }

  .jtd-architecture--v4 article {
    grid-template-columns: 1fr;
  }

  .jtd-product-map-v4__core {
    grid-template-columns: 1fr !important;
  }

  .jtd-product-map-v4__core a:nth-child(-n+2) img,
  .jtd-product-map-v4__core a:nth-child(3) img {
    height: 168px;
  }
}

/* Homepage V3.3 running-state polish */
.jtd-console-window__screen {
  padding-bottom: 118px;
}

.jtd-console-metrics > div {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.jtd-console-metrics {
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.88), rgba(11, 27, 51, 0.82));
}

.jtd-console-metrics span {
  min-width: 0;
}

.jtd-console-metrics b {
  font-size: 15px;
  white-space: nowrap;
}

.jtd-console-callout {
  opacity: 0.62;
}

.jtd-console-callout.is-active,
.jtd-console-callout:hover {
  opacity: 1;
}

.jtd-console-base {
  min-height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #08111f 0%, #0b1b33 76%, #08111f 100%);
}

.jtd-console-base::after {
  width: 8px;
  height: 8px;
}

.jtd-five-flow--v5 {
  border-color: rgba(37, 99, 235, 0.14);
}

.jtd-five-flow__column--center {
  transform: translateY(-2px);
}

.jtd-five-flow--v5 .jtd-five-flow__objects {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: -6px;
}

.jtd-five-flow--v5 .jtd-five-flow__objects span:hover {
  border-color: rgba(225, 37, 27, 0.46);
  background: var(--jtd-red-soft);
  color: var(--jtd-red);
}

.jtd-architecture__module-grid section {
  border-color: rgba(225, 37, 27, 0.26);
}

.jtd-product-map-v4__band span {
  border-radius: 12px;
}

.jtd-product-map-v4__extend span {
  opacity: 0.7;
}

.jtd-product-map-v4__extend span:first-child {
  opacity: 0.42;
}

.jtd-evidence-wall__body {
  display: flex;
  flex-direction: column;
}

.jtd-evidence-wall__metric {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

.jtd-evidence-wall__media::after {
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 31, 0.14));
}

@media (max-width: 1180px) {
  .jtd-console-window__screen {
    padding-bottom: 20px;
  }

  .jtd-console-metrics > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jtd-console-metrics > div {
    grid-template-columns: 1fr;
  }

  .jtd-console-metrics b {
    font-size: 16px;
  }

  .jtd-evidence-wall__metric {
    margin-top: 18px !important;
  }
}

/* Homepage V4 industry-platform pressure layer */
.jtd-home-v4-hero {
  background:
    radial-gradient(circle at 78% 28%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 90% 64%, rgba(225, 37, 27, 0.08), transparent 22%),
    linear-gradient(115deg, #fff 0%, #f8fafc 44%, #eef5ff 100%);
}

.jtd-chain-hub--v4 .jtd-console-visual {
  min-height: 620px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(243, 247, 252, 0.18)),
    radial-gradient(circle at 76% 20%, rgba(37, 99, 235, 0.12), transparent 34%);
}

.jtd-chain-hub--v4 .jtd-console-visual::after {
  content: "";
  position: absolute;
  inset: 60px 12px 12px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.jtd-chain-hub--v4 .jtd-console-window {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  margin-left: auto;
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow:
    0 34px 92px -58px rgba(8, 17, 31, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.58) inset;
}

.jtd-chain-hub--v4 .jtd-console-window__screen {
  min-height: 486px;
  padding: 78px 18px 122px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 96%, rgba(225, 37, 27, 0.07), transparent 25%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0.94));
}

.jtd-chain-hub--v4 .jtd-console-window__screen > img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 318px;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.08) saturate(1.06);
  transform: translateY(2px) scale(1.012);
}

.jtd-chain-hub--v4 .jtd-console-flow {
  z-index: 5;
  inset: 18px 16px auto;
  padding: 9px 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px -32px rgba(8, 17, 31, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.jtd-chain-hub--v4 .jtd-console-flow .jtd-chain-node {
  min-width: 76px;
  padding: 4px 8px;
  background: transparent;
  border: 0;
  color: #344054;
}

.jtd-chain-hub--v4 .jtd-console-flow .jtd-chain-node small {
  color: rgba(102, 112, 133, 0.78);
  font-size: 10px;
}

.jtd-chain-hub--v4 .jtd-console-flow .jtd-chain-node span {
  font-size: 12px;
  font-weight: 760;
}

.jtd-chain-hub--v4 .jtd-console-flow .jtd-chain-node.is-active,
.jtd-chain-hub--v4 .jtd-console-flow .jtd-chain-node:hover {
  color: var(--jtd-red);
  background: var(--jtd-red-soft);
}

.jtd-chain-hub--v4 .jtd-console-flow__line {
  flex: 0 0 22px;
  height: 1px;
  background: rgba(52, 64, 84, 0.2);
}

.jtd-chain-hub--v4 .jtd-console-flow__line::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-left: auto;
  margin-top: -2px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  color: rgba(52, 64, 84, 0.36);
  transform: rotate(45deg);
}

.jtd-chain-hub--v4 .jtd-console-flow__line.is-active {
  height: 2px;
  background: var(--jtd-red);
  box-shadow: 0 0 16px rgba(225, 37, 27, 0.32);
}

.jtd-chain-hub--v4 .jtd-console-zone--dashboard {
  inset: 33% 12% 18% 72%;
}

.jtd-chain-hub--v4 .jtd-console-zone.is-active {
  border-color: rgba(225, 37, 27, 0.58);
  background: rgba(225, 37, 27, 0.07);
  box-shadow: 0 0 0 999px rgba(8, 17, 31, 0.08), 0 0 24px rgba(225, 37, 27, 0.16);
}

.jtd-chain-hub--v4 .jtd-console-metrics {
  z-index: 6;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px 14px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(11, 27, 51, 0.84) 58%, rgba(8, 17, 31, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 54px -38px rgba(8, 17, 31, 0.86);
}

.jtd-chain-hub--v4 .jtd-console-metrics > strong {
  color: rgba(255, 255, 255, 0.92);
}

.jtd-chain-hub--v4 .jtd-console-metrics > strong::before {
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.72);
}

.jtd-chain-hub--v4 .jtd-console-metrics > div {
  grid-template-columns: 0.86fr 0.86fr 1.36fr 1.36fr 1fr 1fr;
  column-gap: 10px;
}

.jtd-chain-hub--v4 .jtd-console-metrics span {
  padding: 0 4px 0 0;
  border-right-color: rgba(255, 255, 255, 0.08);
}

.jtd-chain-hub--v4 .jtd-console-metrics em {
  color: rgba(255, 255, 255, 0.52);
}

.jtd-chain-hub--v4 .jtd-console-metrics b {
  color: #fff;
  font-size: 15px;
}

.jtd-chain-hub--v4 .jtd-console-callout {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 42px -30px rgba(8, 17, 31, 0.42);
}

.jtd-chain-hub--v4 .jtd-console-callout--order {
  left: 5%;
  top: 35%;
}

.jtd-chain-hub--v4 .jtd-console-callout--contract {
  right: 4%;
  top: 34%;
}

.jtd-chain-hub--v4 .jtd-console-callout--finance {
  left: 9%;
  bottom: 26%;
}

.jtd-chain-hub--v4 .jtd-console-callout--dashboard {
  right: 6%;
  bottom: 27%;
}

.jtd-chain-hub--v4 .jtd-console-base {
  z-index: 3;
  width: min(100%, 780px);
  margin-left: auto;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(90deg, #08111f, #0b1b33 62%, #08111f);
  box-shadow: 0 20px 54px -38px rgba(8, 17, 31, 0.9);
}

.jtd-chain-hub--v4 .jtd-console-base strong {
  letter-spacing: 0;
}

.jtd-chain-hub--v4 .jtd-console-base span {
  color: rgba(255, 255, 255, 0.74);
}

.jtd-five-flow--v5 {
  grid-template-columns: minmax(220px, 0.86fr) minmax(390px, 1.42fr) minmax(230px, 0.9fr);
  min-height: 0;
  padding: 28px;
  gap: 22px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98), #fff 38%, rgba(243, 247, 252, 0.96)),
    radial-gradient(circle at 48% 42%, rgba(37, 99, 235, 0.12), transparent 30%);
}

.jtd-five-flow--v5::before,
.jtd-five-flow--v5::after {
  opacity: 0.36;
}

.jtd-five-flow--v5::before {
  left: 27%;
  right: auto;
  width: 20%;
}

.jtd-five-flow--v5::after {
  right: 22%;
  left: auto;
  width: 18%;
}

.jtd-five-flow__column--input,
.jtd-five-flow__column--result {
  opacity: 0.92;
}

.jtd-five-flow--v5 .jtd-five-flow__item {
  padding: 13px 14px;
}

.jtd-five-flow--v5 .jtd-five-flow__item b {
  font-size: 15px;
}

.jtd-five-flow--v5 .jtd-five-flow__item p {
  font-size: 13px;
  color: #475467;
}

.jtd-five-flow__core {
  border-radius: 14px;
  background:
    linear-gradient(135deg, #08111f, #0b1b33);
  box-shadow: 0 22px 56px -40px rgba(8, 17, 31, 0.9);
}

.jtd-five-flow--v5 .jtd-five-flow__objects {
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98));
}

.jtd-five-flow__object-groups {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jtd-five-flow__object-group {
  padding: 12px;
  border: 1px solid rgba(229, 234, 240, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 32px -28px rgba(8, 17, 31, 0.3);
}

.jtd-five-flow__object-group em {
  display: block;
  margin-bottom: 9px;
  color: #344054;
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
}

.jtd-five-flow__object-group div {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.jtd-five-flow__object-group span {
  margin: 0 !important;
  justify-content: center;
}

.jtd-five-flow--v5 .jtd-five-flow__objects span.is-active {
  transform: translateY(-1px);
}

.jtd-five-flow--v5 .jtd-five-flow__roles article {
  min-height: 90px;
  background: rgba(255, 255, 255, 0.9);
}

.jtd-five-flow--v5 .jtd-five-flow__roles b {
  font-size: 16px;
}

.jtd-architecture--v4 article:nth-child(3) {
  border-color: rgba(225, 37, 27, 0.3);
  background:
    radial-gradient(circle at 0% 0%, rgba(225, 37, 27, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.08);
}

.jtd-architecture__module-grid section {
  position: relative;
  min-height: 118px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 3px 0 0 rgba(225, 37, 27, 0.72), 0 18px 44px -38px rgba(0, 0, 0, 0.85);
}

.jtd-architecture__module-grid section::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jtd-red), rgba(37, 99, 235, 0.45));
  opacity: 0.82;
}

.jtd-product-map-v4::before {
  content: "产业底座 → 三大产业引擎 → 产业能力层 → 产业延展层";
}

.jtd-product-map-v4__base {
  background:
    linear-gradient(90deg, #08111f, #0b1b33 62%, #08111f),
    radial-gradient(circle at 94% 50%, rgba(225, 37, 27, 0.18), transparent 32%);
}

.jtd-product-map-v4__base::after {
  content: "文旅产业数字基础设施";
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
}

.jtd-product-map-v4__core a:nth-child(1)::after,
.jtd-product-map-v4__core a:nth-child(2)::after,
.jtd-product-map-v4__core a:nth-child(3)::after {
  content: "产业引擎";
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(225, 37, 27, 0.72);
  font-size: 12px;
  font-weight: 820;
}

.jtd-product-map-v4__core a:nth-child(3)::after {
  content: "产业触点";
  color: rgba(37, 99, 235, 0.72);
}

.jtd-product-map-v4__extend span:first-child {
  opacity: 0.38;
}

.jtd-evidence-wall__body p b {
  min-width: 72px;
}

.jtd-evidence-wall__metric strong {
  color: var(--jtd-red);
}

@media (max-width: 1180px) {
  .jtd-chain-hub--v4 .jtd-console-visual {
    min-height: auto;
  }

  .jtd-chain-hub--v4 .jtd-console-window,
  .jtd-chain-hub--v4 .jtd-console-base {
    width: 100%;
  }

  .jtd-chain-hub--v4 .jtd-console-window__screen {
    padding: 18px 18px 20px;
  }

  .jtd-chain-hub--v4 .jtd-console-flow {
    position: relative;
    inset: auto;
    margin-bottom: 14px;
    overflow-x: auto;
  }

  .jtd-chain-hub--v4 .jtd-console-metrics {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .jtd-chain-hub--v4 .jtd-console-callouts {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .jtd-chain-hub--v4 .jtd-console-callout {
    position: static;
  }

  .jtd-five-flow--v5 {
    grid-template-columns: 1fr;
  }

  .jtd-five-flow__object-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jtd-chain-hub--v4 .jtd-console-visual {
    padding: 14px;
  }

  .jtd-chain-hub--v4 .jtd-console-window__screen > img {
    min-height: 220px;
  }

  .jtd-chain-hub--v4 .jtd-console-flow .jtd-chain-node {
    flex: 0 0 92px;
  }

  .jtd-chain-hub--v4 .jtd-console-callouts,
  .jtd-five-flow__object-groups,
  .jtd-five-flow__object-group div {
    grid-template-columns: 1fr;
  }

  .jtd-chain-hub--v4 .jtd-console-metrics b {
    font-size: 17px;
  }
}

/* Homepage V5+ information-flow system */
@keyframes jtd-v5-flow-scan {
  0% { transform: translateX(-18%); opacity: 0; }
  18% { opacity: 0.75; }
  82% { opacity: 0.75; }
  100% { transform: translateX(118%); opacity: 0; }
}

@keyframes jtd-v5-stream-drift {
  0% { background-position: 0 0; }
  100% { background-position: 96px 0; }
}

@keyframes jtd-v5-pulse {
  0%, 100% { opacity: 0.42; transform: scaleX(0.94); }
  50% { opacity: 1; transform: scaleX(1); }
}

.jtd-home-v5-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(225, 37, 27, 0.08), transparent 24%),
    linear-gradient(115deg, #fff 0%, #f8fafc 45%, #eef5ff 100%);
}

.jtd-home-v5-hero::before {
  content: "";
  position: absolute;
  inset: 58px 0 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.jtd-home-v5-hero .jtd-home-v3-hero__copy,
.jtd-home-v5-hero .jtd-chain-hub--v5 {
  position: relative;
  z-index: 1;
}

.jtd-chain-hub--v5 {
  min-width: 0;
}

.jtd-stream-system {
  position: relative;
  min-height: 620px;
  padding: 34px 30px 118px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.96), rgba(11, 27, 51, 0.92)),
    radial-gradient(circle at 76% 12%, rgba(37, 99, 235, 0.28), transparent 28%);
  box-shadow: 0 40px 90px -58px rgba(8, 17, 31, 0.82);
}

.jtd-stream-system::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: jtd-v5-stream-drift 12s linear infinite;
}

.jtd-stream-system::after {
  content: "";
  position: absolute;
  top: 16%;
  bottom: 16%;
  width: 34%;
  left: -34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.16), rgba(37, 99, 235, 0.18), transparent);
  filter: blur(16px);
  animation: jtd-v5-flow-scan 4.8s ease-in-out infinite;
}

.jtd-stream-system__backbone {
  position: absolute;
  inset: 52px 34px 52px;
  pointer-events: none;
}

.jtd-stream-system__backbone span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.jtd-stream-system__backbone span:nth-child(1) { top: 16%; }
.jtd-stream-system__backbone span:nth-child(2) { top: 38%; }
.jtd-stream-system__backbone span:nth-child(3) { top: 62%; }
.jtd-stream-system__backbone span:nth-child(4) { top: 84%; }

.jtd-stream-system__platform {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
}

.jtd-stream-system__platform strong,
.jtd-stream-system__platform span {
  position: relative;
  z-index: 2;
}

.jtd-stream-system__platform strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 820;
}

.jtd-stream-system__platform span {
  font-size: 13px;
  font-weight: 650;
}

.jtd-stream-metrics {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(540px, 100%);
  margin-top: 24px;
}

.jtd-stream-metrics span {
  display: grid;
  grid-template-columns: minmax(96px, 0.9fr) minmax(138px, 1.1fr) minmax(92px, 0.8fr);
  align-items: baseline;
  gap: 14px;
  min-height: 50px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.24s ease, transform 0.24s ease, color 0.24s ease;
}

.jtd-stream-metrics em,
.jtd-stream-metrics b,
.jtd-stream-metrics small {
  position: relative;
  z-index: 2;
}

.jtd-stream-metrics em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.jtd-stream-metrics b {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 860;
  letter-spacing: 0;
  white-space: nowrap;
}

.jtd-stream-metrics small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 650;
}

.jtd-stream-metrics span.is-active {
  transform: translateX(8px);
}

.jtd-stream-metrics span.is-active em,
.jtd-stream-metrics span.is-active b {
  color: #fff;
}

.jtd-stream-metrics span.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 16px rgba(225, 37, 27, 0.82);
}

.jtd-chain-hub.is-engaged .jtd-stream-metrics span:not(.is-active),
.jtd-chain-hub.is-engaged .jtd-stream-annotation:not(.is-active),
.jtd-chain-hub.is-engaged .jtd-stream-path .jtd-chain-node:not(.is-active) {
  opacity: 0.48;
}

.jtd-stream-path {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 24px;
  padding: 12px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.jtd-stream-path .jtd-chain-node {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 66px;
  min-height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  text-align: left;
}

.jtd-stream-path .jtd-chain-node small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 780;
}

.jtd-stream-path .jtd-chain-node span {
  font-size: 13px;
  font-weight: 780;
}

.jtd-stream-path .jtd-chain-node.is-active,
.jtd-stream-path .jtd-chain-node:hover {
  color: #fff;
  transform: translateY(-2px) !important;
}

.jtd-stream-path .jtd-chain-node.is-active small,
.jtd-stream-path .jtd-chain-node:hover small {
  color: var(--jtd-red);
}

.jtd-stream-path__flow {
  display: block;
  flex: 1 1 12px;
  min-width: 10px;
  height: 1px;
  margin: 0 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.jtd-stream-path__flow.is-active {
  height: 2px;
  background: var(--jtd-red);
  box-shadow: 0 0 16px rgba(225, 37, 27, 0.62);
  animation: jtd-v5-pulse 1.6s ease-in-out infinite;
}

.jtd-stream-annotations {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  pointer-events: none;
}

.jtd-stream-annotation {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.56);
  transition: opacity 0.24s ease, transform 0.24s ease, color 0.24s ease;
}

.jtd-stream-annotation::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.jtd-stream-annotation b,
.jtd-stream-annotation span {
  display: block;
}

.jtd-stream-annotation b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 820;
}

.jtd-stream-annotation span {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.45;
}

.jtd-stream-annotation.is-active,
.jtd-stream-annotation:hover {
  color: rgba(255, 255, 255, 0.78);
  transform: translateY(-3px);
}

.jtd-stream-annotation.is-active::before,
.jtd-stream-annotation:hover::before {
  background: var(--jtd-red);
  box-shadow: 0 0 16px rgba(225, 37, 27, 0.82);
}

.jtd-v4-proof__grid {
  display: flex;
  gap: 0;
  border-block: 1px solid var(--jtd-border);
}

.jtd-v4-proof__item {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  border-right: 1px solid rgba(229, 234, 240, 0.86) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.jtd-v4-proof__item:last-child {
  border-right: 0 !important;
}

.jtd-v5-flow-section {
  background:
    linear-gradient(180deg, #f8fafc, #fff);
}

.jtd-flow-network-v5 {
  position: relative;
  min-height: 560px;
  padding: 34px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(248, 250, 252, 0.95), #fff, rgba(243, 247, 252, 0.9));
}

.jtd-flow-network-v5::before,
.jtd-flow-network-v5::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.54), rgba(37, 99, 235, 0.28), transparent);
}

.jtd-flow-network-v5::before {
  left: 12%;
  right: 50%;
}

.jtd-flow-network-v5::after {
  left: 50%;
  right: 12%;
}

.jtd-flow-network-v5__inputs,
.jtd-flow-network-v5__outputs {
  position: absolute;
  z-index: 2;
  top: 52px;
  bottom: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 27%;
}

.jtd-flow-network-v5__inputs {
  left: 24px;
}

.jtd-flow-network-v5__outputs {
  right: 24px;
}

.jtd-flow-network-v5__inputs button,
.jtd-flow-network-v5__outputs article {
  position: relative;
  padding: 8px 0 8px 18px;
  color: #475467;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(52, 64, 84, 0.16);
  text-align: left;
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.jtd-flow-network-v5__outputs article {
  border-left: 0;
  border-right: 1px solid rgba(52, 64, 84, 0.16);
  padding-right: 18px;
  padding-left: 0;
  text-align: right;
}

.jtd-flow-network-v5__inputs button::before,
.jtd-flow-network-v5__outputs article::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(52, 64, 84, 0.22);
}

.jtd-flow-network-v5__inputs button::before {
  left: -4px;
}

.jtd-flow-network-v5__outputs article::before {
  right: -4px;
}

.jtd-flow-network-v5__inputs b,
.jtd-flow-network-v5__inputs span,
.jtd-flow-network-v5__outputs b,
.jtd-flow-network-v5__outputs span {
  display: block;
}

.jtd-flow-network-v5__inputs b,
.jtd-flow-network-v5__outputs b {
  color: #111827;
  font-size: 16px;
  font-weight: 820;
}

.jtd-flow-network-v5__inputs span,
.jtd-flow-network-v5__outputs span {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
}

.jtd-flow-network-v5__inputs button.is-active,
.jtd-flow-network-v5__inputs button:hover,
.jtd-flow-network-v5__outputs article.is-active {
  transform: translateX(4px);
  border-color: var(--jtd-red);
}

.jtd-flow-network-v5__outputs article.is-active {
  transform: translateX(-4px);
}

.jtd-flow-network-v5__inputs button.is-active::before,
.jtd-flow-network-v5__inputs button:hover::before,
.jtd-flow-network-v5__outputs article.is-active::before {
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.62);
}

.jtd-flow-network-v5__core {
  position: relative;
  z-index: 3;
  width: min(430px, 38%);
  margin: 58px auto 0;
  text-align: center;
}

.jtd-flow-network-v5__node {
  position: relative;
  padding: 18px 12px 22px;
  color: #fff;
}

.jtd-flow-network-v5__node::before {
  content: "";
  position: absolute;
  inset: 0 28px;
  z-index: -1;
  background: linear-gradient(135deg, #08111f, #0b1b33);
  box-shadow: 0 30px 58px -42px rgba(8, 17, 31, 0.86);
}

.jtd-flow-network-v5__node small,
.jtd-flow-network-v5__node strong,
.jtd-flow-network-v5__node span {
  display: block;
}

.jtd-flow-network-v5__node small {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 760;
}

.jtd-flow-network-v5__node strong {
  margin-top: 7px;
  font-size: 22px;
  font-weight: 850;
}

.jtd-flow-network-v5__node span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.jtd-flow-network-v5__entities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.jtd-flow-network-v5__entities span {
  min-width: 78px;
  padding: 10px 12px;
  color: #344054;
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 2px solid rgba(37, 99, 235, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease, background 0.24s ease;
}

.jtd-flow-network-v5__entities b,
.jtd-flow-network-v5__entities em {
  display: block;
}

.jtd-flow-network-v5__entities b {
  font-size: 15px;
  font-weight: 850;
}

.jtd-flow-network-v5__entities em {
  margin-top: 3px;
  font-size: 12px;
  font-style: normal;
  color: #667085;
}

.jtd-flow-network-v5__entities span.is-active,
.jtd-flow-network-v5__entities span:hover {
  transform: translateY(-4px);
  color: var(--jtd-red);
  background: #fff;
  border-color: var(--jtd-red);
}

.jtd-engine-flow-v5 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 42px;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.jtd-engine-flow-v5 article {
  display: grid;
  grid-template-columns: 60px 1.15fr 1fr 1.1fr 1fr;
  align-items: center;
  gap: 22px;
  min-height: 96px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jtd-engine-flow-v5 article:last-child {
  border-bottom: 0;
}

.jtd-engine-flow-v5 span,
.jtd-engine-flow-v5 em,
.jtd-engine-flow-v5 strong,
.jtd-engine-flow-v5 small,
.jtd-engine-flow-v5 b {
  display: block;
}

.jtd-engine-flow-v5 span {
  color: rgba(225, 37, 27, 0.92);
  font-size: 18px;
  font-weight: 860;
}

.jtd-engine-flow-v5 em {
  font-style: normal;
  font-size: 13px;
}

.jtd-engine-flow-v5 strong {
  color: #fff;
  font-size: 19px;
  font-weight: 850;
}

.jtd-engine-flow-v5 small {
  font-size: 13px;
  line-height: 1.5;
}

.jtd-engine-flow-v5 b {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.jtd-capability-flow-v5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 38px;
  border-block: 1px solid var(--jtd-border);
}

.jtd-capability-flow-v5__base,
.jtd-capability-flow-v5__core,
.jtd-capability-flow-v5__extend,
.jtd-capability-flow-v5__weak {
  padding: 24px 0;
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-capability-flow-v5__weak {
  border-bottom: 0;
}

.jtd-capability-flow-v5__base {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}

.jtd-capability-flow-v5__base strong {
  color: #08111f;
  font-size: 26px;
  font-weight: 860;
}

.jtd-capability-flow-v5__base span {
  color: var(--jtd-red);
  font-weight: 780;
}

.jtd-capability-flow-v5__core {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.jtd-capability-flow-v5__core a {
  position: relative;
  min-height: 150px;
  padding-left: 18px;
  color: #475467;
  border-left: 1px solid rgba(52, 64, 84, 0.18);
}

.jtd-capability-flow-v5__core a::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 14px rgba(225, 37, 27, 0.6);
}

.jtd-capability-flow-v5__core em,
.jtd-capability-flow-v5__core strong,
.jtd-capability-flow-v5__core span {
  display: block;
}

.jtd-capability-flow-v5__core em {
  color: var(--jtd-red);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
}

.jtd-capability-flow-v5__core strong {
  margin-top: 12px;
  color: #111827;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.28;
}

.jtd-capability-flow-v5__core span {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
}

.jtd-capability-flow-v5__extend,
.jtd-capability-flow-v5__weak {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.jtd-capability-flow-v5__extend b,
.jtd-capability-flow-v5__weak b {
  margin-right: 8px;
  color: #111827;
  font-size: 15px;
}

.jtd-capability-flow-v5__extend span,
.jtd-capability-flow-v5__weak span {
  color: #475467;
  font-size: 15px;
}

.jtd-capability-flow-v5__weak span {
  opacity: 0.56;
}

.jtd-solution-flow-v5 {
  margin-top: 42px;
  border-top: 1px solid var(--jtd-border);
}

.jtd-solution-flow-v5 article {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.9fr) repeat(3, minmax(150px, 1fr)) 96px;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-solution-flow-v5 article > span {
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 820;
}

.jtd-solution-flow-v5 h3 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}

.jtd-solution-flow-v5 p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.jtd-solution-flow-v5 p b {
  display: block;
  margin-bottom: 5px;
  color: #111827;
}

.jtd-solution-flow-v5 a {
  color: var(--jtd-red);
  font-size: 14px;
  font-weight: 780;
}

.jtd-evidence-stream-v5 {
  margin-top: 40px;
  border-block: 1px solid var(--jtd-border);
}

.jtd-evidence-stream-v5 article {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(360px, 1.4fr) minmax(220px, 0.8fr);
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-evidence-stream-v5 article:last-child {
  border-bottom: 0;
}

.jtd-evidence-stream-v5 header span {
  color: var(--jtd-red);
  font-size: 13px;
  font-weight: 820;
}

.jtd-evidence-stream-v5 h3 {
  margin: 8px 0 0;
  color: #111827;
  font-size: 24px;
}

.jtd-evidence-stream-v5__body {
  display: grid;
  gap: 10px;
}

.jtd-evidence-stream-v5__body p {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  margin: 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.55;
}

.jtd-evidence-stream-v5__body b {
  color: #111827;
}

.jtd-evidence-stream-v5__result strong {
  display: block;
  color: var(--jtd-red);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  font-weight: 880;
}

.jtd-evidence-stream-v5__result div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.jtd-evidence-stream-v5__result span {
  color: #475467;
  font-size: 13px;
}

.jtd-v4-download__cards article {
  border-radius: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(16, 24, 40, 0.86));
  border-color: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .jtd-stream-system::before,
  .jtd-stream-system::after,
  .jtd-stream-path__flow.is-active {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .jtd-stream-system {
    min-height: auto;
    padding: 26px 22px 120px;
  }

  .jtd-stream-metrics {
    width: 100%;
  }

  .jtd-stream-path .jtd-chain-node {
    flex: 0 0 88px;
  }

  .jtd-stream-path__flow {
    flex: 0 0 24px;
    margin: 0 8px;
  }

  .jtd-stream-annotations {
    left: auto;
    right: auto;
    bottom: auto;
  }

  .jtd-flow-network-v5 {
    min-height: auto;
    padding: 28px 20px;
  }

  .jtd-flow-network-v5__inputs,
  .jtd-flow-network-v5__outputs,
  .jtd-flow-network-v5__core {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

  .jtd-flow-network-v5__inputs,
  .jtd-flow-network-v5__outputs {
    gap: 10px;
  }

  .jtd-flow-network-v5__core {
    margin: 28px 0;
  }

  .jtd-engine-flow-v5 article,
  .jtd-solution-flow-v5 article,
  .jtd-evidence-stream-v5 article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .jtd-stream-system {
    padding: 22px 16px 150px;
  }

  .jtd-stream-metrics span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .jtd-stream-metrics b {
    font-size: 30px;
  }

  .jtd-stream-path {
    overflow-x: auto;
  }

  .jtd-stream-annotations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jtd-stream-system__platform {
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .jtd-v4-proof__grid,
  .jtd-capability-flow-v5__base,
  .jtd-capability-flow-v5__extend,
  .jtd-capability-flow-v5__weak {
    flex-direction: column;
  }

  .jtd-v4-proof__item {
    width: 100%;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(229, 234, 240, 0.86) !important;
  }

  .jtd-capability-flow-v5__core {
    grid-template-columns: 1fr;
  }
}

/* V6 Operating System UI */
@keyframes jtd-v6-flow-x {
  0% { transform: translateX(-18%); opacity: 0; }
  12% { opacity: 0.8; }
  88% { opacity: 0.8; }
  100% { transform: translateX(118%); opacity: 0; }
}

@keyframes jtd-v6-data-jump {
  0%, 100% { opacity: 0.88; transform: translateY(0); }
  45% { opacity: 1; transform: translateY(-1px); }
}

@keyframes jtd-v6-node-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(225, 37, 27, 0); }
  50% { box-shadow: 0 0 24px rgba(225, 37, 27, 0.32); }
}

.jtd-home-v6-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(37, 99, 235, 0.18), transparent 32%),
    radial-gradient(circle at 16% 68%, rgba(225, 37, 27, 0.12), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #0b1220 52%, #0b1b33 100%);
}

.jtd-home-v6-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.66), transparent);
}

.jtd-v6-flow-bg,
.jtd-v6-flow-bg i {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jtd-v6-flow-bg i {
  height: 1px;
  top: calc(18% + var(--i, 0) * 12%);
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.62), rgba(6, 174, 212, 0.34), transparent);
  filter: blur(0.2px);
  transform: translateX(-18%);
  animation: jtd-v6-flow-x 7.2s linear infinite;
}

.jtd-v6-flow-bg i:nth-child(1) { --i: 0; animation-delay: -1.2s; }
.jtd-v6-flow-bg i:nth-child(2) { --i: 1; animation-delay: -3.8s; opacity: 0.7; }
.jtd-v6-flow-bg i:nth-child(3) { --i: 2; animation-delay: -5.1s; opacity: 0.55; }
.jtd-v6-flow-bg i:nth-child(4) { --i: 3; animation-delay: -2.4s; opacity: 0.42; }
.jtd-v6-flow-bg i:nth-child(5) { --i: 4; animation-delay: -6.4s; opacity: 0.32; }

.jtd-home-v6-hero__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  min-height: calc(100vh - 64px);
  padding-block: clamp(72px, 8vw, 112px);
}

.jtd-home-v6-hero__copy {
  flex: 0 1 39%;
  min-width: 0;
}

.jtd-v6-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.jtd-v6-status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--jtd-red);
  box-shadow: 0 0 18px rgba(225, 37, 27, 0.8);
}

.jtd-home-v6-hero h1 {
  max-width: 680px;
  margin: 22px 0 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 860;
  line-height: 1.05;
}

.jtd-home-v6-hero__copy p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.82;
}

.jtd-home-v6-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 30px;
}

.jtd-home-v6-hero__trust span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.jtd-home-v6-hero .jtd-button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.jtd-home-v6-hero .jtd-v3-weak-link {
  color: rgba(255, 255, 255, 0.82);
}

.jtd-chain-hub--v6 {
  flex: 1 1 61%;
  min-width: 0;
}

.jtd-os-terminal {
  position: relative;
  min-height: 650px;
  padding: 32px 34px 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.98), rgba(8, 17, 31, 0.94)),
    radial-gradient(circle at 72% 18%, rgba(37, 99, 235, 0.2), transparent 28%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 50px 120px -70px rgba(0, 0, 0, 0.95);
}

.jtd-os-terminal::before,
.jtd-os-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jtd-os-terminal::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.jtd-os-terminal::after {
  left: -22%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.18), transparent);
  filter: blur(18px);
  animation: jtd-v6-flow-x 5.4s linear infinite;
}

.jtd-os-terminal__head,
.jtd-os-terminal__stream,
.jtd-os-flow-layer,
.jtd-os-flow-tags,
.jtd-os-terminal__platform {
  position: relative;
  z-index: 2;
}

.jtd-os-terminal__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.jtd-os-terminal__head span {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.jtd-os-terminal__head b {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.jtd-os-terminal__head em {
  margin-left: auto;
  color: #9df2bd;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.jtd-os-terminal__stream {
  margin-top: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.jtd-os-terminal__stream span {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.72);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.jtd-os-terminal__stream em {
  width: 152px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.jtd-os-terminal__stream b {
  flex: 1;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 860;
  white-space: nowrap;
  animation: jtd-v6-data-jump 2.8s ease-in-out infinite;
}

.jtd-os-terminal__stream small {
  width: 112px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.jtd-chain-hub.is-engaged .jtd-os-terminal__stream span:not(.is-active),
.jtd-chain-hub.is-engaged .jtd-os-flow-tag:not(.is-active),
.jtd-chain-hub.is-engaged .jtd-os-flow-layer .jtd-chain-node:not(.is-active) {
  opacity: 0.42;
}

.jtd-os-terminal__stream span.is-active {
  transform: translateX(10px);
}

.jtd-os-terminal__stream span.is-active em,
.jtd-os-terminal__stream span.is-active b {
  color: #fff;
}

.jtd-os-flow-layer {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-block: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jtd-os-flow-layer .jtd-chain-node {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  flex: 0 0 auto;
  min-width: 66px;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.jtd-os-flow-layer .jtd-chain-node small,
.jtd-os-flow-layer .jtd-chain-node span {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.jtd-os-flow-layer .jtd-chain-node small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 800;
}

.jtd-os-flow-layer .jtd-chain-node span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.jtd-os-flow-layer .jtd-chain-node.is-active,
.jtd-os-flow-layer .jtd-chain-node:hover {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  animation: jtd-v6-node-pulse 1.8s ease-in-out infinite;
}

.jtd-os-flow-layer .jtd-chain-node.is-active small,
.jtd-os-flow-layer .jtd-chain-node:hover small {
  color: var(--jtd-red);
}

.jtd-os-flow-layer__line {
  position: relative;
  flex: 1 1 10px;
  min-width: 8px;
  height: 1px;
  margin: 0 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.jtd-os-flow-layer__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: translateX(-100%);
  animation: jtd-v6-flow-x 2.8s linear infinite;
}

.jtd-os-flow-layer__line.is-active {
  height: 2px;
  background: var(--jtd-red);
  box-shadow: 0 0 18px rgba(225, 37, 27, 0.68);
}

.jtd-os-flow-tags {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.jtd-os-flow-tag {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.54);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 14px;
  transition: opacity 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.jtd-os-flow-tag b,
.jtd-os-flow-tag em {
  display: block;
}

.jtd-os-flow-tag b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 820;
}

.jtd-os-flow-tag em {
  margin-top: 6px;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.jtd-os-flow-tag.is-active {
  color: rgba(255, 255, 255, 0.8);
  border-color: var(--jtd-red);
}

.jtd-os-terminal__platform {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.jtd-os-terminal__platform strong {
  color: #fff;
  font-size: 15px;
  font-weight: 820;
}

.jtd-os-terminal__platform span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.06em;
}

.jtd-v6-state-strip {
  background: #08111f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jtd-v6-state-strip__rail {
  display: flex;
  align-items: stretch;
}

.jtd-v6-state-item {
  flex: 1;
  min-width: 0;
  padding: 22px 20px;
  color: rgba(255, 255, 255, 0.58);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.jtd-v6-state-item:last-child {
  border-right: 0;
}

.jtd-v6-state-item span,
.jtd-v6-state-item strong,
.jtd-v6-state-item small {
  display: block;
}

.jtd-v6-state-item span {
  color: var(--jtd-red);
  font-size: 12px;
  font-weight: 800;
}

.jtd-v6-state-item strong {
  margin-top: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 830;
}

.jtd-v6-state-item--result strong,
.jtd-v6-state-item--case strong {
  font-size: 28px;
}

.jtd-v6-state-item small {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.jtd-v4-role-pain,
.jtd-v4-product-solution,
.jtd-v4-evidence {
  background: #f8fafc;
}

.jtd-role-console {
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.jtd-role-console__tabs button {
  border-radius: 0;
}

.jtd-role-console__stage article {
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(243, 247, 252, 0.7));
  box-shadow: none;
}

.jtd-v6-network-section {
  background:
    linear-gradient(180deg, #fff, #f3f7fc);
  padding-block: clamp(76px, 8vw, 116px);
}

.jtd-v6-enterprise-network {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
}

.jtd-v6-enterprise-network::before,
.jtd-v6-enterprise-network::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.jtd-v6-enterprise-network::before {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.44), rgba(37, 99, 235, 0.35), transparent);
}

.jtd-v6-enterprise-network::after {
  inset: 18% 22%;
  border-top: 1px solid rgba(37, 99, 235, 0.18);
  border-bottom: 1px solid rgba(37, 99, 235, 0.14);
}

.jtd-v6-flow-input-layer {
  position: absolute;
  left: 2%;
  top: 12%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(290px, 28%);
}

.jtd-v6-flow-input-layer button {
  position: relative;
  padding: 0 0 0 22px;
  color: #344054;
  background: transparent;
  border: 0;
  text-align: left;
}

.jtd-v6-flow-input-layer button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbd5e1;
}

.jtd-v6-flow-input-layer button::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: min(22vw, 310px);
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.22), transparent);
}

.jtd-v6-flow-input-layer b,
.jtd-v6-flow-input-layer span {
  display: block;
}

.jtd-v6-flow-input-layer b {
  color: #111827;
  font-size: 17px;
  font-weight: 820;
}

.jtd-v6-flow-input-layer span {
  margin-top: 5px;
  color: #667085;
  font-size: 13px;
}

.jtd-v6-flow-input-layer button.is-active::before,
.jtd-v6-flow-input-layer button:hover::before {
  background: var(--jtd-red);
  box-shadow: 0 0 16px rgba(225, 37, 27, 0.58);
}

.jtd-v6-flow-input-layer button.is-active b,
.jtd-v6-flow-input-layer button:hover b {
  color: var(--jtd-red);
}

.jtd-v6-flow-core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 42vw);
  transform: translate(-50%, -50%);
}

.jtd-v6-flow-core-node__terminal {
  position: relative;
  padding: 24px 28px;
  color: #fff;
  background: linear-gradient(135deg, #08111f, #0b1b33);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.jtd-v6-flow-core-node__terminal small,
.jtd-v6-flow-core-node__terminal strong,
.jtd-v6-flow-core-node__terminal span {
  display: block;
}

.jtd-v6-flow-core-node__terminal small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.jtd-v6-flow-core-node__terminal strong {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 860;
}

.jtd-v6-flow-core-node__terminal span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.jtd-v6-object-stream {
  display: flex;
  margin-top: 22px;
  border-top: 1px solid rgba(37, 99, 235, 0.18);
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
}

.jtd-v6-object-stream span {
  flex: 1;
  min-width: 0;
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  border-right: 1px solid rgba(37, 99, 235, 0.12);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.jtd-v6-object-stream span:last-child {
  border-right: 0;
}

.jtd-v6-object-stream b,
.jtd-v6-object-stream em {
  display: block;
}

.jtd-v6-object-stream b {
  color: #111827;
  font-size: 14px;
  font-weight: 840;
}

.jtd-v6-object-stream em {
  margin-top: 5px;
  color: #667085;
  font-size: 12px;
  font-style: normal;
}

.jtd-v6-object-stream span.is-active,
.jtd-v6-object-stream span:hover {
  background: #fff1f0;
  transform: translateY(-3px);
}

.jtd-v6-object-stream span.is-active b,
.jtd-v6-object-stream span:hover b {
  color: var(--jtd-red);
}

.jtd-v6-output-layer {
  position: absolute;
  right: 2%;
  top: 20%;
  bottom: 20%;
  width: min(300px, 28%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jtd-v6-output-layer > span {
  position: relative;
  padding-right: 22px;
  text-align: right;
}

.jtd-v6-output-layer > span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbd5e1;
}

.jtd-v6-output-layer b,
.jtd-v6-output-layer span span {
  display: block;
}

.jtd-v6-output-layer b {
  color: #111827;
  font-size: 18px;
  font-weight: 830;
}

.jtd-v6-output-layer span span {
  margin-top: 6px;
  color: #667085;
  font-size: 13px;
}

.jtd-v6-output-layer > span.is-active::after {
  background: var(--jtd-red);
  box-shadow: 0 0 16px rgba(225, 37, 27, 0.58);
}

.jtd-v6-output-layer > span.is-active b {
  color: var(--jtd-red);
}

.jtd-v6-engine-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(225, 37, 27, 0.1), transparent 24%),
    linear-gradient(180deg, #08111f, #0b1220);
  padding-block: clamp(86px, 9vw, 128px);
}

.jtd-v6-engine-section .jtd-v4-section-title h2,
.jtd-v6-engine-section .jtd-v4-section-title p {
  color: #fff;
}

.jtd-v6-engine-section .jtd-v4-section-title p,
.jtd-v6-engine-section .jtd-v3-security-note {
  color: rgba(255, 255, 255, 0.62);
}

.jtd-v6-engine-section .jtd-v3-security-note {
  margin-top: 22px;
  padding: 16px 0 16px 18px;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--jtd-red);
  border-radius: 0;
}

.jtd-v6-engine-layer {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.jtd-v6-engine-node {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
}

.jtd-v6-engine-node:last-child {
  border-bottom: 0;
}

.jtd-v6-engine-node span {
  width: 46px;
  color: var(--jtd-red);
  font-size: 19px;
  font-weight: 860;
}

.jtd-v6-engine-node em {
  flex: 0 1 240px;
  font-size: 13px;
  font-style: normal;
}

.jtd-v6-engine-node strong {
  flex: 0 0 220px;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
}

.jtd-v6-engine-node small {
  flex: 1;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.jtd-v6-engine-node b {
  flex: 0 1 220px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.jtd-v6-capability-entry {
  position: relative;
  padding-block: 20px;
}

.jtd-v6-capability-entry__base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-block: 1px solid var(--jtd-border);
}

.jtd-v6-capability-entry__base strong {
  color: #111827;
  font-size: 26px;
  font-weight: 860;
}

.jtd-v6-capability-entry__base span {
  color: #667085;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.jtd-v6-capability-entry__core {
  display: flex;
  gap: 0;
  margin-top: 24px;
  border-block: 1px solid var(--jtd-border);
}

.jtd-v6-capability-entry__core a {
  flex: 1;
  min-width: 0;
  padding: 26px 22px;
  border-right: 1px solid var(--jtd-border);
  color: #475467;
}

.jtd-v6-capability-entry__core a:last-child {
  border-right: 0;
}

.jtd-v6-capability-entry__core em,
.jtd-v6-capability-entry__core strong,
.jtd-v6-capability-entry__core span {
  display: block;
}

.jtd-v6-capability-entry__core em {
  color: var(--jtd-red);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
}

.jtd-v6-capability-entry__core strong {
  margin-top: 10px;
  color: #111827;
  font-size: 23px;
  font-weight: 850;
}

.jtd-v6-capability-entry__core span {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.58;
}

.jtd-v6-capability-entry__extend,
.jtd-v6-capability-entry__weak {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-v6-capability-entry__extend b,
.jtd-v6-capability-entry__weak b {
  width: 120px;
  color: #111827;
  font-size: 14px;
}

.jtd-v6-capability-entry__extend span,
.jtd-v6-capability-entry__weak span {
  color: #667085;
  font-size: 14px;
}

.jtd-v6-capability-entry__weak {
  opacity: 0.72;
}

.jtd-solution-flow-v5 {
  margin-top: 34px;
  border-top: 1px solid var(--jtd-border);
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-solution-flow-v5 article {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--jtd-border);
  border-radius: 0;
  box-shadow: none;
}

.jtd-solution-flow-v5 article:last-child {
  border-bottom: 0;
}

.jtd-solution-flow-v5 article > span {
  flex: 0 0 110px;
  color: var(--jtd-red);
  font-size: 12px;
  font-weight: 820;
}

.jtd-solution-flow-v5 h3 {
  flex: 0 0 230px;
  margin: 0;
  color: #111827;
  font-size: 20px;
}

.jtd-solution-flow-v5 p {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.jtd-solution-flow-v5 p b {
  display: block;
  margin-bottom: 4px;
  color: #111827;
}

.jtd-solution-flow-v5 a {
  flex: 0 0 auto;
  color: var(--jtd-red);
  font-size: 14px;
  font-weight: 820;
}

.jtd-v6-evidence-flow {
  border-top: 1px solid var(--jtd-border);
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-v6-evidence-flow__item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--jtd-border);
}

.jtd-v6-evidence-flow__item:last-child {
  border-bottom: 0;
}

.jtd-v6-evidence-flow__item header,
.jtd-v6-evidence-flow__body,
.jtd-v6-evidence-flow__result {
  padding: 26px 24px;
  border-right: 1px solid var(--jtd-border);
}

.jtd-v6-evidence-flow__item header {
  flex: 0 0 25%;
}

.jtd-v6-evidence-flow__item header span {
  color: var(--jtd-red);
  font-size: 12px;
  font-weight: 820;
}

.jtd-v6-evidence-flow__item header h3 {
  margin-top: 10px;
  color: #111827;
  font-size: 22px;
  font-weight: 850;
}

.jtd-v6-evidence-flow__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.jtd-v6-evidence-flow__body p {
  margin: 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.6;
}

.jtd-v6-evidence-flow__body b {
  display: inline-block;
  min-width: 72px;
  color: #111827;
  font-weight: 820;
}

.jtd-v6-evidence-flow__result {
  flex: 0 0 24%;
  border-right: 0;
}

.jtd-v6-evidence-flow__result strong {
  display: block;
  color: var(--jtd-red);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 880;
}

.jtd-v6-evidence-flow__result div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.jtd-v6-evidence-flow__result span {
  color: #667085;
  font-size: 13px;
}

.jtd-v4-download {
  background:
    radial-gradient(circle at 84% 14%, rgba(225, 37, 27, 0.1), transparent 24%),
    linear-gradient(135deg, #08111f, #0b1220);
}

.jtd-v4-download__cards article {
  border-radius: 0;
  background: transparent;
  border-width: 0 0 1px;
  border-color: rgba(255, 255, 255, 0.14);
}

.jtd-v4-download__cards article:hover {
  background: rgba(225, 37, 27, 0.06);
  border-color: var(--jtd-red);
}

@media (prefers-reduced-motion: reduce) {
  .jtd-v6-flow-bg i,
  .jtd-os-terminal::after,
  .jtd-os-terminal__stream b,
  .jtd-os-flow-layer__line::before,
  .jtd-os-flow-layer .jtd-chain-node.is-active,
  .jtd-os-flow-layer .jtd-chain-node:hover {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .jtd-home-v6-hero__layout {
    flex-direction: column;
    align-items: stretch;
  }

  .jtd-home-v6-hero__copy,
  .jtd-chain-hub--v6 {
    flex-basis: auto;
  }

  .jtd-v6-flow-input-layer,
  .jtd-v6-output-layer,
  .jtd-v6-flow-core-node {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .jtd-v6-enterprise-network {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: auto;
    padding: 28px 18px;
  }

  .jtd-v6-flow-input-layer,
  .jtd-v6-output-layer {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .jtd-home-v6-hero {
    min-height: auto;
  }

  .jtd-home-v6-hero__layout {
    padding-block: 48px 72px;
  }

  .jtd-home-v6-hero h1 {
    font-size: 38px;
  }

  .jtd-os-terminal {
    min-height: auto;
    padding: 22px 16px;
  }

  .jtd-os-terminal__head,
  .jtd-os-terminal__platform,
  .jtd-v6-state-strip__rail,
  .jtd-v6-capability-entry__base,
  .jtd-v6-capability-entry__core,
  .jtd-v6-evidence-flow__item {
    flex-direction: column;
  }

  .jtd-os-terminal__head em {
    margin-left: 0;
  }

  .jtd-os-terminal__stream span {
    display: block;
    min-height: auto;
    padding: 12px 0;
  }

  .jtd-os-terminal__stream em,
  .jtd-os-terminal__stream small {
    width: auto;
    text-align: left;
  }

  .jtd-os-terminal__stream b {
    display: block;
    margin-top: 6px;
    font-size: 32px;
  }

  .jtd-os-flow-layer {
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .jtd-os-flow-layer .jtd-chain-node {
    min-width: 94px;
  }

  .jtd-os-flow-tags {
    flex-direction: column;
  }

  .jtd-v6-state-strip__rail {
    display: flex;
  }

  .jtd-v6-state-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .jtd-v6-flow-input-layer,
  .jtd-v6-output-layer {
    display: flex;
    flex-direction: column;
  }

  .jtd-v6-flow-input-layer button::after,
  .jtd-v6-enterprise-network::before,
  .jtd-v6-enterprise-network::after {
    display: none;
  }

  .jtd-v6-object-stream {
    flex-wrap: wrap;
  }

  .jtd-v6-object-stream span {
    flex: 1 1 48%;
  }

  .jtd-v6-engine-node {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-block: 18px;
  }

  .jtd-solution-flow-v5 article {
    flex-direction: column;
    gap: 10px;
  }

  .jtd-solution-flow-v5 article > span,
  .jtd-solution-flow-v5 h3,
  .jtd-solution-flow-v5 p,
  .jtd-solution-flow-v5 a {
    flex: none;
    width: 100%;
  }

  .jtd-v6-engine-node span,
  .jtd-v6-engine-node em,
  .jtd-v6-engine-node strong,
  .jtd-v6-engine-node small,
  .jtd-v6-engine-node b {
    width: auto;
    flex: none;
  }

  .jtd-v6-capability-entry__core a,
  .jtd-v6-evidence-flow__item header,
  .jtd-v6-evidence-flow__body,
  .jtd-v6-evidence-flow__result {
    border-right: 0;
    border-bottom: 1px solid var(--jtd-border);
  }

  .jtd-v6-capability-entry__core a:last-child,
  .jtd-v6-evidence-flow__result {
    border-bottom: 0;
  }
}

/* ==========================================================================
   JTD Home V8 Final - Flow Operating Core
   Scope: front-page.php only
   ========================================================================== */

@keyframes jtd-home-v8-lane {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 320px 0;
  }
}

@keyframes jtd-home-v8-scan {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes jtd-home-v8-pulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes jtd-home-v8-value {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

.jtd-flow-os {
  --jtd-v8-red: #e1251b;
  --jtd-v8-ink: #101828;
  --jtd-v8-text: #344054;
  --jtd-v8-muted: #667085;
  --jtd-v8-border: #e4e7ec;
  --jtd-v8-border-strong: #d0d5dd;
  --jtd-v8-soft: #f6f8fb;
  --jtd-v8-blue: #2f6bff;
  --jtd-v8-deep: #0f172a;
  --jtd-v8-deeper: #111827;
  --jtd-v8-shadow: 0 28px 80px rgba(16, 24, 40, 0.1);
  background:
    radial-gradient(circle at 76% 9%, rgba(47, 107, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--jtd-v8-soft) 46%, #ffffff 100%);
  color: var(--jtd-v8-ink);
  overflow: hidden;
}

.jtd-flow-os .jtd-container {
  position: relative;
  z-index: 2;
}

.jtd-flow-os h1,
.jtd-flow-os h2,
.jtd-flow-os h3,
.jtd-flow-os p {
  color: inherit;
}

.jtd-flow-os a {
  text-decoration: none;
}

.jtd-flow-os .jtd-btn {
  border-radius: 999px;
  box-shadow: none;
  font-weight: 700;
  min-height: 48px;
  padding: 13px 22px;
}

.jtd-flow-os .jtd-btn--primary {
  background: var(--jtd-v8-red);
  border-color: var(--jtd-v8-red);
  color: #ffffff;
}

.jtd-flow-os .jtd-btn--primary:hover {
  background: #bf1d15;
  border-color: #bf1d15;
}

.jtd-flow-os .jtd-btn--secondary {
  background: #ffffff;
  border: 1px solid var(--jtd-v8-border-strong);
  color: var(--jtd-v8-ink);
}

.jtd-flow-os .jtd-btn--secondary:hover {
  border-color: rgba(225, 37, 27, 0.36);
  color: var(--jtd-v8-red);
}

.jtd-flow-os-hero {
  min-height: calc(100vh - 88px);
  padding: 112px 0 28px;
  position: relative;
  isolation: isolate;
}

.jtd-flow-os-hero::before {
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.jtd-flow-os-hero::after {
  background:
    radial-gradient(circle at 68% 36%, rgba(225, 37, 27, 0.08), transparent 27%),
    radial-gradient(circle at 84% 55%, rgba(47, 107, 255, 0.1), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.jtd-flow-field {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.jtd-flow-field span {
  background: linear-gradient(90deg, transparent, rgba(47, 107, 255, 0.18), rgba(225, 37, 27, 0.2), transparent);
  height: 1px;
  left: -12%;
  opacity: 0.46;
  position: absolute;
  width: 46%;
  animation: jtd-home-v8-lane 7.2s linear infinite;
}

.jtd-flow-field span:nth-child(1) {
  top: 18%;
}

.jtd-flow-field span:nth-child(2) {
  top: 32%;
  animation-delay: -1.6s;
  animation-duration: 9s;
  left: 32%;
}

.jtd-flow-field span:nth-child(3) {
  top: 49%;
  animation-delay: -3.2s;
  width: 62%;
}

.jtd-flow-field span:nth-child(4) {
  top: 66%;
  animation-delay: -4.8s;
  left: 18%;
}

.jtd-flow-field span:nth-child(5) {
  top: 77%;
  animation-delay: -2.5s;
  animation-duration: 8.4s;
  width: 38%;
}

.jtd-flow-field span:nth-child(6) {
  top: 88%;
  animation-delay: -5.2s;
  width: 52%;
}

.jtd-flow-hero-wrap {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
}

.jtd-system-anchor {
  max-width: 640px;
}

.jtd-flow-kicker {
  align-items: center;
  color: var(--jtd-v8-red);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.jtd-flow-kicker i {
  background: var(--jtd-v8-red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.1);
  display: inline-flex;
  height: 9px;
  width: 9px;
}

.jtd-system-anchor h1 {
  color: var(--jtd-v8-ink);
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.jtd-system-anchor__value {
  color: var(--jtd-v8-ink);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 750;
  line-height: 1.38;
  margin: 24px 0 0;
}

.jtd-system-anchor__copy {
  color: var(--jtd-v8-text);
  font-size: 17px;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 610px;
}

.jtd-system-anchor__en {
  color: var(--jtd-v8-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 18px 0 0;
}

.jtd-flow-action-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.jtd-hero-weak-link {
  color: var(--jtd-v8-muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 2px;
}

.jtd-hero-weak-link:hover {
  color: var(--jtd-v8-red);
}

.jtd-operating-layer {
  min-width: 0;
}

.jtd-flow-core-anchor {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(15, 23, 42, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(47, 107, 255, 0.2), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(225, 37, 27, 0.18), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 38px 100px rgba(15, 23, 42, 0.25);
  color: #ffffff;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.jtd-flow-core-anchor::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
  position: absolute;
}

.jtd-flow-core-anchor::after {
  animation: jtd-home-v8-scan 4.6s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.jtd-flow-core-anchor > * {
  position: relative;
  z-index: 1;
}

.jtd-flow-anchor-label {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.jtd-flow-anchor-label strong {
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0;
}

.jtd-flow-anchor-label small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.jtd-flow-route {
  align-items: center;
  display: flex;
  gap: 8px;
  min-height: 178px;
  overflow: hidden;
  padding: 24px 0;
  position: relative;
}

.jtd-flow-route::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(225, 37, 27, 0.68), rgba(47, 107, 255, 0.5), rgba(255, 255, 255, 0.08));
  content: "";
  height: 2px;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.jtd-flow-route::after {
  animation: jtd-home-v8-scan 2.4s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  content: "";
  height: 2px;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.jtd-flow-route button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  display: grid;
  flex: 1 1 0;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.jtd-flow-route button i {
  animation: jtd-home-v8-pulse 2s ease-in-out infinite;
  background: #ffffff;
  border: 3px solid rgba(225, 37, 27, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(225, 37, 27, 0.13), 0 0 28px rgba(225, 37, 27, 0.36);
  height: 18px;
  width: 18px;
}

.jtd-flow-route button:nth-of-type(2n) i {
  animation-delay: -0.5s;
}

.jtd-flow-route button:nth-of-type(3n) i {
  animation-delay: -1s;
}

.jtd-flow-route button strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.jtd-flow-route button span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.jtd-flow-route button em {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-style: normal;
  padding: 4px 7px;
}

.jtd-flow-route button.is-active strong,
.jtd-flow-route button:hover strong {
  color: #ffffff;
}

.jtd-flow-route button.is-active i,
.jtd-flow-route button:hover i {
  background: var(--jtd-v8-red);
  border-color: #ffffff;
  box-shadow: 0 0 0 10px rgba(225, 37, 27, 0.18), 0 0 36px rgba(225, 37, 27, 0.52);
}

.jtd-flow-link {
  display: none;
}

.jtd-state-stream {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-top: 22px;
}

.jtd-state-stream span {
  animation: jtd-home-v8-value 3s ease-in-out infinite;
  min-width: 0;
}

.jtd-state-stream span:nth-child(2) {
  animation-delay: -0.5s;
}

.jtd-state-stream span:nth-child(3) {
  animation-delay: -1s;
}

.jtd-state-stream span:nth-child(4) {
  animation-delay: -1.5s;
}

.jtd-state-stream span:nth-child(5) {
  animation-delay: -2s;
}

.jtd-state-stream em,
.jtd-state-stream small {
  display: block;
  font-style: normal;
}

.jtd-state-stream em strong {
  color: rgba(255, 255, 255, 0.86);
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.jtd-state-stream em i {
  color: rgba(255, 255, 255, 0.42);
  display: block;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 3px;
}

.jtd-state-stream b {
  color: #ffffff;
  display: block;
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 850;
  letter-spacing: 0;
  margin-top: 9px;
  word-break: keep-all;
}

.jtd-state-stream span:first-child b,
.jtd-state-stream span:last-child b {
  color: #ff665d;
}

.jtd-state-stream small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  margin-top: 7px;
}

.jtd-hero-system-signature {
  align-items: center;
  color: var(--jtd-v8-muted);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 28px;
}

.jtd-hero-system-signature span + span {
  border-left: 1px solid var(--jtd-v8-border);
  padding-left: 14px;
}

.jtd-flow-trust-strip {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--jtd-v8-border);
  border-top: 1px solid var(--jtd-v8-border);
  padding: 18px 0;
}

.jtd-flow-trust-strip__rail {
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--jtd-v8-border);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
}

.jtd-flow-trust-strip__item {
  border-right: 1px solid var(--jtd-v8-border);
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 18px 20px;
}

.jtd-flow-trust-strip__item:last-child {
  border-right: 0;
}

.jtd-flow-trust-strip__item strong {
  color: var(--jtd-v8-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.jtd-flow-trust-strip__item em {
  color: var(--jtd-v8-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.jtd-flow-trust-strip__item--metric strong {
  color: var(--jtd-v8-red);
  font-size: 22px;
}

.jtd-flow-network-layer,
.jtd-capability-flow-layer,
.jtd-evidence-flow-layer,
.jtd-flow-action-layer {
  background: #ffffff;
  padding: 112px 0;
  position: relative;
}

.jtd-flow-network-layer {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--jtd-v8-soft) 100%),
    radial-gradient(circle at 8% 24%, rgba(47, 107, 255, 0.08), transparent 24%);
}

.jtd-flow-headline {
  margin: 0 auto 52px;
  max-width: 850px;
  text-align: center;
}

.jtd-flow-headline span,
.jtd-flow-action-wrap > div:first-child > span {
  color: var(--jtd-v8-red);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.jtd-flow-headline h2,
.jtd-flow-action-wrap h2 {
  color: var(--jtd-v8-ink);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
}

.jtd-flow-headline p,
.jtd-flow-action-wrap p {
  color: var(--jtd-v8-text);
  font-size: 17px;
  line-height: 1.82;
  margin: 18px auto 0;
  max-width: 790px;
}

.jtd-flow-network-map {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(190px, 0.72fr) minmax(360px, 1.45fr) minmax(220px, 0.8fr);
  position: relative;
}

.jtd-flow-network-map::before {
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.08), rgba(225, 37, 27, 0.24), rgba(47, 107, 255, 0.08));
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.jtd-flow-inputs,
.jtd-flow-outputs {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.jtd-flow-inputs button,
.jtd-flow-outputs span {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--jtd-v8-border);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  display: grid;
  gap: 3px 12px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  padding: 13px 16px;
  text-align: left;
}

.jtd-flow-inputs button {
  appearance: none;
  color: inherit;
  cursor: pointer;
}

.jtd-flow-inputs button i,
.jtd-flow-outputs span i,
.jtd-capability-core a i,
.jtd-evidence-signal i {
  background: var(--jtd-v8-red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(225, 37, 27, 0.1);
  display: inline-flex;
  grid-row: span 3;
  height: 10px;
  width: 10px;
}

.jtd-flow-inputs button strong,
.jtd-flow-outputs span strong {
  color: var(--jtd-v8-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.28;
}

.jtd-flow-inputs button span,
.jtd-flow-outputs span small {
  color: var(--jtd-v8-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.jtd-flow-inputs button em,
.jtd-flow-outputs span em {
  color: var(--jtd-v8-text);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.jtd-flow-inputs button.is-active,
.jtd-flow-inputs button:hover,
.jtd-flow-outputs span.is-active {
  border-color: rgba(225, 37, 27, 0.34);
  box-shadow: 0 18px 42px rgba(225, 37, 27, 0.09);
}

.jtd-flow-core {
  background:
    radial-gradient(circle at 50% 10%, rgba(47, 107, 255, 0.08), transparent 32%),
    #ffffff;
  border: 1px solid var(--jtd-v8-border);
  border-radius: 28px;
  box-shadow: var(--jtd-v8-shadow);
  min-width: 0;
  padding: 34px;
  position: relative;
  z-index: 1;
}

.jtd-flow-core::before {
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: inherit;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.72), transparent 78%);
  pointer-events: none;
  position: absolute;
}

.jtd-flow-core__anchor {
  margin: 0 auto 30px;
  max-width: 430px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.jtd-flow-core__anchor strong {
  color: var(--jtd-v8-ink);
  display: block;
  font-size: 27px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-flow-core__anchor small {
  color: var(--jtd-v8-red);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 7px;
}

.jtd-flow-core__anchor span {
  color: var(--jtd-v8-text);
  display: block;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.jtd-core-node-stream {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.jtd-core-node-stream span {
  align-items: center;
  background: rgba(246, 248, 251, 0.9);
  border: 1px solid var(--jtd-v8-border);
  border-radius: 16px;
  display: grid;
  gap: 3px 10px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  padding: 15px;
}

.jtd-core-node-stream i {
  background: var(--jtd-v8-red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(225, 37, 27, 0.09);
  display: inline-flex;
  grid-row: span 2;
  height: 10px;
  width: 10px;
}

.jtd-core-node-stream b {
  color: var(--jtd-v8-ink);
  font-size: 16px;
  font-weight: 850;
}

.jtd-core-node-stream em {
  color: var(--jtd-v8-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  min-width: 0;
}

.jtd-engine-architecture {
  background:
    radial-gradient(circle at 16% 18%, rgba(47, 107, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #111827 0%, #0f172a 100%);
  color: #ffffff;
  padding: 112px 0;
  position: relative;
}

.jtd-engine-architecture::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

.jtd-engine-architecture .jtd-flow-headline h2 {
  color: #ffffff;
}

.jtd-engine-architecture .jtd-flow-headline p {
  color: rgba(255, 255, 255, 0.68);
}

.jtd-engine-runway {
  display: grid;
  gap: 12px;
  position: relative;
}

.jtd-engine-node {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1.2fr 1.1fr 1.25fr 0.7fr;
  padding: 18px 20px;
}

.jtd-engine-node i {
  align-items: center;
  background: rgba(225, 37, 27, 0.16);
  border: 1px solid rgba(225, 37, 27, 0.42);
  border-radius: 50%;
  color: #ff746b;
  display: inline-flex;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.jtd-engine-node strong {
  color: #ffffff;
  display: grid;
  gap: 5px;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.jtd-engine-node strong small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.jtd-engine-node > span,
.jtd-engine-node em,
.jtd-engine-node b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.jtd-engine-node b {
  color: #ffffff;
  font-weight: 800;
}

.jtd-engine-link {
  background: linear-gradient(180deg, rgba(225, 37, 27, 0.5), rgba(47, 107, 255, 0.34));
  display: block;
  height: 18px;
  margin-left: 40px;
  width: 1px;
}

.jtd-capability-flow-layer {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--jtd-v8-soft) 100%);
}

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

.jtd-capability-core a {
  background: #ffffff;
  border: 1px solid var(--jtd-v8-border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.07);
  color: inherit;
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.jtd-capability-core a:hover {
  border-color: rgba(225, 37, 27, 0.32);
  box-shadow: 0 24px 64px rgba(225, 37, 27, 0.1);
  transform: translateY(-3px);
}

.jtd-capability-core a strong {
  color: var(--jtd-v8-ink);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.28;
}

.jtd-capability-core a small {
  color: var(--jtd-v8-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.jtd-capability-core a span {
  color: var(--jtd-v8-text);
  font-size: 15px;
  line-height: 1.75;
}

.jtd-capability-branches {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 20px;
}

.jtd-capability-branches > div {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--jtd-v8-border);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.jtd-capability-branches strong {
  color: var(--jtd-v8-ink);
  display: grid;
  font-size: 16px;
  font-weight: 850;
  margin-right: 6px;
}

.jtd-capability-branches strong small {
  color: var(--jtd-v8-muted);
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}

.jtd-capability-branches span {
  background: #ffffff;
  border: 1px solid var(--jtd-v8-border);
  border-radius: 999px;
  color: var(--jtd-v8-text);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}

.jtd-capability-branches__weak {
  opacity: 0.72;
}

.jtd-evidence-flow-layer {
  background: #ffffff;
}

.jtd-evidence-stream {
  display: grid;
  gap: 18px;
}

.jtd-evidence-event {
  align-items: stretch;
  background: linear-gradient(90deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--jtd-v8-border);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(16, 24, 40, 0.06);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
}

.jtd-evidence-signal {
  align-content: center;
  border-right: 1px solid var(--jtd-v8-border);
  display: grid;
  gap: 10px;
  padding: 28px;
}

.jtd-evidence-signal i {
  margin-bottom: 8px;
}

.jtd-evidence-signal strong {
  color: var(--jtd-v8-red);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.jtd-evidence-signal span {
  color: var(--jtd-v8-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
}

.jtd-evidence-signal small {
  color: var(--jtd-v8-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.jtd-evidence-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-evidence-path p {
  border-right: 1px solid var(--jtd-v8-border);
  color: var(--jtd-v8-text);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  padding: 28px;
}

.jtd-evidence-path p:last-child {
  border-right: 0;
}

.jtd-evidence-path b {
  color: var(--jtd-v8-ink);
  display: block;
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 9px;
}

.jtd-flow-action-layer {
  background:
    radial-gradient(circle at 84% 22%, rgba(225, 37, 27, 0.08), transparent 28%),
    linear-gradient(180deg, var(--jtd-v8-soft) 0%, #ffffff 100%);
  padding-bottom: 96px;
}

.jtd-flow-action-wrap {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--jtd-v8-border);
  border-radius: 30px;
  box-shadow: var(--jtd-v8-shadow);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.4fr) auto;
  overflow: hidden;
  padding: 42px;
}

.jtd-flow-action-wrap h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.jtd-flow-action-wrap p {
  margin-left: 0;
}

.jtd-flow-action-wrap .jtd-flow-action-links {
  justify-content: flex-end;
  margin-top: 0;
}

.jtd-action-state-stream {
  border-top: 1px solid var(--jtd-v8-border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
  padding-top: 20px;
}

.jtd-action-state-stream span {
  background: var(--jtd-v8-soft);
  border: 1px solid var(--jtd-v8-border);
  border-radius: 999px;
  color: var(--jtd-v8-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 8px 12px;
}

@media (max-width: 1180px) {
  .jtd-flow-hero-wrap {
    gap: 38px;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  }

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

  .jtd-flow-network-map {
    gap: 22px;
    grid-template-columns: minmax(160px, 0.72fr) minmax(320px, 1.35fr) minmax(180px, 0.8fr);
  }

  .jtd-engine-node {
    grid-template-columns: 52px 1fr 1fr;
  }

  .jtd-engine-node b {
    grid-column: 2 / -1;
  }
}

@media (max-width: 960px) {
  .jtd-flow-os-hero {
    min-height: auto;
    padding-top: 92px;
  }

  .jtd-flow-hero-wrap {
    grid-template-columns: 1fr;
  }

  .jtd-system-anchor {
    max-width: none;
  }

  .jtd-flow-core-anchor {
    border-radius: 24px;
  }

  .jtd-flow-trust-strip__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-flow-trust-strip__item {
    border-bottom: 1px solid var(--jtd-v8-border);
  }

  .jtd-flow-trust-strip__item:nth-child(2n) {
    border-right: 0;
  }

  .jtd-flow-trust-strip__item:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .jtd-flow-network-layer,
  .jtd-capability-flow-layer,
  .jtd-evidence-flow-layer,
  .jtd-engine-architecture,
  .jtd-flow-action-layer {
    padding: 82px 0;
  }

  .jtd-flow-network-map,
  .jtd-capability-core,
  .jtd-capability-branches,
  .jtd-flow-action-wrap {
    grid-template-columns: 1fr;
  }

  .jtd-flow-network-map::before {
    display: none;
  }

  .jtd-flow-core {
    order: -1;
  }

  .jtd-flow-inputs,
  .jtd-flow-outputs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-evidence-event,
  .jtd-evidence-path {
    grid-template-columns: 1fr;
  }

  .jtd-evidence-signal,
  .jtd-evidence-path p {
    border-right: 0;
    border-bottom: 1px solid var(--jtd-v8-border);
  }

  .jtd-evidence-path p:last-child {
    border-bottom: 0;
  }

  .jtd-flow-action-wrap .jtd-flow-action-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .jtd-flow-os-hero {
    padding: 72px 0 22px;
  }

  .jtd-system-anchor h1 {
    font-size: 42px;
  }

  .jtd-system-anchor__value {
    font-size: 22px;
  }

  .jtd-flow-action-links,
  .jtd-flow-action-wrap .jtd-flow-action-links {
    align-items: stretch;
    flex-direction: column;
  }

  .jtd-flow-action-links .jtd-btn,
  .jtd-flow-action-links .jtd-hero-weak-link {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .jtd-flow-core-anchor {
    margin-left: -4px;
    margin-right: -4px;
    padding: 18px;
  }

  .jtd-flow-anchor-label {
    display: grid;
  }

  .jtd-flow-anchor-label small {
    text-align: left;
  }

  .jtd-flow-route {
    gap: 10px;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 26px 18px;
    scroll-snap-type: x proximity;
  }

  .jtd-flow-route::before,
  .jtd-flow-route::after {
    left: 28px;
    right: 28px;
  }

  .jtd-flow-route button {
    flex: 0 0 82px;
    scroll-snap-align: center;
  }

  .jtd-flow-route button strong {
    font-size: 14px;
  }

  .jtd-flow-route button span,
  .jtd-flow-route button em {
    font-size: 9px;
  }

  .jtd-state-stream {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-state-stream b {
    font-size: 18px;
  }

  .jtd-hero-system-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .jtd-hero-system-signature span + span {
    border-left: 0;
    padding-left: 0;
  }

  .jtd-flow-trust-strip__rail,
  .jtd-flow-inputs,
  .jtd-flow-outputs,
  .jtd-core-node-stream {
    grid-template-columns: 1fr;
  }

  .jtd-flow-trust-strip__item,
  .jtd-flow-trust-strip__item:nth-child(2n) {
    border-right: 0;
  }

  .jtd-flow-trust-strip__item:last-child {
    border-bottom: 0;
  }

  .jtd-flow-headline {
    margin-bottom: 34px;
    text-align: left;
  }

  .jtd-flow-headline h2,
  .jtd-flow-action-wrap h2 {
    font-size: 30px;
  }

  .jtd-flow-headline p,
  .jtd-flow-action-wrap p {
    font-size: 15px;
  }

  .jtd-flow-core,
  .jtd-flow-action-wrap {
    border-radius: 22px;
    padding: 24px;
  }

  .jtd-engine-node {
    align-items: flex-start;
    grid-template-columns: 44px 1fr;
  }

  .jtd-engine-node > span,
  .jtd-engine-node em,
  .jtd-engine-node b {
    grid-column: 2 / -1;
  }

  .jtd-capability-core a,
  .jtd-evidence-signal,
  .jtd-evidence-path p {
    padding: 22px;
  }

  .jtd-action-state-stream {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jtd-flow-os *,
  .jtd-flow-os *::before,
  .jtd-flow-os *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* End JTD Home V8 Final */

/* ==========================================================================
   JTD Products V8 - Product Capability System
   Scope: archive-jtd_product.php only
   ========================================================================== */

.jtd-products-v8 {
  --jtd-products-red: #e1251b;
  --jtd-products-ink: #101828;
  --jtd-products-text: #344054;
  --jtd-products-muted: #667085;
  --jtd-products-border: #e4e7ec;
  --jtd-products-border-strong: #d0d5dd;
  --jtd-products-soft: #f6f8fb;
  --jtd-products-blue: #2f6bff;
  --jtd-products-shadow: 0 24px 70px rgba(16, 24, 40, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, var(--jtd-products-soft) 44%, #ffffff 100%);
  color: var(--jtd-products-ink);
  overflow: hidden;
}

.jtd-products-v8 .jtd-container {
  position: relative;
  z-index: 2;
}

.jtd-products-v8 h1,
.jtd-products-v8 h2,
.jtd-products-v8 h3,
.jtd-products-v8 p {
  color: inherit;
}

.jtd-products-v8 .jtd-btn {
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 22px;
  font-weight: 760;
}

.jtd-products-v8 .jtd-btn--primary {
  border-color: var(--jtd-products-red);
  background: var(--jtd-products-red);
  color: #ffffff;
}

.jtd-products-v8 .jtd-btn--secondary {
  border: 1px solid var(--jtd-products-border-strong);
  background: #ffffff;
  color: var(--jtd-products-ink);
}

.jtd-products-v8-hero,
.jtd-products-v8-platform,
.jtd-products-v8-core,
.jtd-products-v8-extensions,
.jtd-products-v8-extend,
.jtd-products-v8-selector,
.jtd-products-v8-cta {
  position: relative;
  padding: 108px 0;
}

.jtd-products-v8-hero {
  padding-top: 116px;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 107, 255, 0.11), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(225, 37, 27, 0.055), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  isolation: isolate;
}

.jtd-products-v8-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
}

.jtd-products-v8-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.jtd-products-v8-hero__copy {
  max-width: 680px;
}

.jtd-products-v8-kicker,
.jtd-products-v8-headline span,
.jtd-products-v8-cta__box > div:first-child > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--jtd-products-red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-products-v8-hero h1 {
  margin: 0;
  color: var(--jtd-products-ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.jtd-products-v8-hero__copy > p:not(.jtd-products-v8-kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--jtd-products-text);
  font-size: 18px;
  line-height: 1.82;
}

.jtd-products-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.jtd-products-v8-entry-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 42%, rgba(225, 37, 27, 0.08), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(47, 107, 255, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--jtd-products-shadow);
}

.jtd-products-v8-entry-map::before,
.jtd-products-v8-entry-map::after {
  content: "";
  position: absolute;
  inset: 54px;
  pointer-events: none;
  border: 1px solid rgba(47, 107, 255, 0.12);
  border-radius: 28px;
}

.jtd-products-v8-entry-map::after {
  inset: 108px 86px;
  border-color: rgba(225, 37, 27, 0.16);
}

.jtd-products-v8-entry-map span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--jtd-products-text);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.055);
}

.jtd-products-v8-entry-map__core {
  grid-column: 1 / -1;
  min-height: 112px !important;
  border-color: rgba(225, 37, 27, 0.28) !important;
  background: linear-gradient(135deg, #ffffff, #fff7f6) !important;
  color: var(--jtd-products-red) !important;
  font-size: 25px !important;
}

.jtd-products-v8-headline {
  max-width: 840px;
  margin: 0 auto 54px;
  text-align: center;
}

.jtd-products-v8-headline--left {
  margin: 0;
  text-align: left;
}

.jtd-products-v8-headline h2 {
  margin: 0;
  color: var(--jtd-products-ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: 0;
}

.jtd-products-v8-headline p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--jtd-products-text);
  font-size: 17px;
  line-height: 1.82;
}

.jtd-products-v8-headline--left p {
  margin-left: 0;
}

.jtd-products-v8-platform {
  background: #ffffff;
}

.jtd-products-v8-foundation {
  position: relative;
  padding: 38px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.84)),
    radial-gradient(circle at 50% 42%, rgba(47, 107, 255, 0.09), transparent 34%);
  box-shadow: var(--jtd-products-shadow);
}

.jtd-products-v8-foundation::before {
  content: "";
  position: absolute;
  inset: 44px 9%;
  pointer-events: none;
  border-top: 1px solid rgba(47, 107, 255, 0.18);
  border-bottom: 1px solid rgba(225, 37, 27, 0.14);
}

.jtd-products-v8-foundation__center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 34px;
  padding: 28px;
  border: 1px solid rgba(225, 37, 27, 0.28);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(225, 37, 27, 0.09);
  text-align: center;
}

.jtd-products-v8-foundation__center strong {
  color: var(--jtd-products-ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.22;
}

.jtd-products-v8-foundation__center small {
  color: var(--jtd-products-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.jtd-products-v8-foundation__nodes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.jtd-products-v8-foundation__nodes span {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.jtd-products-v8-foundation__nodes i,
.jtd-products-v8-extension-list i,
.jtd-products-v8-core-card__head i {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--jtd-products-red);
  box-shadow: 0 0 0 7px rgba(225, 37, 27, 0.1);
}

.jtd-products-v8-foundation__nodes strong {
  color: var(--jtd-products-ink);
  font-size: 16px;
  font-weight: 850;
}

.jtd-products-v8-foundation__nodes em {
  color: var(--jtd-products-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.62;
}

.jtd-products-v8-core {
  background: linear-gradient(180deg, var(--jtd-products-soft), #ffffff);
}

.jtd-products-v8-core__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.jtd-products-v8-core-card {
  display: grid;
  gap: 22px;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.07);
}

.jtd-products-v8-core-card--primary {
  grid-column: span 3;
}

.jtd-products-v8-core-card--secondary {
  grid-column: 2 / span 4;
  background:
    radial-gradient(circle at 88% 16%, rgba(47, 107, 255, 0.08), transparent 30%),
    #ffffff;
}

.jtd-products-v8-core-card__head {
  display: grid;
  gap: 8px;
}

.jtd-products-v8-core-card__head strong {
  color: var(--jtd-products-ink);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.18;
}

.jtd-products-v8-core-card__head small {
  color: var(--jtd-products-red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-products-v8-core-card p {
  margin: 0;
  color: var(--jtd-products-text);
  font-size: 16px;
  line-height: 1.82;
}

.jtd-products-v8-audience {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: var(--jtd-products-soft);
}

.jtd-products-v8-audience b {
  color: var(--jtd-products-ink);
  font-size: 14px;
  font-weight: 850;
}

.jtd-products-v8-audience span {
  color: var(--jtd-products-muted);
  font-size: 14px;
  line-height: 1.66;
}

.jtd-products-v8-ability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.jtd-products-v8-ability-tags span {
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.035);
  color: var(--jtd-products-text);
  font-size: 13px;
  font-weight: 760;
  padding: 8px 11px;
}

.jtd-products-v8-core-card > a {
  color: var(--jtd-products-red);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.jtd-products-v8-extensions {
  background: #ffffff;
}

.jtd-products-v8-extension-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.jtd-products-v8-extension-list article {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.jtd-products-v8-extension-list strong {
  color: var(--jtd-products-ink);
  font-size: 18px;
  font-weight: 850;
}

.jtd-products-v8-extension-list p {
  margin: 0;
  color: var(--jtd-products-muted);
  font-size: 14px;
  line-height: 1.65;
}

.jtd-products-v8-extend {
  background: linear-gradient(180deg, #ffffff, var(--jtd-products-soft));
}

.jtd-products-v8-extend__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.jtd-products-v8-extend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jtd-products-v8-extend-list span {
  display: grid;
  flex: 1 1 210px;
  gap: 6px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.jtd-products-v8-extend-list span.is-weak {
  opacity: 0.64;
}

.jtd-products-v8-extend-list strong {
  color: var(--jtd-products-ink);
  font-size: 17px;
  font-weight: 850;
}

.jtd-products-v8-extend-list em {
  color: var(--jtd-products-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.62;
}

.jtd-products-v8-selector {
  background: #ffffff;
}

.jtd-products-v8-path-list {
  display: grid;
  gap: 14px;
}

.jtd-products-v8-path-list article {
  display: grid;
  grid-template-columns: 58px minmax(220px, 0.8fr) minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.055);
}

.jtd-products-v8-path-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(225, 37, 27, 0.08);
  color: var(--jtd-products-red);
  font-size: 13px;
  font-weight: 900;
}

.jtd-products-v8-path-list h3 {
  margin: 0;
  color: var(--jtd-products-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
}

.jtd-products-v8-path-list p {
  margin: 0;
  color: var(--jtd-products-text);
  font-size: 14px;
  line-height: 1.68;
}

.jtd-products-v8-path-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--jtd-products-red);
  font-size: 12px;
  font-weight: 850;
}

.jtd-products-v8-cta {
  padding-top: 72px;
  background:
    radial-gradient(circle at 80% 22%, rgba(225, 37, 27, 0.07), transparent 28%),
    linear-gradient(180deg, var(--jtd-products-soft), #ffffff);
}

.jtd-products-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--jtd-products-border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--jtd-products-shadow);
}

.jtd-products-v8-cta__box h2 {
  margin: 0;
  color: var(--jtd-products-ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.22;
}

.jtd-products-v8-cta__box p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--jtd-products-text);
  font-size: 16px;
  line-height: 1.78;
}

.jtd-products-v8-cta__box .jtd-products-v8-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1180px) {
  .jtd-products-v8-hero__grid {
    grid-template-columns: 1fr;
  }

  .jtd-products-v8-entry-map {
    min-height: auto;
  }

  .jtd-products-v8-foundation__nodes,
  .jtd-products-v8-extension-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-products-v8-core-card--primary,
  .jtd-products-v8-core-card--secondary {
    grid-column: 1 / -1;
  }

  .jtd-products-v8-path-list article {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .jtd-products-v8-path-list p {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  .jtd-products-v8-hero,
  .jtd-products-v8-platform,
  .jtd-products-v8-core,
  .jtd-products-v8-extensions,
  .jtd-products-v8-extend,
  .jtd-products-v8-selector,
  .jtd-products-v8-cta {
    padding: 76px 0;
  }

  .jtd-products-v8-hero {
    padding-top: 72px;
  }

  .jtd-products-v8-hero h1 {
    font-size: 40px;
  }

  .jtd-products-v8-hero__copy > p:not(.jtd-products-v8-kicker),
  .jtd-products-v8-headline p,
  .jtd-products-v8-cta__box p {
    font-size: 15px;
  }

  .jtd-products-v8-headline {
    margin-bottom: 34px;
    text-align: left;
  }

  .jtd-products-v8-headline p {
    margin-left: 0;
  }

  .jtd-products-v8-entry-map,
  .jtd-products-v8-foundation,
  .jtd-products-v8-cta__box {
    border-radius: 22px;
    padding: 24px;
  }

  .jtd-products-v8-entry-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .jtd-products-v8-entry-map::before,
  .jtd-products-v8-entry-map::after {
    display: none;
  }

  .jtd-products-v8-entry-map span {
    min-height: 72px;
    font-size: 13px;
  }

  .jtd-products-v8-entry-map__core {
    font-size: 20px !important;
  }

  .jtd-products-v8-foundation__nodes,
  .jtd-products-v8-extension-list,
  .jtd-products-v8-extend__grid,
  .jtd-products-v8-cta__box {
    grid-template-columns: 1fr;
  }

  .jtd-products-v8-core__grid {
    grid-template-columns: 1fr;
  }

  .jtd-products-v8-core-card {
    padding: 24px;
  }

  .jtd-products-v8-core-card__head strong {
    font-size: 28px;
  }

  .jtd-products-v8-path-list article {
    align-items: start;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }

  .jtd-products-v8-cta__box .jtd-products-v8-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .jtd-products-v8-hero h1 {
    font-size: 34px;
  }

  .jtd-products-v8-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .jtd-products-v8-actions .jtd-btn {
    justify-content: center;
    width: 100%;
  }

  .jtd-products-v8-entry-map,
  .jtd-products-v8-foundation,
  .jtd-products-v8-cta__box,
  .jtd-products-v8-core-card {
    padding: 20px;
  }

  .jtd-products-v8-entry-map,
  .jtd-products-v8-foundation__nodes,
  .jtd-products-v8-extension-list {
    grid-template-columns: 1fr;
  }

  .jtd-products-v8-foundation__center strong {
    font-size: 23px;
  }

  .jtd-products-v8-headline h2,
  .jtd-products-v8-cta__box h2 {
    font-size: 29px;
  }

  .jtd-products-v8-path-list article {
    grid-template-columns: 1fr;
  }

  .jtd-products-v8-path-list p {
    grid-column: auto;
  }
}

/* End JTD Products V8 */

/* JTD Products V8.1 - visual refinement */
.jtd-products-v8 .jtd-products-v8-entry-map {
  gap: 14px;
  padding: 30px;
}

.jtd-products-v8 .jtd-products-v8-entry-map::before {
  inset: 126px 14% 82px;
  border-top-color: rgba(225, 37, 27, 0.16);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 0;
}

.jtd-products-v8 .jtd-products-v8-entry-map::after {
  inset: 124px 20% auto;
  height: 72px;
  border: 0;
  border-left: 1px solid rgba(225, 37, 27, 0.2);
  border-radius: 0;
  transform: translateX(-50%);
}

.jtd-products-v8 .jtd-products-v8-entry-map span {
  min-height: 78px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.045);
}

.jtd-products-v8 .jtd-products-v8-entry-map span:not(.jtd-products-v8-entry-map__core)::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, rgba(225, 37, 27, 0.22), rgba(47, 107, 255, 0.1));
  transform: translateX(-50%);
}

.jtd-products-v8 .jtd-products-v8-entry-map__core {
  min-height: 104px !important;
  box-shadow: 0 18px 48px rgba(225, 37, 27, 0.08) !important;
}

@media (min-width: 1181px) {
  .jtd-products-v8 .jtd-products-v8-core__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .jtd-products-v8 .jtd-products-v8-core-card--primary {
    grid-column: span 6;
  }

  .jtd-products-v8 .jtd-products-v8-core-card--secondary {
    grid-column: 4 / span 6;
    padding: 28px;
    box-shadow: 0 18px 52px rgba(16, 24, 40, 0.06);
  }

  .jtd-products-v8 .jtd-products-v8-core-card--secondary .jtd-products-v8-core-card__head strong {
    font-size: clamp(24px, 2.3vw, 32px);
  }
}

.jtd-products-v8 .jtd-products-v8-extension-list,
.jtd-products-v8 .jtd-products-v8-extend-list {
  gap: 14px;
}

.jtd-products-v8 .jtd-products-v8-extension-list article {
  padding: 19px;
}

.jtd-products-v8 .jtd-products-v8-extend-list span {
  padding: 17px;
}

.jtd-products-v8 .jtd-products-v8-extend-list span.is-weak {
  border-style: dashed;
  opacity: 0.58;
}

@media (max-width: 860px) {
  .jtd-products-v8 .jtd-products-v8-hero {
    padding-top: 64px;
    padding-bottom: 66px;
  }

  .jtd-products-v8 .jtd-products-v8-hero__grid {
    gap: 30px;
  }

  .jtd-products-v8 .jtd-products-v8-hero h1 {
    font-size: 38px;
  }

  .jtd-products-v8 .jtd-products-v8-hero__copy > p:not(.jtd-products-v8-kicker) {
    margin-top: 18px;
  }

  .jtd-products-v8 .jtd-products-v8-actions {
    margin-top: 24px;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map {
    gap: 10px;
    padding: 20px;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map span {
    min-height: 66px;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map span:not(.jtd-products-v8-entry-map__core)::before {
    display: none;
  }

  .jtd-products-v8 .jtd-products-v8-core-card--secondary {
    box-shadow: 0 16px 44px rgba(16, 24, 40, 0.055);
  }
}

@media (max-width: 560px) {
  .jtd-products-v8 {
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .jtd-products-v8 .jtd-products-v8-hero {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .jtd-products-v8 .jtd-products-v8-hero h1 {
    font-size: 32px;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map__core {
    min-height: 82px !important;
  }

  .jtd-products-v8 .jtd-products-v8-extension-list,
  .jtd-products-v8 .jtd-products-v8-extend-list {
    gap: 11px;
  }
}

/* End JTD Products V8.1 */

/* JTD Products V8.1 - mobile hero quickbar clearance */
@media (max-width: 560px) {
  .jtd-products-v8 .jtd-products-v8-hero__grid {
    gap: 22px;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map__core {
    grid-column: 1 / -1;
    min-height: 70px !important;
  }

  .jtd-products-v8 .jtd-products-v8-entry-map span {
    min-height: 56px;
    padding: 10px 8px;
    font-size: 12px;
  }
}

/* End JTD Products V8.1 mobile quickbar clearance */

/* ==========================================================================
   JTD Solutions V8 - Scenario Path System
   Scope: archive-jtd_solution.php only
   ========================================================================== */

.jtd-solutions-v8 {
  --jtd-solutions-red: #e1251b;
  --jtd-solutions-ink: #101828;
  --jtd-solutions-text: #344054;
  --jtd-solutions-muted: #667085;
  --jtd-solutions-line: #e4e7ec;
  --jtd-solutions-line-strong: #d0d5dd;
  --jtd-solutions-bg: #f6f8fb;
  --jtd-solutions-surface: #ffffff;
  --jtd-solutions-blue: #2f6bff;
  --jtd-solutions-shadow: 0 24px 72px -58px rgba(15, 23, 42, 0.36);
  overflow: hidden;
  background: var(--jtd-solutions-bg);
  color: var(--jtd-solutions-text);
}

.jtd-solutions-v8 *,
.jtd-solutions-v8 *::before,
.jtd-solutions-v8 *::after {
  box-sizing: border-box;
}

.jtd-solutions-v8 section {
  position: relative;
  padding: 96px 0;
}

.jtd-solutions-v8 .jtd-container {
  width: min(1180px, calc(100% - 48px));
}

.jtd-solutions-v8-kicker,
.jtd-solutions-v8-headline > span,
.jtd-solutions-v8-cta__box > div > span {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 12px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  color: var(--jtd-solutions-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.jtd-solutions-v8 h1,
.jtd-solutions-v8 h2,
.jtd-solutions-v8 h3 {
  margin: 0;
  color: var(--jtd-solutions-ink);
  letter-spacing: 0;
}

.jtd-solutions-v8 p {
  margin: 0;
  color: var(--jtd-solutions-muted);
  line-height: 1.76;
}

.jtd-solutions-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.jtd-solutions-v8 .jtd-button {
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
}

.jtd-solutions-v8 .jtd-button--primary {
  background: var(--jtd-solutions-red);
  box-shadow: 0 18px 36px -24px rgba(225, 37, 27, 0.68);
}

.jtd-solutions-v8 .jtd-button--secondary {
  border-color: rgba(16, 24, 40, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--jtd-solutions-ink);
  box-shadow: 0 12px 30px -26px rgba(15, 23, 42, 0.36);
}

.jtd-solutions-v8-headline {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.jtd-solutions-v8-headline h2 {
  font-size: clamp(28px, 2.45vw, 40px);
  font-weight: 760;
  line-height: 1.18;
}

.jtd-solutions-v8-headline p {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 16px;
}

.jtd-solutions-v8-hero {
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 77% 24%, rgba(47, 107, 255, 0.1), transparent 31%),
    radial-gradient(circle at 86% 74%, rgba(225, 37, 27, 0.045), transparent 24%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 42%, #f8fbff 76%, #f2f6fb 100%);
}

.jtd-solutions-v8-hero::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(36vw, 520px);
  height: min(36vw, 520px);
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.08), transparent 66%);
}

.jtd-solutions-v8-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(47, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.02) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, transparent 100%);
  opacity: 0.72;
}

.jtd-solutions-v8-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.jtd-solutions-v8-hero__copy {
  max-width: 620px;
}

.jtd-solutions-v8-hero__copy h1 {
  max-width: 620px;
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 780;
  line-height: 1.1;
}

.jtd-solutions-v8-hero__copy > p:not(.jtd-solutions-v8-kicker) {
  margin-top: 22px;
  max-width: 650px;
  color: var(--jtd-solutions-text);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.82;
}

.jtd-solutions-v8-scenario-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--jtd-solutions-shadow);
  backdrop-filter: blur(14px);
}

.jtd-solutions-v8-scenario-map::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 34px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 107, 255, 0.24), rgba(225, 37, 27, 0.2), transparent);
}

.jtd-solutions-v8-scenario-map::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(47, 107, 255, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.jtd-solutions-v8-scenario-map span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px 12px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--jtd-solutions-ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.28);
}

.jtd-solutions-v8-scenario-map__core {
  grid-column: 1 / -1;
  min-height: 104px !important;
  border-color: rgba(225, 37, 27, 0.28) !important;
  background: linear-gradient(135deg, #ffffff, #fff7f6) !important;
  color: var(--jtd-solutions-red) !important;
  font-size: 24px !important;
}

.jtd-solutions-v8-roles {
  background: var(--jtd-solutions-surface);
}

.jtd-solutions-v8-role-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jtd-solutions-v8-role-system article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px -38px rgba(15, 23, 42, 0.36);
}

.jtd-solutions-v8-role-system article::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50px;
  width: 1px;
  background: linear-gradient(180deg, rgba(225, 37, 27, 0.22), rgba(47, 107, 255, 0.12));
}

.jtd-solutions-v8-role-system article > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: var(--jtd-solutions-red);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 28px -24px rgba(225, 37, 27, 0.42);
}

.jtd-solutions-v8-role-system article.is-primary {
  border-color: rgba(225, 37, 27, 0.22);
  background: linear-gradient(135deg, #ffffff 0%, #fff9f8 100%);
  box-shadow: 0 24px 66px -48px rgba(225, 37, 27, 0.35);
}

.jtd-solutions-v8-role-system h3 {
  font-size: 22px;
  font-weight: 760;
  line-height: 1.28;
}

.jtd-solutions-v8-role-system p {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
  color: var(--jtd-solutions-text);
  font-size: 14px;
  line-height: 1.65;
}

.jtd-solutions-v8-role-system b {
  color: var(--jtd-solutions-muted);
  font-size: 13px;
  font-weight: 700;
}

.jtd-solutions-v8-paths {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.jtd-solutions-v8-path-list {
  display: grid;
  gap: 18px;
}

.jtd-solutions-v8-path-list article {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px -44px rgba(15, 23, 42, 0.36);
}

.jtd-solutions-v8-path-list article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62px;
  width: 1px;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0), rgba(47, 107, 255, 0.16), rgba(225, 37, 27, 0.12), rgba(47, 107, 255, 0));
}

.jtd-solutions-v8-path-list article.is-featured {
  border-color: rgba(225, 37, 27, 0.2);
  background:
    radial-gradient(circle at 90% 20%, rgba(225, 37, 27, 0.055), transparent 24%),
    #ffffff;
}

.jtd-solutions-v8-path__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 18px;
  background: #ffffff;
  color: var(--jtd-solutions-red);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 14px 34px -28px rgba(225, 37, 27, 0.5);
}

.jtd-solutions-v8-path__body {
  min-width: 0;
}

.jtd-solutions-v8-path__body h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 760;
  line-height: 1.26;
}

.jtd-solutions-v8-path__body dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
}

.jtd-solutions-v8-path__body dl div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(228, 231, 236, 0.8);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.72);
}

.jtd-solutions-v8-path__body dt {
  margin: 0 0 8px;
  color: var(--jtd-solutions-red);
  font-size: 13px;
  font-weight: 760;
}

.jtd-solutions-v8-path__body dd {
  margin: 0;
  color: var(--jtd-solutions-text);
  font-size: 14px;
  line-height: 1.68;
}

.jtd-solutions-v8-path__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.jtd-solutions-v8-path__steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: 999px;
  background: #ffffff;
  color: var(--jtd-solutions-text);
  font-size: 13px;
  font-weight: 650;
}

.jtd-solutions-v8-path__steps span + span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--jtd-solutions-red);
}

.jtd-solutions-v8-path__body a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--jtd-solutions-red);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.jtd-solutions-v8-combo {
  background: #ffffff;
}

.jtd-solutions-v8-combo-system {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88)),
    linear-gradient(rgba(47, 107, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  box-shadow: var(--jtd-solutions-shadow);
}

.jtd-solutions-v8-combo-system__core {
  display: grid;
  place-items: center;
  min-height: 104px;
  border: 1px solid rgba(225, 37, 27, 0.2);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, #fff7f6);
  text-align: center;
}

.jtd-solutions-v8-combo-system__core strong {
  color: var(--jtd-solutions-red);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.24;
}

.jtd-solutions-v8-combo-system__core small {
  margin-top: 8px;
  color: var(--jtd-solutions-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jtd-solutions-v8-combo-layer {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(228, 231, 236, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.jtd-solutions-v8-combo-layer b {
  color: var(--jtd-solutions-ink);
  font-size: 15px;
  line-height: 1.4;
}

.jtd-solutions-v8-combo-layer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jtd-solutions-v8-combo-layer span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(208, 213, 221, 0.72);
  border-radius: 999px;
  background: #ffffff;
  color: var(--jtd-solutions-text);
  font-size: 13px;
  font-weight: 650;
}

.jtd-solutions-v8-combo-layer--core {
  border-color: rgba(225, 37, 27, 0.16);
  background: rgba(255, 247, 246, 0.68);
}

.jtd-solutions-v8-combo-layer--core span {
  border-color: rgba(225, 37, 27, 0.18);
  color: var(--jtd-solutions-red);
  font-size: 15px;
  font-weight: 760;
}

.jtd-solutions-v8-combo-layer--weak {
  opacity: 0.78;
}

.jtd-solutions-v8-combo-layer .is-weak {
  opacity: 0.58;
}

.jtd-solutions-v8-process {
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.jtd-solutions-v8-process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--jtd-solutions-shadow);
}

.jtd-solutions-v8-process-line article {
  position: relative;
  min-width: 0;
  min-height: 246px;
  padding: 26px 22px;
  border-right: 1px solid rgba(228, 231, 236, 0.86);
}

.jtd-solutions-v8-process-line article:last-child {
  border-right: 0;
}

.jtd-solutions-v8-process-line article::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -5px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--jtd-solutions-red);
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.08);
}

.jtd-solutions-v8-process-line article:last-child::after {
  display: none;
}

.jtd-solutions-v8-process-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: var(--jtd-solutions-red);
  font-weight: 800;
}

.jtd-solutions-v8-process-line h3 {
  font-size: 19px;
  font-weight: 760;
  line-height: 1.35;
}

.jtd-solutions-v8-process-line p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.72;
}

.jtd-solutions-v8-proof {
  background: #ffffff;
}

.jtd-solutions-v8-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jtd-solutions-v8-proof-list article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px -40px rgba(15, 23, 42, 0.34);
}

.jtd-solutions-v8-proof-list article > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.08);
  color: var(--jtd-solutions-blue);
  font-size: 12px;
  font-weight: 760;
}

.jtd-solutions-v8-proof-list p {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 8px;
  margin-top: 12px;
  color: var(--jtd-solutions-text);
  font-size: 14px;
  line-height: 1.66;
}

.jtd-solutions-v8-proof-list b {
  color: var(--jtd-solutions-muted);
  font-size: 13px;
}

.jtd-solutions-v8-proof-list strong {
  display: block;
  margin-top: 24px;
  color: var(--jtd-solutions-red);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 820;
  line-height: 1.15;
}

.jtd-solutions-v8-proof-list em {
  display: block;
  margin-top: 8px;
  color: var(--jtd-solutions-ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.jtd-solutions-v8-cta {
  padding-top: 72px !important;
  background: var(--jtd-solutions-bg);
}

.jtd-solutions-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(225, 37, 27, 0.07), transparent 28%),
    #ffffff;
  box-shadow: var(--jtd-solutions-shadow);
}

.jtd-solutions-v8-cta__box h2 {
  font-size: clamp(26px, 2.3vw, 38px);
  font-weight: 780;
  line-height: 1.18;
}

.jtd-solutions-v8-cta__box p {
  max-width: 720px;
  margin-top: 14px;
  font-size: 16px;
}

@media (max-width: 1120px) {
  .jtd-solutions-v8 .jtd-container {
    width: min(100% - 40px, 920px);
  }

  .jtd-solutions-v8-hero__grid {
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8-scenario-map {
    min-height: auto;
  }

  .jtd-solutions-v8-path__body dl {
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8-process-line {
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8-process-line article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  }

  .jtd-solutions-v8-process-line article:last-child {
    border-bottom: 0;
  }

  .jtd-solutions-v8-process-line article::after {
    top: auto;
    right: auto;
    bottom: -5px;
    left: 44px;
  }

  .jtd-solutions-v8-proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .jtd-solutions-v8 section {
    padding: 68px 0;
  }

  .jtd-solutions-v8 .jtd-container {
    width: min(100% - 28px, 620px);
  }

  .jtd-solutions-v8-headline {
    margin-bottom: 30px;
    text-align: left;
  }

  .jtd-solutions-v8-headline h2 {
    font-size: 28px;
  }

  .jtd-solutions-v8-headline p {
    margin-left: 0;
    font-size: 15px;
  }

  .jtd-solutions-v8-hero {
    padding: 48px 0 50px;
  }

  .jtd-solutions-v8-hero__grid {
    gap: 22px;
  }

  .jtd-solutions-v8-hero__copy h1 {
    font-size: 30px;
    line-height: 1.16;
  }

  .jtd-solutions-v8-hero__copy > p:not(.jtd-solutions-v8-kicker) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.68;
  }

  .jtd-solutions-v8-actions {
    width: 100%;
    margin-top: 24px;
  }

  .jtd-solutions-v8-actions .jtd-button {
    width: 100%;
    justify-content: center;
  }

  .jtd-solutions-v8-scenario-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 14px;
    border-radius: 22px;
  }

  .jtd-solutions-v8-scenario-map::before,
  .jtd-solutions-v8-scenario-map::after {
    display: none;
  }

  .jtd-solutions-v8-scenario-map__core {
    min-height: 64px !important;
    font-size: 20px !important;
  }

  .jtd-solutions-v8-scenario-map span {
    min-height: 46px;
    padding: 9px 6px;
    font-size: 11px;
  }

  .jtd-solutions-v8-role-system {
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8-role-system article {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .jtd-solutions-v8-role-system article::before {
    left: 40px;
  }

  .jtd-solutions-v8-role-system article > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .jtd-solutions-v8-role-system h3 {
    font-size: 20px;
  }

  .jtd-solutions-v8-role-system p {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 10px;
  }

  .jtd-solutions-v8-path-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .jtd-solutions-v8-path-list article::before {
    display: none;
  }

  .jtd-solutions-v8-path__index {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .jtd-solutions-v8-path__body h3 {
    font-size: 22px;
  }

  .jtd-solutions-v8-path__body dl div {
    padding: 14px;
  }

  .jtd-solutions-v8-path__steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8-path__steps span {
    width: 100%;
    border-radius: 14px;
  }

  .jtd-solutions-v8-path__steps span + span::before {
    display: none;
  }

  .jtd-solutions-v8-combo-system {
    padding: 16px;
    border-radius: 22px;
  }

  .jtd-solutions-v8-combo-layer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jtd-solutions-v8-combo-layer div {
    gap: 8px;
  }

  .jtd-solutions-v8-process-line {
    border-radius: 22px;
  }

  .jtd-solutions-v8-process-line article {
    padding: 22px 18px;
  }

  .jtd-solutions-v8-proof-list article {
    padding: 20px;
  }

  .jtd-solutions-v8-proof-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .jtd-solutions-v8-cta {
    padding-top: 54px !important;
  }

  .jtd-solutions-v8-cta__box {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 22px;
  }

  .jtd-solutions-v8-cta__box h2 {
    font-size: 27px;
  }
}

/* End JTD Solutions V8 */

/* JTD Solutions V8.1 - visual refinement */
.jtd-solutions-v8 .jtd-solutions-v8-scenario-map {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  min-height: 278px;
  padding: 28px 24px;
  gap: 10px;
}

.jtd-solutions-v8 .jtd-solutions-v8-scenario-map::before {
  top: 50%;
  right: 42px;
  left: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0), rgba(47, 107, 255, 0.22), rgba(225, 37, 27, 0.22), rgba(47, 107, 255, 0.16), rgba(47, 107, 255, 0));
}

.jtd-solutions-v8 .jtd-solutions-v8-scenario-map span {
  min-height: 92px;
  padding: 14px 10px;
}

.jtd-solutions-v8 .jtd-solutions-v8-scenario-map span:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(225, 37, 27, 0.42);
  border-right: 2px solid rgba(225, 37, 27, 0.42);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.jtd-solutions-v8 .jtd-solutions-v8-scenario-map__core {
  grid-column: auto;
  min-height: 104px !important;
  font-size: 21px !important;
}

.jtd-solutions-v8 .jtd-solutions-v8-path-list {
  gap: 22px;
}

.jtd-solutions-v8 .jtd-solutions-v8-path-list article {
  min-height: 374px;
}

.jtd-solutions-v8 .jtd-solutions-v8-path__body {
  display: flex;
  flex-direction: column;
}

.jtd-solutions-v8 .jtd-solutions-v8-path__body h3 {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(228, 231, 236, 0.86);
}

.jtd-solutions-v8 .jtd-solutions-v8-path__body dt {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.jtd-solutions-v8 .jtd-solutions-v8-path__body a {
  width: fit-content;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  line-height: 1.2;
}

.jtd-solutions-v8 .jtd-solutions-v8-combo-layer--core span {
  min-height: 40px;
  padding-inline: 14px;
  box-shadow: 0 10px 24px -20px rgba(225, 37, 27, 0.42);
}

.jtd-solutions-v8 .jtd-solutions-v8-combo-layer:not(.jtd-solutions-v8-combo-layer--core) span {
  color: #475467;
}

.jtd-solutions-v8 .jtd-solutions-v8-combo-layer--weak span {
  min-height: 32px;
  font-size: 12px;
}

.jtd-solutions-v8 .jtd-solutions-v8-proof-list strong {
  width: fit-content;
  padding: 8px 0 10px;
  border-bottom: 2px solid rgba(225, 37, 27, 0.18);
}

.jtd-solutions-v8 .jtd-solutions-v8-proof-list article {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.jtd-solutions-v8 .jtd-solutions-v8-proof-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 37, 27, 0.18);
  box-shadow: 0 24px 58px -42px rgba(225, 37, 27, 0.28);
}

@media (max-width: 1120px) {
  .jtd-solutions-v8 .jtd-solutions-v8-scenario-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-scenario-map__core {
    grid-column: 1 / -1;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-scenario-map span:not(:last-child)::before {
    display: none;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-path-list article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .jtd-solutions-v8 .jtd-solutions-v8-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-hero__copy h1 {
    font-size: 28px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-hero__copy > p:not(.jtd-solutions-v8-kicker) {
    margin-top: 15px;
    font-size: 15px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-actions {
    margin-top: 20px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-scenario-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 12px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-scenario-map__core {
    min-height: 58px !important;
    font-size: 18px !important;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-scenario-map span {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 11px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-path-list {
    gap: 20px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-path__body h3 {
    padding-bottom: 12px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-path__body a {
    justify-content: center;
    width: 100%;
    margin-top: 18px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-proof-list strong {
    font-size: 29px;
  }

  .jtd-solutions-v8 {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

/* End JTD Solutions V8.1 */

/* ==========================================================================
   JTD Cases V8 - Evidence Flow System
   Scope: archive-jtd_case.php only
   ========================================================================== */

.jtd-cases-v8 {
  --jtd-cases-red: #e1251b;
  --jtd-cases-blue: #2f6bff;
  --jtd-cases-ink: #101828;
  --jtd-cases-text: #344054;
  --jtd-cases-muted: #667085;
  --jtd-cases-line: #e4e7ec;
  --jtd-cases-bg: #f6f8fb;
  overflow: hidden;
  background: var(--jtd-cases-bg);
  color: var(--jtd-cases-text);
}

.jtd-cases-v8 .jtd-container {
  width: min(1180px, calc(100% - 72px));
  max-width: none;
}

.jtd-cases-v8-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 74% 16%, rgba(47, 107, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(225, 37, 27, 0.055), transparent 24%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 48%, #f5f8ff 100%);
}

.jtd-cases-v8-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(47, 107, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, transparent 100%);
  pointer-events: none;
}

.jtd-cases-v8-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(40px, 5vw, 82px);
  align-items: center;
}

.jtd-cases-v8-kicker,
.jtd-cases-v8-headline > span,
.jtd-cases-v8-cta__box > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  color: var(--jtd-cases-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.jtd-cases-v8-hero__copy h1 {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--jtd-cases-ink);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.jtd-cases-v8-hero__copy > p:not(.jtd-cases-v8-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.78;
}

.jtd-cases-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.jtd-cases-v8 .jtd-btn {
  min-height: 46px;
  border-radius: 999px;
}

.jtd-cases-v8-proof-panel {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(228, 231, 236, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 253, 255, 0.74)),
    radial-gradient(circle at 82% 18%, rgba(47, 107, 255, 0.11), transparent 34%);
  box-shadow: 0 32px 90px -66px rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(14px);
}

.jtd-cases-v8-proof-panel::before {
  content: "";
  position: absolute;
  top: 88px;
  right: 44px;
  bottom: 78px;
  left: 44px;
  border: 1px dashed rgba(47, 107, 255, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.jtd-cases-v8-proof-panel > span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(228, 231, 236, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--jtd-cases-muted);
  font-size: 12px;
  font-weight: 700;
}

.jtd-cases-v8-proof-panel > strong {
  position: relative;
  z-index: 1;
  color: var(--jtd-cases-ink);
  font-size: 24px;
  line-height: 1.25;
}

.jtd-cases-v8-proof-panel div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(228, 231, 236, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px -40px rgba(15, 23, 42, 0.36);
}

.jtd-cases-v8-proof-panel b {
  color: var(--jtd-cases-red);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.12;
}

.jtd-cases-v8-proof-panel small {
  color: var(--jtd-cases-muted);
  font-size: 13px;
  line-height: 1.5;
}

.jtd-cases-v8-proof,
.jtd-cases-v8-industries,
.jtd-cases-v8-links {
  padding: 92px 0;
  background: #ffffff;
}

.jtd-cases-v8-evidence,
.jtd-cases-v8-principles,
.jtd-cases-v8-cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 107, 255, 0.055), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f6f8fb 100%);
}

.jtd-cases-v8-headline {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.jtd-cases-v8-headline h2 {
  margin: 14px 0 0;
  color: var(--jtd-cases-ink);
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 740;
  line-height: 1.22;
  letter-spacing: 0;
}

.jtd-cases-v8-headline p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--jtd-cases-muted);
  font-size: 16px;
  line-height: 1.76;
}

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

.jtd-cases-v8-proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 216px;
  padding: 28px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.92));
  box-shadow: 0 24px 64px -52px rgba(15, 23, 42, 0.36);
}

.jtd-cases-v8-proof-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.5), transparent);
}

.jtd-cases-v8-proof-grid strong {
  display: block;
  color: var(--jtd-cases-red);
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.12;
}

.jtd-cases-v8-proof-grid p {
  margin: 18px 0 0;
  color: var(--jtd-cases-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.jtd-cases-v8-proof-grid span {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.055);
  color: #2f5fd4;
  font-size: 13px;
  font-weight: 700;
}

.jtd-cases-v8-evidence-list {
  display: grid;
  gap: 24px;
}

.jtd-cases-v8-evidence-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 76px -62px rgba(15, 23, 42, 0.42);
}

.jtd-cases-v8-evidence__index {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(225, 37, 27, 0.18);
  border-radius: 18px;
  background: rgba(225, 37, 27, 0.065);
  color: var(--jtd-cases-red);
  font-weight: 780;
}

.jtd-cases-v8-evidence__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.jtd-cases-v8-chip {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.055);
  color: #2f5fd4;
  font-size: 13px;
  font-weight: 700;
}

.jtd-cases-v8-evidence__body h3 {
  margin: 14px 0 0;
  color: var(--jtd-cases-ink);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.24;
}

.jtd-cases-v8-evidence__body dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.jtd-cases-v8-evidence__body dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(228, 231, 236, 0.72);
}

.jtd-cases-v8-evidence__body dt {
  color: var(--jtd-cases-ink);
  font-size: 13px;
  font-weight: 760;
}

.jtd-cases-v8-evidence__body dd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--jtd-cases-muted);
  font-size: 14px;
  line-height: 1.62;
}

.jtd-cases-v8-evidence__body dd span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.jtd-cases-v8-evidence__body a,
.jtd-cases-v8-link-list a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  color: var(--jtd-cases-red);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.jtd-cases-v8-evidence__result {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(225, 37, 27, 0.12), transparent 34%),
    linear-gradient(160deg, #111827 0%, #0f172a 100%);
  color: #ffffff;
}

.jtd-cases-v8-evidence__result strong {
  color: #ffffff;
  font-size: clamp(30px, 2.45vw, 40px);
  line-height: 1.08;
}

.jtd-cases-v8-evidence__result span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.jtd-cases-v8-industry-list,
.jtd-cases-v8-principle-grid,
.jtd-cases-v8-link-list {
  display: grid;
  gap: 16px;
}

.jtd-cases-v8-industry-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jtd-cases-v8-principle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jtd-cases-v8-link-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-cases-v8-industry-list article,
.jtd-cases-v8-principle-grid article,
.jtd-cases-v8-link-list article {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 56px -48px rgba(15, 23, 42, 0.34);
}

.jtd-cases-v8-industry-list h3,
.jtd-cases-v8-principle-grid h3,
.jtd-cases-v8-link-list h3 {
  margin: 0;
  color: var(--jtd-cases-ink);
  font-size: 19px;
  line-height: 1.36;
}

.jtd-cases-v8-industry-list p,
.jtd-cases-v8-principle-grid p,
.jtd-cases-v8-link-list p {
  margin: 14px 0 0;
  color: var(--jtd-cases-muted);
  font-size: 14px;
  line-height: 1.68;
}

.jtd-cases-v8-industry-list b,
.jtd-cases-v8-link-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--jtd-cases-ink);
  font-size: 12px;
}

.jtd-cases-v8-principle-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(225, 37, 27, 0.07);
  color: var(--jtd-cases-red);
  font-size: 13px;
  font-weight: 780;
}

.jtd-cases-v8-cta {
  padding-top: 70px;
}

.jtd-cases-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(225, 37, 27, 0.16), transparent 26%),
    linear-gradient(145deg, #111827 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 28px 86px -62px rgba(15, 23, 42, 0.55);
}

.jtd-cases-v8-cta__box h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.2;
}

.jtd-cases-v8-cta__box p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.jtd-cases-v8-cta__box .jtd-btn--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .jtd-cases-v8-hero__grid,
  .jtd-cases-v8-evidence-list article,
  .jtd-cases-v8-cta__box {
    grid-template-columns: 1fr;
  }

  .jtd-cases-v8-proof-grid,
  .jtd-cases-v8-link-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-cases-v8-industry-list,
  .jtd-cases-v8-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-cases-v8-evidence__result {
    min-height: 180px;
  }
}

@media (max-width: 760px) {
  .jtd-cases-v8 {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .jtd-cases-v8 .jtd-container {
    width: min(100% - 28px, 620px);
  }

  .jtd-cases-v8-hero {
    padding: 34px 0 36px;
  }

  .jtd-cases-v8-hero__grid {
    gap: 20px;
  }

  .jtd-cases-v8-hero__copy h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .jtd-cases-v8-hero__copy > p:not(.jtd-cases-v8-kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.66;
  }

  .jtd-cases-v8-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .jtd-cases-v8-actions .jtd-btn {
    justify-content: center;
    width: 100%;
    min-height: 42px;
  }

  .jtd-cases-v8-proof-panel {
    min-height: auto;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
  }

  .jtd-cases-v8-proof-panel::before {
    display: none;
  }

  .jtd-cases-v8-proof-panel > strong {
    font-size: 18px;
  }

  .jtd-cases-v8-proof-panel div {
    grid-template-columns: minmax(98px, auto) minmax(0, 1fr);
    align-items: center;
    padding: 10px 12px;
    gap: 4px 10px;
  }

  .jtd-cases-v8-proof-panel b {
    font-size: 22px;
  }

  .jtd-cases-v8-proof-panel small {
    font-size: 12px;
    line-height: 1.35;
  }

  .jtd-cases-v8-proof,
  .jtd-cases-v8-evidence,
  .jtd-cases-v8-industries,
  .jtd-cases-v8-principles,
  .jtd-cases-v8-links,
  .jtd-cases-v8-cta {
    padding: 58px 0;
  }

  .jtd-cases-v8-headline {
    margin-bottom: 28px;
    text-align: left;
  }

  .jtd-cases-v8-headline h2 {
    font-size: 27px;
  }

  .jtd-cases-v8-headline p {
    margin-left: 0;
    font-size: 15px;
  }

  .jtd-cases-v8-proof-grid,
  .jtd-cases-v8-industry-list,
  .jtd-cases-v8-principle-grid,
  .jtd-cases-v8-link-list {
    grid-template-columns: 1fr;
  }

  .jtd-cases-v8-proof-grid article,
  .jtd-cases-v8-industry-list article,
  .jtd-cases-v8-principle-grid article,
  .jtd-cases-v8-link-list article {
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-cases-v8-proof-grid strong {
    font-size: 31px;
  }

  .jtd-cases-v8-proof-grid p {
    font-size: 16px;
  }

  .jtd-cases-v8-evidence-list {
    gap: 18px;
  }

  .jtd-cases-v8-evidence-list article {
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .jtd-cases-v8-evidence__index {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .jtd-cases-v8-evidence__body h3 {
    font-size: 23px;
  }

  .jtd-cases-v8-evidence__body dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .jtd-cases-v8-evidence__body a,
  .jtd-cases-v8-link-list a {
    justify-content: center;
    width: 100%;
  }

  .jtd-cases-v8-evidence__result {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-cases-v8-evidence__result strong {
    font-size: 31px;
  }

  .jtd-cases-v8-cta__box {
    padding: 24px;
    border-radius: 22px;
  }

  .jtd-cases-v8-cta__box h2 {
    font-size: 27px;
  }
}

/* End JTD Cases V8 */

/* ==========================================================================
   JTD Partners V8 - Ecosystem Connection System
   Scope: page-partners.php only
   ========================================================================== */

.jtd-partners-v8 {
  --jtd-partners-red: #e1251b;
  --jtd-partners-blue: #2f6bff;
  --jtd-partners-ink: #101828;
  --jtd-partners-text: #344054;
  --jtd-partners-muted: #667085;
  --jtd-partners-line: #e4e7ec;
  --jtd-partners-bg: #f6f8fb;
  overflow: hidden;
  background: var(--jtd-partners-bg);
  color: var(--jtd-partners-text);
}

.jtd-partners-v8 .jtd-container {
  width: min(1180px, calc(100% - 72px));
  max-width: none;
}

.jtd-partners-v8-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 74px;
  background:
    radial-gradient(circle at 74% 18%, rgba(47, 107, 255, 0.11), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(225, 37, 27, 0.055), transparent 24%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 48%, #f4f8ff 100%);
}

.jtd-partners-v8-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(47, 107, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.02) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, transparent 100%);
  pointer-events: none;
}

.jtd-partners-v8-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
}

.jtd-partners-v8-kicker,
.jtd-partners-v8-headline > span,
.jtd-partners-v8-cta__box > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  color: var(--jtd-partners-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.jtd-partners-v8-hero__copy h1 {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--jtd-partners-ink);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.jtd-partners-v8-hero__copy > p:not(.jtd-partners-v8-kicker) {
  max-width: 700px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.78;
}

.jtd-partners-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.jtd-partners-v8 .jtd-btn {
  min-height: 46px;
  border-radius: 999px;
}

.jtd-partners-v8-connect-panel {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(228, 231, 236, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 253, 255, 0.75)),
    radial-gradient(circle at 82% 18%, rgba(47, 107, 255, 0.11), transparent 34%);
  box-shadow: 0 32px 90px -66px rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(14px);
}

.jtd-partners-v8-connect-panel::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px dashed rgba(47, 107, 255, 0.22);
  border-radius: 24px;
  pointer-events: none;
}

.jtd-partners-v8-connect-panel > strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 0 28px;
  border: 1px solid rgba(225, 37, 27, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 37, 27, 0.12), transparent 36%),
    #ffffff;
  color: var(--jtd-partners-ink);
  font-size: 22px;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 22px 52px -42px rgba(225, 37, 27, 0.4);
}

.jtd-partners-v8-connect-panel__nodes,
.jtd-partners-v8-connect-panel__abilities {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.jtd-partners-v8-connect-panel__nodes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-partners-v8-connect-panel__abilities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jtd-partners-v8-connect-panel__nodes span,
.jtd-partners-v8-connect-panel__abilities em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: #344054;
  font-size: 13px;
  font-style: normal;
  font-weight: 730;
  text-align: center;
  box-shadow: 0 14px 38px -34px rgba(15, 23, 42, 0.34);
}

.jtd-partners-v8-connect-panel__nodes span:first-child,
.jtd-partners-v8-connect-panel__abilities em:last-child {
  color: var(--jtd-partners-red);
  border-color: rgba(225, 37, 27, 0.16);
  background: rgba(225, 37, 27, 0.055);
}

.jtd-partners-v8-value,
.jtd-partners-v8-models,
.jtd-partners-v8-proof,
.jtd-partners-v8-cta {
  padding: 92px 0;
  background: #ffffff;
}

.jtd-partners-v8-targets,
.jtd-partners-v8-capabilities,
.jtd-partners-v8-process,
.jtd-partners-v8-form {
  padding: 92px 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 107, 255, 0.052), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f6f8fb 100%);
}

.jtd-partners-v8-headline {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.jtd-partners-v8-headline--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.jtd-partners-v8-headline h2 {
  margin: 14px 0 0;
  color: var(--jtd-partners-ink);
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 740;
  line-height: 1.22;
  letter-spacing: 0;
}

.jtd-partners-v8-headline p {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--jtd-partners-muted);
  font-size: 16px;
  line-height: 1.76;
}

.jtd-partners-v8-headline--left p {
  margin-left: 0;
}

.jtd-partners-v8-value-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jtd-partners-v8-value-chain article,
.jtd-partners-v8-model-path article,
.jtd-partners-v8-capability-grid article,
.jtd-partners-v8-proof-grid article,
.jtd-partners-v8-target-list article {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 56px -48px rgba(15, 23, 42, 0.34);
}

.jtd-partners-v8-value-chain article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.28), transparent);
}

.jtd-partners-v8-value-chain article:last-child::after {
  display: none;
}

.jtd-partners-v8-value-chain article > span,
.jtd-partners-v8-target-list article > span,
.jtd-partners-v8-model-path article > span,
.jtd-partners-v8-process-line article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(225, 37, 27, 0.07);
  color: var(--jtd-partners-red);
  font-size: 13px;
  font-weight: 780;
}

.jtd-partners-v8-value-chain h3,
.jtd-partners-v8-target-list h3,
.jtd-partners-v8-model-path h3,
.jtd-partners-v8-capability-grid h3,
.jtd-partners-v8-process-line h3,
.jtd-partners-v8-proof-grid strong {
  margin: 0;
  color: var(--jtd-partners-ink);
  font-size: 20px;
  line-height: 1.34;
}

.jtd-partners-v8-value-chain p,
.jtd-partners-v8-target-list p,
.jtd-partners-v8-model-path p,
.jtd-partners-v8-capability-grid p,
.jtd-partners-v8-process-line p,
.jtd-partners-v8-proof-grid p {
  margin: 13px 0 0;
  color: var(--jtd-partners-muted);
  font-size: 14px;
  line-height: 1.68;
}

.jtd-partners-v8-target-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.jtd-partners-v8-target-list article {
  display: flex;
  gap: 16px;
  grid-column: span 2;
}

.jtd-partners-v8-target-list article.is-primary {
  grid-column: span 3;
  border-color: rgba(225, 37, 27, 0.16);
  background:
    radial-gradient(circle at 88% 12%, rgba(225, 37, 27, 0.065), transparent 32%),
    rgba(255, 255, 255, 0.94);
}

.jtd-partners-v8-target-list article > span {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.jtd-partners-v8-target-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--jtd-partners-ink);
  font-size: 12px;
}

.jtd-partners-v8-model-path {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.jtd-partners-v8-model-path article {
  padding: 22px;
}

.jtd-partners-v8-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jtd-partners-v8-capability-grid article {
  min-height: 168px;
  padding: 22px;
}

.jtd-partners-v8-capability-grid article:nth-child(6) {
  border-color: rgba(47, 107, 255, 0.18);
  background:
    radial-gradient(circle at 84% 14%, rgba(47, 107, 255, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.94);
}

.jtd-partners-v8-process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.jtd-partners-v8-process-line article {
  position: relative;
  min-height: 232px;
  padding: 22px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 56px -48px rgba(15, 23, 42, 0.34);
}

.jtd-partners-v8-process-line article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -12px;
  width: 12px;
  height: 1px;
  background: rgba(47, 107, 255, 0.3);
}

.jtd-partners-v8-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jtd-partners-v8-proof-grid article:first-child {
  border-color: rgba(225, 37, 27, 0.18);
  background:
    radial-gradient(circle at 86% 16%, rgba(225, 37, 27, 0.1), transparent 32%),
    #ffffff;
}

.jtd-partners-v8-proof-grid strong {
  display: block;
  color: var(--jtd-partners-red);
  font-size: clamp(26px, 2vw, 32px);
}

.jtd-partners-v8-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}

.jtd-partners-v8-prompt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.jtd-partners-v8-prompt-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.jtd-partners-v8-form__box {
  padding: 28px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 26px 76px -62px rgba(15, 23, 42, 0.42);
}

.jtd-partners-v8-form__box .jtd-lead-form {
  margin: 0;
}

.jtd-partners-v8-cta {
  padding-top: 70px;
}

.jtd-partners-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(225, 37, 27, 0.16), transparent 26%),
    linear-gradient(145deg, #111827 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 28px 86px -62px rgba(15, 23, 42, 0.55);
}

.jtd-partners-v8-cta__box h2 {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.2;
}

.jtd-partners-v8-cta__box p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.jtd-partners-v8-cta__box .jtd-btn--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .jtd-partners-v8-hero__grid,
  .jtd-partners-v8-form__grid,
  .jtd-partners-v8-cta__box {
    grid-template-columns: 1fr;
  }

  .jtd-partners-v8-value-chain,
  .jtd-partners-v8-capability-grid,
  .jtd-partners-v8-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-partners-v8-model-path,
  .jtd-partners-v8-process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-partners-v8-target-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-partners-v8-target-list article,
  .jtd-partners-v8-target-list article.is-primary {
    grid-column: auto;
  }

  .jtd-partners-v8-value-chain article::after,
  .jtd-partners-v8-process-line article::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .jtd-partners-v8 {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .jtd-partners-v8 .jtd-container {
    width: min(100% - 28px, 620px);
  }

  .jtd-partners-v8-hero {
    padding: 38px 0 42px;
  }

  .jtd-partners-v8-hero__grid {
    gap: 24px;
  }

  .jtd-partners-v8-hero__copy h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .jtd-partners-v8-hero__copy > p:not(.jtd-partners-v8-kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.66;
  }

  .jtd-partners-v8-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .jtd-partners-v8-actions .jtd-btn {
    justify-content: center;
    width: 100%;
    min-height: 42px;
  }

  .jtd-partners-v8-connect-panel {
    min-height: auto;
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .jtd-partners-v8-connect-panel::before {
    display: none;
  }

  .jtd-partners-v8-connect-panel > strong {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 18px;
  }

  .jtd-partners-v8-connect-panel__nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jtd-partners-v8-connect-panel__abilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jtd-partners-v8-connect-panel__nodes span,
  .jtd-partners-v8-connect-panel__abilities em {
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }

  .jtd-partners-v8-value,
  .jtd-partners-v8-targets,
  .jtd-partners-v8-models,
  .jtd-partners-v8-capabilities,
  .jtd-partners-v8-process,
  .jtd-partners-v8-proof,
  .jtd-partners-v8-form,
  .jtd-partners-v8-cta {
    padding: 58px 0;
  }

  .jtd-partners-v8-headline {
    margin-bottom: 28px;
    text-align: left;
  }

  .jtd-partners-v8-headline h2 {
    font-size: 27px;
  }

  .jtd-partners-v8-headline p {
    margin-left: 0;
    font-size: 15px;
  }

  .jtd-partners-v8-value-chain,
  .jtd-partners-v8-target-list,
  .jtd-partners-v8-model-path,
  .jtd-partners-v8-capability-grid,
  .jtd-partners-v8-process-line,
  .jtd-partners-v8-proof-grid {
    grid-template-columns: 1fr;
  }

  .jtd-partners-v8-value-chain article,
  .jtd-partners-v8-target-list article,
  .jtd-partners-v8-model-path article,
  .jtd-partners-v8-capability-grid article,
  .jtd-partners-v8-process-line article,
  .jtd-partners-v8-proof-grid article {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-partners-v8-target-list article {
    gap: 12px;
  }

  .jtd-partners-v8-form__box {
    padding: 18px;
    border-radius: 22px;
  }

  .jtd-partners-v8-prompt-list {
    gap: 8px;
    margin-top: 20px;
  }

  .jtd-partners-v8-prompt-list span {
    min-height: 32px;
    font-size: 12px;
  }

  .jtd-partners-v8-cta__box {
    padding: 24px;
    border-radius: 22px;
  }

  .jtd-partners-v8-cta__box h2 {
    font-size: 27px;
  }
}

/* End JTD Partners V8 */

/* ==========================================================================
   JTD Trust V8 - Security & Compliance System
   Scope: page-trust.php only
   ========================================================================== */

.jtd-trust-v8 {
  --jtd-trust-v8-red: #e1251b;
  --jtd-trust-v8-blue: #2f6bff;
  --jtd-trust-v8-ink: #101828;
  --jtd-trust-v8-text: #344054;
  --jtd-trust-v8-muted: #667085;
  --jtd-trust-v8-line: #e4e7ec;
  --jtd-trust-v8-bg: #f6f8fb;
  overflow: hidden;
  background: var(--jtd-trust-v8-bg);
  color: var(--jtd-trust-v8-text);
}

.jtd-trust-v8 .jtd-container {
  width: min(1180px, calc(100% - 72px));
  max-width: none;
}

.jtd-trust-v8-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 107, 255, 0.11), transparent 28%),
    radial-gradient(circle at 90% 78%, rgba(225, 37, 27, 0.055), transparent 24%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 48%, #f5f9ff 100%);
}

.jtd-trust-v8-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(47, 107, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, transparent 100%);
  pointer-events: none;
}

.jtd-trust-v8-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
}

.jtd-trust-v8-kicker,
.jtd-trust-v8-headline > span,
.jtd-trust-v8-sticky-copy > span,
.jtd-trust-v8-cta__box > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  color: var(--jtd-trust-v8-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.jtd-trust-v8-hero__copy h1 {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--jtd-trust-v8-ink);
  font-size: clamp(40px, 3.8vw, 56px);
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: 0;
}

.jtd-trust-v8-hero__copy > p:not(.jtd-trust-v8-kicker) {
  max-width: 710px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.78;
}

.jtd-trust-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.jtd-trust-v8 .jtd-btn {
  min-height: 46px;
  border-radius: 999px;
}

.jtd-trust-v8-panel {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 404px;
  padding: 30px;
  border: 1px solid rgba(228, 231, 236, 0.82);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 253, 255, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(47, 107, 255, 0.11), transparent 42%);
  box-shadow: 0 28px 86px -62px rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(18px);
}

.jtd-trust-v8-panel::before {
  content: "";
  position: absolute;
  top: 48%;
  right: 34px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 107, 255, 0.34), transparent);
  pointer-events: none;
}

.jtd-trust-v8-panel strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 0 22px;
  border: 1px solid rgba(225, 37, 27, 0.2);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff8f7);
  color: var(--jtd-trust-v8-red);
  font-size: 22px;
  font-weight: 780;
  text-align: center;
  box-shadow: 0 18px 48px -36px rgba(225, 37, 27, 0.34);
}

.jtd-trust-v8-panel__abilities {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.jtd-trust-v8-panel__abilities span,
.jtd-trust-v8-panel__boundaries em {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid rgba(208, 213, 221, 0.76);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: #344054;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 32px -28px rgba(15, 23, 42, 0.34);
}

.jtd-trust-v8-panel__boundaries {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 8px;
}

.jtd-trust-v8-panel__boundaries em {
  border-color: rgba(47, 107, 255, 0.2);
  background: rgba(47, 107, 255, 0.06);
  color: #2554c7;
}

.jtd-trust-v8-foundation,
.jtd-trust-v8-data,
.jtd-trust-v8-money,
.jtd-trust-v8-deploy,
.jtd-trust-v8-procurement,
.jtd-trust-v8-principles,
.jtd-trust-v8-cta {
  padding: 84px 0;
}

.jtd-trust-v8-data,
.jtd-trust-v8-deploy,
.jtd-trust-v8-principles {
  background: #ffffff;
}

.jtd-trust-v8-money,
.jtd-trust-v8-procurement {
  background:
    radial-gradient(circle at 84% 12%, rgba(47, 107, 255, 0.055), transparent 26%),
    linear-gradient(180deg, #f6f8fb, #ffffff);
}

.jtd-trust-v8-headline {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.jtd-trust-v8-headline h2,
.jtd-trust-v8-sticky-copy h2,
.jtd-trust-v8-cta__box h2 {
  margin: 14px 0 0;
  color: var(--jtd-trust-v8-ink);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: 0;
}

.jtd-trust-v8-headline p,
.jtd-trust-v8-sticky-copy p,
.jtd-trust-v8-cta__box p {
  margin: 16px auto 0;
  color: var(--jtd-trust-v8-muted);
  font-size: 16px;
  line-height: 1.78;
}

.jtd-trust-v8-control-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 72px -58px rgba(15, 23, 42, 0.44);
}

.jtd-trust-v8-control-matrix article {
  min-height: 218px;
  padding: 28px;
  border-right: 1px solid rgba(228, 231, 236, 0.86);
  border-bottom: 1px solid rgba(228, 231, 236, 0.86);
}

.jtd-trust-v8-control-matrix article:nth-child(3n) {
  border-right: 0;
}

.jtd-trust-v8-control-matrix article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.jtd-trust-v8-control-matrix span,
.jtd-trust-v8-money-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.075);
  color: var(--jtd-trust-v8-red);
  font-weight: 760;
}

.jtd-trust-v8-control-matrix h3,
.jtd-trust-v8-boundary-list h3,
.jtd-trust-v8-money-flow h3,
.jtd-trust-v8-deploy-grid h3,
.jtd-trust-v8-question-list h3,
.jtd-trust-v8-principle-grid h3 {
  margin: 0;
  color: var(--jtd-trust-v8-ink);
  font-size: 20px;
  font-weight: 720;
  line-height: 1.34;
}

.jtd-trust-v8-control-matrix p,
.jtd-trust-v8-boundary-list p,
.jtd-trust-v8-money-flow p,
.jtd-trust-v8-deploy-grid p,
.jtd-trust-v8-question-list p,
.jtd-trust-v8-principle-grid p {
  margin: 12px 0 0;
  color: var(--jtd-trust-v8-muted);
  font-size: 15px;
  line-height: 1.76;
}

.jtd-trust-v8-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.jtd-trust-v8-sticky-copy {
  position: sticky;
  top: 110px;
}

.jtd-trust-v8-boundary-list,
.jtd-trust-v8-question-list {
  display: grid;
  gap: 14px;
}

.jtd-trust-v8-boundary-list article,
.jtd-trust-v8-question-list article {
  position: relative;
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px -42px rgba(15, 23, 42, 0.34);
}

.jtd-trust-v8-boundary-list article::before,
.jtd-trust-v8-question-list article::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--jtd-trust-v8-red);
}

.jtd-trust-v8-money-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.jtd-trust-v8-money-flow article,
.jtd-trust-v8-deploy-grid article,
.jtd-trust-v8-principle-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px -44px rgba(15, 23, 42, 0.36);
}

.jtd-trust-v8-money-flow article:last-child {
  border-color: rgba(225, 37, 27, 0.22);
  background: linear-gradient(180deg, #ffffff, #fff8f7);
}

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

.jtd-trust-v8-deploy-grid article {
  min-height: 176px;
}

.jtd-trust-v8-question-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  align-items: center;
}

.jtd-trust-v8-question-list h3 {
  color: var(--jtd-trust-v8-red);
}

.jtd-trust-v8-question-list p {
  margin: 0;
}

.jtd-trust-v8-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.jtd-trust-v8-principle-grid article {
  min-height: 196px;
}

.jtd-trust-v8-cta {
  background:
    radial-gradient(circle at 14% 22%, rgba(47, 107, 255, 0.075), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.jtd-trust-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(228, 231, 236, 0.88);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 86px -58px rgba(15, 23, 42, 0.46);
}

.jtd-trust-v8-cta__box p {
  max-width: 720px;
  margin-left: 0;
}

@media (max-width: 1120px) {
  .jtd-trust-v8 .jtd-container {
    width: min(100% - 48px, 940px);
  }

  .jtd-trust-v8-hero__grid,
  .jtd-trust-v8-split,
  .jtd-trust-v8-cta__box {
    grid-template-columns: 1fr;
  }

  .jtd-trust-v8-sticky-copy {
    position: static;
  }

  .jtd-trust-v8-control-matrix,
  .jtd-trust-v8-deploy-grid,
  .jtd-trust-v8-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-trust-v8-money-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-trust-v8-control-matrix article,
  .jtd-trust-v8-control-matrix article:nth-child(3n),
  .jtd-trust-v8-control-matrix article:nth-last-child(-n + 3) {
    border-right: 1px solid rgba(228, 231, 236, 0.86);
    border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  }

  .jtd-trust-v8-control-matrix article:nth-child(2n) {
    border-right: 0;
  }

  .jtd-trust-v8-control-matrix article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .jtd-trust-v8 .jtd-container {
    width: min(100% - 28px, 620px);
  }

  .jtd-trust-v8-hero {
    padding: 46px 0 38px;
  }

  .jtd-trust-v8-hero__grid {
    gap: 22px;
  }

  .jtd-trust-v8-hero__copy h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .jtd-trust-v8-hero__copy > p:not(.jtd-trust-v8-kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.68;
  }

  .jtd-trust-v8-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .jtd-trust-v8-actions .jtd-btn {
    justify-content: center;
    width: 100%;
    min-height: 42px;
  }

  .jtd-trust-v8-panel {
    min-height: auto;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }

  .jtd-trust-v8-panel::before {
    display: none;
  }

  .jtd-trust-v8-panel strong {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 17px;
  }

  .jtd-trust-v8-panel__abilities,
  .jtd-trust-v8-panel__boundaries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jtd-trust-v8-panel__boundaries em:last-child {
    grid-column: 1 / -1;
  }

  .jtd-trust-v8-panel__abilities span,
  .jtd-trust-v8-panel__boundaries em {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .jtd-trust-v8-foundation,
  .jtd-trust-v8-data,
  .jtd-trust-v8-money,
  .jtd-trust-v8-deploy,
  .jtd-trust-v8-procurement,
  .jtd-trust-v8-principles,
  .jtd-trust-v8-cta {
    padding: 58px 0;
  }

  .jtd-trust-v8-headline {
    margin-bottom: 28px;
    text-align: left;
  }

  .jtd-trust-v8-headline h2,
  .jtd-trust-v8-sticky-copy h2,
  .jtd-trust-v8-cta__box h2 {
    font-size: 27px;
  }

  .jtd-trust-v8-headline p,
  .jtd-trust-v8-sticky-copy p,
  .jtd-trust-v8-cta__box p {
    margin-left: 0;
    font-size: 15px;
  }

  .jtd-trust-v8-control-matrix,
  .jtd-trust-v8-money-flow,
  .jtd-trust-v8-deploy-grid,
  .jtd-trust-v8-principle-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .jtd-trust-v8-control-matrix article,
  .jtd-trust-v8-control-matrix article:nth-child(2n),
  .jtd-trust-v8-control-matrix article:nth-last-child(-n + 2) {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  }

  .jtd-trust-v8-control-matrix article:last-child {
    border-bottom: 0;
  }

  .jtd-trust-v8-boundary-list article,
  .jtd-trust-v8-question-list article,
  .jtd-trust-v8-money-flow article,
  .jtd-trust-v8-deploy-grid article,
  .jtd-trust-v8-principle-grid article {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-trust-v8-question-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jtd-trust-v8-cta__box {
    gap: 22px;
    padding: 24px;
    border-radius: 22px;
  }
}

/* End JTD Trust V8 */

/* ==========================================================================
   JTD About V8 - Company Platform Narrative
   Scope: page-about.php only
   ========================================================================== */

.jtd-about-v8 {
  overflow: hidden;
  background: #f6f8fb;
  color: #344054;
}

.jtd-about-v8 .jtd-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.jtd-about-v8-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 107, 255, 0.08), transparent 30%),
    radial-gradient(circle at 62% 86%, rgba(225, 37, 27, 0.045), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.jtd-about-v8-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(47, 107, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.02) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, transparent, #000 40%, transparent 100%);
}

.jtd-about-v8-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.jtd-about-v8-hero .jtd-breadcrumb {
  display: none;
}

.jtd-about-v8-kicker,
.jtd-about-v8-headline span,
.jtd-about-v8-sticky-copy span,
.jtd-about-v8-future__intro span,
.jtd-about-v8-cta__box span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

.jtd-about-v8-kicker::before,
.jtd-about-v8-headline span::before,
.jtd-about-v8-sticky-copy span::before,
.jtd-about-v8-future__intro span::before,
.jtd-about-v8-cta__box span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e1251b;
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.08);
}

.jtd-about-v8-hero__copy h1 {
  max-width: 680px;
  margin: 0;
  color: #101828;
  font-size: clamp(38px, 3.6vw, 56px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.jtd-about-v8-hero__copy > p:not(.jtd-about-v8-kicker) {
  max-width: 700px;
  margin: 22px 0 0;
  color: #344054;
  font-size: 18px;
  line-height: 1.78;
}

.jtd-about-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.jtd-about-v8-actions .jtd-btn {
  min-height: 46px;
}

.jtd-about-v8-platform {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 410px;
  padding: 30px;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 36%, rgba(225, 37, 27, 0.07), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.88));
  box-shadow: 0 30px 92px -60px rgba(15, 23, 42, 0.5);
}

.jtd-about-v8-platform::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(47, 107, 255, 0.1);
  border-radius: 24px;
  pointer-events: none;
}

.jtd-about-v8-platform strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0 24px;
  border: 1px solid rgba(225, 37, 27, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  color: #101828;
  font-size: 22px;
  font-weight: 780;
  box-shadow: 0 22px 58px -46px rgba(15, 23, 42, 0.5);
}

.jtd-about-v8-platform__nodes,
.jtd-about-v8-platform__directions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.jtd-about-v8-platform__nodes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-about-v8-platform__nodes span,
.jtd-about-v8-platform__directions em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: #344054;
  font-size: 14px;
  font-style: normal;
  font-weight: 720;
  text-align: center;
}

.jtd-about-v8-platform__nodes span:nth-child(1),
.jtd-about-v8-platform__nodes span:nth-child(2),
.jtd-about-v8-platform__nodes span:nth-child(3) {
  border-color: rgba(225, 37, 27, 0.18);
  color: #e1251b;
}

.jtd-about-v8-platform__directions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-about-v8-position,
.jtd-about-v8-origin,
.jtd-about-v8-capability,
.jtd-about-v8-evolution,
.jtd-about-v8-proof,
.jtd-about-v8-values,
.jtd-about-v8-future,
.jtd-about-v8-cta {
  padding: 86px 0;
}

.jtd-about-v8-origin,
.jtd-about-v8-evolution,
.jtd-about-v8-values,
.jtd-about-v8-cta {
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 107, 255, 0.055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.jtd-about-v8-headline {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.jtd-about-v8-headline h2,
.jtd-about-v8-sticky-copy h2,
.jtd-about-v8-future__intro h2,
.jtd-about-v8-cta__box h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0;
}

.jtd-about-v8-headline p,
.jtd-about-v8-sticky-copy p,
.jtd-about-v8-future__intro p,
.jtd-about-v8-cta__box p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.76;
}

.jtd-about-v8-position__ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.jtd-about-v8-position__ladder article,
.jtd-about-v8-origin__list article,
.jtd-about-v8-proof__grid article,
.jtd-about-v8-values__rail article,
.jtd-about-v8-future__grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228, 231, 236, 0.88);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 62px -48px rgba(15, 23, 42, 0.42);
}

.jtd-about-v8-position__ladder article {
  min-height: 254px;
  padding: 24px;
  border-radius: 24px;
}

.jtd-about-v8-position__ladder article span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 820;
}

.jtd-about-v8-position__ladder article::after {
  content: "";
  position: absolute;
  top: 48px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 37, 27, 0.28), rgba(47, 107, 255, 0.08), transparent);
}

.jtd-about-v8-position__ladder h3,
.jtd-about-v8-origin__list h3,
.jtd-about-v8-capability__groups h3,
.jtd-about-v8-timeline h3,
.jtd-about-v8-proof__grid h3,
.jtd-about-v8-values__rail h3,
.jtd-about-v8-future__grid h3 {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 740;
  line-height: 1.32;
}

.jtd-about-v8-position__ladder p,
.jtd-about-v8-origin__list p,
.jtd-about-v8-capability__groups p,
.jtd-about-v8-timeline p,
.jtd-about-v8-proof__grid p,
.jtd-about-v8-values__rail p,
.jtd-about-v8-future__grid p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.72;
}

.jtd-about-v8-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.jtd-about-v8-sticky-copy {
  position: sticky;
  top: 112px;
}

.jtd-about-v8-sticky-copy p {
  margin-left: 0;
}

.jtd-about-v8-origin__list,
.jtd-about-v8-proof__grid {
  display: grid;
  gap: 14px;
}

.jtd-about-v8-origin__list article,
.jtd-about-v8-proof__grid article {
  min-height: 168px;
  padding: 24px;
  border-radius: 24px;
}

.jtd-about-v8-origin__list b {
  display: inline-flex;
  margin-bottom: 12px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 760;
}

.jtd-about-v8-capability {
  background: #ffffff;
}

.jtd-about-v8-capability__groups {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 0.84fr);
  gap: 16px;
}

.jtd-about-v8-capability__groups article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(228, 231, 236, 0.88);
  border-radius: 28px;
  background: rgba(248, 250, 252, 0.8);
}

.jtd-about-v8-capability__groups article.is-core {
  background:
    radial-gradient(circle at 82% 20%, rgba(225, 37, 27, 0.075), transparent 30%),
    #ffffff;
  box-shadow: 0 28px 82px -58px rgba(15, 23, 42, 0.52);
}

.jtd-about-v8-capability__groups article div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.jtd-about-v8-capability__groups span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 999px;
  background: #ffffff;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.jtd-about-v8-capability__groups article.is-core span {
  border-color: rgba(225, 37, 27, 0.18);
  color: #e1251b;
}

.jtd-about-v8-note {
  max-width: 880px;
  margin: 22px auto 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.jtd-about-v8-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 86px -62px rgba(15, 23, 42, 0.5);
}

.jtd-about-v8-timeline article {
  position: relative;
  min-height: 280px;
  padding: 26px 22px;
  border-right: 1px solid rgba(228, 231, 236, 0.86);
}

.jtd-about-v8-timeline article:last-child {
  border-right: 0;
}

.jtd-about-v8-timeline span {
  display: inline-flex;
  margin-bottom: 46px;
  color: #e1251b;
  font-size: 13px;
  font-weight: 800;
}

.jtd-about-v8-timeline article::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e1251b;
  box-shadow: 0 0 0 7px rgba(225, 37, 27, 0.08);
}

.jtd-about-v8-timeline article::after {
  content: "";
  position: absolute;
  top: 62px;
  right: 0;
  left: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 37, 27, 0.28), rgba(47, 107, 255, 0.09));
}

.jtd-about-v8-timeline article:last-child::after {
  display: none;
}

.jtd-about-v8-proof {
  background: #ffffff;
}

.jtd-about-v8-proof__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jtd-about-v8-proof__grid article:last-child {
  grid-column: 1 / -1;
}

.jtd-about-v8-values__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.jtd-about-v8-values__rail article {
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
}

.jtd-about-v8-values__rail article::before,
.jtd-about-v8-future__grid article::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #e1251b;
}

.jtd-about-v8-future {
  background: #0f172a;
  color: #ffffff;
}

.jtd-about-v8-future__intro {
  max-width: 880px;
  margin-bottom: 36px;
}

.jtd-about-v8-future__intro h2,
.jtd-about-v8-future__grid h3 {
  color: #ffffff;
}

.jtd-about-v8-future__intro p,
.jtd-about-v8-future__grid p {
  color: rgba(255, 255, 255, 0.72);
}

.jtd-about-v8-future__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.jtd-about-v8-future__grid article {
  min-height: 214px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.jtd-about-v8-cta {
  background:
    radial-gradient(circle at 14% 24%, rgba(225, 37, 27, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.jtd-about-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(228, 231, 236, 0.88);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 86px -58px rgba(15, 23, 42, 0.46);
}

.jtd-about-v8-cta__box p {
  margin-left: 0;
}

.jtd-about-v8-cta .jtd-about-v8-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1120px) {
  .jtd-about-v8 .jtd-container {
    width: min(100% - 48px, 940px);
  }

  .jtd-about-v8-hero__grid,
  .jtd-about-v8-split,
  .jtd-about-v8-cta__box {
    grid-template-columns: 1fr;
  }

  .jtd-about-v8-sticky-copy {
    position: static;
  }

  .jtd-about-v8-position__ladder,
  .jtd-about-v8-capability__groups,
  .jtd-about-v8-values__rail,
  .jtd-about-v8-future__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-about-v8-timeline {
    grid-template-columns: 1fr;
  }

  .jtd-about-v8-timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  }

  .jtd-about-v8-timeline article:last-child {
    border-bottom: 0;
  }

  .jtd-about-v8-timeline article::after {
    right: auto;
    bottom: 0;
    left: 26px;
    width: 1px;
    height: calc(100% - 64px);
    background: linear-gradient(180deg, rgba(225, 37, 27, 0.28), rgba(47, 107, 255, 0.09));
  }
}

@media (max-width: 760px) {
  .jtd-about-v8 .jtd-container {
    width: min(100% - 28px, 620px);
  }

  .jtd-about-v8-hero {
    padding: 46px 0 38px;
  }

  .jtd-about-v8-hero__grid {
    gap: 24px;
  }

  .jtd-about-v8-hero__copy h1 {
    font-size: 29px;
    line-height: 1.14;
  }

  .jtd-about-v8-hero__copy > p:not(.jtd-about-v8-kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.68;
  }

  .jtd-about-v8-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .jtd-about-v8-actions .jtd-btn {
    justify-content: center;
    width: 100%;
    min-height: 42px;
  }

  .jtd-about-v8-platform {
    min-height: auto;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }

  .jtd-about-v8-platform::before {
    display: none;
  }

  .jtd-about-v8-platform strong {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 17px;
  }

  .jtd-about-v8-platform__nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .jtd-about-v8-platform__directions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .jtd-about-v8-platform__nodes span,
  .jtd-about-v8-platform__directions em {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .jtd-about-v8-position,
  .jtd-about-v8-origin,
  .jtd-about-v8-capability,
  .jtd-about-v8-evolution,
  .jtd-about-v8-proof,
  .jtd-about-v8-values,
  .jtd-about-v8-future,
  .jtd-about-v8-cta {
    padding: 58px 0;
  }

  .jtd-about-v8-headline {
    margin-bottom: 28px;
    text-align: left;
  }

  .jtd-about-v8-headline h2,
  .jtd-about-v8-sticky-copy h2,
  .jtd-about-v8-future__intro h2,
  .jtd-about-v8-cta__box h2 {
    font-size: 27px;
  }

  .jtd-about-v8-headline p,
  .jtd-about-v8-sticky-copy p,
  .jtd-about-v8-future__intro p,
  .jtd-about-v8-cta__box p,
  .jtd-about-v8-note {
    margin-left: 0;
    font-size: 15px;
    text-align: left;
  }

  .jtd-about-v8-position__ladder,
  .jtd-about-v8-capability__groups,
  .jtd-about-v8-proof__grid,
  .jtd-about-v8-values__rail,
  .jtd-about-v8-future__grid {
    grid-template-columns: 1fr;
  }

  .jtd-about-v8-position__ladder article,
  .jtd-about-v8-origin__list article,
  .jtd-about-v8-proof__grid article,
  .jtd-about-v8-values__rail article,
  .jtd-about-v8-future__grid article,
  .jtd-about-v8-capability__groups article {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-about-v8-proof__grid article:last-child {
    grid-column: auto;
  }

  .jtd-about-v8-timeline {
    border-radius: 22px;
  }

  .jtd-about-v8-timeline article {
    padding: 22px 20px 22px 46px;
  }

  .jtd-about-v8-timeline span {
    margin-bottom: 16px;
  }

  .jtd-about-v8-timeline article::before {
    top: 28px;
    left: 20px;
  }

  .jtd-about-v8-timeline article::after {
    top: 38px;
    left: 24px;
    height: calc(100% - 32px);
  }

  .jtd-about-v8-cta__box {
    gap: 22px;
    padding: 24px;
    border-radius: 22px;
  }

  .jtd-about-v8-cta .jtd-about-v8-actions {
    justify-content: stretch;
  }
}

/* End JTD About V8 */

/* ==========================================================================
   JTD News V8 - Digital Travel Insights
   Scope: archive-jtd_news.php only
   ========================================================================== */

.jtd-news-v8 {
  --jtd-news-v8-red: #e1251b;
  --jtd-news-v8-blue: #2f6bff;
  --jtd-news-v8-ink: #101828;
  --jtd-news-v8-text: #344054;
  --jtd-news-v8-muted: #667085;
  --jtd-news-v8-line: #e4e7ec;
  --jtd-news-v8-bg: #f6f8fb;
  overflow: hidden;
  background: var(--jtd-news-v8-bg);
  color: var(--jtd-news-v8-text);
}

.jtd-news-v8 .jtd-container {
  width: min(1180px, calc(100% - 72px));
  max-width: none;
}

.jtd-news-v8-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 107, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(225, 37, 27, 0.055), transparent 26%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 50%, #f5f9ff 100%);
}

.jtd-news-v8-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(47, 107, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, transparent 100%);
}

.jtd-news-v8-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
}

.jtd-news-v8-hero .jtd-breadcrumb {
  display: none;
}

.jtd-news-v8-kicker,
.jtd-news-v8-headline > span,
.jtd-news-v8-sticky-copy > span,
.jtd-news-v8-cta__box > div > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.055);
  color: var(--jtd-news-v8-red);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
}

.jtd-news-v8-hero__copy h1 {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--jtd-news-v8-ink);
  font-size: clamp(40px, 3.8vw, 56px);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: 0;
}

.jtd-news-v8-hero__copy > p:not(.jtd-news-v8-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.78;
}

.jtd-news-v8-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.jtd-news-v8 .jtd-btn {
  min-height: 46px;
  border-radius: 999px;
}

.jtd-news-v8-panel {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 404px;
  padding: 30px;
  border: 1px solid rgba(228, 231, 236, 0.82);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 253, 255, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(47, 107, 255, 0.12), transparent 42%);
  box-shadow: 0 28px 86px -62px rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(18px);
}

.jtd-news-v8-panel::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 34px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 107, 255, 0.34), transparent);
  pointer-events: none;
}

.jtd-news-v8-panel strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 0 22px;
  border: 1px solid rgba(225, 37, 27, 0.2);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff8f7);
  color: var(--jtd-news-v8-red);
  font-size: 22px;
  font-weight: 780;
  text-align: center;
  box-shadow: 0 18px 48px -36px rgba(225, 37, 27, 0.34);
}

.jtd-news-v8-panel__columns,
.jtd-news-v8-panel__directions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.jtd-news-v8-panel__columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jtd-news-v8-panel__directions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 8px;
}

.jtd-news-v8-panel__columns span,
.jtd-news-v8-panel__directions em {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid rgba(208, 213, 221, 0.76);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: #344054;
  font-size: 13px;
  font-style: normal;
  font-weight: 720;
  text-align: center;
  box-shadow: 0 12px 32px -28px rgba(15, 23, 42, 0.34);
}

.jtd-news-v8-panel__directions em {
  border-color: rgba(47, 107, 255, 0.2);
  background: rgba(47, 107, 255, 0.06);
  color: #2554c7;
}

.jtd-news-v8-topics,
.jtd-news-v8-featured,
.jtd-news-v8-latest,
.jtd-news-v8-assets,
.jtd-news-v8-boundary,
.jtd-news-v8-cta {
  padding: 84px 0;
}

.jtd-news-v8-featured,
.jtd-news-v8-assets,
.jtd-news-v8-cta {
  background: #ffffff;
}

.jtd-news-v8-headline {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.jtd-news-v8-headline h2,
.jtd-news-v8-sticky-copy h2,
.jtd-news-v8-cta__box h2 {
  margin: 14px 0 0;
  color: var(--jtd-news-v8-ink);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: 0;
}

.jtd-news-v8-headline p,
.jtd-news-v8-sticky-copy p,
.jtd-news-v8-cta__box p {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--jtd-news-v8-muted);
  font-size: 17px;
  line-height: 1.76;
}

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

.jtd-news-v8-topic-grid article,
.jtd-news-v8-featured__grid article,
.jtd-news-v8-asset-grid article,
.jtd-news-v8-boundary__list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 70px -58px rgba(15, 23, 42, 0.42);
}

.jtd-news-v8-topic-grid article {
  min-height: 210px;
  padding: 24px;
}

.jtd-news-v8-topic-grid article::before,
.jtd-news-v8-asset-grid article::before,
.jtd-news-v8-boundary__list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--jtd-news-v8-red), rgba(47, 107, 255, 0.36));
}

.jtd-news-v8-topic-grid article > span,
.jtd-news-v8-asset-grid article > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(225, 37, 27, 0.07);
  color: var(--jtd-news-v8-red);
  font-size: 12px;
  font-weight: 760;
}

.jtd-news-v8-topic-grid h3,
.jtd-news-v8-featured__grid h3,
.jtd-news-v8-latest__body h3,
.jtd-news-v8-asset-grid h3,
.jtd-news-v8-boundary__list h3 {
  margin: 18px 0 0;
  color: var(--jtd-news-v8-ink);
  font-size: 21px;
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: 0;
}

.jtd-news-v8-featured__grid h3 a,
.jtd-news-v8-latest__body h3 a {
  color: inherit;
  text-decoration: none;
}

.jtd-news-v8-topic-grid p,
.jtd-news-v8-featured__grid p,
.jtd-news-v8-latest__body p,
.jtd-news-v8-asset-grid p,
.jtd-news-v8-boundary__list p {
  margin: 12px 0 0;
  color: var(--jtd-news-v8-muted);
  font-size: 15px;
  line-height: 1.7;
}

.jtd-news-v8-featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 16px;
}

.jtd-news-v8-featured__grid article {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.jtd-news-v8-featured__grid article.is-primary {
  grid-row: span 2;
  min-height: 490px;
  border-color: rgba(225, 37, 27, 0.2);
  background:
    radial-gradient(circle at 14% 0%, rgba(225, 37, 27, 0.08), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fffafa 100%);
}

.jtd-news-v8-featured__grid article.is-placeholder {
  border-style: dashed;
  background: rgba(248, 250, 252, 0.78);
}

.jtd-news-v8-featured__grid article.is-primary h3 {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
}

.jtd-news-v8-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.jtd-news-v8-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(208, 213, 221, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.jtd-news-v8-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 20px;
  color: var(--jtd-news-v8-red);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.jtd-news-v8-link::after {
  content: "→";
  transform: translateY(-1px);
}

.jtd-news-v8-latest__list {
  display: grid;
  gap: 14px;
}

.jtd-news-v8-latest__list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 58px -52px rgba(15, 23, 42, 0.38);
}

.jtd-news-v8-latest__date {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-radius: 20px;
  background: #fff7f6;
  color: var(--jtd-news-v8-red);
  text-align: center;
}

.jtd-news-v8-latest__date strong {
  font-size: 24px;
  line-height: 1;
}

.jtd-news-v8-latest__date span {
  margin-top: 6px;
  color: #9a2a23;
  font-size: 12px;
  font-weight: 700;
}

.jtd-news-v8-latest__body h3 {
  margin-top: 12px;
}

.jtd-news-v8-empty {
  grid-template-columns: 1fr !important;
}

.jtd-news-v8-asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.jtd-news-v8-asset-grid article {
  min-height: 220px;
  padding: 24px;
}

.jtd-news-v8-boundary__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.jtd-news-v8-sticky-copy {
  position: sticky;
  top: 110px;
}

.jtd-news-v8-sticky-copy h2,
.jtd-news-v8-sticky-copy p {
  margin-left: 0;
}

.jtd-news-v8-boundary__list {
  display: grid;
  gap: 14px;
}

.jtd-news-v8-boundary__list article {
  padding: 24px 24px 24px 28px;
}

.jtd-news-v8-boundary__list h3 {
  margin-top: 0;
}

.jtd-news-v8-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(228, 231, 236, 0.78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 14%, rgba(225, 37, 27, 0.09), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 32px 94px -70px rgba(15, 23, 42, 0.52);
}

.jtd-news-v8-cta__box h2,
.jtd-news-v8-cta__box p {
  margin-left: 0;
}

.jtd-news-v8-cta__box p {
  max-width: 780px;
}

@media (max-width: 1080px) {
  .jtd-news-v8-hero__grid,
  .jtd-news-v8-boundary__grid,
  .jtd-news-v8-cta__box {
    grid-template-columns: 1fr;
  }

  .jtd-news-v8-panel {
    min-height: auto;
  }

  .jtd-news-v8-topic-grid,
  .jtd-news-v8-asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-news-v8-featured__grid {
    grid-template-columns: 1fr;
  }

  .jtd-news-v8-featured__grid article.is-primary {
    grid-row: auto;
    min-height: 320px;
  }

  .jtd-news-v8-sticky-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .jtd-news-v8 .jtd-container {
    width: min(100% - 32px, 1180px);
  }

  .jtd-news-v8-hero {
    padding: 56px 0 48px;
  }

  .jtd-news-v8-hero__grid {
    gap: 28px;
  }

  .jtd-news-v8-hero__copy h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .jtd-news-v8-hero__copy > p:not(.jtd-news-v8-kicker),
  .jtd-news-v8-headline p,
  .jtd-news-v8-sticky-copy p,
  .jtd-news-v8-cta__box p {
    font-size: 15px;
    line-height: 1.72;
  }

  .jtd-news-v8-panel {
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
  }

  .jtd-news-v8-panel strong {
    min-height: 66px;
    font-size: 19px;
  }

  .jtd-news-v8-panel__columns,
  .jtd-news-v8-panel__directions,
  .jtd-news-v8-topic-grid,
  .jtd-news-v8-asset-grid {
    grid-template-columns: 1fr;
  }

  .jtd-news-v8-panel__columns span,
  .jtd-news-v8-panel__directions em {
    min-height: 42px;
  }

  .jtd-news-v8-topics,
  .jtd-news-v8-featured,
  .jtd-news-v8-latest,
  .jtd-news-v8-assets,
  .jtd-news-v8-boundary,
  .jtd-news-v8-cta {
    padding: 56px 0;
  }

  .jtd-news-v8-headline {
    margin-bottom: 26px;
    text-align: left;
  }

  .jtd-news-v8-headline h2,
  .jtd-news-v8-sticky-copy h2,
  .jtd-news-v8-cta__box h2 {
    font-size: 28px;
  }

  .jtd-news-v8-headline p {
    margin-left: 0;
  }

  .jtd-news-v8-topic-grid article,
  .jtd-news-v8-featured__grid article,
  .jtd-news-v8-asset-grid article,
  .jtd-news-v8-boundary__list article {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-news-v8-featured__grid article.is-primary {
    min-height: auto;
  }

  .jtd-news-v8-featured__grid article.is-primary h3 {
    font-size: 27px;
  }

  .jtd-news-v8-latest__list article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
  }

  .jtd-news-v8-latest__date {
    display: flex;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
  }

  .jtd-news-v8-actions {
    align-items: stretch;
  }

  .jtd-news-v8-actions .jtd-btn {
    width: 100%;
    justify-content: center;
  }

  .jtd-news-v8-cta__box {
    gap: 22px;
    padding: 24px;
    border-radius: 22px;
  }
}

/* End JTD News V8 */

/* ==========================================================================
   JTD Home V8.1 - Hero Scenario Polish
   Scope: front-page.php only
   ========================================================================== */

.jtd-flow-os .jtd-flow-scenario-switch {
  display: flex;
  gap: 8px;
  margin: -6px 0 14px;
}

.jtd-flow-os .jtd-flow-scenario-chip {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  flex: 1 1 0;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  min-height: 36px;
  padding: 9px 12px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.jtd-flow-os .jtd-flow-scenario-chip.is-active,
.jtd-flow-os .jtd-flow-scenario-chip:hover,
.jtd-flow-os .jtd-flow-scenario-chip:focus-visible {
  background: rgba(225, 37, 27, 0.22);
  border-color: rgba(255, 102, 93, 0.58);
  color: #ffffff;
}

.jtd-flow-os .jtd-flow-scenario-panels {
  margin-bottom: 10px;
}

.jtd-flow-os .jtd-flow-scenario-panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px;
}

.jtd-flow-os .jtd-flow-scenario-panel[hidden] {
  display: none;
}

.jtd-flow-os .jtd-flow-scenario-panel p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.58;
  margin: 0;
}

.jtd-flow-os .jtd-flow-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.jtd-flow-os .jtd-flow-scenario-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 9px;
}

.jtd-flow-os .jtd-flow-route {
  min-height: 154px;
  padding: 19px 0;
}

.jtd-flow-os .jtd-state-stream {
  gap: 12px;
  padding-top: 18px;
}

@media (max-width: 700px) {
  .jtd-flow-os .jtd-flow-os-hero {
    padding: 46px 0 12px;
  }

  .jtd-flow-os .jtd-flow-hero-wrap {
    gap: 20px;
  }

  .jtd-flow-os .jtd-flow-kicker {
    font-size: 12px;
    margin-bottom: 11px;
  }

  .jtd-flow-os .jtd-system-anchor h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .jtd-flow-os .jtd-system-anchor__value {
    font-size: 19px;
    line-height: 1.34;
    margin-top: 16px;
  }

  .jtd-flow-os .jtd-system-anchor__copy {
    font-size: 15px;
    line-height: 1.62;
    margin-top: 11px;
  }

  .jtd-flow-os .jtd-system-anchor__en {
    display: none;
  }

  .jtd-flow-os .jtd-flow-action-links {
    gap: 10px;
    margin-top: 18px;
  }

  .jtd-flow-os .jtd-flow-action-links .jtd-btn {
    min-height: 44px;
    padding: 11px 18px;
  }

  .jtd-flow-os .jtd-flow-os-hero .jtd-hero-weak-link {
    display: none;
  }

  .jtd-flow-os .jtd-flow-core-anchor {
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 14px;
  }

  .jtd-flow-os .jtd-flow-anchor-label {
    gap: 4px;
    margin-bottom: 12px;
  }

  .jtd-flow-os .jtd-flow-anchor-label strong {
    font-size: 18px;
  }

  .jtd-flow-os .jtd-flow-anchor-label small {
    display: none;
  }

  .jtd-flow-os .jtd-flow-scenario-switch {
    gap: 6px;
    margin: 0 0 10px;
  }

  .jtd-flow-os .jtd-flow-scenario-chip {
    font-size: 12px;
    min-height: 34px;
    padding: 8px 7px;
  }

  .jtd-flow-os .jtd-flow-scenario-panel {
    border-radius: 14px;
    padding: 10px 11px;
  }

  .jtd-flow-os .jtd-flow-scenario-panel p {
    font-size: 12px;
    line-height: 1.48;
  }

  .jtd-flow-os .jtd-flow-scenario-tags {
    display: none;
  }

  .jtd-flow-os .jtd-flow-route {
    gap: 7px;
    margin-left: -14px;
    margin-right: -14px;
    min-height: 106px;
    padding: 16px 14px;
  }

  .jtd-flow-os .jtd-flow-route::before,
  .jtd-flow-os .jtd-flow-route::after {
    left: 24px;
    right: 24px;
  }

  .jtd-flow-os .jtd-flow-route button {
    flex-basis: 64px;
    gap: 5px;
  }

  .jtd-flow-os .jtd-flow-route button i {
    border-width: 2px;
    height: 14px;
    width: 14px;
  }

  .jtd-flow-os .jtd-flow-route button strong {
    font-size: 12px;
  }

  .jtd-flow-os .jtd-flow-route button span,
  .jtd-flow-os .jtd-flow-route button em {
    display: none;
  }

  .jtd-flow-os .jtd-state-stream {
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
  }

  .jtd-flow-os .jtd-state-stream span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 8px;
  }

  .jtd-flow-os .jtd-state-stream em strong {
    font-size: 10px;
  }

  .jtd-flow-os .jtd-state-stream em i,
  .jtd-flow-os .jtd-state-stream small {
    display: none;
  }

  .jtd-flow-os .jtd-state-stream b {
    font-size: 14px;
    margin-top: 4px;
    white-space: nowrap;
  }

  .jtd-flow-os .jtd-hero-system-signature {
    display: none;
  }
}

/* End JTD Home V8.1 Hero Scenario Polish */

/* ==========================================================================
   JTD Home V8.1.1 - Hero State Number Fix
   Scope: front-page.php only
   ========================================================================== */

@media (min-width: 701px) {
  .jtd-flow-os .jtd-flow-core-anchor .jtd-state-stream {
    gap: 8px;
    grid-template-columns: minmax(76px, 0.82fr) minmax(72px, 0.72fr) minmax(116px, 1.12fr) minmax(116px, 1.12fr) minmax(72px, 0.72fr);
  }

  .jtd-flow-os .jtd-flow-core-anchor .jtd-state-stream span {
    min-width: 0;
    overflow: hidden;
  }

  .jtd-flow-os .jtd-flow-core-anchor .jtd-state-stream em strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .jtd-flow-os .jtd-flow-core-anchor .jtd-state-stream em i {
    font-size: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .jtd-flow-os .jtd-flow-core-anchor .jtd-state-stream b {
    font-size: clamp(14px, 1.05vw, 18px);
    font-variant-numeric: tabular-nums;
    line-height: 1.12;
    margin-top: 7px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }

  .jtd-flow-os .jtd-flow-core-anchor .jtd-state-stream small {
    font-size: 10px;
    margin-top: 5px;
  }
}

/* End JTD Home V8.1.1 Hero State Number Fix */

/* ==========================================================================
   JTD V8.1 - Mega Menu and Content Detail Polish
   Scope: header.php, page-about.php, visible V8 evidence copy
   ========================================================================== */

.jtd-site-header .jtd-mega-panel,
.jtd-site-header .jtd-mega-menu {
  background: rgba(255, 255, 255, 0.992) !important;
  border-color: rgba(226, 232, 240, 0.96) !important;
  box-shadow: 0 30px 76px -48px rgba(15, 23, 42, 0.5), 0 1px 0 rgba(255, 255, 255, 0.92) inset !important;
  backdrop-filter: blur(8px) saturate(1.02) !important;
}

.jtd-site-header .jtd-has-mega:first-child > .jtd-mega-menu {
  background: rgba(255, 255, 255, 0.992) !important;
}

.jtd-site-header .jtd-mega-menu::after,
.jtd-site-header .jtd-mega-menu__grid--products::before,
.jtd-site-header .jtd-mega-menu__grid--products::after,
.jtd-site-header .jtd-mega-menu a span::before {
  content: none !important;
  display: none !important;
}

.jtd-site-header .jtd-mega-menu__grid,
.jtd-site-header .jtd-mega-menu__grid--solutions,
.jtd-site-header .jtd-mega-menu__grid--partners {
  align-items: stretch !important;
  gap: 16px !important;
}

.jtd-site-header .jtd-mega-menu__grid--solutions,
.jtd-site-header .jtd-mega-menu__grid--partners {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.jtd-site-header .jtd-mega-item {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  min-height: 0 !important;
  margin: 4px 0 !important;
  padding: 12px !important;
  border: 1px solid transparent !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #101828 !important;
  text-decoration: none !important;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease !important;
}

.jtd-site-header .jtd-mega-item:hover,
.jtd-site-header .jtd-mega-item:focus-visible {
  background: rgba(248, 250, 252, 0.96) !important;
  border-color: rgba(225, 37, 27, 0.18) !important;
  box-shadow: 0 16px 38px -30px rgba(15, 23, 42, 0.42) !important;
  transform: translateY(-1px) !important;
}

.jtd-site-header .jtd-mega-item-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(226, 232, 240, 0.92) !important;
  border-radius: 13px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: #94a3b8 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.jtd-site-header .jtd-mega-item:hover .jtd-mega-item-icon,
.jtd-site-header .jtd-mega-item:focus-visible .jtd-mega-item-icon {
  border-color: rgba(225, 37, 27, 0.24) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%) !important;
  color: #e1251b !important;
}

.jtd-site-header .jtd-mega-item-icon svg {
  display: block !important;
  width: 19px !important;
  height: 19px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.75 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.jtd-site-header .jtd-mega-item-copy {
  display: block !important;
  min-width: 0 !important;
}

.jtd-site-header .jtd-mega-item-copy strong {
  display: block !important;
  color: #101828 !important;
  font-size: 14px !important;
  font-weight: 760 !important;
  line-height: 1.34 !important;
}

.jtd-site-header .jtd-mega-item-copy small {
  display: block !important;
  margin-top: 4px !important;
  color: #64748b !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.jtd-about-v8 .jtd-about-v8-origin {
  padding: 76px 0 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__shell {
  display: grid !important;
  gap: 28px !important;
}

.jtd-about-v8 .jtd-about-v8-origin__intro {
  max-width: 980px !important;
}

.jtd-about-v8 .jtd-about-v8-origin__intro span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
  color: #e1251b !important;
  font-size: 13px !important;
  font-weight: 820 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__intro span::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #e1251b !important;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.1) !important;
}

.jtd-about-v8 .jtd-about-v8-origin__intro h2 {
  max-width: 860px !important;
  margin: 0 !important;
  color: #101828 !important;
  font-size: clamp(30px, 2.4vw, 38px) !important;
  font-weight: 780 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__intro p {
  max-width: 900px !important;
  margin: 16px 0 0 !important;
  color: #667085 !important;
  font-size: 16px !important;
  line-height: 1.74 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix {
  position: relative !important;
  overflow: hidden !important;
  padding: 22px !important;
  border: 1px solid rgba(228, 231, 236, 0.9) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 24px 70px -54px rgba(15, 23, 42, 0.5) !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix-head {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 18px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(228, 231, 236, 0.82) !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix-head strong {
  color: #101828 !important;
  font-size: 18px !important;
  font-weight: 780 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix-head small {
  color: #98a2b3 !important;
  font-size: 12px !important;
  font-weight: 720 !important;
  text-transform: uppercase !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list article {
  display: flex !important;
  min-height: 224px !important;
  flex-direction: column !important;
  padding: 18px !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.84)) !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list b {
  width: fit-content !important;
  margin-bottom: 18px !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: rgba(225, 37, 27, 0.08) !important;
  color: #e1251b !important;
  font-size: 12px !important;
  font-weight: 820 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list h3 {
  font-size: 17px !important;
  line-height: 1.32 !important;
}

.jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list p {
  margin-top: 10px !important;
  font-size: 14px !important;
  line-height: 1.62 !important;
}

@media (max-width: 1180px) {
  .jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1024px) {
  .jtd-site-header .jtd-mega-menu__grid--solutions,
  .jtd-site-header .jtd-mega-menu__grid--partners {
    grid-template-columns: 1fr !important;
  }

  .jtd-site-header .jtd-mega-item {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    margin: 0 !important;
    padding: 10px !important;
  }

  .jtd-site-header .jtd-mega-item-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
  }
}

@media (max-width: 760px) {
  .jtd-about-v8 .jtd-about-v8-origin {
    padding: 54px 0 !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__shell {
    gap: 22px !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__intro h2 {
    font-size: 27px !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__intro p {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__matrix {
    padding: 14px !important;
    border-radius: 22px !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__matrix-head {
    display: block !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__matrix-head small {
    display: block !important;
    margin-top: 5px !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list {
    grid-template-columns: 1fr !important;
  }

  .jtd-about-v8 .jtd-about-v8-origin__matrix .jtd-about-v8-origin__list article {
    min-height: auto !important;
    padding: 18px !important;
  }
}

/* End JTD V8.1 Mega Menu and Content Detail Polish */

/* ==========================================================================
   JTD V8.1.2 - Evidence Copy and Result Headline Polish
   Scope: front-page.php, archive-jtd_case.php
   ========================================================================== */

.jtd-flow-os .jtd-flow-trust-strip__item--metric strong {
  font-size: 20px;
  line-height: 1.24;
}

.jtd-flow-os .jtd-evidence-signal {
  gap: 8px;
}

.jtd-flow-os .jtd-evidence-signal strong {
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 0.98;
}

.jtd-flow-os .jtd-evidence-signal span {
  font-size: 18px;
  line-height: 1.32;
}

.jtd-flow-os .jtd-evidence-signal small {
  color: rgba(102, 112, 133, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.jtd-cases-v8 .jtd-cases-v8-proof-grid strong {
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.08;
}

.jtd-cases-v8 .jtd-cases-v8-proof-grid p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.38;
}

.jtd-cases-v8 .jtd-cases-v8-proof-grid span {
  margin-top: 16px;
  color: rgba(47, 95, 212, 0.78);
  font-size: 12px;
}

.jtd-cases-v8 .jtd-cases-v8-evidence__result {
  gap: 10px;
}

.jtd-cases-v8 .jtd-cases-v8-evidence__result strong {
  font-size: clamp(28px, 2.1vw, 36px);
  line-height: 1.04;
}

.jtd-cases-v8 .jtd-cases-v8-evidence__result span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.52;
}

@media (max-width: 760px) {
  .jtd-flow-os .jtd-flow-trust-strip__item--metric strong {
    font-size: 18px;
  }

  .jtd-flow-os .jtd-evidence-signal {
    gap: 7px;
  }

  .jtd-flow-os .jtd-evidence-signal strong {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1;
  }

  .jtd-flow-os .jtd-evidence-signal span {
    font-size: 16px;
  }

  .jtd-cases-v8 .jtd-cases-v8-proof-grid strong,
  .jtd-cases-v8 .jtd-cases-v8-evidence__result strong {
    font-size: clamp(26px, 7.2vw, 31px);
  }

  .jtd-cases-v8 .jtd-cases-v8-proof-grid p {
    font-size: 15px;
  }
}

/* End JTD V8.1.2 Evidence Copy and Result Headline Polish */

/* ==========================================================================
   JTD V8.1.2 - Header Mega, Evidence Copy and Footer Polish
   Scope: header.php, footer.php, front-page.php, archive-jtd_case.php
   ========================================================================== */

.jtd-site-header .jtd-header__inner {
  min-height: 60px !important;
  gap: 20px !important;
}

.jtd-site-header .jtd-primary-nav__item > a,
.jtd-site-header .jtd-nav-row > a {
  min-height: 60px !important;
}

.jtd-site-header .jtd-header__actions {
  align-items: center !important;
  gap: 10px !important;
}

.jtd-site-header .jtd-language-switcher a {
  height: 26px !important;
  min-width: 26px !important;
}

.jtd-site-header .jtd-btn {
  min-height: 38px !important;
  padding-inline: 15px !important;
}

.jtd-site-header .jtd-mega-panel,
.jtd-site-header .jtd-mega-menu {
  top: 60px !important;
  background: rgba(255, 255, 255, 0.996) !important;
  backdrop-filter: blur(6px) saturate(1.01) !important;
  -webkit-backdrop-filter: blur(6px) saturate(1.01) !important;
}

.jtd-site-header .jtd-mega-item {
  position: relative !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  padding: 12px 14px 12px 16px !important;
  border-color: rgba(226, 232, 240, 0.58) !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

.jtd-site-header .jtd-mega-item::before {
  content: "" !important;
  position: absolute !important;
  top: 14px !important;
  bottom: 14px !important;
  left: 8px !important;
  width: 2px !important;
  border-radius: 999px !important;
  background: transparent !important;
  transition: background 160ms ease !important;
}

.jtd-site-header .jtd-mega-item:hover::before,
.jtd-site-header .jtd-mega-item:focus-visible::before {
  background: rgba(225, 37, 27, 0.62) !important;
}

.jtd-site-header .jtd-mega-item-icon {
  display: none !important;
}

.jtd-site-header .jtd-mega-item-copy strong {
  font-size: 14px !important;
  line-height: 1.28 !important;
}

.jtd-site-header .jtd-mega-item-copy small {
  margin-top: 5px !important;
  font-size: 12px !important;
  line-height: 1.46 !important;
}

.jtd-flow-os .jtd-flow-trust-strip__item--metric strong {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.jtd-flow-os .jtd-evidence-signal strong {
  font-size: clamp(38px, 3vw, 48px) !important;
  line-height: 1.12 !important;
}

.jtd-flow-os .jtd-evidence-signal span {
  margin-top: 2px !important;
  font-size: 17px !important;
  line-height: 1.34 !important;
}

.jtd-flow-os .jtd-evidence-signal small {
  color: rgba(102, 112, 133, 0.62) !important;
  font-size: 10.5px !important;
  font-weight: 680 !important;
}

.jtd-cases-v8 .jtd-cases-v8-proof-grid strong {
  font-size: clamp(36px, 3vw, 42px) !important;
  line-height: 1.12 !important;
}

.jtd-cases-v8 .jtd-cases-v8-proof-grid p {
  margin-top: 10px !important;
  font-size: 16px !important;
}

.jtd-cases-v8 .jtd-cases-v8-proof-grid span {
  margin-top: 14px !important;
  font-size: 12px !important;
}

.jtd-cases-v8 .jtd-cases-v8-evidence__result strong {
  font-size: clamp(28px, 2.2vw, 36px) !important;
  line-height: 1.12 !important;
}

.jtd-cases-v8 .jtd-cases-v8-evidence__result span {
  color: rgba(255, 255, 255, 0.7) !important;
}

.jtd-site-footer {
  margin-top: 56px !important;
  overflow: visible !important;
}

.jtd-site-footer .jtd-footer__top-wrap {
  position: relative !important;
  z-index: 2 !important;
  transform: translateY(-56px) !important;
  margin-bottom: -22px !important;
}

.jtd-site-footer .jtd-footer__top {
  background:
    radial-gradient(circle at 86% 18%, rgba(225, 37, 27, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.96)) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 34px 86px -50px rgba(15, 23, 42, 0.78) !important;
}

.jtd-site-footer .jtd-footer__grid {
  position: relative !important;
  z-index: 1 !important;
  padding-top: 24px !important;
}

@media (max-width: 1024px) {
  .jtd-site-header .jtd-header__inner {
    min-height: 60px !important;
  }

  .jtd-site-header .jtd-mega-menu {
    top: auto !important;
  }

  .jtd-site-header .jtd-mega-item {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 11px 14px 11px 16px !important;
  }
}

@media (max-width: 760px) {
  .jtd-flow-os .jtd-flow-trust-strip__item--metric strong {
    font-size: 17px !important;
  }

  .jtd-flow-os .jtd-evidence-signal strong {
    font-size: clamp(28px, 7.5vw, 34px) !important;
    line-height: 1.12 !important;
  }

  .jtd-flow-os .jtd-evidence-signal span {
    font-size: 15px !important;
  }

  .jtd-cases-v8 .jtd-cases-v8-proof-grid strong,
  .jtd-cases-v8 .jtd-cases-v8-evidence__result strong {
    font-size: clamp(28px, 7vw, 33px) !important;
  }

  .jtd-site-footer {
    margin-top: 32px !important;
  }

  .jtd-site-footer .jtd-footer__top-wrap {
    transform: translateY(-30px) !important;
    margin-bottom: -6px !important;
  }

  .jtd-site-footer .jtd-footer__top {
    padding: 30px 22px !important;
  }

  .jtd-site-footer .jtd-footer__grid {
    padding-top: 12px !important;
  }
}

/* End JTD V8.1.2 Header Mega Evidence Footer Polish */

/* ==========================================================================
   JTD V8.1.3 - Mega Background and Language Entry Polish
   Scope: header.php only
   ========================================================================== */

.jtd-site-header .jtd-mega-panel,
.jtd-site-header .jtd-mega-menu {
  position: absolute !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998), rgba(255, 255, 255, 0.982)) !important;
}

.jtd-site-header .jtd-mega-menu::before {
  content: "" !important;
  position: absolute !important;
  inset: 16px !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none !important;
  opacity: 0.055 !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(225, 37, 27, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 34%, rgba(47, 107, 255, 0.74) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.34) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.28) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(225, 37, 27, 0.42) 46.5% 47%, transparent 47.5% 100%) !important;
  background-size: 160px 120px, 180px 140px, 42px 42px, 42px 42px, 220px 160px !important;
  border-radius: 22px !important;
}

.jtd-site-header .jtd-mega-menu__grid,
.jtd-site-header .jtd-mega-menu__cta,
.jtd-site-header .jtd-mega-menu h3,
.jtd-site-header .jtd-mega-item {
  position: relative !important;
  z-index: 1 !important;
}

.jtd-site-header .jtd-mega-item {
  background: rgba(255, 255, 255, 0.9) !important;
}

.jtd-site-header .jtd-language-switcher--v813 {
  gap: 3px !important;
  border-color: rgba(226, 232, 240, 0.92) !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.jtd-site-header .jtd-language-switcher--v813 a {
  min-width: 27px !important;
  height: 26px !important;
  padding: 0 7px !important;
  color: #667085 !important;
  font-size: 11px !important;
  font-weight: 780 !important;
}

.jtd-site-header .jtd-language-switcher--v813 a[aria-current="page"] {
  background: #e1251b !important;
  color: #ffffff !important;
}

.jtd-site-header .jtd-language-switcher--v813 a[aria-disabled="true"] {
  cursor: help !important;
  opacity: 0.86 !important;
}

.jtd-site-header .jtd-language-switcher--v813 a[aria-disabled="true"]:hover,
.jtd-site-header .jtd-language-switcher--v813 a[aria-disabled="true"]:focus-visible {
  background: rgba(225, 37, 27, 0.07) !important;
  color: #475467 !important;
}

@media (max-width: 1024px) {
  .jtd-site-header .jtd-language-switcher--nav.jtd-language-switcher--v813 {
    max-width: 260px !important;
  }

  .jtd-site-header .jtd-language-switcher--v813 a {
    min-width: 42px !important;
  }

  .jtd-site-header .jtd-mega-menu::before {
    display: none !important;
  }
}

/* End JTD V8.1.3 Mega Background Language Polish */

/* ==========================================================================
   JTD V8.1.4 - Product Mega Density Polish
   Scope: header.php only
   ========================================================================== */

@media (min-width: 1025px) {
  .jtd-site-header .jtd-mega-menu--products {
    width: min(calc(100vw - 48px), 1040px) !important;
    padding: 16px !important;
  }

  .jtd-site-header .jtd-mega-menu--products::before {
    inset: 14px !important;
    opacity: 0.045 !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-menu__grid--products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(218px, 0.76fr) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-product-group {
    display: grid !important;
    gap: 7px !important;
    align-content: start !important;
  }

  .jtd-site-header .jtd-mega-menu--products h3 {
    margin-bottom: 2px !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-item {
    margin: 0 !important;
    min-height: 0 !important;
    padding: 9px 11px 9px 14px !important;
    border-radius: 13px !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-item::before {
    top: 11px !important;
    bottom: 11px !important;
    left: 7px !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-item-copy strong {
    font-size: 13.5px !important;
    line-height: 1.22 !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-item-copy small {
    margin-top: 3px !important;
    font-size: 11.5px !important;
    line-height: 1.36 !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-menu__cta {
    align-self: stretch !important;
    display: grid !important;
    align-content: center !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .jtd-site-header .jtd-mega-menu--products .jtd-mega-menu__cta p {
    margin-bottom: 12px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}

/* End JTD V8.1.4 Product Mega Density Polish */

/* ==========================================================================
   JTD V8.1.5 - Evidence Headline Scale Polish
   Scope: front-page.php evidence section
   ========================================================================== */

.jtd-flow-os .jtd-evidence-signal {
  gap: 6px !important;
}

.jtd-flow-os .jtd-evidence-signal strong {
  font-size: clamp(30px, 2.25vw, 36px) !important;
  font-weight: 760 !important;
  line-height: 1.18 !important;
}

.jtd-flow-os .jtd-evidence-signal span {
  margin-top: 1px !important;
  font-size: 15px !important;
  line-height: 1.38 !important;
}

.jtd-flow-os .jtd-evidence-signal small {
  margin-top: 2px !important;
  color: rgba(102, 112, 133, 0.56) !important;
  font-size: 10px !important;
  font-weight: 640 !important;
  line-height: 1.35 !important;
}

@media (max-width: 760px) {
  .jtd-flow-os .jtd-evidence-signal {
    gap: 5px !important;
  }

  .jtd-flow-os .jtd-evidence-signal strong {
    font-size: clamp(24px, 6.4vw, 28px) !important;
    line-height: 1.2 !important;
  }

  .jtd-flow-os .jtd-evidence-signal span {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}

/* End JTD V8.1.5 Evidence Headline Scale Polish */

/* ==========================================================================
   JTD V8.1.6 - Evidence Headline Scale Final Polish
   Scope: home and case evidence cards only
   ========================================================================== */

.jtd-flow-os .jtd-evidence-signal strong,
.jtd-cases-v8 .jtd-cases-v8-proof-grid strong,
.jtd-cases-v8 .jtd-cases-v8-evidence__result strong {
  font-size: clamp(28px, 2.1vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
}

.jtd-flow-os .jtd-evidence-signal span,
.jtd-cases-v8 .jtd-cases-v8-proof-grid p,
.jtd-cases-v8 .jtd-cases-v8-evidence__result span {
  margin-top: 6px !important;
}

@media (max-width: 760px) {
  .jtd-flow-os .jtd-evidence-signal strong,
  .jtd-cases-v8 .jtd-cases-v8-proof-grid strong,
  .jtd-cases-v8 .jtd-cases-v8-evidence__result strong {
    font-size: clamp(22px, 5.8vw, 24px) !important;
    line-height: 1.22 !important;
  }
}

/* End JTD V8.1.6 Evidence Headline Scale Final Polish */

/* ==========================================================================
   JTD Home V8.3 - Travel Operating Cloud Hero
   Scope: front-page.php only
   ========================================================================== */

.jtd-flow-os .jtd-flow-os-hero {
  background:
    radial-gradient(ellipse at 70% 18%, rgba(68, 111, 255, 0.18) 0%, rgba(68, 111, 255, 0.08) 32%, transparent 58%),
    radial-gradient(ellipse at 24% 54%, rgba(225, 37, 27, 0.075) 0%, rgba(225, 37, 27, 0.028) 30%, transparent 56%),
    radial-gradient(ellipse at 56% 92%, rgba(124, 92, 255, 0.11) 0%, rgba(124, 92, 255, 0.036) 34%, transparent 62%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8ff 48%, #edf5ff 100%);
}

.jtd-flow-os .jtd-flow-os-hero::before {
  background-image:
    linear-gradient(rgba(40, 68, 126, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 68, 126, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.84), transparent 31%),
    radial-gradient(circle at 80% 58%, rgba(255, 255, 255, 0.64), transparent 36%);
  background-size: 66px 66px, 66px 66px, auto, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 62%, transparent 96%);
  opacity: 0.96;
}

.jtd-flow-os .jtd-flow-os-hero::after {
  background:
    radial-gradient(circle at 72% 32%, rgba(77, 124, 255, 0.19), transparent 32%),
    radial-gradient(circle at 86% 58%, rgba(124, 92, 255, 0.12), transparent 34%),
    radial-gradient(circle at 21% 58%, rgba(225, 37, 27, 0.06), transparent 29%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.44) 48%, transparent 100%);
  opacity: 0.94;
}

.jtd-flow-os .jtd-flow-hero-wrap {
  position: relative;
}

.jtd-flow-os .jtd-operating-layer.jtd-travel-cloud {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.58) 42%, rgba(239, 246, 255, 0.24) 72%, transparent 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(239, 246, 255, 0.5));
  border: 1px solid rgba(201, 214, 239, 0.82);
  border-radius: 34px;
  box-shadow:
    0 30px 78px rgba(55, 83, 140, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.jtd-flow-os .jtd-operating-layer.jtd-travel-cloud::before {
  background:
    radial-gradient(circle at 24% 18%, rgba(225, 37, 27, 0.08), transparent 24%),
    radial-gradient(circle at 76% 22%, rgba(68, 111, 255, 0.16), transparent 30%),
    linear-gradient(rgba(47, 84, 156, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 84, 156, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  content: "";
  inset: 0;
  opacity: 0.94;
  pointer-events: none;
  position: absolute;
}

.jtd-flow-os .jtd-operating-layer.jtd-travel-cloud::after {
  background: linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, 0.55) 46%, transparent 72%);
  content: "";
  inset: -28%;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  transform: rotate(-7deg);
}

.jtd-flow-os .jtd-travel-cloud > * {
  position: relative;
  z-index: 1;
}

.jtd-flow-os .jtd-travel-cloud__label {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.jtd-flow-os .jtd-travel-cloud__label strong {
  color: #172033;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-flow-os .jtd-travel-cloud__label small {
  color: rgba(72, 84, 111, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.jtd-flow-os .jtd-travel-cloud-map {
  min-height: 398px;
  position: relative;
}

.jtd-flow-os .jtd-travel-cloud-flow {
  inset: 26px 18px 56px;
  pointer-events: none;
  position: absolute;
}

.jtd-flow-os .jtd-travel-cloud-flow::before,
.jtd-flow-os .jtd-travel-cloud-flow::after,
.jtd-flow-os .jtd-travel-cloud-flow span {
  border: 1px solid rgba(83, 117, 198, 0.18);
  border-radius: 999px;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.jtd-flow-os .jtd-travel-cloud-flow::before {
  height: 70%;
  width: 82%;
}

.jtd-flow-os .jtd-travel-cloud-flow::after {
  height: 46%;
  width: 58%;
}

.jtd-flow-os .jtd-travel-cloud-flow span:nth-child(1) {
  background: linear-gradient(90deg, transparent, rgba(225, 37, 27, 0.38), rgba(77, 124, 255, 0.34), transparent);
  border: 0;
  height: 2px;
  width: 88%;
}

.jtd-flow-os .jtd-travel-cloud-flow span:nth-child(2) {
  background: linear-gradient(180deg, transparent, rgba(77, 124, 255, 0.28), transparent);
  border: 0;
  height: 72%;
  width: 2px;
}

.jtd-flow-os .jtd-travel-cloud-flow span:nth-child(3) {
  border-color: rgba(225, 37, 27, 0.12);
  height: 82%;
  width: 46%;
}

.jtd-flow-os .jtd-travel-cloud-center {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(207, 218, 239, 0.95);
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(49, 75, 132, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 4px;
  justify-items: center;
  left: 50%;
  min-height: 126px;
  padding: 20px 26px;
  position: absolute;
  text-align: center;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(64%, 338px);
  z-index: 3;
}

.jtd-flow-os .jtd-travel-cloud-center i {
  background: var(--jtd-v8-red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(225, 37, 27, 0.09), 0 0 28px rgba(225, 37, 27, 0.18);
  height: 10px;
  width: 10px;
}

.jtd-flow-os .jtd-travel-cloud-center strong {
  color: #111827;
  font-size: 22px;
  font-weight: 880;
  line-height: 1.22;
}

.jtd-flow-os .jtd-travel-cloud-center small {
  color: rgba(38, 80, 180, 0.8);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.jtd-flow-os .jtd-travel-cloud-center em {
  color: rgba(72, 84, 111, 0.74);
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
  line-height: 1.45;
}

.jtd-flow-os .jtd-travel-cloud-node-field {
  inset: 0 0 66px;
  position: absolute;
}

.jtd-flow-os .jtd-travel-cloud-node {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(207, 218, 239, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(49, 75, 132, 0.1);
  color: #172033;
  cursor: pointer;
  display: inline-grid;
  gap: 1px 9px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 104px;
  padding: 10px 14px;
  position: absolute;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  z-index: 2;
}

.jtd-flow-os .jtd-travel-cloud-node:hover,
.jtd-flow-os .jtd-travel-cloud-node:focus-visible {
  border-color: rgba(225, 37, 27, 0.38);
  box-shadow: 0 18px 42px rgba(49, 75, 132, 0.14), 0 0 0 4px rgba(225, 37, 27, 0.06);
  transform: translateY(-2px);
}

.jtd-flow-os .jtd-travel-cloud-node i {
  background: rgba(77, 124, 255, 0.72);
  border-radius: 50%;
  grid-row: span 2;
  height: 9px;
  width: 9px;
}

.jtd-flow-os .jtd-travel-cloud-node--order i,
.jtd-flow-os .jtd-travel-cloud-node--finance i,
.jtd-flow-os .jtd-travel-cloud-node--insight i {
  background: var(--jtd-v8-red);
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.08);
}

.jtd-flow-os .jtd-travel-cloud-node strong {
  color: #172033;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
}

.jtd-flow-os .jtd-travel-cloud-node span {
  color: rgba(72, 84, 111, 0.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.jtd-flow-os .jtd-travel-cloud-node--resource {
  left: 3%;
  top: 43%;
}

.jtd-flow-os .jtd-travel-cloud-node--product {
  left: 18%;
  top: 13%;
}

.jtd-flow-os .jtd-travel-cloud-node--channel {
  left: 47%;
  top: 5%;
}

.jtd-flow-os .jtd-travel-cloud-node--order {
  right: 5%;
  top: 25%;
}

.jtd-flow-os .jtd-travel-cloud-node--contract {
  bottom: 25%;
  right: 10%;
}

.jtd-flow-os .jtd-travel-cloud-node--finance {
  bottom: 10%;
  left: 42%;
}

.jtd-flow-os .jtd-travel-cloud-node--insight {
  bottom: 25%;
  left: 8%;
}

.jtd-flow-os .jtd-travel-cloud-metrics {
  bottom: 4px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 0;
  position: absolute;
  right: 0;
  z-index: 4;
}

.jtd-flow-os .jtd-travel-cloud-metric {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(207, 218, 239, 0.86);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(49, 75, 132, 0.08);
  display: grid;
  min-width: 0;
  padding: 12px;
}

.jtd-flow-os .jtd-travel-cloud-metric em,
.jtd-flow-os .jtd-travel-cloud-metric small {
  color: rgba(72, 84, 111, 0.66);
  font-size: 10px;
  font-style: normal;
  font-weight: 780;
  line-height: 1.25;
}

.jtd-flow-os .jtd-travel-cloud-metric strong {
  color: #172033;
  font-size: 18px;
  font-weight: 880;
  line-height: 1.18;
  margin: 5px 0 3px;
}

.jtd-flow-os .jtd-travel-cloud-metric:first-child strong,
.jtd-flow-os .jtd-travel-cloud-metric:last-child strong {
  color: #d92d20;
}

.jtd-flow-os .jtd-travel-cloud-scenarios {
  margin-top: 16px;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-switch {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 218, 239, 0.9);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  display: flex;
  gap: 6px;
  margin: 0 0 10px;
  padding: 5px;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-chip {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(54, 65, 90, 0.72);
  flex: 1 1 0;
  font-size: 13px;
  font-weight: 850;
  min-height: 36px;
  padding: 8px 10px;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-chip.is-active,
.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-chip:hover,
.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-chip:focus-visible {
  background: rgba(225, 37, 27, 0.1);
  border-color: rgba(225, 37, 27, 0.22);
  box-shadow: 0 10px 24px rgba(225, 37, 27, 0.08);
  color: #d92d20;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 218, 239, 0.82);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(49, 75, 132, 0.07);
  padding: 13px 14px;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-panel p {
  color: #253044;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.52;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-tags span {
  background: rgba(239, 246, 255, 0.82);
  border: 1px solid rgba(207, 218, 239, 0.72);
  border-radius: 999px;
  color: rgba(72, 84, 111, 0.68);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 8px;
}

@media (max-width: 1024px) {
  .jtd-flow-os .jtd-operating-layer.jtd-travel-cloud {
    border-radius: 28px;
  }

  .jtd-flow-os .jtd-travel-cloud-map {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .jtd-flow-os .jtd-operating-layer.jtd-travel-cloud {
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    padding: 14px;
  }

  .jtd-flow-os .jtd-travel-cloud__label {
    margin-bottom: 10px;
  }

  .jtd-flow-os .jtd-travel-cloud__label strong {
    font-size: 18px;
  }

  .jtd-flow-os .jtd-travel-cloud__label small {
    font-size: 10px;
  }

  .jtd-flow-os .jtd-travel-cloud-map {
    display: contents;
    min-height: 0;
  }

  .jtd-flow-os .jtd-travel-cloud-flow {
    display: none;
  }

  .jtd-flow-os .jtd-travel-cloud-center {
    left: auto;
    min-height: 0;
    order: 2;
    padding: 14px 16px;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .jtd-flow-os .jtd-travel-cloud-center strong {
    font-size: 18px;
  }

  .jtd-flow-os .jtd-travel-cloud-center em {
    display: none;
  }

  .jtd-flow-os .jtd-travel-cloud-node-field {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    inset: auto;
    margin-top: 10px;
    order: 3;
    position: relative;
  }

  .jtd-flow-os .jtd-travel-cloud-node {
    border-radius: 14px;
    gap: 0 7px;
    min-width: 0;
    padding: 8px 8px;
    position: relative;
  }

  .jtd-flow-os .jtd-travel-cloud-node--resource,
  .jtd-flow-os .jtd-travel-cloud-node--product,
  .jtd-flow-os .jtd-travel-cloud-node--channel,
  .jtd-flow-os .jtd-travel-cloud-node--order,
  .jtd-flow-os .jtd-travel-cloud-node--contract,
  .jtd-flow-os .jtd-travel-cloud-node--finance,
  .jtd-flow-os .jtd-travel-cloud-node--insight {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }

  .jtd-flow-os .jtd-travel-cloud-node--insight {
    grid-column: 1 / -1;
  }

  .jtd-flow-os .jtd-travel-cloud-node strong {
    font-size: 12px;
  }

  .jtd-flow-os .jtd-travel-cloud-node span {
    display: none;
  }

  .jtd-flow-os .jtd-travel-cloud-metrics {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
    order: 5;
    position: relative;
  }

  .jtd-flow-os .jtd-travel-cloud-metric {
    border-radius: 14px;
    padding: 9px;
  }

  .jtd-flow-os .jtd-travel-cloud-metric em {
    font-size: 9px;
  }

  .jtd-flow-os .jtd-travel-cloud-metric strong {
    font-size: 13px;
    margin: 3px 0 0;
    white-space: nowrap;
  }

  .jtd-flow-os .jtd-travel-cloud-metric small {
    display: none;
  }

  .jtd-flow-os .jtd-travel-cloud-scenarios {
    margin-top: 10px;
    order: 4;
  }

  .jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-switch {
    gap: 4px;
    margin-bottom: 8px;
    padding: 4px;
  }

  .jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-chip {
    font-size: 12px;
    min-height: 34px;
    padding: 7px 5px;
  }

  .jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-panel {
    border-radius: 14px;
    padding: 10px;
  }

  .jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-panel p {
    font-size: 12px;
    line-height: 1.46;
  }

  .jtd-flow-os .jtd-travel-cloud .jtd-flow-scenario-tags {
    display: none;
  }
}

/* End JTD Home V8.3 Travel Operating Cloud Hero */

/* ==========================================================================
JTD Home V8.4 - Business Cloud Hero KV
Scope: front-page.php only
========================================================================== */

.jtd-flow-os .jtd-flow-os-hero {
  background:
    radial-gradient(circle at 74% 18%, rgba(85, 132, 255, 0.17), transparent 28%),
    radial-gradient(circle at 88% 58%, rgba(151, 107, 255, 0.12), transparent 30%),
    radial-gradient(circle at 62% 76%, rgba(225, 37, 27, 0.075), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 54%, #ffffff 100%);
}

.jtd-flow-os .jtd-flow-os-hero::before {
  background-image:
    linear-gradient(rgba(47, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 84%, transparent 100%);
}

.jtd-flow-os .jtd-flow-os-hero::after {
  background:
    radial-gradient(ellipse at 72% 46%, rgba(255, 255, 255, 0.62), transparent 48%),
    radial-gradient(circle at 82% 30%, rgba(225, 37, 27, 0.07), transparent 20%),
    linear-gradient(105deg, transparent 0%, rgba(87, 123, 255, 0.09) 58%, transparent 100%);
}

.jtd-flow-os .jtd-hero-kv {
  min-width: 0;
  position: relative;
}

.jtd-flow-os .jtd-hero-kv-cloud {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.44) 36%, transparent 58%),
    radial-gradient(circle at 68% 22%, rgba(70, 117, 255, 0.18), transparent 31%),
    radial-gradient(circle at 34% 76%, rgba(225, 37, 27, 0.08), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(239, 246, 255, 0.52));
  border: 1px solid rgba(207, 218, 239, 0.86);
  border-radius: 36px;
  box-shadow: 0 34px 90px rgba(50, 77, 139, 0.16);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.jtd-flow-os .jtd-hero-kv-cloud::before {
  background:
    linear-gradient(rgba(70, 117, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 117, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 58% 45%, #000 0%, transparent 70%);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.jtd-flow-os .jtd-hero-kv-cloud::after {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.82) 46%, transparent 72%);
  content: "";
  height: 160%;
  left: 5%;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
  top: -34%;
  transform: rotate(-12deg);
  width: 34%;
}

.jtd-flow-os .jtd-hero-kv__halo,
.jtd-flow-os .jtd-hero-kv__ring,
.jtd-flow-os .jtd-hero-kv__beam {
  pointer-events: none;
  position: absolute;
}

.jtd-flow-os .jtd-hero-kv__halo {
  border-radius: 50%;
  filter: blur(10px);
}

.jtd-flow-os .jtd-hero-kv__halo--blue {
  background: rgba(70, 117, 255, 0.14);
  height: 330px;
  right: 12%;
  top: 8%;
  width: 330px;
}

.jtd-flow-os .jtd-hero-kv__halo--red {
  background: rgba(225, 37, 27, 0.085);
  bottom: 10%;
  height: 260px;
  left: 12%;
  width: 260px;
}

.jtd-flow-os .jtd-hero-kv__ring {
  border: 1px solid rgba(70, 117, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 36px rgba(70, 117, 255, 0.08);
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.jtd-flow-os .jtd-hero-kv__ring--outer {
  height: 360px;
  width: 520px;
}

.jtd-flow-os .jtd-hero-kv__ring--inner {
  border-color: rgba(225, 37, 27, 0.16);
  height: 245px;
  width: 350px;
}

.jtd-flow-os .jtd-hero-kv__beam {
  background: linear-gradient(90deg, transparent, rgba(70, 117, 255, 0.36), rgba(225, 37, 27, 0.22), transparent);
  height: 2px;
  opacity: 0.78;
  transform-origin: center;
}

.jtd-flow-os .jtd-hero-kv__beam--one {
  left: 18%;
  top: 34%;
  transform: rotate(-13deg);
  width: 62%;
}

.jtd-flow-os .jtd-hero-kv__beam--two {
  left: 21%;
  top: 62%;
  transform: rotate(14deg);
  width: 58%;
}

.jtd-flow-os .jtd-hero-kv-card,
.jtd-flow-os .jtd-hero-kv-tag,
.jtd-flow-os .jtd-hero-kv-scenarios {
  position: absolute;
  z-index: 2;
}

.jtd-flow-os .jtd-hero-kv-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 218, 239, 0.86);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(49, 75, 132, 0.12);
  backdrop-filter: blur(14px);
}

.jtd-flow-os .jtd-hero-kv-card--main {
  display: grid;
  gap: 9px;
  left: 50%;
  padding: 28px 30px;
  text-align: center;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(360px, 70%);
  z-index: 4;
}

.jtd-flow-os .jtd-hero-kv-card--main span {
  color: #d92d20;
  font-size: 24px;
  font-weight: 880;
  line-height: 1.18;
}

.jtd-flow-os .jtd-hero-kv-card--main strong {
  color: #172033;
  font-size: 18px;
  font-weight: 820;
  line-height: 1.24;
}

.jtd-flow-os .jtd-hero-kv-card--main small {
  color: rgba(72, 84, 111, 0.68);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.55;
}

.jtd-flow-os .jtd-hero-kv-card--orders,
.jtd-flow-os .jtd-hero-kv-card--settlement,
.jtd-flow-os .jtd-hero-kv-card--insight {
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  width: 190px;
}

.jtd-flow-os .jtd-hero-kv-card--orders {
  left: 7%;
  top: 18%;
}

.jtd-flow-os .jtd-hero-kv-card--settlement {
  right: 7%;
  top: 24%;
}

.jtd-flow-os .jtd-hero-kv-card--insight {
  bottom: 19%;
  right: 13%;
}

.jtd-flow-os .jtd-hero-kv-card strong {
  color: #172033;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.jtd-flow-os .jtd-hero-kv-card p {
  color: rgba(72, 84, 111, 0.74);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.jtd-flow-os .jtd-hero-kv-tag {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(207, 218, 239, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(49, 75, 132, 0.1);
  color: rgba(54, 65, 90, 0.76);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  min-height: 34px;
  padding: 8px 13px;
  white-space: nowrap;
}

.jtd-flow-os .jtd-hero-kv-tag::before {
  background: #d92d20;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.09);
  content: "";
  height: 7px;
  margin-right: 7px;
  width: 7px;
}

.jtd-flow-os .jtd-hero-kv-tag--product {
  left: 28%;
  top: 12%;
}

.jtd-flow-os .jtd-hero-kv-tag--order {
  right: 24%;
  top: 12%;
}

.jtd-flow-os .jtd-hero-kv-tag--contract {
  left: 11%;
  bottom: 28%;
}

.jtd-flow-os .jtd-hero-kv-tag--finance {
  left: 42%;
  bottom: 11%;
}

.jtd-flow-os .jtd-hero-kv-tag--data {
  right: 9%;
  bottom: 36%;
}

.jtd-flow-os .jtd-hero-kv-scenarios {
  bottom: 24px;
  display: flex;
  gap: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.jtd-flow-os .jtd-hero-kv-scenarios span {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 999px;
  color: rgba(54, 65, 90, 0.78);
  font-size: 12px;
  font-weight: 820;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .jtd-flow-os .jtd-hero-kv-cloud {
    min-height: 500px;
  }

  .jtd-flow-os .jtd-hero-kv-card--orders,
  .jtd-flow-os .jtd-hero-kv-card--settlement,
  .jtd-flow-os .jtd-hero-kv-card--insight {
    width: 170px;
  }
}

@media (max-width: 960px) {
  .jtd-flow-os .jtd-hero-kv-cloud {
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .jtd-flow-os .jtd-hero-kv-cloud {
    border-radius: 24px;
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .jtd-flow-os .jtd-hero-kv-cloud::after,
  .jtd-flow-os .jtd-hero-kv__ring,
  .jtd-flow-os .jtd-hero-kv__beam,
  .jtd-flow-os .jtd-hero-kv__halo {
    display: none;
  }

  .jtd-flow-os .jtd-hero-kv-card,
  .jtd-flow-os .jtd-hero-kv-tag,
  .jtd-flow-os .jtd-hero-kv-scenarios {
    position: relative;
    transform: none;
  }

  .jtd-flow-os .jtd-hero-kv-card--main,
  .jtd-flow-os .jtd-hero-kv-card--orders,
  .jtd-flow-os .jtd-hero-kv-card--settlement,
  .jtd-flow-os .jtd-hero-kv-card--insight {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
  }

  .jtd-flow-os .jtd-hero-kv-card--main {
    gap: 5px;
    padding: 16px;
  }

  .jtd-flow-os .jtd-hero-kv-card--main span {
    font-size: 20px;
  }

  .jtd-flow-os .jtd-hero-kv-card--main strong {
    font-size: 14px;
  }

  .jtd-flow-os .jtd-hero-kv-card--main small {
    font-size: 11px;
  }

  .jtd-flow-os .jtd-hero-kv-tag {
    display: none;
  }

  .jtd-flow-os .jtd-hero-kv-card--orders,
  .jtd-flow-os .jtd-hero-kv-card--settlement,
  .jtd-flow-os .jtd-hero-kv-card--insight {
    padding: 11px 12px;
  }

  .jtd-flow-os .jtd-hero-kv-card p {
    display: none;
  }

  .jtd-flow-os .jtd-hero-kv-scenarios {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: auto;
  }

  .jtd-flow-os .jtd-hero-kv-scenarios span {
    font-size: 11px;
    padding: 7px 6px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .jtd-flow-os .jtd-hero-kv-card--settlement,
  .jtd-flow-os .jtd-hero-kv-card--insight {
    display: none;
  }
}

/* End JTD Home V8.4 Business Cloud Hero KV */

/* ==========================================================================
JTD Products V8.4 - Smart Travel Cloud Section
Scope: archive-jtd_product.php only
========================================================================== */

.jtd-products-v8 .jtd-product-travel-cloud {
  background:
    radial-gradient(circle at 78% 20%, rgba(70, 117, 255, 0.13), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(225, 37, 27, 0.055), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: 108px 0;
  position: relative;
}

.jtd-products-v8 .jtd-product-travel-cloud__grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
}

.jtd-products-v8 .jtd-product-travel-cloud__copy {
  display: grid;
  gap: 18px;
}

.jtd-products-v8 .jtd-product-travel-cloud__copy > span {
  color: var(--jtd-products-red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-products-v8 .jtd-product-travel-cloud__copy h2 {
  color: var(--jtd-products-ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.16;
  margin: 0;
}

.jtd-products-v8 .jtd-product-travel-cloud__copy > p {
  color: var(--jtd-products-text);
  font-size: 17px;
  line-height: 1.82;
  margin: 0;
}

.jtd-products-v8 .jtd-product-cloud-brief {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.jtd-products-v8 .jtd-product-cloud-brief article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--jtd-products-border);
  border-radius: 18px;
  display: grid;
  gap: 7px;
  padding: 18px;
}

.jtd-products-v8 .jtd-product-cloud-brief strong {
  color: var(--jtd-products-ink);
  font-size: 15px;
  font-weight: 850;
}

.jtd-products-v8 .jtd-product-cloud-brief p {
  color: var(--jtd-products-muted);
  font-size: 14px;
  line-height: 1.68;
  margin: 0;
}

.jtd-products-v8 .jtd-product-cloud-map {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.38) 34%, transparent 58%),
    radial-gradient(circle at 74% 18%, rgba(70, 117, 255, 0.16), transparent 32%),
    radial-gradient(circle at 22% 78%, rgba(225, 37, 27, 0.085), transparent 28%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 218, 239, 0.88);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(49, 75, 132, 0.13);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.jtd-products-v8 .jtd-product-cloud-map::before {
  background-image:
    linear-gradient(rgba(70, 117, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 117, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 52% 44%, #000 0%, transparent 72%);
  pointer-events: none;
  position: absolute;
}

.jtd-products-v8 .jtd-product-cloud-flow {
  border: 1px solid rgba(70, 117, 255, 0.18);
  border-radius: 50%;
  height: 360px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 520px;
}

.jtd-products-v8 .jtd-product-cloud-flow::before {
  border: 1px solid rgba(225, 37, 27, 0.15);
  border-radius: 50%;
  content: "";
  height: 236px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
}

.jtd-products-v8 .jtd-product-cloud-flow span {
  background: linear-gradient(90deg, transparent, rgba(70, 117, 255, 0.32), rgba(225, 37, 27, 0.22), transparent);
  height: 2px;
  left: 9%;
  position: absolute;
  width: 82%;
}

.jtd-products-v8 .jtd-product-cloud-flow span:nth-child(1) {
  top: 34%;
}

.jtd-products-v8 .jtd-product-cloud-flow span:nth-child(2) {
  top: 50%;
  transform: rotate(12deg);
}

.jtd-products-v8 .jtd-product-cloud-flow span:nth-child(3) {
  top: 66%;
  transform: rotate(-14deg);
}

.jtd-products-v8 .jtd-product-cloud-center,
.jtd-products-v8 .jtd-product-cloud-node,
.jtd-products-v8 .jtd-product-cloud-scenarios,
.jtd-products-v8 .jtd-product-cloud-states {
  position: absolute;
  z-index: 2;
}

.jtd-products-v8 .jtd-product-cloud-center {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(225, 37, 27, 0.22);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(225, 37, 27, 0.09), 0 18px 46px rgba(49, 75, 132, 0.11);
  display: grid;
  gap: 7px;
  justify-items: center;
  left: 50%;
  padding: 24px 26px;
  text-align: center;
  top: 45%;
  transform: translate(-50%, -50%);
  width: min(360px, 64%);
}

.jtd-products-v8 .jtd-product-cloud-center i {
  background: #d92d20;
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(225, 37, 27, 0.1);
  height: 10px;
  width: 10px;
}

.jtd-products-v8 .jtd-product-cloud-center strong {
  color: var(--jtd-products-ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
}

.jtd-products-v8 .jtd-product-cloud-center small {
  color: var(--jtd-products-red);
  font-size: 12px;
  font-weight: 850;
}

.jtd-products-v8 .jtd-product-cloud-center em {
  color: var(--jtd-products-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.jtd-products-v8 .jtd-product-cloud-node {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(207, 218, 239, 0.88);
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(49, 75, 132, 0.1);
  display: grid;
  gap: 2px 8px;
  grid-template-columns: auto 1fr;
  min-width: 128px;
  padding: 12px 13px;
}

.jtd-products-v8 .jtd-product-cloud-node i {
  background: #d92d20;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.08);
  grid-row: span 2;
  height: 8px;
  width: 8px;
}

.jtd-products-v8 .jtd-product-cloud-node strong {
  color: var(--jtd-products-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.18;
}

.jtd-products-v8 .jtd-product-cloud-node em {
  color: rgba(72, 84, 111, 0.58);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.jtd-products-v8 .jtd-product-cloud-node--resource {
  left: 9%;
  top: 14%;
}

.jtd-products-v8 .jtd-product-cloud-node--product {
  left: 37%;
  top: 8%;
}

.jtd-products-v8 .jtd-product-cloud-node--channel {
  right: 9%;
  top: 15%;
}

.jtd-products-v8 .jtd-product-cloud-node--order {
  right: 5%;
  top: 45%;
}

.jtd-products-v8 .jtd-product-cloud-node--contract {
  right: 18%;
  bottom: 18%;
}

.jtd-products-v8 .jtd-product-cloud-node--finance {
  left: 22%;
  bottom: 16%;
}

.jtd-products-v8 .jtd-product-cloud-node--insight {
  left: 6%;
  top: 47%;
}

.jtd-products-v8 .jtd-product-cloud-scenarios {
  bottom: 26px;
  display: flex;
  gap: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.jtd-products-v8 .jtd-product-cloud-scenarios span,
.jtd-products-v8 .jtd-product-cloud-states span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 218, 239, 0.84);
  border-radius: 999px;
  color: rgba(54, 65, 90, 0.78);
  font-size: 12px;
  font-weight: 820;
  padding: 8px 12px;
  white-space: nowrap;
}

.jtd-products-v8 .jtd-product-cloud-states {
  display: grid;
  gap: 8px;
  left: 7%;
  top: 59%;
}

.jtd-products-v8 .jtd-product-cloud-states span {
  border-radius: 15px;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
}

.jtd-products-v8 .jtd-product-cloud-states em {
  color: rgba(72, 84, 111, 0.58);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.jtd-products-v8 .jtd-product-cloud-states strong {
  color: var(--jtd-products-red);
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .jtd-products-v8 .jtd-product-travel-cloud__grid {
    grid-template-columns: 1fr;
  }

  .jtd-products-v8 .jtd-product-cloud-map {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .jtd-products-v8 .jtd-product-travel-cloud {
    padding: 76px 0;
  }

  .jtd-products-v8 .jtd-product-travel-cloud__grid {
    gap: 30px;
  }

  .jtd-products-v8 .jtd-product-travel-cloud__copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 700px) {
  .jtd-products-v8 .jtd-product-cloud-map {
    border-radius: 24px;
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .jtd-products-v8 .jtd-product-cloud-map::before,
  .jtd-products-v8 .jtd-product-cloud-flow {
    display: none;
  }

  .jtd-products-v8 .jtd-product-cloud-center,
  .jtd-products-v8 .jtd-product-cloud-node,
  .jtd-products-v8 .jtd-product-cloud-scenarios,
  .jtd-products-v8 .jtd-product-cloud-states {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }

  .jtd-products-v8 .jtd-product-cloud-center {
    padding: 16px;
    width: 100%;
  }

  .jtd-products-v8 .jtd-product-cloud-center strong {
    font-size: 20px;
  }

  .jtd-products-v8 .jtd-product-cloud-nodes {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-products-v8 .jtd-product-cloud-node {
    border-radius: 14px;
    min-width: 0;
    padding: 9px 8px;
  }

  .jtd-products-v8 .jtd-product-cloud-node--insight {
    grid-column: 1 / -1;
  }

  .jtd-products-v8 .jtd-product-cloud-node strong {
    font-size: 12px;
  }

  .jtd-products-v8 .jtd-product-cloud-node em {
    display: none;
  }

  .jtd-products-v8 .jtd-product-cloud-scenarios {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-products-v8 .jtd-product-cloud-scenarios span {
    font-size: 11px;
    padding: 7px 6px;
    text-align: center;
  }

  .jtd-products-v8 .jtd-product-cloud-states {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-products-v8 .jtd-product-cloud-states span {
    border-radius: 14px;
    padding: 8px;
    text-align: center;
  }

  .jtd-products-v8 .jtd-product-cloud-states em {
    font-size: 9px;
  }

  .jtd-products-v8 .jtd-product-cloud-states strong {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .jtd-products-v8 .jtd-product-cloud-brief article {
    padding: 15px;
  }

  .jtd-products-v8 .jtd-product-cloud-nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-products-v8 .jtd-product-cloud-states {
    grid-template-columns: 1fr;
  }
}

/* End JTD Products V8.4 Smart Travel Cloud Section */

/* ==========================================================================
   JTD Home V8.4.1 - Hero KV Visual Rebuild
   Scope: front-page.php only
   ========================================================================== */

.jtd-flow-os .jtd-flow-os-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(81, 132, 255, 0.2), transparent 30%),
    radial-gradient(circle at 88% 62%, rgba(157, 112, 255, 0.14), transparent 30%),
    radial-gradient(circle at 62% 72%, rgba(225, 37, 27, 0.085), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 54%, #ffffff 100%);
}

.jtd-flow-os .jtd-flow-os-hero::after {
  background:
    radial-gradient(ellipse at 76% 48%, rgba(255, 255, 255, 0.74), transparent 46%),
    radial-gradient(ellipse at 72% 52%, rgba(93, 132, 255, 0.12), transparent 54%),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.54) 54%, transparent 86%);
}

.jtd-flow-os .jtd-hero-kv {
  align-self: center;
}

.jtd-flow-os .jtd-hero-kv-visual {
  min-height: 548px;
  overflow: visible;
  position: relative;
}

.jtd-flow-os .jtd-hero-kv-visual::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24) 42%, transparent 66%),
    radial-gradient(circle at 58% 40%, rgba(84, 128, 255, 0.24), transparent 42%),
    radial-gradient(circle at 40% 66%, rgba(225, 37, 27, 0.1), transparent 30%);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  height: 470px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 610px;
}

.jtd-flow-os .jtd-hero-kv-visual::after {
  background-image:
    linear-gradient(rgba(82, 119, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 119, 255, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 20px 0 0;
  mask-image: radial-gradient(circle at 52% 48%, #000 0%, transparent 70%);
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
}

.jtd-flow-os .jtd-hero-cloud-engine {
  height: 500px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 100%);
  z-index: 1;
}

.jtd-flow-os .jtd-hero-cloud-engine::before {
  background:
    conic-gradient(from 210deg, rgba(255, 255, 255, 0), rgba(91, 130, 255, 0.22), rgba(225, 37, 27, 0.18), rgba(255, 255, 255, 0), rgba(91, 130, 255, 0.18), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.16) 46%, transparent 62%);
  border-radius: 50%;
  content: "";
  filter: blur(0.2px);
  height: 360px;
  left: 50%;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 510px;
}

.jtd-flow-os .jtd-hero-cloud-engine::after {
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.55) 42%, transparent 68%),
    radial-gradient(circle at 58% 42%, rgba(93, 132, 255, 0.18), transparent 46%);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.72), 0 28px 80px rgba(76, 101, 180, 0.16);
  content: "";
  height: 250px;
  left: 50%;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  width: 340px;
}

.jtd-flow-os .jtd-hero-orbit {
  pointer-events: none;
  position: absolute;
}

.jtd-flow-os .jtd-hero-orbit--outer,
.jtd-flow-os .jtd-hero-orbit--middle,
.jtd-flow-os .jtd-hero-orbit--inner {
  border-radius: 50%;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.jtd-flow-os .jtd-hero-orbit--outer {
  border: 1px solid rgba(91, 130, 255, 0.26);
  height: 330px;
  width: 560px;
}

.jtd-flow-os .jtd-hero-orbit--middle {
  border: 1px solid rgba(225, 37, 27, 0.17);
  height: 250px;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 430px;
}

.jtd-flow-os .jtd-hero-orbit--inner {
  border: 1px solid rgba(255, 255, 255, 0.72);
  height: 170px;
  width: 300px;
}

.jtd-flow-os .jtd-hero-orbit--beam-one,
.jtd-flow-os .jtd-hero-orbit--beam-two {
  background: linear-gradient(90deg, transparent, rgba(93, 132, 255, 0.42), rgba(225, 37, 27, 0.24), transparent);
  height: 2px;
  left: 12%;
  opacity: 0.82;
  width: 76%;
}

.jtd-flow-os .jtd-hero-orbit--beam-one {
  top: 38%;
  transform: rotate(-13deg);
}

.jtd-flow-os .jtd-hero-orbit--beam-two {
  top: 62%;
  transform: rotate(15deg);
}

.jtd-flow-os .jtd-hero-orbit--svg {
  height: 100%;
  inset: 0;
  opacity: 0.9;
  width: 100%;
}

.jtd-flow-os .jtd-hero-engine-core {
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(64, 91, 164, 0.12);
  display: inline-grid;
  gap: 3px;
  justify-items: center;
  left: 50%;
  padding: 13px 22px;
  position: absolute;
  text-align: center;
  top: 49%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.jtd-flow-os .jtd-hero-engine-core span {
  color: #d92d20;
  font-size: 15px;
  font-weight: 880;
  line-height: 1.2;
  white-space: nowrap;
}

.jtd-flow-os .jtd-hero-engine-core strong {
  color: rgba(23, 32, 51, 0.78);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

.jtd-flow-os .jtd-hero-engine-dot {
  background: #e1251b;
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(225, 37, 27, 0.08), 0 0 28px rgba(225, 37, 27, 0.34);
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 4;
}

.jtd-flow-os .jtd-hero-engine-dot--one {
  right: 19%;
  top: 32%;
}

.jtd-flow-os .jtd-hero-engine-dot--two {
  left: 20%;
  top: 54%;
}

.jtd-flow-os .jtd-hero-engine-dot--three {
  bottom: 22%;
  right: 36%;
}

.jtd-flow-os .jtd-hero-float-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(216, 226, 244, 0.82);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(55, 79, 142, 0.11);
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  position: absolute;
  width: 190px;
  z-index: 4;
}

.jtd-flow-os .jtd-hero-float-card::before {
  background: #e1251b;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.08);
  content: "";
  height: 8px;
  left: 15px;
  position: absolute;
  top: 17px;
  width: 8px;
}

.jtd-flow-os .jtd-hero-float-card--orders {
  left: 4%;
  top: 16%;
}

.jtd-flow-os .jtd-hero-float-card--settlement {
  right: 2%;
  top: 25%;
}

.jtd-flow-os .jtd-hero-float-card--insight {
  bottom: 15%;
  right: 11%;
}

.jtd-flow-os .jtd-hero-float-card strong {
  color: #172033;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  padding-left: 17px;
}

.jtd-flow-os .jtd-hero-float-card p {
  color: rgba(72, 84, 111, 0.72);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.jtd-flow-os .jtd-hero-kv-scenarios {
  bottom: 18px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.jtd-flow-os .jtd-hero-kv-scenarios span {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(225, 37, 27, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(55, 79, 142, 0.07);
  color: rgba(54, 65, 90, 0.78);
  font-size: 12px;
  font-weight: 820;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .jtd-flow-os .jtd-hero-kv-visual {
    min-height: 506px;
  }

  .jtd-flow-os .jtd-hero-cloud-engine {
    width: min(620px, 100%);
  }

  .jtd-flow-os .jtd-hero-float-card {
    width: 172px;
  }
}

@media (max-width: 960px) {
  .jtd-flow-os .jtd-hero-kv-visual {
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .jtd-flow-os .jtd-hero-kv-visual {
    background:
      radial-gradient(circle at 62% 34%, rgba(91, 130, 255, 0.15), transparent 40%),
      radial-gradient(circle at 30% 78%, rgba(225, 37, 27, 0.075), transparent 28%),
      rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(207, 218, 239, 0.82);
    border-radius: 24px;
    display: grid;
    gap: 10px;
    min-height: 0;
    overflow: hidden;
    padding: 16px;
  }

  .jtd-flow-os .jtd-hero-kv-visual::before,
  .jtd-flow-os .jtd-hero-kv-visual::after,
  .jtd-flow-os .jtd-hero-orbit--outer,
  .jtd-flow-os .jtd-hero-orbit--middle,
  .jtd-flow-os .jtd-hero-orbit--inner,
  .jtd-flow-os .jtd-hero-orbit--beam-one,
  .jtd-flow-os .jtd-hero-orbit--beam-two {
    display: none;
  }

  .jtd-flow-os .jtd-hero-cloud-engine {
    height: 136px;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .jtd-flow-os .jtd-hero-cloud-engine::before {
    height: 132px;
    width: 260px;
  }

  .jtd-flow-os .jtd-hero-cloud-engine::after {
    height: 94px;
    width: 190px;
  }

  .jtd-flow-os .jtd-hero-orbit--svg {
    inset: 0;
  }

  .jtd-flow-os .jtd-hero-engine-core {
    padding: 11px 16px;
  }

  .jtd-flow-os .jtd-hero-engine-core span {
    font-size: 17px;
  }

  .jtd-flow-os .jtd-hero-engine-core strong {
    font-size: 10px;
  }

  .jtd-flow-os .jtd-hero-engine-dot {
    display: none;
  }

  .jtd-flow-os .jtd-hero-float-card {
    border-radius: 15px;
    padding: 11px 12px;
    position: relative;
    width: 100%;
  }

  .jtd-flow-os .jtd-hero-float-card--orders,
  .jtd-flow-os .jtd-hero-float-card--settlement,
  .jtd-flow-os .jtd-hero-float-card--insight {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }

  .jtd-flow-os .jtd-hero-float-card p {
    display: none;
  }

  .jtd-flow-os .jtd-hero-kv-scenarios {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: auto;
    position: relative;
    transform: none;
  }

  .jtd-flow-os .jtd-hero-kv-scenarios span {
    font-size: 11px;
    padding: 7px 6px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .jtd-flow-os .jtd-hero-float-card--settlement {
    display: none;
  }
}

/* End JTD Home V8.4.1 Hero KV Visual Rebuild */

/* ==========================================================================
   JTD Home V8.4.2 - Stable Hero Restore
   Scope: front-page.php only
   ========================================================================== */

.jtd-flow-os .jtd-flow-os-hero {
  background: transparent;
}

.jtd-flow-os .jtd-flow-os-hero::before {
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
}

.jtd-flow-os .jtd-flow-os-hero::after {
  background:
    radial-gradient(circle at 68% 36%, rgba(225, 37, 27, 0.08), transparent 27%),
    radial-gradient(circle at 84% 55%, rgba(47, 107, 255, 0.1), transparent 30%);
}

/* End JTD Home V8.4.2 Stable Hero Restore */

/* ==========================================================================
   JTD Solutions V8.4 - Travel Group Hero Visual
   Scope: archive-jtd_solution.php only
   ========================================================================== */

.jtd-solutions-v8 .jtd-solutions-v8-group-engine {
  background:
    radial-gradient(circle at 80% 24%, rgba(70, 117, 255, 0.13), transparent 31%),
    radial-gradient(circle at 16% 76%, rgba(225, 37, 27, 0.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  overflow: hidden;
  padding: 104px 0 110px;
  position: relative;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine::before {
  background-image:
    linear-gradient(rgba(70, 117, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 117, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 88%, transparent 100%);
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  position: relative;
  z-index: 1;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__copy {
  display: grid;
  gap: 18px;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__copy > span {
  color: var(--jtd-solutions-red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__copy h2 {
  color: var(--jtd-solutions-ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.16;
  margin: 0;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__copy p {
  color: var(--jtd-solutions-text);
  font-size: 17px;
  line-height: 1.82;
  margin: 0;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-engine__points span {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(207, 218, 239, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(49, 75, 132, 0.07);
  color: rgba(54, 65, 90, 0.78);
  font-size: 13px;
  font-weight: 820;
  padding: 9px 13px;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-visual {
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.38) 38%, transparent 62%),
    radial-gradient(circle at 74% 18%, rgba(70, 117, 255, 0.17), transparent 32%),
    radial-gradient(circle at 22% 80%, rgba(225, 37, 27, 0.08), transparent 27%),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(207, 218, 239, 0.88);
  border-radius: 34px;
  box-shadow: 0 30px 82px rgba(49, 75, 132, 0.13);
  min-height: 550px;
  overflow: hidden;
  position: relative;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-visual::before {
  background-image:
    linear-gradient(rgba(70, 117, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 117, 255, 0.038) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 54% 46%, #000 0%, transparent 70%);
  pointer-events: none;
  position: absolute;
}

.jtd-solutions-v8 .jtd-solutions-v8-cloud-engine {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.jtd-solutions-v8 .jtd-solutions-v8-cloud-engine::before {
  background:
    conic-gradient(from 210deg, rgba(255, 255, 255, 0), rgba(91, 130, 255, 0.2), rgba(225, 37, 27, 0.16), rgba(255, 255, 255, 0), rgba(91, 130, 255, 0.16), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 46%, transparent 62%);
  border-radius: 50%;
  content: "";
  height: 360px;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 510px;
}

.jtd-solutions-v8 .jtd-solutions-v8-cloud-engine::after {
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.55) 42%, transparent 68%),
    radial-gradient(circle at 58% 42%, rgba(93, 132, 255, 0.18), transparent 46%);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.72), 0 28px 80px rgba(76, 101, 180, 0.16);
  content: "";
  height: 250px;
  left: 50%;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 340px;
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit {
  pointer-events: none;
  position: absolute;
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--outer,
.jtd-solutions-v8 .jtd-solutions-v8-orbit--middle,
.jtd-solutions-v8 .jtd-solutions-v8-orbit--inner {
  border-radius: 50%;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--outer {
  border: 1px solid rgba(91, 130, 255, 0.25);
  height: 330px;
  width: 560px;
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--middle {
  border: 1px solid rgba(225, 37, 27, 0.17);
  height: 250px;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 430px;
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--inner {
  border: 1px solid rgba(255, 255, 255, 0.72);
  height: 170px;
  width: 300px;
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--beam-one,
.jtd-solutions-v8 .jtd-solutions-v8-orbit--beam-two {
  background: linear-gradient(90deg, transparent, rgba(93, 132, 255, 0.4), rgba(225, 37, 27, 0.23), transparent);
  height: 2px;
  left: 12%;
  opacity: 0.82;
  width: 76%;
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--beam-one {
  top: 37%;
  transform: rotate(-13deg);
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--beam-two {
  top: 61%;
  transform: rotate(15deg);
}

.jtd-solutions-v8 .jtd-solutions-v8-orbit--svg {
  height: 100%;
  inset: 0;
  opacity: 0.9;
  width: 100%;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-core {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(64, 91, 164, 0.12);
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  left: 50%;
  padding: 14px 24px;
  position: absolute;
  text-align: center;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-core span {
  color: var(--jtd-solutions-red);
  font-size: 15px;
  font-weight: 880;
  line-height: 1.2;
  white-space: nowrap;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-core strong {
  color: rgba(23, 32, 51, 0.78);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-dot {
  background: var(--jtd-solutions-red);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(225, 37, 27, 0.08), 0 0 28px rgba(225, 37, 27, 0.34);
  height: 10px;
  position: absolute;
  width: 10px;
  z-index: 4;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-dot--one {
  right: 19%;
  top: 31%;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-dot--two {
  left: 20%;
  top: 54%;
}

.jtd-solutions-v8 .jtd-solutions-v8-engine-dot--three {
  bottom: 22%;
  right: 36%;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 226, 244, 0.84);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(55, 79, 142, 0.11);
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  position: absolute;
  width: 198px;
  z-index: 4;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card::before {
  background: var(--jtd-solutions-red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.08);
  content: "";
  height: 8px;
  left: 15px;
  position: absolute;
  top: 17px;
  width: 8px;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card--orders {
  left: 5%;
  top: 16%;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card--settlement {
  right: 4%;
  top: 25%;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card--insight {
  bottom: 15%;
  right: 12%;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card strong {
  color: var(--jtd-solutions-ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  padding-left: 17px;
}

.jtd-solutions-v8 .jtd-solutions-v8-float-card p {
  color: rgba(72, 84, 111, 0.72);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-tags {
  bottom: 20px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.jtd-solutions-v8 .jtd-solutions-v8-group-tags span {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(225, 37, 27, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(55, 79, 142, 0.07);
  color: rgba(54, 65, 90, 0.78);
  font-size: 12px;
  font-weight: 820;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .jtd-solutions-v8 .jtd-solutions-v8-group-engine__grid {
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-group-visual {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .jtd-solutions-v8 .jtd-solutions-v8-group-engine {
    padding: 76px 0;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-group-engine__grid {
    gap: 30px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-group-engine__copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 700px) {
  .jtd-solutions-v8 .jtd-solutions-v8-group-visual {
    border-radius: 24px;
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-group-visual::before,
  .jtd-solutions-v8 .jtd-solutions-v8-orbit--outer,
  .jtd-solutions-v8 .jtd-solutions-v8-orbit--middle,
  .jtd-solutions-v8 .jtd-solutions-v8-orbit--inner,
  .jtd-solutions-v8 .jtd-solutions-v8-orbit--beam-one,
  .jtd-solutions-v8 .jtd-solutions-v8-orbit--beam-two {
    display: none;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-cloud-engine {
    height: 136px;
    position: relative;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-cloud-engine::before {
    height: 132px;
    width: 260px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-cloud-engine::after {
    height: 94px;
    width: 190px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-engine-core {
    padding: 11px 16px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-engine-core span {
    font-size: 17px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-engine-core strong {
    font-size: 10px;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-engine-dot {
    display: none;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-float-card {
    border-radius: 15px;
    padding: 11px 12px;
    position: relative;
    width: 100%;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-float-card--orders,
  .jtd-solutions-v8 .jtd-solutions-v8-float-card--settlement,
  .jtd-solutions-v8 .jtd-solutions-v8-float-card--insight {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-float-card p {
    display: none;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-group-tags {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: auto;
    position: relative;
    transform: none;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-group-tags span {
    font-size: 11px;
    padding: 7px 6px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .jtd-solutions-v8 .jtd-solutions-v8-group-engine__points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .jtd-solutions-v8 .jtd-solutions-v8-float-card--settlement {
    display: none;
  }
}

/* End JTD Solutions V8.4 Travel Group Hero Visual */

/* ==========================================================================
   JTD V8.4.3 - Visual Reassignment
   Scope: products group edition, solutions group scenario
   ========================================================================== */

.jtd-products-v8 .jtd-product-group-cloud,
.jtd-solutions-v8 .jtd-solution-group-cloud {
  scroll-margin-top: 88px;
}

.jtd-products-v8 .jtd-product-group-cloud .jtd-product-travel-cloud__copy > span,
.jtd-products-v8 .jtd-product-group-cloud .jtd-product-cloud-center small {
  color: var(--jtd-products-red);
}

.jtd-products-v8 .jtd-product-group-cloud .jtd-product-cloud-center strong {
  max-width: 280px;
}

.jtd-products-v8 .jtd-product-group-cloud .jtd-product-cloud-brief article {
  box-shadow: 0 12px 30px rgba(49, 75, 132, 0.07);
}

.jtd-product-hero .jtd-product-group-cloud.jtd-travel-cloud {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.38) 34%, transparent 58%),
    radial-gradient(circle at 74% 18%, rgba(70, 117, 255, 0.16), transparent 32%),
    radial-gradient(circle at 22% 78%, rgba(225, 37, 27, 0.085), transparent 28%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 218, 239, 0.88);
  border-radius: 32px;
  box-shadow: 0 28px 76px rgba(49, 75, 132, 0.13);
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.jtd-product-hero .jtd-product-group-cloud.jtd-travel-cloud::before {
  background-image:
    linear-gradient(rgba(70, 117, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 117, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 52% 44%, #000 0%, transparent 72%);
  pointer-events: none;
  position: absolute;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow {
  border: 1px solid rgba(70, 117, 255, 0.18);
  border-radius: 50%;
  height: 300px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 44%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 440px;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow::before {
  border: 1px solid rgba(225, 37, 27, 0.14);
  border-radius: 50%;
  content: "";
  height: 198px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 292px;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow span {
  background: linear-gradient(90deg, transparent, rgba(70, 117, 255, 0.32), rgba(225, 37, 27, 0.22), transparent);
  height: 2px;
  left: 9%;
  position: absolute;
  width: 82%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow span:nth-child(1) {
  top: 34%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow span:nth-child(2) {
  top: 50%;
  transform: rotate(12deg);
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow span:nth-child(3) {
  top: 66%;
  transform: rotate(-14deg);
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center,
.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node,
.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-scenarios {
  position: absolute;
  z-index: 2;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(225, 37, 27, 0.22);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(225, 37, 27, 0.08), 0 17px 42px rgba(49, 75, 132, 0.1);
  display: grid;
  gap: 6px;
  justify-items: center;
  left: 50%;
  padding: 20px 22px;
  text-align: center;
  top: 44%;
  transform: translate(-50%, -50%);
  width: min(340px, 64%);
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center i {
  background: #d92d20;
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(225, 37, 27, 0.1);
  height: 10px;
  width: 10px;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center strong {
  color: #172033;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center small {
  color: #d92d20;
  font-size: 12px;
  font-weight: 850;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center em {
  color: rgba(72, 84, 111, 0.66);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(207, 218, 239, 0.88);
  border-radius: 16px;
  box-shadow: 0 15px 32px rgba(49, 75, 132, 0.1);
  display: grid;
  gap: 2px 8px;
  grid-template-columns: auto 1fr;
  min-width: 112px;
  padding: 10px 12px;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node i {
  background: #d92d20;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.08);
  grid-row: span 2;
  height: 8px;
  width: 8px;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node strong {
  color: #172033;
  font-size: 13px;
  font-weight: 850;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node em {
  color: rgba(72, 84, 111, 0.58);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--resource {
  left: 8%;
  top: 14%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--product {
  left: 37%;
  top: 8%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--channel {
  right: 8%;
  top: 15%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--order {
  right: 5%;
  top: 44%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--contract {
  bottom: 18%;
  right: 17%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--finance {
  bottom: 16%;
  left: 22%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node--insight {
  left: 5%;
  top: 46%;
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-scenarios {
  bottom: 24px;
  display: flex;
  gap: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-scenarios span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(207, 218, 239, 0.84);
  border-radius: 999px;
  color: rgba(54, 65, 90, 0.78);
  font-size: 12px;
  font-weight: 820;
  padding: 8px 12px;
  white-space: nowrap;
}

.jtd-solution-hero .jtd-business-cloud-engine.jtd-solution-group-cloud {
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.38) 38%, transparent 62%),
    radial-gradient(circle at 74% 18%, rgba(70, 117, 255, 0.17), transparent 32%),
    radial-gradient(circle at 22% 80%, rgba(225, 37, 27, 0.08), transparent 27%),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(207, 218, 239, 0.88);
  border-radius: 32px;
  box-shadow: 0 28px 76px rgba(49, 75, 132, 0.13);
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.jtd-solution-hero .jtd-business-cloud-engine.jtd-solution-group-cloud::before {
  background-image:
    linear-gradient(rgba(70, 117, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 117, 255, 0.038) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 54% 46%, #000 0%, transparent 70%);
  pointer-events: none;
  position: absolute;
}

.jtd-solution-hero .jtd-business-cloud-engine__core {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(64, 91, 164, 0.12);
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  left: 50%;
  padding: 14px 24px;
  position: absolute;
  text-align: center;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.jtd-solution-hero .jtd-business-cloud-engine__core span {
  color: #d92d20;
  font-size: 15px;
  font-weight: 880;
  line-height: 1.2;
  white-space: nowrap;
}

.jtd-solution-hero .jtd-business-cloud-engine__core strong {
  color: rgba(23, 32, 51, 0.78);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

.jtd-solution-hero .jtd-business-cloud-engine__orbits span {
  border-radius: 50%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-13deg);
  z-index: 1;
}

.jtd-solution-hero .jtd-business-cloud-engine__orbits span:nth-child(1) {
  background:
    conic-gradient(from 210deg, rgba(255, 255, 255, 0), rgba(91, 130, 255, 0.2), rgba(225, 37, 27, 0.16), rgba(255, 255, 255, 0), rgba(91, 130, 255, 0.16), rgba(255, 255, 255, 0));
  height: 310px;
  width: 450px;
}

.jtd-solution-hero .jtd-business-cloud-engine__orbits span:nth-child(2) {
  border: 1px solid rgba(91, 130, 255, 0.25);
  height: 300px;
  width: 470px;
}

.jtd-solution-hero .jtd-business-cloud-engine__orbits span:nth-child(3) {
  border: 1px solid rgba(225, 37, 27, 0.17);
  height: 210px;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 340px;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 226, 244, 0.84);
  border-radius: 17px;
  box-shadow: 0 17px 44px rgba(55, 79, 142, 0.11);
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  position: absolute;
  width: 190px;
  z-index: 4;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards article::before {
  background: #e1251b;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(225, 37, 27, 0.08);
  content: "";
  height: 8px;
  left: 15px;
  position: absolute;
  top: 17px;
  width: 8px;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards article:nth-child(1) {
  left: 5%;
  top: 16%;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards article:nth-child(2) {
  right: 4%;
  top: 25%;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards article:nth-child(3) {
  bottom: 15%;
  right: 12%;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards strong {
  color: #172033;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  padding-left: 17px;
}

.jtd-solution-hero .jtd-business-cloud-engine__cards p {
  color: rgba(72, 84, 111, 0.72);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.jtd-solution-hero .jtd-business-cloud-engine__tags {
  bottom: 20px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 4;
}

.jtd-solution-hero .jtd-business-cloud-engine__tags span {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(225, 37, 27, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(55, 79, 142, 0.07);
  color: rgba(54, 65, 90, 0.78);
  font-size: 12px;
  font-weight: 820;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .jtd-product-hero .jtd-product-group-cloud.jtd-travel-cloud,
  .jtd-solution-hero .jtd-business-cloud-engine.jtd-solution-group-cloud {
    border-radius: 24px;
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-flow,
  .jtd-solution-hero .jtd-business-cloud-engine__orbits {
    display: none;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center,
  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node,
  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-scenarios,
  .jtd-solution-hero .jtd-business-cloud-engine__core,
  .jtd-solution-hero .jtd-business-cloud-engine__cards article,
  .jtd-solution-hero .jtd-business-cloud-engine__tags {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center {
    padding: 16px;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-center strong {
    font-size: 20px;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-nodes {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node {
    border-radius: 14px;
    min-width: 0;
    padding: 9px 8px;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node strong {
    font-size: 12px;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-node em {
    display: none;
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-scenarios,
  .jtd-solution-hero .jtd-business-cloud-engine__tags {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-scenarios span,
  .jtd-solution-hero .jtd-business-cloud-engine__tags span {
    font-size: 11px;
    padding: 7px 6px;
    text-align: center;
  }

  .jtd-solution-hero .jtd-business-cloud-engine__core {
    border-radius: 18px;
    padding: 15px;
  }

  .jtd-solution-hero .jtd-business-cloud-engine__cards article {
    padding: 11px 12px;
  }

  .jtd-solution-hero .jtd-business-cloud-engine__cards p {
    display: none;
  }
}

@media (max-width: 430px) {
  .jtd-product-hero .jtd-product-group-cloud .jtd-product-cloud-nodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jtd-solution-hero .jtd-business-cloud-engine__cards article:nth-child(2) {
    display: none;
  }
}

/* End JTD V8.4.3 Visual Reassignment */

/* ==========================================================================
   JTD Solutions V8.4.4 - Group Scenario Cloud Detail Polish
   Scope: archive-jtd_solution.php only
   ========================================================================== */

.jtd-solutions-v8 .jtd-solution-group-loop {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.jtd-solutions-v8 .jtd-solution-group-loop article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(207, 218, 239, 0.86);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(49, 75, 132, 0.08);
  display: grid;
  gap: 6px;
  padding: 15px 16px;
}

.jtd-solutions-v8 .jtd-solution-group-loop span {
  color: rgba(225, 37, 27, 0.82);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.jtd-solutions-v8 .jtd-solution-group-loop strong {
  color: var(--jtd-solutions-ink);
  font-size: 15px;
  font-weight: 880;
  line-height: 1.24;
}

.jtd-solutions-v8 .jtd-solution-group-loop p {
  color: rgba(54, 65, 90, 0.76);
  font-size: 13px;
  line-height: 1.62;
  margin: 0;
}

.jtd-solutions-v8 .jtd-solution-cloud-context {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.jtd-solutions-v8 .jtd-solution-cloud-context span {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(207, 218, 239, 0.78);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(55, 79, 142, 0.08);
  color: rgba(54, 65, 90, 0.72);
  font-size: 12px;
  font-weight: 820;
  padding: 7px 11px;
  position: absolute;
  white-space: nowrap;
}

.jtd-solutions-v8 .jtd-solution-cloud-context span::before {
  background: #e1251b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.08);
  content: "";
  display: inline-block;
  height: 6px;
  margin-right: 7px;
  vertical-align: 1px;
  width: 6px;
}

.jtd-solutions-v8 .jtd-solution-cloud-context--hq {
  left: 27%;
  top: 14%;
}

.jtd-solutions-v8 .jtd-solution-cloud-context--branch {
  right: 23%;
  top: 14%;
}

.jtd-solutions-v8 .jtd-solution-cloud-context--finance {
  bottom: 29%;
  left: 14%;
}

.jtd-solutions-v8 .jtd-solution-cloud-context--resource {
  bottom: 28%;
  right: 8%;
}

@media (max-width: 1180px) {
  .jtd-solutions-v8 .jtd-solution-group-loop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .jtd-solutions-v8 .jtd-solution-group-loop {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .jtd-solutions-v8 .jtd-solution-group-loop article {
    border-radius: 15px;
    padding: 13px 14px;
  }

  .jtd-solutions-v8 .jtd-solution-cloud-context {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 5;
    position: relative;
  }

  .jtd-solutions-v8 .jtd-solution-cloud-context span {
    font-size: 11px;
    padding: 7px 8px;
    position: relative;
    text-align: center;
  }

  .jtd-solutions-v8 .jtd-solution-cloud-context--hq,
  .jtd-solutions-v8 .jtd-solution-cloud-context--branch,
  .jtd-solutions-v8 .jtd-solution-cloud-context--finance,
  .jtd-solutions-v8 .jtd-solution-cloud-context--resource {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }
}

/* End JTD Solutions V8.4.4 Group Scenario Cloud Detail Polish */

/* ==========================================================================
JTD Solutions V8.4.5 - Travel Group Detail Hero Reassignment
Scope: single-jtd_solution.php travel-group only
========================================================================== */

.jtd-solution-hero.jtd-solution-travel-group {
  background:
    radial-gradient(circle at 78% 20%, rgba(70, 117, 255, 0.12), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(225, 37, 27, 0.055), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-split {
  align-items: center;
  gap: 58px;
}

.jtd-solution-hero.jtd-solution-travel-group h1 {
  max-width: 560px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-actions {
  margin-top: 22px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-points span {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(207, 218, 239, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(49, 75, 132, 0.06);
  color: rgba(54, 65, 90, 0.78);
  font-size: 13px;
  font-weight: 820;
  padding: 8px 12px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-loop {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-loop article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(207, 218, 239, 0.86);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(49, 75, 132, 0.08);
  display: grid;
  gap: 6px;
  padding: 15px 16px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-loop span {
  color: rgba(225, 37, 27, 0.82);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-loop strong {
  color: #172033;
  font-size: 15px;
  font-weight: 880;
  line-height: 1.24;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-loop p {
  color: rgba(54, 65, 90, 0.76);
  font-size: 13px;
  line-height: 1.62;
  margin: 0;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context span {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(207, 218, 239, 0.78);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(55, 79, 142, 0.08);
  color: rgba(54, 65, 90, 0.72);
  font-size: 12px;
  font-weight: 820;
  padding: 7px 11px;
  position: absolute;
  white-space: nowrap;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context span::before {
  background: #e1251b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(225, 37, 27, 0.08);
  content: "";
  display: inline-block;
  height: 6px;
  margin-right: 7px;
  vertical-align: 1px;
  width: 6px;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--hq {
  left: 27%;
  top: 14%;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--branch {
  right: 23%;
  top: 14%;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--finance {
  bottom: 29%;
  left: 14%;
}

.jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--resource {
  bottom: 28%;
  right: 8%;
}

@media (max-width: 960px) {
  .jtd-solution-hero.jtd-solution-travel-group .jtd-split {
    gap: 30px;
  }
}

@media (max-width: 860px) {
  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-points {
    gap: 8px;
  }

  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-group-loop article {
    border-radius: 15px;
    padding: 13px 14px;
  }

  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 5;
    position: relative;
  }

  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context span {
    font-size: 11px;
    padding: 7px 8px;
    position: relative;
    text-align: center;
  }

  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--hq,
  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--branch,
  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--finance,
  .jtd-solution-hero.jtd-solution-travel-group .jtd-solution-cloud-context--resource {
    bottom: auto;
    left: auto;
    right: auto;
    top: auto;
  }
}

/* End JTD Solutions V8.4.5 Travel Group Detail Hero Reassignment */

/* ==========================================================================
   JTD Solutions V8.4.6 - Travel Group Detail Hero Redesign
   Scope: single-jtd_solution.php travel-group only
   ========================================================================== */

.single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group {
  padding-bottom: clamp(34px, 4vw, 58px);
}

.single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group .jtd-split {
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
}

.single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group .jtd-split > div:first-child {
  max-width: 610px;
}

.single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group h1 {
  letter-spacing: 0;
  line-height: 1.08;
}

.single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group .jtd-solution-group-points {
  margin-top: 20px;
}

.single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group .jtd-actions {
  margin-top: 26px;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual {
  aspect-ratio: 1.08;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.95) 0 18%, rgba(237, 243, 255, 0.62) 32%, rgba(255, 255, 255, 0.86) 67%),
    radial-gradient(circle at 28% 72%, rgba(225, 37, 27, 0.09), transparent 30%),
    radial-gradient(circle at 78% 24%, rgba(82, 118, 255, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.86));
  border: 1px solid rgba(198, 211, 238, 0.78);
  border-radius: 34px;
  box-shadow: 0 30px 72px rgba(43, 68, 126, 0.14);
  min-height: 430px;
  overflow: hidden;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual::before {
  background:
    linear-gradient(rgba(87, 119, 196, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 119, 196, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 32px;
  opacity: 0.62;
  position: absolute;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits span {
  border-color: rgba(112, 142, 236, 0.18);
  box-shadow: none;
  opacity: 0.74;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits span:nth-child(1) {
  height: 52%;
  left: 13%;
  top: 25%;
  width: 74%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits span:nth-child(2) {
  border-color: rgba(225, 37, 27, 0.13);
  height: 40%;
  left: 23%;
  top: 31%;
  width: 56%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits span:nth-child(3) {
  display: none;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__core {
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(55, 79, 142, 0.1);
  left: 50%;
  padding: 19px 26px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(270px, 64%);
  z-index: 4;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__core span {
  font-size: 16px;
  line-height: 1.22;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__core strong {
  font-size: 11px;
  line-height: 1.2;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article {
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(43, 68, 126, 0.11);
  max-width: 210px;
  padding: 13px 15px;
  width: 39%;
  z-index: 5;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards {
  inset: 0;
  position: absolute;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(1) {
  bottom: auto;
  left: 6%;
  right: auto;
  top: 9%;
  transform: none;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(2) {
  bottom: auto;
  left: auto;
  right: 6%;
  top: 9%;
  transform: none;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(3) {
  bottom: 14%;
  left: 50%;
  right: auto;
  top: auto;
  transform: translateX(-50%);
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards strong {
  font-size: 14px;
  line-height: 1.24;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards p {
  font-size: 12px;
  line-height: 1.45;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags {
  bottom: 25px;
  gap: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags span {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(225, 37, 27, 0.16);
  box-shadow: 0 10px 22px rgba(43, 68, 126, 0.07);
  color: rgba(68, 79, 108, 0.78);
  font-size: 12px;
  padding: 8px 11px;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-cloud-context {
  display: none;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 3vw, 38px);
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 218, 239, 0.78);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(43, 68, 126, 0.07);
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 16px 18px;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop span {
  color: rgba(225, 37, 27, 0.76);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop strong {
  color: #172033;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.25;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop p {
  color: rgba(54, 65, 90, 0.72);
  font-size: 13px;
  line-height: 1.58;
  margin: 0;
}

@media (max-width: 960px) {
  .single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group .jtd-split {
    gap: 28px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual {
    min-height: 360px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop {
    grid-template-columns: 1fr;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop article {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .single-jtd_solution .jtd-solution-group-hero.jtd-solution-travel-group {
    padding-bottom: 30px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual {
    aspect-ratio: auto;
    border-radius: 24px;
    display: grid;
    gap: 9px;
    min-height: 0;
    padding: 15px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual::before,
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits {
    display: none;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__core,
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article,
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags {
    bottom: auto;
    left: auto;
    max-width: none;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards {
    display: grid;
    gap: 9px;
    position: relative;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__core {
    border-radius: 18px;
    padding: 15px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article {
    padding: 11px 12px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards p {
    display: none;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags span {
    font-size: 11px;
    padding: 7px 6px;
    text-align: center;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop {
    gap: 10px;
    margin-top: 18px;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-loop article {
    border-radius: 15px;
    padding: 13px 14px;
  }
}

/* End JTD Solutions V8.4.6 Travel Group Detail Hero Redesign */

/* ==========================================================================
   JTD Solutions V8.4.7 - Travel Group Hero Visual Density Polish
   Scope: single-jtd_solution.php travel-group only
   ========================================================================== */

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual {
  aspect-ratio: auto;
  height: clamp(420px, 33vw, 480px);
  max-height: 500px;
  min-height: 0;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual::before {
  inset: 24px;
  opacity: 0.72;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual::after {
  background:
    radial-gradient(circle, rgba(225, 37, 27, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(92, 126, 255, 0.16) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent, rgba(111, 141, 238, 0.2), rgba(225, 37, 27, 0.12), rgba(111, 141, 238, 0.16), transparent);
  background-position: 18% 50%, 82% 50%, center;
  background-repeat: no-repeat;
  background-size: 10px 10px, 10px 10px, 72% 1px;
  content: "";
  height: 52px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 72%;
  z-index: 2;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits span:nth-child(1) {
  height: 48%;
  left: 12%;
  top: 25%;
  width: 76%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__orbits span:nth-child(2) {
  height: 36%;
  left: 23%;
  top: 32%;
  width: 56%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__core {
  padding: 18px 28px;
  top: 46%;
  width: min(286px, 66%);
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article {
  max-width: 220px;
  min-height: 96px;
  padding: 13px 15px;
  width: 40%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(1) {
  left: 6%;
  top: 11%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(2) {
  right: 6%;
  top: 11%;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(3) {
  bottom: auto;
  left: auto;
  right: 9%;
  top: 50%;
  transform: none;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-cloud-flow-strip {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(207, 218, 239, 0.7);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(43, 68, 126, 0.08);
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 7%;
  padding: 7px 9px;
  position: absolute;
  top: 70%;
  transform: none;
  width: min(340px, 48%);
  z-index: 7;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-cloud-flow-strip span {
  color: rgba(54, 65, 90, 0.78);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  position: relative;
  white-space: nowrap;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-cloud-flow-strip span + span {
  padding-left: 15px;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-cloud-flow-strip span + span::before {
  color: rgba(225, 37, 27, 0.42);
  content: ">";
  font-size: 10px;
  font-weight: 850;
  left: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags {
  bottom: 30px;
  left: 8%;
  top: auto;
  transform: none;
}

.single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags span {
  padding: 7px 10px;
}

@media (max-width: 960px) {
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual {
    height: auto;
    max-height: none;
    min-height: 350px;
  }
}

@media (max-width: 700px) {
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual {
    height: auto;
    min-height: 0;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual::after {
    display: none;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards {
    display: grid;
    gap: 8px;
    inset: auto;
    position: relative;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article,
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(1),
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(2),
  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__cards article:nth-child(3) {
    bottom: auto;
    display: grid;
    left: auto;
    max-width: none;
    min-height: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-cloud-flow-strip {
    display: none;
  }

  .single-jtd_solution .jtd-solution-group-hero .jtd-solution-group-visual .jtd-business-cloud-engine__tags {
    top: auto;
  }
}

/* End JTD Solutions V8.4.7 Travel Group Hero Visual Density Polish */
