:root {
  --ink: #10233f;
  --ink-strong: #071a31;
  --muted: #65758a;
  --blue: #1769e0;
  --blue-strong: #0c4ead;
  --cyan: #18bfd1;
  --green: #1eac7a;
  --surface: #f6fbff;
  --surface-strong: #edf6ff;
  --white: #ffffff;
  --line: #dbe9f6;
  --line-strong: #c2d8ec;
  --shadow: 0 20px 60px rgba(29, 91, 146, 0.13);
  --shadow-soft: 0 12px 36px rgba(28, 87, 132, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(24, 191, 209, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(23, 105, 224, 0.13), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #ffffff 100%);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 233, 246, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background:
    linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 26px rgba(23, 105, 224, 0.25);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-strong);
}

.brand-desc {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #334b66;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(23, 105, 224, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.22);
}

.btn-secondary {
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(23, 105, 224, 0.22);
  box-shadow: 0 10px 26px rgba(28, 87, 132, 0.08);
}

.btn-ghost {
  color: var(--blue);
  background: rgba(23, 105, 224, 0.08);
  border-color: rgba(23, 105, 224, 0.1);
}

.page-shell {
  overflow: hidden;
}

.section,
.hero,
.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 44px;
  padding: 64px 0 58px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 44px;
  padding: 74px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 999px;
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(30, 172, 122, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.about-hero-title span {
  display: block;
  white-space: nowrap;
}

.about-hero-title {
  font-size: clamp(34px, 3.8vw, 48px);
}

.lead {
  max-width: 710px;
  margin-bottom: 18px;
  color: #40566e;
  font-size: 18px;
}

.hero .lead {
  font-size: 19px;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(23, 105, 224, 0.15);
  border-radius: 999px;
  color: #315a82;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-media,
.media-card {
  position: relative;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f4faff);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media {
  min-height: 520px;
}

.hero-media img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  min-height: 520px;
}

.media-card {
  min-height: 360px;
}

.media-card img {
  min-height: 360px;
}

.hero-media::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.38), transparent 38%),
    linear-gradient(0deg, rgba(9, 31, 55, 0.13), transparent 45%);
  pointer-events: none;
}

.hub-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(320px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(14, 65, 112, 0.16);
}

.hub-panel strong {
  display: block;
  color: var(--ink-strong);
  font-size: 15px;
}

.hub-panel p {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.hub-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hub-nodes span {
  padding: 4px 8px;
  border-radius: 6px;
  color: #15518e;
  background: rgba(23, 105, 224, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section-band {
  width: 100%;
  background: linear-gradient(180deg, rgba(237, 246, 255, 0.8), rgba(255, 255, 255, 0.9));
  border-top: 1px solid rgba(219, 233, 246, 0.65);
  border-bottom: 1px solid rgba(219, 233, 246, 0.65);
}

.section-band .section {
  width: min(var(--max), calc(100% - 40px));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-subtitle {
  margin-bottom: 0;
  color: var(--muted);
}

.about-intro-head,
.about-service-head,
.about-contact-head {
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.about-intro-head .section-title,
.about-service-head .section-title,
.about-contact-head .section-title {
  margin-bottom: 0;
}

.about-intro-head .section-subtitle,
.about-service-head .section-subtitle,
.about-contact-head .section-subtitle {
  max-width: 760px;
  line-height: 1.78;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.feature-card,
.agent-card,
.scenario-card,
.value-card,
.step-card {
  border: 1px solid rgba(194, 216, 236, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.card,
.feature-card,
.agent-card,
.value-card,
.step-card {
  padding: 24px;
}

.card-num,
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  font-size: 13px;
}

.card h3,
.feature-card h3,
.agent-card h3,
.scenario-card h3,
.value-card h3,
.step-card h3 {
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.35;
}

.card p,
.feature-card p,
.agent-card p,
.scenario-card p,
.value-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.layer-list {
  display: grid;
  gap: 14px;
}

.layer {
  position: relative;
  padding: 22px 22px 22px 72px;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.layer span {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  font-size: 13px;
}

.layer h3 {
  margin-bottom: 7px;
  color: var(--ink-strong);
  font-size: 20px;
}

.layer p {
  margin-bottom: 0;
  margin-left: -52px;
  color: var(--muted);
}

.scenario-card {
  overflow: hidden;
}

.scenario-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.scenario-body {
  padding: 22px;
}

.scenario-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.scenario-meta span,
.agent-chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: #285a87;
  background: rgba(23, 105, 224, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.scenario-value {
  padding-top: 13px;
  border-top: 1px solid rgba(219, 233, 246, 0.9);
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 700;
}

.matrix-wrap {
  display: grid;
  gap: 22px;
}

.matrix-category {
  padding: 22px;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.matrix-category h3 {
  margin-bottom: 16px;
  color: var(--ink-strong);
  font-size: 22px;
}

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

.agent-card {
  min-height: 196px;
  box-shadow: none;
}

.agent-card .agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  position: relative;
  min-height: 236px;
  padding: 22px 18px;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 39px;
  right: -13px;
  width: 14px;
  height: 1px;
  background: var(--line-strong);
}

.step-card:last-child::after {
  display: none;
}

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

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.cta-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 74px auto 86px;
  padding: 44px;
  border: 1px solid rgba(194, 216, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.1), rgba(24, 191, 209, 0.11)),
    #fff;
  box-shadow: var(--shadow);
}

.cta-section h2 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.22;
}

.cta-section p {
  max-width: 820px;
  margin-bottom: 24px;
  color: #40566e;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fbff;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 36px;
}

.footer-title {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 22px;
  font-weight: 800;
}

.footer-desc {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--muted);
}

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

.footer-links h3 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 15px;
}

.footer-links a,
.footer-links span {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
}

.ecosystem-links {
  grid-template-columns: 1fr;
  align-content: start;
}

.ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  max-width: 620px;
}

.ecosystem-grid span {
  display: inline;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #173b66;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.solution-bottom-cta h2 {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .solution-bottom-cta h2 {
    white-space: normal;
  }
}

.copyright {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: #7a8798;
  font-size: 13px;
}

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

.compare-panel {
  padding: 26px;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.compare-panel h3 {
  margin-bottom: 16px;
  color: var(--ink-strong);
  font-size: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.08);
}

.detail-list {
  display: grid;
  gap: 18px;
}

.detail-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.detail-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.detail-content {
  padding: 26px 26px 24px 0;
}

.detail-content h3 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 24px;
}

.detail-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 18px;
}

.field {
  padding: 14px;
  border: 1px solid rgba(219, 233, 246, 0.9);
  border-radius: 8px;
  background: rgba(246, 251, 255, 0.74);
}

.field strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-strong);
  font-size: 13px;
}

.field span {
  color: var(--muted);
  font-size: 14px;
}

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

.filter-btn {
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 999px;
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-weight: 700;
}

.filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.roadmap {
  display: grid;
  gap: 18px;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.roadmap-index {
  position: sticky;
  top: 100px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.18);
}

.roadmap-card {
  padding: 26px;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.roadmap-card h3 {
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 24px;
}

.roadmap-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.94fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(194, 216, 236, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #31506d;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(194, 216, 236, 0.95);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  appearance: none;
  padding-right: 40px;
  background:
    linear-gradient(45deg, transparent 50%, #31506d 50%) right 18px top 50% / 6px 6px no-repeat,
    linear-gradient(135deg, #31506d 50%, transparent 50%) right 12px top 50% / 6px 6px no-repeat,
    #fff;
}

.option-field {
  display: grid;
  gap: 10px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(23, 105, 224, 0.55);
  box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.09);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.showcase-hero {
  position: relative;
  width: min(1360px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 66px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.showcase-hero::before {
  content: "";
  position: absolute;
  inset: 38px -30px auto auto;
  width: 58%;
  height: 74%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.12)),
    url("../images/hero-ai-hub.png") center / cover;
  opacity: 0.34;
  filter: saturate(0.92);
  z-index: -1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 800;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(30, 172, 122, 0.1);
}

.showcase-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.03;
}

.showcase-hero .lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #31475f;
  font-size: 20px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin-top: 34px;
  border: 1px solid rgba(194, 216, 236, 0.82);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(194, 216, 236, 0.8);
}

.proof-item {
  min-height: 92px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.82);
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-strong);
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.command-surface {
  position: relative;
  min-height: 610px;
  padding: 22px;
  border: 1px solid rgba(194, 216, 236, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(246, 251, 255, 0.92)),
    url("../images/hero-ai-hub.png") center / cover;
  box-shadow: 0 30px 90px rgba(22, 84, 139, 0.18);
  overflow: hidden;
}

.command-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 46%, rgba(7, 26, 49, 0.06)),
    repeating-linear-gradient(90deg, rgba(23, 105, 224, 0.05) 0 1px, transparent 1px 76px);
  pointer-events: none;
}

.command-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
}

.command-top strong {
  display: block;
  color: var(--ink-strong);
}

.command-top span {
  color: var(--muted);
  font-size: 13px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(30, 172, 122, 0.12);
}

.agent-flow {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 14px;
  align-items: center;
}

.flow-stack,
.task-stack {
  display: grid;
  gap: 10px;
}

.flow-node,
.task-card {
  border: 1px solid rgba(219, 233, 246, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(26, 88, 136, 0.1);
}

.flow-node {
  padding: 13px 14px;
}

.flow-node strong,
.task-card strong {
  display: block;
  color: var(--ink-strong);
  font-size: 14px;
}

.flow-node span,
.task-card span {
  color: var(--muted);
  font-size: 12px;
}

.ai-core {
  min-height: 230px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 191, 209, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(24, 191, 209, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 22px 58px rgba(23, 105, 224, 0.12);
  text-align: center;
}

.core-ring {
  width: 144px;
  height: 144px;
  border: 1px solid rgba(23, 105, 224, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 0 0 22px rgba(23, 105, 224, 0.05), 0 0 0 44px rgba(24, 191, 209, 0.04);
}

.core-ring strong {
  color: var(--blue-strong);
  font-size: 18px;
}

.task-card {
  padding: 13px;
}

.command-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.system-strip {
  width: min(1360px, calc(100% - 40px));
  margin: -6px auto 42px;
  padding: 12px 0;
  border-block: 1px solid rgba(219, 233, 246, 0.9);
  color: #57718a;
  overflow: hidden;
}

.system-track {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
  animation: trackMove 28s linear infinite;
}

.system-track span {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(23, 105, 224, 0.07);
  font-size: 13px;
  font-weight: 700;
}

@keyframes trackMove {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.editorial-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.editorial-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.editorial-head h2 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.editorial-head p {
  max-width: 710px;
  color: var(--muted);
  font-size: 18px;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.9fr));
  gap: 1px;
  border: 1px solid rgba(194, 216, 236, 0.86);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(194, 216, 236, 0.9);
}

.diagnosis-lead,
.diagnosis-item {
  background: rgba(255, 255, 255, 0.86);
}

.diagnosis-lead {
  grid-row: span 2;
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.diagnosis-lead strong {
  max-width: 360px;
  color: var(--ink-strong);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.diagnosis-lead span {
  color: var(--blue-strong);
  font-weight: 800;
}

.diagnosis-item {
  min-height: 178px;
  padding: 26px;
}

.diagnosis-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 20px;
}

.diagnosis-item p {
  margin: 0;
  color: var(--muted);
}

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

.flow-board article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(194, 216, 236, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.86));
  box-shadow: var(--shadow-soft);
}

.flow-board .mini-chip {
  margin-bottom: 76px;
}

.flow-board h3 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 24px;
  line-height: 1.18;
}

.flow-board p {
  margin: 0;
  color: var(--muted);
}

.scene-studio {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 330px;
  min-height: 600px;
  border: 1px solid rgba(194, 216, 236, 0.86);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.scene-tabs {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid rgba(219, 233, 246, 0.9);
  background: #f8fbff;
}

.scene-tab {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 12px;
  color: #49647f;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.scene-tab span {
  display: block;
  color: #8aa0b4;
  font-size: 12px;
  font-weight: 700;
}

.scene-tab.active {
  color: var(--blue-strong);
  border-color: rgba(23, 105, 224, 0.16);
  background: #fff;
  box-shadow: 0 12px 28px rgba(26, 88, 136, 0.08);
}

.scene-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.scene-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(7, 26, 49, 0.14));
}

.scene-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.scene-copy h3 {
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 32px;
  line-height: 1.12;
}

.scene-copy p {
  color: var(--muted);
}

.scene-points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.scene-points span {
  padding: 11px 0;
  border-bottom: 1px solid rgba(219, 233, 246, 0.9);
  color: #31475f;
  font-weight: 700;
}

.matrix-compact {
  display: grid;
  gap: 12px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1px;
  border: 1px solid rgba(194, 216, 236, 0.84);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(194, 216, 236, 0.9);
}

.matrix-label,
.matrix-cells {
  background: rgba(255, 255, 255, 0.88);
}

.matrix-label {
  padding: 22px;
  color: var(--ink-strong);
  font-size: 20px;
  font-weight: 800;
}

.matrix-cells {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: 999px;
  color: #254966;
  background: rgba(246, 251, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.agent-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.timeline-lite {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.timeline-lite article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(194, 216, 236, 0.84);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.timeline-lite b {
  display: block;
  margin-bottom: 32px;
  color: var(--blue);
}

.timeline-lite h3 {
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 20px;
}

.timeline-lite p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.outcome-band {
  width: min(1180px, calc(100% - 40px));
  margin: 54px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(219, 233, 246, 0.92);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(219, 233, 246, 0.92);
}

.outcome-band article {
  min-height: 140px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.outcome-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 23px;
}

.outcome-band span {
  color: var(--muted);
  font-size: 14px;
}

.quiet-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 90px;
  padding: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 26, 49, 0.88), rgba(12, 78, 173, 0.78)),
    url("../images/scenario-management.png") center / cover;
  color: #fff;
  overflow: hidden;
}

.quiet-cta h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
}

.quiet-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.quiet-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .nav {
    height: 68px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 45px rgba(28, 87, 132, 0.12);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero,
  .page-hero,
  .solution-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-hero-title span {
    white-space: normal;
  }

  .grid-4,
  .process-grid,
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card::after {
    display: none;
  }

  .showcase-hero,
  .scene-studio {
    grid-template-columns: 1fr;
  }

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

  .showcase-hero::before {
    width: 100%;
    height: 48%;
    inset: 28px 0 auto;
  }

  .command-surface {
    min-height: 520px;
  }

  .agent-flow,
  .diagnosis-grid,
  .flow-board,
  .timeline-lite,
  .outcome-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(219, 233, 246, 0.9);
  }

  .scene-image {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .section,
  .hero,
  .page-hero,
  .section-band .section,
  .cta-section,
  .footer-inner,
  .copyright,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .brand-desc {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 42px 0 40px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero .lead,
  .lead {
    font-size: 16px;
  }

  .hero-media,
  .hero-media img,
  .media-card,
  .media-card img {
    min-height: 300px;
  }

  .hub-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -74px auto 12px;
  }

  .section {
    padding: 54px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .process-grid,
  .agent-grid,
  .comparison,
  .detail-fields,
  .form-row,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card img {
    min-height: 230px;
  }

  .detail-content {
    padding: 22px;
  }

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

  .roadmap-index {
    position: static;
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

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

  .cta-section {
    padding: 30px 22px;
    margin: 46px auto 58px;
  }

  .showcase-hero,
  .system-strip,
  .editorial-section,
  .outcome-band,
  .quiet-cta {
    width: min(100% - 28px, var(--max));
  }

  .showcase-hero {
    padding: 38px 0 24px;
  }

  .showcase-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .showcase-hero .lead {
    font-size: 17px;
  }

  .hero-proof,
  .agent-flow,
  .diagnosis-grid,
  .flow-board,
  .timeline-lite,
  .outcome-band {
    grid-template-columns: 1fr;
  }

  .command-surface {
    min-height: 560px;
    padding: 14px;
  }

  .ai-core {
    min-height: 170px;
  }

  .diagnosis-lead {
    min-height: 250px;
    grid-row: auto;
  }

  .editorial-section {
    padding: 60px 0;
  }

  .scene-tabs {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .scene-tab {
    min-height: 48px;
    font-size: 13px;
  }

  .scene-image {
    min-height: 300px;
  }

  .scene-copy {
    padding: 24px;
  }

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

  .quiet-cta {
    padding: 34px 22px;
    margin: 46px auto 60px;
  }
}

/* Visual reset for the refined version */
.refined-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #ffffff 100%);
}

.refined-hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  padding: 58px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
  gap: 56px;
  align-items: center;
}

.refined-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #0f62c8;
  font-size: 13px;
  font-weight: 800;
}

.refined-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #19b882;
  box-shadow: 0 0 0 6px rgba(25, 184, 130, 0.11);
}

.refined-title {
  max-width: 650px;
  margin-bottom: 22px;
  color: #071a31;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 1.1;
  font-weight: 850;
  text-wrap: balance;
}

.refined-title .line {
  display: block;
}

.refined-lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: #435873;
  font-size: 19px;
  line-height: 1.78;
}

.refined-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.refined-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 660px;
}

.refined-point {
  padding-top: 18px;
  border-top: 1px solid #cfe1f1;
}

.refined-point strong {
  display: block;
  margin-bottom: 4px;
  color: #071a31;
  font-size: 17px;
}

.refined-point span {
  color: #6d7f92;
  font-size: 13px;
}

.photo-panel {
  position: relative;
  min-height: 610px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(21, 76, 128, 0.16);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(4, 24, 47, 0.22), transparent 50%);
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 26, 49, 0.34);
  backdrop-filter: blur(16px);
}

.photo-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

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

.logo-strip {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  border-block: 1px solid #dceaf6;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-strip span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #46627d;
  background: #eef6ff;
  font-size: 13px;
  font-weight: 750;
}

.refined-section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.refined-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.5fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.refined-head h2 {
  max-width: 840px;
  margin-bottom: 0;
  color: #071a31;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.16;
  font-weight: 850;
  text-wrap: balance;
}

.refined-head .line {
  display: block;
}

.refined-head p {
  margin-bottom: 0;
  color: #65758a;
  font-size: 17px;
  line-height: 1.82;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.split-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(21, 76, 128, 0.14);
}

.proof-list {
  display: grid;
  gap: 24px;
}

.proof-row {
  padding-bottom: 24px;
  border-bottom: 1px solid #dceaf6;
}

.proof-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.proof-row b {
  display: block;
  margin-bottom: 8px;
  color: #071a31;
  font-size: 24px;
}

.proof-row p {
  margin-bottom: 0;
  color: #65758a;
  font-size: 16px;
}

.capability-stack {
  display: grid;
  gap: 1px;
  border: 1px solid #d4e4f2;
  border-radius: 8px;
  overflow: hidden;
  background: #d4e4f2;
}

.capability-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 220px;
  gap: 1px;
  background: #d4e4f2;
}

.capability-row > * {
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.capability-row strong {
  color: #071a31;
  font-size: 22px;
}

.capability-row p {
  margin: 0;
  color: #65758a;
  font-size: 16px;
}

.capability-row span {
  color: #0f62c8;
  font-size: 14px;
  font-weight: 800;
}

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

.scene-tile {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #eaf3fb;
  box-shadow: 0 18px 44px rgba(21, 76, 128, 0.12);
}

.scene-tile img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.94);
}

.scene-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 22, 43, 0.78));
}

.scene-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.scene-tile strong {
  display: block;
  margin-bottom: 5px;
  font-size: 22px;
}

.scene-tile span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.clean-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #d4e4f2;
  border-radius: 8px;
  overflow: hidden;
  background: #d4e4f2;
}

.clean-matrix article {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.clean-matrix h3 {
  margin-bottom: 22px;
  color: #071a31;
  font-size: 23px;
}

.clean-matrix p {
  margin-bottom: 0;
  color: #65758a;
  font-size: 15px;
}

.clean-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.clean-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #0f62c8;
  background: #edf6ff;
  font-size: 12px;
  font-weight: 800;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-line article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid #d4e4f2;
  border-radius: 8px;
  background: #fff;
}

.process-line b {
  display: block;
  margin-bottom: 30px;
  color: #0f62c8;
  font-size: 14px;
}

.process-line h3 {
  margin-bottom: 8px;
  color: #071a31;
  font-size: 20px;
}

.process-line p {
  margin: 0;
  color: #65758a;
  font-size: 14px;
}

.refined-cta {
  width: min(1240px, calc(100% - 48px));
  margin: 32px auto 90px;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 54px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 22, 43, 0.9), rgba(10, 66, 139, 0.72), rgba(10, 66, 139, 0.36)),
    url("../images/scenario-management.png") center / cover;
}

.refined-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
  text-wrap: balance;
}

.refined-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.refined-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.scene-focus {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.scene-menu {
  display: grid;
  gap: 10px;
}

.scene-menu .scene-tab {
  min-height: 68px;
  border-color: #d4e4f2;
  background: #fff;
}

.scene-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  border: 1px solid #d4e4f2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(21, 76, 128, 0.12);
}

.scene-feature .scene-image {
  min-height: 560px;
}

.scene-feature .scene-copy {
  padding: 34px;
}

@media (max-width: 1080px) {
  .refined-hero,
  .split-proof,
  .scene-focus,
  .scene-feature {
    grid-template-columns: 1fr;
  }

  .refined-head,
  .capability-row {
    grid-template-columns: 1fr;
  }

  .scene-gallery,
  .clean-matrix,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-feature .scene-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .refined-hero,
  .logo-strip,
  .refined-section,
  .refined-cta {
    width: min(100% - 28px, var(--max));
  }

  .refined-hero {
    min-height: auto;
    padding: 42px 0 26px;
    gap: 30px;
  }

  .refined-title {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.12;
  }

  .refined-lead {
    font-size: 16px;
  }

  .refined-points,
  .scene-gallery,
  .clean-matrix,
  .process-line {
    grid-template-columns: 1fr;
  }

  .photo-panel,
  .photo-panel img {
    min-height: 380px;
  }

  .refined-section {
    padding: 58px 0;
  }

  .refined-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .scene-tile,
  .scene-tile img {
    min-height: 340px;
  }

  .refined-cta {
    min-height: 380px;
    padding: 32px 22px;
    margin-bottom: 58px;
  }

  .scene-feature .scene-image {
    min-height: 300px;
  }

  .scene-feature .scene-copy {
    padding: 24px;
  }
}

/* Inner pages inspired by the supplied reference */
.inner-main {
  background:
    radial-gradient(circle at 12% 2%, rgba(23, 105, 224, 0.08), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f7fbff 100%);
  padding: 34px 0 78px;
}

.scenarios-body .inner-main {
  padding-top: 16px;
}

.inner-wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: #7290ae;
  font-size: 13px;
}

.breadcrumb a {
  color: #1769e0;
  font-weight: 750;
}

.inner-panel {
  border: 1px solid rgba(211, 227, 243, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 80px rgba(30, 86, 138, 0.1);
}

.inner-hero {
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.inner-hero h1 {
  max-width: 640px;
  margin-bottom: 14px;
  color: #071a31;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.16;
  font-weight: 850;
}

.inner-hero p {
  max-width: 680px;
  color: #5f7288;
  font-size: 16px;
  line-height: 1.84;
}

.solution-page .solution-hero-title {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 3.55vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.solution-page .solution-hero-title span {
  display: block;
  white-space: nowrap;
}

.solution-page .inner-hero > div:first-child > p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.9;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: #edf6ff;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 26, 49, 0.18));
}

.inner-section {
  padding: 40px;
  border-top: 1px solid rgba(211, 227, 243, 0.82);
}

.inner-section h2 {
  margin-bottom: 20px;
  color: #071a31;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}

.inner-section > p {
  max-width: 760px;
  margin: -10px 0 26px;
  color: #65758a;
}

.vs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.vs-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.vs-card h3 {
  margin-bottom: 18px;
  color: #071a31;
  font-size: 24px;
}

.vs-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vs-card li {
  position: relative;
  padding-left: 20px;
  color: #5f7288;
  font-size: 15px;
}

.vs-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1769e0;
}

.vs-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1769e0, #18bfd1);
  box-shadow: 0 18px 38px rgba(23, 105, 224, 0.24);
  font-size: 24px;
  font-weight: 850;
}

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

.mini-icon-card {
  min-height: 132px;
  padding: 20px 16px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.mini-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1769e0;
  background: #edf6ff;
  font-weight: 850;
}

.mini-icon-card strong {
  color: #071a31;
  font-size: 15px;
}

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

.fit-item {
  padding: 18px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  background: #f8fbff;
  color: #50657d;
}

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

.scenario-ref-card {
  position: relative;
  min-height: 290px;
  border-radius: 8px;
  overflow: hidden;
  background: #10233f;
  box-shadow: 0 16px 46px rgba(13, 48, 86, 0.14);
}

.scenario-ref-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  filter: saturate(0.92);
}

.scenario-ref-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 39, 0.08), rgba(6, 20, 39, 0.78));
}

.scenario-ref-body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}

.scenario-ref-body h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 26px;
}

.scenario-ref-body p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.scenario-ref-body a {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.matrix-layout-ref {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
}

.matrix-nav-ref {
  display: grid;
  align-content: start;
  gap: 10px;
}

.matrix-nav-ref button {
  min-height: 48px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  color: #31506d;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.matrix-nav-ref button.active {
  color: #fff;
  border-color: #1769e0;
  background: #1769e0;
}

.matrix-cards-ref {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.matrix-card-ref {
  min-height: 150px;
  padding: 20px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  background: #fff;
}

.matrix-card-ref h3 {
  margin-bottom: 12px;
  color: #071a31;
  font-size: 18px;
}

.matrix-card-ref span {
  display: block;
  margin: 5px 0;
  color: #65758a;
  font-size: 13px;
}

.path-timeline-ref {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  position: relative;
}

.path-step-ref {
  padding: 18px 14px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.path-step-ref b {
  display: block;
  margin-bottom: 14px;
  color: #1769e0;
  font-size: 22px;
}

.path-step-ref h3 {
  margin-bottom: 8px;
  color: #071a31;
  font-size: 18px;
}

.path-step-ref p {
  margin: 0;
  color: #65758a;
  font-size: 13px;
}

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

.path-insights article {
  padding: 22px;
  border: 1px solid #d6e5f2;
  border-radius: 8px;
  background: #f8fbff;
}

.inner-cta-dark {
  margin-top: 34px;
  padding: 28px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, #071a31, #0c4ead);
}

.inner-cta-dark h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
}

.inner-cta-dark p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1080px) {
  .inner-hero,
  .matrix-layout-ref {
    grid-template-columns: 1fr;
  }

  .mini-icon-grid,
  .matrix-cards-ref,
  .path-timeline-ref {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fit-row,
  .path-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .inner-main {
    padding-top: 18px;
  }

  .inner-wrap {
    width: min(100% - 28px, var(--max));
  }

  .inner-hero,
  .inner-section {
    padding: 24px;
  }

  .inner-hero h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .vs-layout,
  .mini-icon-grid,
  .fit-row,
  .scenario-grid-ref,
  .matrix-cards-ref,
  .path-timeline-ref,
  .path-insights {
    grid-template-columns: 1fr;
  }

  .vs-badge {
    margin: 0 auto;
  }

  .inner-cta-dark {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
}

/* Reference-style visual polish: stronger hierarchy, varied icon color, no SVG assets */
:root {
  --ink: #0a2448;
  --ink-strong: #061b3a;
  --muted: #60758c;
  --blue: #1468f2;
  --blue-strong: #0754d4;
  --cyan: #16bdd6;
  --green: #20b77a;
  --amber: #f7a536;
  --violet: #7357ff;
  --red: #ef4d55;
  --surface: #f3f8ff;
  --line: #d8e8f7;
  --shadow: 0 26px 80px rgba(27, 93, 159, 0.13);
  --shadow-soft: 0 14px 44px rgba(27, 93, 159, 0.09);
}

body {
  background:
    radial-gradient(circle at 52% 0%, rgba(20, 104, 242, 0.1), transparent 34rem),
    linear-gradient(180deg, #f5faff 0%, #ffffff 42%, #f6fbff 100%);
}

.site-header {
  border-bottom-color: rgba(216, 232, 247, 0.8);
  background: rgba(255, 255, 255, 0.86);
}

.nav {
  width: min(1320px, calc(100% - 44px));
  height: 70px;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  font-size: 0;
  border-radius: 10px;
  background: url("../images/logo4.png") center / 100% 100% no-repeat;
  box-shadow: 0 12px 28px rgba(20, 104, 242, 0.24);
}

.brand-mark::before {
  content: none;
}

.brand-name {
  color: #071d3c;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-desc {
  color: #7a8da2;
}

.nav-links a {
  color: #1e3555;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #edf5ff;
}

.btn-primary {
  background: linear-gradient(135deg, #0e63f4 0%, #13b9d3 100%);
  box-shadow: 0 16px 32px rgba(20, 104, 242, 0.25);
}

.btn-secondary {
  color: #0d55c9;
  background: rgba(255, 255, 255, 0.92);
  border-color: #bdd7f5;
}

.refined-page .page-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 34%, #f4f9ff 100%);
}

.refined-hero {
  width: min(1320px, calc(100% - 44px));
  min-height: 660px;
  padding: 58px 0 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 36px;
}

.refined-kicker {
  color: #0754d4;
  letter-spacing: 0;
}

.refined-title {
  color: #061b3a;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.refined-lead {
  color: #435a73;
  font-size: 18px;
  line-height: 1.72;
}

.refined-points {
  max-width: 620px;
  gap: 12px;
}

.refined-point {
  position: relative;
  padding: 14px 12px 12px 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.refined-point::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #1468f2, #16bdd6);
  box-shadow: 0 0 0 6px rgba(20, 104, 242, 0.08);
}

.refined-point:nth-child(2)::before {
  background: linear-gradient(135deg, #20b77a, #6be4b1);
}

.refined-point:nth-child(3)::before {
  background: linear-gradient(135deg, #7357ff, #19c0d5);
}

.refined-point strong {
  color: #061b3a;
  font-size: 15px;
}

.refined-point span {
  color: #6a7c91;
  font-size: 12px;
}

.photo-panel {
  border: 0;
}

.hero-orbit-panel {
  min-height: 560px;
  box-shadow: none;
  background: transparent;
}

.hero-orbit-panel img {
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-orbit-panel::after {
  display: none;
}

.hero-orbit-panel .photo-caption {
  display: none;
}

.logo-strip {
  width: min(1320px, calc(100% - 44px));
}

.logo-strip-systems {
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid #d8e8f7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(27, 93, 159, 0.09);
}

.logo-strip-systems span {
  min-width: 66px;
  justify-content: center;
  border: 1px solid #e2edf9;
  color: #244363;
  background: #f7fbff;
  font-weight: 850;
}

.logo-strip-systems span:nth-child(4n + 1) {
  color: #0f63e6;
}

.logo-strip-systems span:nth-child(4n + 2) {
  color: #078c9e;
}

.logo-strip-systems span:nth-child(4n + 3) {
  color: #16895e;
}

.logo-strip-systems span:nth-child(4n + 4) {
  color: #7a55e8;
}

.refined-section {
  width: min(1320px, calc(100% - 44px));
  padding: 82px 0;
}

.refined-head {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.5fr);
  margin-bottom: 34px;
}

.refined-head h2 {
  color: #061b3a;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.16;
}

.refined-head p {
  color: #60758c;
}

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

.pain-card {
  position: relative;
  min-height: 210px;
  padding: 26px 24px 24px;
  border: 1px solid #d8e8f7;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.92));
  box-shadow: 0 18px 48px rgba(27, 93, 159, 0.09);
}

.pain-card h3 {
  margin: 18px 0 9px;
  color: #071d3c;
  font-size: 21px;
}

.pain-card p {
  margin: 0;
  color: #60758c;
  font-size: 14px;
  line-height: 1.72;
}

.visual-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(20, 104, 242, 0.1);
}

.visual-icon::before,
.visual-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--icon-main, #1468f2);
}

.visual-icon::before {
  width: 18px;
  height: 18px;
  left: 11px;
  top: 11px;
  box-shadow: 16px 14px 0 rgba(20, 104, 242, 0.36);
}

.visual-icon::after {
  width: 24px;
  height: 3px;
  left: 12px;
  bottom: 13px;
  transform: rotate(-18deg);
  opacity: 0.8;
}

.tone-blue {
  --icon-main: #1468f2;
}

.tone-cyan {
  --icon-main: #08aeca;
}

.tone-cyan .visual-icon {
  background: #e9fbff;
}

.tone-cyan .visual-icon::before {
  box-shadow: 16px 14px 0 rgba(8, 174, 202, 0.34);
}

.tone-amber {
  --icon-main: #f59b22;
}

.tone-amber .visual-icon {
  background: #fff7e7;
}

.tone-amber .visual-icon::before {
  box-shadow: 16px 14px 0 rgba(245, 155, 34, 0.34);
}

.tone-violet {
  --icon-main: #7357ff;
}

.tone-violet .visual-icon {
  background: #f1efff;
}

.tone-violet .visual-icon::before {
  box-shadow: 16px 14px 0 rgba(115, 87, 255, 0.32);
}

.blue-statement {
  margin: 28px 0 0;
  color: #0754d4;
  text-align: center;
  font-size: 18px;
  font-weight: 850;
}

.refined-page .section-band {
  background:
    linear-gradient(180deg, rgba(238, 247, 255, 0.78), rgba(255, 255, 255, 0.92));
}

.refined-page .capability-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 0;
  background: transparent;
}

.refined-page .capability-row {
  display: block;
  min-height: 260px;
  border: 1px solid #d8e8f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(27, 93, 159, 0.08);
}

.refined-page .capability-row > * {
  padding: 0;
  background: transparent;
}

.refined-page .capability-row strong {
  position: relative;
  display: block;
  padding: 70px 26px 12px;
  color: #071d3c;
  font-size: 22px;
}

.refined-page .capability-row strong::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: linear-gradient(135deg, #1468f2, #16bdd6);
  box-shadow: 0 0 0 8px rgba(20, 104, 242, 0.08);
}

.refined-page .capability-row:nth-child(2) strong::before {
  background: linear-gradient(135deg, #20b77a, #16bdd6);
}

.refined-page .capability-row:nth-child(3) strong::before {
  background: linear-gradient(135deg, #7357ff, #1468f2);
}

.refined-page .capability-row p {
  padding: 0 26px 20px;
  color: #60758c;
  font-size: 15px;
}

.refined-page .capability-row span {
  display: inline-flex;
  margin: 0 26px 26px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #0754d4;
  background: #edf5ff;
}

.metric-band {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #061b3a 0%, #0b3d82 68%, #0e63f4 100%);
  box-shadow: 0 24px 60px rgba(5, 31, 71, 0.2);
}

.metric-band div {
  min-height: 126px;
  padding: 24px 18px;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.metric-band strong {
  display: block;
  margin-bottom: 6px;
  font-size: 34px;
  line-height: 1;
}

.metric-band span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.scene-tile {
  box-shadow: 0 18px 54px rgba(6, 27, 58, 0.16);
}

.scene-tile::after {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.04), rgba(6, 27, 58, 0.82)),
    linear-gradient(90deg, rgba(20, 104, 242, 0.18), transparent 48%);
}

.clean-matrix article {
  background: #fff;
}

.clean-matrix article:nth-child(1) {
  border-top: 4px solid #1468f2;
}

.clean-matrix article:nth-child(2) {
  border-top: 4px solid #08aeca;
}

.clean-matrix article:nth-child(3) {
  border-top: 4px solid #7357ff;
}

.clean-matrix article:nth-child(4) {
  border-top: 4px solid #20b77a;
}

.process-line article {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.process-line article:nth-child(2n) b {
  color: #08aeca;
}

.process-line article:nth-child(3n) b {
  color: #7357ff;
}

.refined-cta {
  background:
    linear-gradient(90deg, rgba(5, 24, 55, 0.94), rgba(8, 63, 137, 0.84), rgba(10, 107, 206, 0.42)),
    url("../images/scenario-management.png") center / cover;
}

.inner-main {
  background:
    radial-gradient(circle at 16% 4%, rgba(20, 104, 242, 0.1), transparent 28rem),
    linear-gradient(180deg, #f2f7ff 0%, #ffffff 48%, #f6fbff 100%);
}

.inner-wrap {
  width: min(1240px, calc(100% - 44px));
}

.inner-panel {
  border-color: #d8e8f7;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(27, 93, 159, 0.1);
}

.inner-hero h1,
.inner-section h2 {
  color: #061b3a;
  letter-spacing: 0;
}

.inner-hero p,
.inner-section > p {
  color: #60758c;
}

.hero-visual {
  background: #f4f9ff;
  box-shadow: 0 18px 48px rgba(27, 93, 159, 0.1);
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  object-position: center;
}

.vs-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 38px rgba(27, 93, 159, 0.07);
}

.vs-card:first-child {
  border-top: 4px solid #8ba1b8;
}

.vs-card:last-child {
  border-top: 4px solid #1468f2;
}

.vs-card li::before {
  background: var(--blue);
}

.vs-card:first-child li::before {
  background: #8ba1b8;
}

.mini-icon-card {
  min-height: 126px;
  background: linear-gradient(180deg, #fff, #f9fcff);
  box-shadow: 0 12px 34px rgba(27, 93, 159, 0.06);
}

.mini-icon-card strong {
  color: #0a2448;
}

.mini-icon {
  color: #fff;
  background: linear-gradient(135deg, #1468f2, #16bdd6);
  box-shadow: 0 8px 18px rgba(20, 104, 242, 0.18);
}

.mini-icon-card:nth-child(4n + 2) .mini-icon {
  background: linear-gradient(135deg, #08aeca, #59dbef);
}

.mini-icon-card:nth-child(4n + 3) .mini-icon {
  background: linear-gradient(135deg, #20b77a, #6be4b1);
}

.mini-icon-card:nth-child(4n + 4) .mini-icon {
  background: linear-gradient(135deg, #7357ff, #9c8bff);
}

.mini-icon-card:nth-child(5n) .mini-icon {
  background: linear-gradient(135deg, #f59b22, #ffc467);
}

.fit-item {
  border-color: #d8e8f7;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  color: #4f667f;
}

.scenario-ref-card {
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 50px rgba(5, 24, 55, 0.16);
}

.scenario-ref-body h3 {
  font-size: 25px;
}

.scenario-ref-body a {
  color: #bdefff;
}

.matrix-nav-ref button {
  background: #fff;
  color: #17395e;
}

.matrix-nav-ref button:nth-child(2) {
  border-left: 4px solid #1468f2;
}

.matrix-nav-ref button:nth-child(3) {
  border-left: 4px solid #08aeca;
}

.matrix-nav-ref button:nth-child(4) {
  border-left: 4px solid #7357ff;
}

.matrix-nav-ref button:nth-child(5) {
  border-left: 4px solid #20b77a;
}

.matrix-nav-ref button.active {
  border-left-color: #1468f2;
  color: #fff;
  background: linear-gradient(135deg, #0e63f4, #1468f2);
}

.matrix-card-ref {
  background: linear-gradient(180deg, #fff, #f9fcff);
  box-shadow: 0 12px 34px rgba(27, 93, 159, 0.06);
}

.matrix-card-ref[data-matrix-card="rd"] {
  border-top: 4px solid #1468f2;
}

.matrix-card-ref[data-matrix-card="production"] {
  border-top: 4px solid #08aeca;
}

.matrix-card-ref[data-matrix-card="quality"] {
  border-top: 4px solid #7357ff;
}

.matrix-card-ref[data-matrix-card="supply"] {
  border-top: 4px solid #20b77a;
}

.matrix-card-ref span {
  display: inline-flex;
  margin: 4px 6px 4px 0;
  padding: 4px 8px;
  border-radius: 999px;
  color: #0d55c9;
  background: #edf5ff;
}

.matrix-card-ref[data-matrix-card="production"] span {
  color: #078c9e;
  background: #eafbff;
}

.matrix-card-ref[data-matrix-card="quality"] span {
  color: #5a45d8;
  background: #f1efff;
}

.matrix-card-ref[data-matrix-card="supply"] span {
  color: #16895e;
  background: #ecfbf4;
}

.path-timeline-ref {
  gap: 14px;
}

.path-step-ref {
  position: relative;
  min-height: 172px;
  padding: 22px 14px 18px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 34px rgba(27, 93, 159, 0.06);
}

.path-step-ref::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1468f2, #16bdd6);
  box-shadow: 0 0 0 8px rgba(20, 104, 242, 0.08);
}

.path-step-ref:nth-child(2n)::before {
  background: linear-gradient(135deg, #08aeca, #59dbef);
}

.path-step-ref:nth-child(3n)::before {
  background: linear-gradient(135deg, #7357ff, #9c8bff);
}

.path-step-ref:nth-child(5n)::before {
  background: linear-gradient(135deg, #20b77a, #6be4b1);
}

.path-step-ref b {
  margin-bottom: 6px;
  color: #1468f2;
  font-size: 18px;
}

.path-insights article {
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 34px rgba(27, 93, 159, 0.06);
}

.path-insights h3 {
  color: #071d3c;
}

.path-insights p {
  color: #60758c;
}

.inner-cta-dark {
  background:
    radial-gradient(circle at 84% 20%, rgba(22, 189, 214, 0.28), transparent 18rem),
    linear-gradient(135deg, #061b3a 0%, #0b3d82 100%);
}

.inner-cta-dark h2 {
  color: #fff;
}

.inner-cta-dark p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1080px) {
  .refined-hero {
    grid-template-columns: 1fr;
  }

  .refined-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pain-grid,
  .refined-page .capability-stack,
  .metric-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav,
  .refined-hero,
  .logo-strip,
  .refined-section,
  .refined-cta,
  .inner-wrap {
    width: min(100% - 28px, var(--max));
  }

  .refined-hero {
    padding-top: 34px;
  }

  .refined-title {
    font-size: clamp(36px, 12vw, 48px);
  }

  .refined-head {
    grid-template-columns: 1fr;
  }

  .refined-head .line {
    display: inline;
  }

  .refined-points,
  .pain-grid,
  .refined-page .capability-stack,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .hero-orbit-panel,
  .hero-orbit-panel img {
    min-height: 320px;
  }

  .logo-strip-systems {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 8px;
  }

  .pain-card {
    min-height: auto;
  }

  .metric-band div {
    min-height: 98px;
  }

  .refined-page .capability-row {
    min-height: auto;
  }

  .scenario-ref-body h3 {
    font-size: 22px;
  }
}

/* Executive homepage pass: less copy, stronger business-flow visual, no SVG */
.refined-page .site-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px);
}

.refined-page .nav {
  height: 68px;
}

.refined-page .nav-links {
  gap: 14px;
}

.refined-page .nav-links a {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 750;
}

.refined-page .refined-hero {
  min-height: 680px;
  padding: 70px 0 48px;
  grid-template-columns: minmax(520px, 0.86fr) minmax(600px, 1.14fr);
  gap: 42px;
}

.refined-page .refined-title {
  max-width: 720px;
  margin-bottom: 26px;
  color: #061b3a;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 740;
  line-height: 1.24;
  letter-spacing: 0;
}

.refined-page .refined-title .line {
  display: block;
}

.refined-page .refined-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #445d78;
  font-size: 17px;
  line-height: 1.86;
}

.capability-anchors {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin-top: 2px;
}

.capability-anchors .refined-point {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  padding: 12px 18px 12px 54px;
  border: 1px solid rgba(209, 226, 244, 0.75);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.capability-anchors .refined-point::before {
  top: 18px;
  left: 18px;
}

.capability-anchors .refined-point strong {
  margin: 0;
  font-size: 15px;
}

.capability-anchors .refined-point span {
  color: #506a85;
  font-size: 13px;
}

.flow-hero-visual {
  position: relative;
  min-height: 570px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 250, 255, 0.9));
  box-shadow: none;
  overflow: visible;
}

.flow-hero-visual img {
  width: 100%;
  min-height: 570px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  filter: saturate(0.98) contrast(1.01);
}

.flow-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(234, 244, 255, 0.16));
  pointer-events: none;
}

.flow-caption {
  position: absolute;
  left: 34%;
  top: 45%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #0754d4;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(20, 104, 242, 0.14);
}

.flow-node {
  position: absolute;
  z-index: 3;
  padding: 7px 11px;
  border: 1px solid rgba(190, 215, 245, 0.76);
  border-radius: 999px;
  color: #143a66;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(18, 83, 151, 0.12);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.flow-node::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #1468f2;
  box-shadow: 0 0 0 4px rgba(20, 104, 242, 0.1);
  vertical-align: 1px;
}

.node-system {
  left: 54%;
  top: 12%;
}

.node-rd {
  left: 16%;
  top: 27%;
}

.node-order {
  right: 8%;
  top: 38%;
}

.node-quality {
  left: 8%;
  bottom: 28%;
}

.node-supply {
  left: 42%;
  bottom: 10%;
}

.node-management {
  right: 7%;
  bottom: 22%;
}

.node-quality::before,
.node-management::before {
  background: #16bdd6;
}

.node-supply::before {
  background: #20b77a;
}

.node-order::before {
  background: #7357ff;
}

.data-belt {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  border: 1px solid #dbe9f8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(27, 93, 159, 0.07);
}

.data-belt strong {
  color: #061b3a;
  font-size: 15px;
}

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

.data-groups p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f6fbff;
  color: #4f6984;
  font-size: 13px;
}

.data-groups span {
  display: block;
  margin-bottom: 4px;
  color: #0d55c9;
  font-size: 12px;
  font-weight: 850;
}

.data-groups b {
  color: #314d6b;
  font-weight: 720;
}

.breakpoint-grid .pain-card {
  min-height: 176px;
  padding: 24px;
  box-shadow: none;
}

.breakpoint-grid .pain-card h3 {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 18px 0 8px;
  font-size: 21px;
}

.breakpoint-grid .pain-card h3 em {
  color: var(--icon-main, #1468f2);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.breakpoint-grid .pain-card p {
  max-width: 260px;
  line-height: 1.7;
}

.architecture-section .refined-head {
  margin-bottom: 30px;
}

.architecture-map {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.05fr 0.95fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid #d8e8f7;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.9));
  box-shadow: 0 22px 70px rgba(27, 93, 159, 0.08);
}

.architecture-map::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 104, 242, 0.32), transparent);
}

.arch-layer {
  position: relative;
  z-index: 1;
  min-height: 214px;
  padding: 24px 22px;
  border: 1px solid rgba(206, 224, 243, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.arch-layer::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 28px;
  height: 2px;
  background: #9ec7f5;
}

.arch-layer:last-child::after {
  display: none;
}

.arch-layer span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #0d55c9;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 900;
}

.arch-layer h3 {
  margin-bottom: 10px;
  color: #061b3a;
  font-size: 21px;
  line-height: 1.3;
}

.arch-layer p {
  margin: 0;
  color: #60758c;
  font-size: 14px;
  line-height: 1.7;
}

.arch-data {
  border-top: 4px solid #1468f2;
}

.arch-knowledge {
  border-top: 4px solid #16bdd6;
}

.arch-agent {
  border-top: 4px solid #7357ff;
}

.arch-output {
  border-top: 4px solid #20b77a;
  background: linear-gradient(180deg, #f8fffb, #ffffff);
}

.arch-output span {
  color: #16895e;
  background: #ecfbf4;
}

@media (max-width: 1080px) {
  .refined-page .refined-hero {
    grid-template-columns: 1fr;
  }

  .data-belt,
  .architecture-map {
    grid-template-columns: 1fr;
  }

  .data-groups {
    grid-template-columns: 1fr;
  }

  .arch-layer::after,
  .architecture-map::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .refined-page .refined-hero {
    min-height: auto;
    padding: 42px 0 30px;
    gap: 28px;
  }

  .refined-page .refined-title {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.16;
  }

  .capability-anchors .refined-point {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .flow-hero-visual,
  .flow-hero-visual img {
    min-height: 360px;
  }

  .flow-node {
    display: none;
  }

  .flow-caption {
    left: 18px;
    top: 18px;
    transform: none;
  }

  .data-belt {
    width: min(100% - 28px, var(--max));
    padding: 16px;
    gap: 14px;
  }

  .breakpoint-grid .pain-card p {
    max-width: none;
  }

  .architecture-map {
    padding: 16px;
    gap: 12px;
  }

  .arch-layer {
    min-height: auto;
    padding: 20px;
  }

  .arch-layer span {
    margin-bottom: 20px;
  }
}

/* Full-image homepage hero */
.refined-page .image-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 68px);
  margin: 0;
  padding: 92px max(44px, calc((100vw - 1320px) / 2 + 44px)) 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.96) 0%, rgba(246, 250, 255, 0.86) 34%, rgba(246, 250, 255, 0.42) 58%, rgba(246, 250, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(237, 247, 255, 0.18)),
    url("../images/hero-enterprise-scene-v4.png") center / cover no-repeat;
}

.refined-page .image-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, #f3f8ff);
  pointer-events: none;
}

.refined-page .image-hero > div {
  position: relative;
  z-index: 1;
  width: min(640px, 48vw);
}

.refined-page .image-hero .refined-kicker {
  margin-bottom: 22px;
  color: #0754d4;
}

.refined-page .image-hero .refined-title {
  max-width: 680px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.16;
}

.refined-page .image-hero .refined-lead {
  max-width: 600px;
  color: #37516e;
}

.refined-page .image-hero .capability-anchors {
  max-width: 600px;
}

.refined-page .image-hero .capability-anchors .refined-point {
  border-color: rgba(208, 225, 244, 0.72);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.refined-page .image-hero + .data-belt {
  margin-top: -22px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1080px) {
  .refined-page .image-hero {
    min-height: auto;
    padding: 58px 28px 370px;
    background:
      linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.86) 42%, rgba(246, 250, 255, 0.2) 68%, rgba(246, 250, 255, 0.08) 100%),
      url("../images/hero-enterprise-scene-v4.png") center bottom / auto 430px no-repeat;
  }

  .refined-page .image-hero > div {
    width: min(720px, 100%);
  }
}

@media (max-width: 760px) {
  .refined-page .image-hero {
    width: 100%;
    padding: 40px 14px 315px;
    background:
      linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.9) 48%, rgba(246, 250, 255, 0.12) 78%, rgba(246, 250, 255, 0.04) 100%),
      url("../images/hero-enterprise-scene-v4.png") center bottom / auto 340px no-repeat;
  }

  .refined-page .image-hero .refined-title {
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 1.16;
  }

  .refined-page .image-hero .refined-lead {
    font-size: 15px;
    line-height: 1.78;
  }

  .refined-page .image-hero + .data-belt {
    margin-top: -18px;
  }
}

/* Homepage visual reset: quieter, image-led, less template-like. */
.refined-page .image-hero {
  min-height: clamp(620px, calc(100svh - 118px), 760px);
  padding: 88px max(42px, calc((100vw - 1320px) / 2 + 42px)) 76px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.96) 0%, rgba(246, 250, 255, 0.84) 31%, rgba(246, 250, 255, 0.36) 55%, rgba(246, 250, 255, 0) 78%),
    linear-gradient(180deg, rgba(249, 252, 255, 0.08), rgba(238, 246, 255, 0.24)),
    url("../images/hero-enterprise-scene-v4.png") center right / cover no-repeat;
}

.refined-page .image-hero::after {
  height: 92px;
  background: linear-gradient(180deg, rgba(244, 249, 255, 0), #f6faff);
}

.refined-page .image-hero > div {
  width: min(590px, 44vw);
}

.refined-page .image-hero .refined-kicker {
  margin-bottom: 20px;
  padding: 7px 12px;
  color: #0754d4;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(194, 218, 244, 0.72);
  box-shadow: 0 12px 36px rgba(16, 72, 132, 0.08);
  backdrop-filter: blur(12px);
}

.refined-page .image-hero .refined-title {
  max-width: 620px;
  margin-bottom: 24px;
  color: #061b3a;
  font-size: clamp(46px, 4.55vw, 66px);
  font-weight: 780;
  line-height: 1.14;
}

.refined-page .image-hero .refined-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #304b68;
  font-size: 17px;
  line-height: 1.9;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-keywords span {
  padding: 8px 12px;
  border: 1px solid rgba(184, 213, 243, 0.84);
  border-radius: 999px;
  color: #173b66;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 12px 32px rgba(17, 72, 126, 0.08);
  backdrop-filter: blur(10px);
}

.refined-page .image-hero + .data-belt {
  margin-top: 34px;
  position: relative;
  z-index: 2;
}

.data-belt {
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(17, 72, 126, 0.08);
}

.data-groups p {
  border-radius: 10px;
  background: #f7fbff;
}

.refined-section {
  padding: 78px 0;
}

.refined-head {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.46fr);
  align-items: center;
  gap: 52px;
  margin-bottom: 36px;
}

.refined-head h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 760;
  line-height: 1.2;
}

.refined-head p {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.85;
}

.breakpoint-grid {
  gap: 20px;
}

.breakpoint-grid .pain-card {
  min-height: 164px;
  padding: 24px 24px 22px;
  border-color: rgba(200, 222, 244, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.72)),
    radial-gradient(circle at 18% 0%, var(--icon-soft, rgba(20, 104, 242, 0.12)), transparent 46%);
}

.breakpoint-grid .pain-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.breakpoint-grid .pain-card p {
  max-width: 245px;
  color: #526b86;
  font-size: 14px;
}

.blue-statement {
  margin-top: 26px;
  font-size: 17px;
}

.architecture-map {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 255, 0.84)),
    linear-gradient(90deg, rgba(20, 104, 242, 0.08), rgba(22, 189, 214, 0.04));
}

.arch-layer {
  border-radius: 12px;
  box-shadow: none;
}

.scene-gallery {
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 20px;
}

.scene-tile {
  min-height: 330px;
  box-shadow: 0 22px 56px rgba(6, 27, 58, 0.12);
}

.scene-tile:first-child {
  grid-row: span 2;
  min-height: 680px;
}

.scene-tile img {
  min-height: 330px;
}

.scene-tile:first-child img {
  min-height: 680px;
}

.scene-tile::after {
  background:
    linear-gradient(180deg, rgba(6, 27, 58, 0.02) 0%, rgba(6, 27, 58, 0.18) 44%, rgba(6, 27, 58, 0.86) 100%),
    linear-gradient(90deg, rgba(20, 104, 242, 0.24), transparent 52%);
}

.scene-tile figcaption {
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.scene-tile strong {
  font-size: 24px;
  line-height: 1.24;
}

@media (max-width: 1080px) {
  .refined-page .image-hero {
    min-height: 720px;
    padding: 62px 28px 390px;
    background:
      linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.9) 40%, rgba(246, 250, 255, 0.22) 74%, rgba(246, 250, 255, 0.04) 100%),
      url("../images/hero-enterprise-scene-v4.png") center bottom / auto 470px no-repeat;
  }

  .refined-page .image-hero > div {
    width: min(680px, 100%);
  }

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

  .scene-tile:first-child {
    grid-row: auto;
    min-height: 380px;
  }

  .scene-tile:first-child img {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .refined-page .image-hero {
    min-height: 680px;
    padding: 36px 16px 310px;
    background:
      linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.92) 50%, rgba(246, 250, 255, 0.2) 82%, rgba(246, 250, 255, 0.04) 100%),
      url("../images/hero-enterprise-scene-v4.png") 62% bottom / auto 340px no-repeat;
  }

  .refined-page .image-hero::after {
    height: 58px;
  }

  .refined-page .image-hero .refined-kicker {
    margin-bottom: 16px;
  }

  .refined-page .image-hero .refined-title {
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 1.18;
  }

  .refined-page .image-hero .refined-lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-keywords {
    margin-top: 24px;
  }

  .refined-page .image-hero + .data-belt {
    margin-top: 22px;
  }

  .refined-section {
    padding: 58px 0;
  }

  .refined-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 26px;
  }

  .refined-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .refined-head .line {
    display: inline;
  }

  .scene-gallery {
    grid-template-columns: 1fr;
  }

  .scene-tile,
  .scene-tile:first-child,
  .scene-tile img,
  .scene-tile:first-child img {
    min-height: 320px;
  }
}

/* Section title alignment: title row, subtitle row, content starts on the same left edge. */
.refined-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.refined-head h2 {
  max-width: 1120px;
  margin: 0;
  line-height: 1.18;
}

.refined-head p {
  max-width: 720px;
  margin: 0;
}

.refined-head .line {
  display: inline;
}

.architecture-section .refined-head {
  margin-bottom: 28px;
}

@media (max-width: 760px) {
  .refined-head {
    gap: 10px;
    margin-bottom: 24px;
  }

  .refined-head h2 {
    line-height: 1.22;
  }
}

/* Scene cards use figure elements; reset browser margins so the gallery locks to the section grid. */
.scene-gallery {
  width: 100%;
  margin: 0;
  justify-items: stretch;
}

.scene-tile {
  margin: 0;
}

/* Agent cards: keep every CTA in the same bottom position and render it as a real button. */
.agent-card {
  display: flex;
  flex-direction: column;
}

.agent-card > div {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 430px;
  padding-bottom: 78px;
}

.agent-card a {
  position: absolute;
  left: 20px;
  bottom: 20px;
  align-self: flex-start;
  justify-content: center;
  min-width: 172px;
  height: 42px;
  margin-top: 0;
  padding: 0 18px;
  border: 1px solid rgba(20, 104, 242, 0.32);
  border-radius: 8px;
  color: #0754d4;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(20, 104, 242, 0.08);
}

.agent-card a:hover {
  border-color: rgba(20, 104, 242, 0.8);
  color: #ffffff;
  background: linear-gradient(135deg, #1468f2 0%, #12b7d8 100%);
  box-shadow: 0 16px 32px rgba(20, 104, 242, 0.18);
}

@media (max-width: 760px) {
  .agent-card > div {
    padding-bottom: 76px;
  }

  .agent-card a {
    left: 18px;
    bottom: 18px;
  }
}

/* Conversion-oriented content split: homepage teaser, solution matrix, scenario details. */
.solution-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(196, 220, 246, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.92)),
    radial-gradient(circle at 94% 24%, rgba(20, 104, 242, 0.12), transparent 34%);
  box-shadow: 0 24px 72px rgba(15, 67, 125, 0.08);
}

.solution-teaser span,
.solution-bottom-cta span,
.scenario-bottom-cta span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #0754d4;
  font-size: 13px;
  font-weight: 850;
}

.solution-teaser h3 {
  margin: 0 0 10px;
  color: #061b3a;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.22;
}

.solution-teaser p {
  max-width: 690px;
  margin: 0;
  color: #60758c;
  font-size: 16px;
  line-height: 1.78;
}

.inner-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.inner-section-head h2 {
  margin: 0;
}

.inner-section-head p {
  max-width: 760px;
  margin: 0;
  color: #60758c;
  font-size: 16px;
  line-height: 1.8;
}

.solution-architecture {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(200, 222, 244, 0.86);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.solution-architecture article {
  min-height: 210px;
  padding: 22px 18px;
  border: 1px solid #d8e8f7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.solution-architecture span {
  color: #1468f2;
  font-weight: 900;
  font-size: 13px;
}

.solution-architecture h3 {
  margin: 34px 0 10px;
  color: #061b3a;
  font-size: 20px;
}

.solution-architecture p {
  margin: 0;
  color: #60758c;
  font-size: 14px;
  line-height: 1.7;
}

.agent-category {
  margin-top: 34px;
}

.agent-category > h3 {
  margin: 0 0 16px;
  color: #061b3a;
  font-size: 24px;
  line-height: 1.25;
}

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

.agent-card {
  overflow: hidden;
  border: 1px solid rgba(199, 221, 244, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(6, 27, 58, 0.08);
}

.agent-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #eaf3fb;
}

.agent-card div {
  padding: 20px;
}

.agent-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #0754d4;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 850;
}

.agent-card h4 {
  margin: 0 0 12px;
  color: #061b3a;
  font-size: 22px;
  line-height: 1.28;
}

.agent-card p {
  margin: 0 0 8px;
  color: #60758c;
  font-size: 14px;
  line-height: 1.62;
}

.agent-card p b {
  color: #173b66;
}

.agent-card a {
  display: inline-flex;
  margin-top: 8px;
  color: #0754d4;
  font-size: 14px;
  font-weight: 850;
}

.compact-process {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.solution-bottom-cta,
.scenario-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 52px;
  padding: 34px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 27, 58, 0.94), rgba(10, 87, 184, 0.82)),
    url("../images/deployment-security.png") center / cover no-repeat;
}

.solution-bottom-cta h2,
.scenario-bottom-cta h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.solution-bottom-cta p,
.scenario-bottom-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.solution-bottom-cta span,
.scenario-bottom-cta span {
  color: #8ff5dd;
}

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

.scenario-detail-card {
  overflow: hidden;
  border: 1px solid rgba(199, 221, 244, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(6, 27, 58, 0.08);
}

.scenario-detail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #eaf3fb;
}

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

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

.scenario-detail-body h3 {
  margin: 0;
  color: #061b3a;
  font-size: 24px;
}

.scenario-detail-body a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(20, 104, 242, 0.32);
  border-radius: 8px;
  color: #0754d4;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(20, 104, 242, 0.08);
}

.scenario-detail-body a:hover {
  border-color: rgba(20, 104, 242, 0.8);
  color: #ffffff;
  background: linear-gradient(135deg, #1468f2 0%, #12b7d8 100%);
  box-shadow: 0 16px 32px rgba(20, 104, 242, 0.18);
}

.scenario-pain {
  margin: 0 0 18px;
  color: #314d6c;
  font-size: 15px;
  line-height: 1.75;
}

.scenario-detail-body dl {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.scenario-detail-body dt {
  color: #0754d4;
  font-size: 13px;
  font-weight: 850;
}

.scenario-detail-body dd {
  margin: 0;
  color: #60758c;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .solution-architecture,
  .agent-card-grid,
  .compact-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-teaser,
  .solution-bottom-cta,
  .scenario-bottom-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (min-width: 1081px) {
  .scenario-bottom-cta h2,
  .scenario-bottom-cta p {
    max-width: none;
    white-space: nowrap;
  }

  .scenario-bottom-cta h2 {
    font-size: clamp(30px, 2.4vw, 36px);
  }
}

@media (max-width: 760px) {
  .solution-teaser {
    padding: 22px;
  }

  .solution-architecture,
  .agent-card-grid,
  .scenario-detail-grid,
  .compact-process {
    grid-template-columns: 1fr;
  }

  .solution-architecture article {
    min-height: auto;
  }

  .solution-architecture h3 {
    margin-top: 18px;
  }

  .agent-card div,
  .scenario-detail-body {
    padding: 18px;
  }

  .scenario-card-head {
    align-items: flex-start;
    gap: 12px;
  }

  .scenario-detail-body dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .scenario-detail-body dd {
    margin-bottom: 10px;
  }

  .solution-bottom-cta,
  .scenario-bottom-cta {
    padding: 24px;
  }
}

/* Targeted visual fixes: aligned hero media, cleaner breakpoints, clearer VS, real diagrams. */
.refined-page .image-hero {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.88) 34%, rgba(246, 250, 255, 0.5) 58%, rgba(246, 250, 255, 0.08) 78%, rgba(246, 250, 255, 0) 100%);
}

.refined-page .image-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(22px, calc((100vw - 1320px) / 2));
  bottom: 0;
  width: min(960px, calc(100vw - 520px));
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.58), rgba(246, 250, 255, 0.04) 36%),
    url("../images/hero-enterprise-scene-v4.png") center right / cover no-repeat;
}

.refined-page .image-hero::after {
  z-index: -1;
}

.breakpoint-grid .visual-icon {
  display: none;
}

.breakpoint-grid .pain-card {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 26px 24px;
  border-top: 3px solid var(--icon-main, #1468f2);
}

.breakpoint-grid .pain-card h3 {
  margin: 0 0 12px;
  gap: 12px;
}

.breakpoint-grid .pain-card h3 em {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  background: var(--icon-soft, #edf5ff);
}

.breakpoint-grid .pain-card p {
  max-width: none;
}

/* Breakpoint cards: compact CSS icons, no SVG, aligned as a consistent visual system. */
.breakpoint-grid .pain-card {
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 9px;
  align-items: start;
  min-height: 168px;
}

.break-icon {
  position: relative;
  grid-row: 1 / span 2;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--icon-main, #1468f2) 28%, #dcecff);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 32%),
    color-mix(in srgb, var(--icon-main, #1468f2) 10%, #ffffff);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--icon-main, #1468f2) 14%, transparent);
}

.break-icon::before,
.break-icon::after,
.break-icon i {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.icon-data::before {
  left: 14px;
  top: 12px;
  width: 20px;
  height: 8px;
  border: 2px solid var(--icon-main, #1468f2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.icon-data::after {
  left: 14px;
  top: 16px;
  width: 20px;
  height: 18px;
  border: 2px solid var(--icon-main, #1468f2);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.icon-data i {
  left: 19px;
  top: 24px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--icon-main, #1468f2);
  box-shadow: 0 5px 0 color-mix(in srgb, var(--icon-main, #1468f2) 66%, #ffffff);
}

.icon-flow::before {
  left: 9px;
  top: 20px;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--icon-main, #08aeca) 46%, #ffffff);
}

.icon-flow::after {
  left: 9px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--icon-main, #08aeca);
  box-shadow:
    20px 0 0 var(--icon-main, #08aeca),
    10px 18px 0 color-mix(in srgb, var(--icon-main, #08aeca) 72%, #ffffff);
}

.icon-flow i {
  left: 23px;
  top: 19px;
  width: 2px;
  height: 15px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--icon-main, #08aeca) 46%, #ffffff);
}

.icon-knowledge::before {
  left: 12px;
  top: 11px;
  width: 22px;
  height: 26px;
  border: 2px solid var(--icon-main, #f59b22);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
}

.icon-knowledge::after {
  left: 18px;
  top: 18px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--icon-main, #f59b22);
  box-shadow:
    0 6px 0 color-mix(in srgb, var(--icon-main, #f59b22) 64%, #ffffff),
    0 12px 0 color-mix(in srgb, var(--icon-main, #f59b22) 42%, #ffffff);
}

.icon-knowledge i {
  left: 11px;
  top: 14px;
  width: 5px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  background: color-mix(in srgb, var(--icon-main, #f59b22) 20%, #ffffff);
}

.icon-landing::before {
  left: 11px;
  top: 11px;
  width: 26px;
  height: 26px;
  border: 2px solid color-mix(in srgb, var(--icon-main, #7357ff) 56%, #ffffff);
  border-radius: 50%;
}

.icon-landing::after {
  left: 17px;
  top: 17px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--icon-main, #7357ff);
  border-radius: 50%;
}

.icon-landing i {
  left: 24px;
  top: 8px;
  width: 2px;
  height: 32px;
  border-radius: 999px;
  background: var(--icon-main, #7357ff);
  transform: rotate(45deg);
}

.breakpoint-grid .pain-card h3,
.breakpoint-grid .pain-card p {
  grid-column: 2;
}

/* Use Remix Icon library glyphs here; no hand-drawn CSS pictograms. */
.break-icon {
  display: grid;
  place-items: center;
}

.break-icon::before,
.break-icon::after {
  display: none;
}

.break-icon i[class^="ri-"],
.break-icon i[class*=" ri-"] {
  position: static;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--icon-main, #1468f2);
  font-size: 27px;
  line-height: 1;
  transform: none;
}

.pain-section .refined-head p {
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .pain-section .refined-head p {
    white-space: normal;
  }
}

/* Homepage delivery path: render as a real directional process diagram. */
.flow-diagram {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 34px 28px 28px;
  border: 1px solid rgba(188, 216, 244, 0.96);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.84)),
    radial-gradient(circle at 50% 0%, rgba(20, 104, 242, 0.1), transparent 46%);
  box-shadow: 0 24px 58px rgba(6, 27, 58, 0.07);
}

.flow-diagram::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 72px;
  top: 62px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 104, 242, 0.18), rgba(8, 174, 202, 0.52), rgba(20, 104, 242, 0.18));
}

.flow-diagram article {
  position: relative;
  z-index: 1;
  min-height: 178px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.flow-diagram article:not(:last-child)::after {
  content: "\ea6e";
  position: absolute;
  top: 15px;
  right: -11px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid #b8d7f7;
  border-radius: 50%;
  color: #1468f2;
  background: #ffffff;
  font-family: "remixicon";
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(20, 104, 242, 0.12);
}

.flow-diagram b {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 0 22px;
  border: 1px solid rgba(20, 104, 242, 0.22);
  border-radius: 50%;
  color: #0754d4;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(180deg, #eff7ff, #ffffff);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(20, 104, 242, 0.12);
}

.flow-diagram article:nth-child(2n) b {
  color: #0696b8;
  border-color: rgba(8, 174, 202, 0.24);
  background: linear-gradient(180deg, #ebfbff, #ffffff);
}

.flow-diagram article:nth-child(3n) b {
  color: #6952ef;
  border-color: rgba(115, 87, 255, 0.24);
  background: linear-gradient(180deg, #f2f0ff, #ffffff);
}

.flow-diagram h3 {
  margin: 0 0 8px;
  color: #061b3a;
  font-size: 19px;
  line-height: 1.3;
}

.flow-diagram p {
  max-width: 148px;
  margin: 0;
  color: #60758c;
  font-size: 14px;
  line-height: 1.68;
}

/* Homepage architecture: standard layered architecture diagram, not card collage. */
.layer-architecture {
  display: block;
  padding: 30px;
  border-color: rgba(188, 216, 244, 0.96);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(20, 104, 242, 0.11), transparent 46%);
  box-shadow: 0 24px 64px rgba(6, 27, 58, 0.08);
}

.layer-architecture::before {
  display: none;
}

.layer-architecture .arch-band {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: center;
  min-height: 122px;
  padding: 22px 24px;
  border: 1px solid rgba(204, 225, 246, 0.94);
  border-left: 4px solid var(--layer-color, #1468f2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(6, 27, 58, 0.055);
}

.layer-architecture .arch-data {
  --layer-color: #1468f2;
  border-top: 1px solid rgba(204, 225, 246, 0.94);
}

.layer-architecture .arch-knowledge {
  --layer-color: #08aeca;
  border-top: 1px solid rgba(204, 225, 246, 0.94);
}

.layer-architecture .arch-agent {
  --layer-color: #7357ff;
  border-top: 1px solid rgba(204, 225, 246, 0.94);
}

.layer-architecture .arch-output {
  --layer-color: #20b77a;
  border-top: 1px solid rgba(204, 225, 246, 0.94);
  background:
    linear-gradient(180deg, rgba(248, 255, 252, 0.95), rgba(255, 255, 255, 0.92));
}

.arch-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--layer-color, #1468f2) 30%, #dcecff);
  border-radius: 50%;
  color: var(--layer-color, #1468f2);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.94), transparent 35%),
    color-mix(in srgb, var(--layer-color, #1468f2) 9%, #ffffff);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--layer-color, #1468f2) 14%, transparent);
}

.arch-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--layer-color, #1468f2);
  background: color-mix(in srgb, var(--layer-color, #1468f2) 10%, #ffffff);
  font-size: 12px;
  font-weight: 900;
}

.arch-copy h3 {
  margin: 0 0 8px;
  color: #061b3a;
  font-size: 22px;
  line-height: 1.28;
}

.arch-copy p {
  max-width: 680px;
  margin: 0;
  color: #60758c;
  font-size: 14px;
  line-height: 1.72;
}

.arch-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.arch-chips b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--layer-color, #1468f2) 18%, #dcecff);
  border-radius: 999px;
  color: #173b66;
  background: rgba(247, 251, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.arch-down {
  position: relative;
  display: grid;
  place-items: center;
  height: 34px;
}

.arch-down::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 51px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 104, 242, 0.16), rgba(8, 174, 202, 0.52));
}

.arch-down i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #b8d7f7;
  border-radius: 50%;
  color: #1468f2;
  background: #fff;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(20, 104, 242, 0.12);
}

@media (max-width: 1080px) {
  .flow-diagram {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .flow-diagram::before {
    display: none;
  }

  .flow-diagram article:not(:last-child)::after {
    right: 14px;
  }

  .layer-architecture .arch-band {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .arch-chips {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .flow-diagram {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px 18px;
  }

  .flow-diagram::before {
    display: block;
    left: 46px;
    right: auto;
    top: 38px;
    bottom: 42px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(20, 104, 242, 0.18), rgba(8, 174, 202, 0.52), rgba(20, 104, 242, 0.18));
  }

  .flow-diagram article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 16px;
    min-height: auto;
    padding: 0 0 28px;
  }

  .flow-diagram article:last-child {
    padding-bottom: 0;
  }

  .flow-diagram b {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .flow-diagram h3,
  .flow-diagram p {
    grid-column: 2;
  }

  .flow-diagram p {
    max-width: none;
  }

  .flow-diagram article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 16px;
    bottom: -3px;
    transform: rotate(90deg);
  }

  .layer-architecture {
    padding: 18px;
  }

  .layer-architecture .arch-band {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .arch-index {
    width: 46px;
    height: 46px;
  }

  .arch-down::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .arch-chips {
    grid-column: auto;
  }
}

.vs-layout {
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
  align-items: stretch;
}

.vs-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(6, 27, 58, 0.08);
}

.vs-card:first-child {
  border: 1px solid #d9e4ef;
  border-top: 5px solid #8ba1b8;
  background:
    linear-gradient(180deg, #ffffff, #f7f9fc),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(139, 161, 184, 0.05) 12px 24px);
}

.vs-card:last-child {
  border: 1px solid #b7d4f8;
  border-top: 5px solid #1468f2;
  background:
    radial-gradient(circle at 90% 8%, rgba(20, 104, 242, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff, #f2f8ff);
}

.vs-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #5f7288;
  background: #eef3f8;
  font-size: 13px;
  font-weight: 850;
}

.vs-card:last-child .vs-label {
  color: #0754d4;
  background: #eaf3ff;
}

.vs-card:first-child h3 {
  color: #43566c;
}

.vs-card:last-child h3 {
  color: #061b3a;
}

.vs-card li {
  padding-left: 28px;
  line-height: 1.7;
}

.vs-card li::before {
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #8ba1b8;
}

.vs-card:first-child li::before {
  background: linear-gradient(45deg, transparent 43%, #8ba1b8 43% 57%, transparent 57%);
}

.vs-card:last-child li::before {
  border-color: #1468f2;
  background:
    linear-gradient(135deg, transparent 0 40%, #1468f2 40% 55%, transparent 55%),
    #fff;
}

.vs-badge {
  align-self: center;
  width: 76px;
  height: 76px;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8ba1b8, #1468f2 52%, #13b9d3);
  box-shadow: 0 18px 42px rgba(20, 104, 242, 0.24);
}

.architecture-diagram {
  display: grid;
  grid-template-columns: 1.1fr 54px 1.1fr 54px 1.1fr;
  gap: 0;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
}

.arch-source-grid,
.arch-agent-hub {
  display: grid;
  gap: 12px;
}

.architecture-diagram article {
  min-height: auto;
  padding: 18px;
  border: 1px solid #d8e8f7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(17, 72, 126, 0.06);
}

.arch-core article {
  min-height: 260px;
  display: grid;
  align-content: center;
  border-color: #a8cff8;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 104, 242, 0.16), transparent 44%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
}

.architecture-diagram span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0754d4;
  font-size: 13px;
  font-weight: 900;
}

.architecture-diagram strong {
  display: block;
  color: #061b3a;
  font-size: 17px;
  line-height: 1.45;
}

.architecture-diagram h3 {
  margin: 0 0 12px;
  color: #061b3a;
  font-size: 24px;
  line-height: 1.25;
}

.architecture-diagram p {
  margin: 0;
  color: #60758c;
  font-size: 15px;
  line-height: 1.75;
}

.arch-arrow {
  display: grid;
  place-items: center;
  color: #1468f2;
  font-size: 34px;
  font-weight: 900;
}

.compact-process {
  position: relative;
  gap: 18px;
}

.compact-process article {
  position: relative;
  min-height: 170px;
  border-radius: 14px;
}

.compact-process article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border: 1px solid #b8d7f7;
  border-radius: 50%;
  color: #0754d4;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(20, 104, 242, 0.12);
}

@media (max-width: 1080px) {
  .refined-page .image-hero::before {
    right: 22px;
    width: min(720px, calc(100vw - 44px));
    top: auto;
    height: 470px;
  }

  .architecture-diagram {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .arch-arrow {
    transform: rotate(90deg);
  }

  .compact-process article:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -23px;
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 760px) {
  .refined-page .image-hero {
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.92) 50%, rgba(246, 250, 255, 0.2) 82%, rgba(246, 250, 255, 0.04) 100%);
  }

  .refined-page .image-hero::before {
    right: 14px;
    left: 14px;
    width: auto;
    height: 340px;
    background:
      linear-gradient(180deg, rgba(246, 250, 255, 0), rgba(246, 250, 255, 0.82)),
      url("../images/hero-enterprise-scene-v4.png") center bottom / cover no-repeat;
  }

  .vs-layout {
    grid-template-columns: 1fr;
  }

  .vs-badge {
    width: 58px;
    height: 58px;
  }

  .architecture-diagram {
    padding: 16px;
  }
}

/* Solution page architecture: premium hub diagram with clear input/core/output flow. */
.sa-architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 54px minmax(320px, 1.1fr) 54px minmax(0, 0.9fr);
  gap: 0;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(188, 216, 244, 0.96);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(20, 104, 242, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.9));
  box-shadow: 0 26px 70px rgba(6, 27, 58, 0.08);
}

.sa-column {
  display: grid;
  gap: 12px;
}

.sa-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 2px;
  padding: 5px 11px;
  border-radius: 999px;
  color: #0754d4;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 900;
}

.sa-architecture article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(204, 225, 246, 0.94);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(6, 27, 58, 0.055);
}

.sa-architecture article i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 104, 242, 0.18);
  border-radius: 12px;
  color: #1468f2;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  font-size: 22px;
}

.sa-architecture article span {
  display: block;
  margin: 0 0 5px;
  color: #0754d4;
  font-size: 13px;
  font-weight: 900;
}

.sa-architecture article strong {
  display: block;
  color: #061b3a;
  font-size: 15px;
  line-height: 1.45;
}

.sa-connector {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 270px;
}

.sa-connector::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 104, 242, 0.12), rgba(8, 174, 202, 0.58), rgba(20, 104, 242, 0.12));
}

.sa-connector i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #b8d7f7;
  border-radius: 50%;
  color: #1468f2;
  background: #fff;
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(20, 104, 242, 0.14);
}

.sa-core {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(168, 207, 248, 0.98);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(20, 104, 242, 0.18), transparent 44%),
    linear-gradient(180deg, #ffffff, #f3f8ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 28px 72px rgba(20, 104, 242, 0.12);
}

.sa-core-ring {
  position: relative;
  width: 152px;
  height: 152px;
  margin: 0 auto 18px;
  border: 1px solid rgba(20, 104, 242, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 104, 242, 0.14) 0 32%, transparent 33%),
    conic-gradient(from 120deg, rgba(20, 104, 242, 0.08), rgba(8, 174, 202, 0.24), rgba(115, 87, 255, 0.18), rgba(20, 104, 242, 0.08));
}

.sa-core-mark {
  position: absolute;
  inset: 41px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #1468f2, #12b7d8);
  font-size: 34px;
  box-shadow: 0 18px 36px rgba(20, 104, 242, 0.26);
}

.sa-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 24px;
  border: 1px solid rgba(20, 104, 242, 0.18);
  border-radius: 999px;
  color: #0754d4;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(20, 104, 242, 0.12);
}

.orbit-one {
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
}

.orbit-two {
  right: -16px;
  bottom: 34px;
}

.orbit-three {
  left: -16px;
  bottom: 34px;
}

.sa-core h3 {
  margin: 10px 0 12px;
  color: #061b3a;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
}

.sa-core p {
  max-width: 430px;
  margin: 0 auto;
  color: #60758c;
  font-size: 15px;
  line-height: 1.78;
  text-align: center;
}

.sa-core .sa-kicker {
  margin: 0 auto;
}

.sa-core-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.sa-core-tags b {
  padding: 6px 11px;
  border: 1px solid rgba(20, 104, 242, 0.16);
  border-radius: 999px;
  color: #173b66;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.sa-outputs article i {
  color: #08aeca;
  border-color: rgba(8, 174, 202, 0.2);
  background: linear-gradient(180deg, #ebfbff, #ffffff);
}

/* Agent matrix CTA: sit beside the category pill, centered and close to content. */
.agent-card > div {
  min-height: 0;
  padding: 20px;
  padding-bottom: 22px;
}

.agent-card span {
  max-width: calc(100% - 154px);
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
}

.agent-card a {
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  height: 30px;
  margin: 0;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
  white-space: nowrap;
}

.agent-card h4 {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .sa-architecture {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sa-connector {
    min-height: 38px;
  }

  .sa-connector::before {
    left: 50%;
    right: auto;
    top: -12px;
    bottom: -12px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(20, 104, 242, 0.12), rgba(8, 174, 202, 0.58), rgba(20, 104, 242, 0.12));
  }

  .sa-connector i {
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .sa-architecture {
    padding: 18px;
  }

  .sa-core {
    min-height: auto;
    padding: 22px 18px;
  }

  .sa-core-ring {
    width: 132px;
    height: 132px;
  }

  .sa-core-mark {
    inset: 36px;
  }

  .agent-card > div {
    padding: 18px;
  }

  .agent-card span {
    max-width: calc(100% - 144px);
  }

  .agent-card a {
    top: 18px;
    right: 18px;
    min-width: 126px;
  }
}

/* Final alignment pass for the solution architecture diagram. */
.sa-architecture {
  position: relative;
  grid-template-columns: minmax(292px, 0.95fr) 58px minmax(350px, 1.06fr) 58px minmax(292px, 0.95fr);
  align-items: stretch;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
    radial-gradient(circle at 50% 50%, rgba(20, 104, 242, 0.08), transparent 48%);
}

.sa-architecture::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(20, 104, 242, 0.2), rgba(8, 174, 202, 0.34), rgba(20, 104, 242, 0.2), transparent);
}

.sa-column {
  position: relative;
  z-index: 1;
  grid-template-rows: 30px repeat(3, 92px);
  align-content: center;
  gap: 12px;
  min-height: 384px;
  padding: 18px;
  border: 1px solid rgba(211, 228, 246, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.sa-column .sa-kicker {
  align-self: start;
  min-height: 28px;
  margin: 0;
  align-items: center;
}

.sa-architecture article {
  min-height: 0;
  padding: 12px 14px;
  box-shadow: none;
}

.sa-architecture article span {
  margin-bottom: 4px;
}

.sa-connector {
  z-index: 2;
  min-height: 384px;
}

.sa-connector::before {
  left: 0;
  right: 0;
  top: 50%;
}

.sa-core {
  z-index: 1;
  display: flex;
  min-height: 384px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
}

.sa-core-ring {
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
}

.sa-core-mark {
  inset: 32px;
  border-radius: 15px;
  font-size: 26px;
}

.sa-orbit {
  width: 42px;
  height: 22px;
}

.orbit-two {
  right: -13px;
  bottom: 26px;
}

.orbit-three {
  left: -13px;
  bottom: 26px;
}

.sa-core h3 {
  max-width: none;
  margin: 8px auto 10px;
  font-size: 22px;
  white-space: nowrap;
}

.sa-core p {
  max-width: 348px;
  font-size: 14px;
  line-height: 1.66;
}

.sa-core-tags {
  margin-top: 14px;
}

.sa-architecture article strong {
  font-size: 14px;
  line-height: 1.42;
}

@media (max-width: 1080px) {
  .sa-architecture {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sa-architecture::before {
    display: none;
  }

  .sa-column,
  .sa-core {
    min-height: auto;
  }

  .sa-connector {
    min-height: 38px;
  }
}

/* Reference-style architecture diagram: input -> controlled hub -> output. */
.sa-architecture-v2 {
  display: grid;
  grid-template-columns: 286px 46px minmax(0, 1fr) 46px 286px;
  grid-template-areas:
    "input arrow-in hub arrow-out output"
    "governance governance governance governance governance";
  gap: 28px 0;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sa-architecture-v2::before {
  display: none;
}

.sa-input-panel {
  grid-area: input;
}

.sa-output-panel {
  grid-area: output;
}

.sa-side-panel {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr);
  gap: 18px;
  min-height: 540px;
  padding: 28px 22px;
  border: 1px solid rgba(168, 203, 245, 0.92);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 104, 242, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 54px rgba(6, 27, 58, 0.055);
}

.sa-output-panel {
  border-color: rgba(126, 215, 224, 0.78);
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 174, 202, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(247, 254, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.sa-side-panel h3 {
  margin: 0 0 12px;
  color: #0754d4;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
}

.sa-output-panel h3 {
  color: #08a2b8;
}

.sa-architecture-v2 .sa-data-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 118px;
  padding: 18px 14px;
  border: 1px solid rgba(204, 225, 246, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.sa-architecture-v2 .sa-data-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 104, 242, 0.18);
  border-radius: 14px;
  color: #1468f2;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  font-size: 24px;
}

.sa-output-panel .sa-data-card i {
  color: #08aeca;
  border-color: rgba(8, 174, 202, 0.2);
  background: linear-gradient(180deg, #ecfbff, #ffffff);
}

.sa-architecture-v2 .sa-data-card strong {
  display: block;
  margin-bottom: 8px;
  color: #061b3a;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.sa-architecture-v2 .sa-data-card span {
  display: block;
  margin: 0;
  color: #233f63;
  font-size: 13px;
  line-height: 1.62;
  font-weight: 500;
}

.sa-flow-arrow {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  color: #1468f2;
}

.sa-flow-arrow:nth-of-type(2) {
  grid-area: arrow-in;
}

.sa-flow-arrow:nth-of-type(4) {
  grid-area: arrow-out;
}

.sa-flow-arrow i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(168, 203, 245, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  font-size: 27px;
  box-shadow: 0 14px 28px rgba(20, 104, 242, 0.14);
}

.sa-hub-panel {
  position: relative;
  grid-area: hub;
  min-height: 540px;
  padding: 66px 30px 24px;
  border: 1px solid rgba(82, 137, 255, 0.88);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 46%, rgba(20, 104, 242, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.98));
  box-shadow: 0 24px 66px rgba(20, 104, 242, 0.08);
}

.sa-hub-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 260px;
  height: 50px;
  transform: translate(-50%, -1px);
  border-radius: 0 0 14px 14px;
  color: #fff;
  background: linear-gradient(135deg, #1468f2, #0754d4);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(20, 104, 242, 0.22);
}

.sa-hub-orbit {
  position: relative;
  width: min(470px, 100%);
  height: 312px;
  margin: 0 auto 0;
}

.sa-hub-orbit::before {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  top: 72px;
  bottom: 48px;
  border: 1px dashed rgba(20, 104, 242, 0.58);
  border-radius: 50%;
}

.sa-hub-center {
  position: absolute;
  left: 50%;
  top: 54%;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  transform: translate(-50%, -50%);
  border: 9px solid rgba(20, 104, 242, 0.09);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #1468f2, #0754d4);
  box-shadow: 0 20px 46px rgba(20, 104, 242, 0.24);
  text-align: center;
  z-index: 1;
}

.sa-hub-center strong {
  display: grid;
  gap: 7px;
  place-items: center;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
}

.sa-hub-center strong span {
  display: block;
  margin: 0;
  color: #fff;
  font-size: inherit;
  font-weight: 900;
  line-height: 1.1;
}

.sa-orbit-node {
  position: absolute;
  display: grid;
  grid-template-columns: 54px max-content;
  gap: 12px;
  align-items: center;
  color: #061b3a;
  z-index: 2;
}

.sa-orbit-node i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(8, 174, 202, 0.22);
  border-radius: 50%;
  color: #08aeca;
  background: rgba(255, 255, 255, 0.96);
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(8, 174, 202, 0.12);
}

.sa-orbit-node strong {
  display: block;
  margin-bottom: 4px;
  color: #0754d4;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.sa-orbit-node span {
  display: block;
  margin: 0;
  color: #233f63;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.sa-node-knowledge {
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.sa-node-rule {
  left: 12px;
  bottom: 10px;
  grid-template-columns: max-content 54px;
  gap: 10px;
}

.sa-node-rule i {
  grid-column: 2;
}

.sa-node-rule div {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.sa-node-permission {
  right: 12px;
  bottom: 10px;
}

.sa-hub-panel > p {
  max-width: 510px;
  margin: 4px auto 20px;
  color: #3f5878;
  font-size: 15px;
  line-height: 1.64;
  text-align: center;
}

.sa-hub-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.sa-hub-tools article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(188, 216, 244, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(20, 104, 242, 0.055);
}

.sa-hub-tools article + article {
  border-left: 1px solid rgba(188, 216, 244, 0.92);
}

.sa-hub-tools i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(20, 104, 242, 0.14);
  border-radius: 10px;
  color: #1468f2;
  background: #f3f8ff;
  font-size: 21px;
}

.sa-hub-tools strong {
  display: block;
  color: #061b3a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.sa-hub-tools span {
  display: block;
  margin: 4px 0 0;
  color: #60758c;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.solution-page .sa-hub-tools article strong {
  color: #061b3a;
}

.solution-page .sa-hub-tools article span {
  color: #536b86;
  font-weight: 600;
}

.sa-governance-bar {
  grid-area: governance;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(188, 216, 244, 0.94);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 104, 242, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(6, 27, 58, 0.055);
}

.sa-governance-bar article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 16px 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sa-governance-bar article + article {
  border-left: 1px solid rgba(168, 203, 245, 0.72);
}

.sa-governance-bar i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #1468f2;
  background: linear-gradient(180deg, #eef6ff, #ffffff);
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(20, 104, 242, 0.1);
}

.sa-governance-bar strong {
  display: block;
  margin-bottom: 4px;
  color: #061b3a;
  font-size: 16px;
  font-weight: 900;
}

.sa-governance-bar span {
  display: block;
  margin: 0;
  color: #60758c;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .sa-architecture-v2 {
    grid-template-columns: minmax(238px, 0.8fr) 42px minmax(390px, 1fr) 42px minmax(238px, 0.8fr);
  }

  .sa-side-panel {
    padding: 24px 18px;
  }

  .sa-architecture-v2 .sa-data-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 13px;
  }

  .sa-architecture-v2 .sa-data-card i {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .sa-hub-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .sa-hub-orbit {
    transform: scale(0.94);
    transform-origin: center top;
    margin-bottom: -10px;
  }

  .sa-hub-tools strong {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .sa-architecture-v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "input"
      "arrow-in"
      "hub"
      "arrow-out"
      "output"
      "governance";
    gap: 18px;
  }

  .sa-side-panel,
  .sa-hub-panel {
    min-height: auto;
  }

  .sa-flow-arrow {
    min-height: 42px;
  }

  .sa-flow-arrow i {
    transform: rotate(90deg);
  }

  .sa-governance-bar {
    grid-template-columns: 1fr;
  }

  .sa-governance-bar article + article {
    border-left: 0;
    border-top: 1px solid rgba(168, 203, 245, 0.72);
  }
}

@media (max-width: 620px) {
  .sa-hub-title {
    width: 220px;
    font-size: 19px;
  }

  .sa-hub-orbit {
    width: 296px;
    height: 238px;
    transform: none;
  }

  .sa-hub-orbit::before {
    left: 24px;
    right: 24px;
  }

  .sa-hub-center {
    width: 134px;
    height: 134px;
  }

  .sa-hub-center strong {
    font-size: 13px;
  }

  .sa-orbit-node {
    grid-template-columns: 46px max-content;
    gap: 8px;
  }

  .sa-orbit-node i {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .sa-node-knowledge {
    left: 60px;
  }

  .sa-node-permission {
    right: -6px;
  }

  .sa-hub-tools {
    grid-template-columns: 1fr 1fr;
  }

  .sa-hub-tools article:nth-child(3) {
    border-left: 1px solid rgba(188, 216, 244, 0.92);
    border-top: 1px solid rgba(188, 216, 244, 0.92);
  }

  .sa-hub-tools article:nth-child(4) {
    border-top: 1px solid rgba(188, 216, 244, 0.92);
  }
}

/* Agent matrix card header: title and CTA share one row, no category chip. */
.solution-page .agent-card > div {
  padding: 18px 20px 20px;
}

.solution-page .agent-card h4 {
  max-width: calc(100% - 134px);
  min-height: 32px;
  margin: 0 0 12px;
  color: #061b3a;
  font-size: 18px;
  line-height: 32px;
  font-weight: 900;
  white-space: nowrap;
}

.solution-page .agent-card a {
  top: 18px;
  right: 20px;
  min-width: 122px;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 32px;
}

@media (max-width: 760px) {
  .solution-page .agent-card h4 {
    max-width: none;
    min-height: 0;
    padding-right: 132px;
    line-height: 1.35;
    white-space: normal;
  }

  .solution-page .agent-card a {
    top: 18px;
    right: 18px;
    min-width: 118px;
  }
}

/* Browser comment pass: alignment, removed white panels, and contact CTA cleanup. */
.nav {
  justify-content: flex-start;
}

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

.nav-actions {
  margin-left: 20px;
}

.inner-panel {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.inner-hero {
  padding: 40px;
}

.about-intro-head .section-subtitle,
.about-service-head .section-subtitle,
.cta-section p {
  max-width: none;
  white-space: nowrap;
}

.about-contact-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 74px;
}

.about-contact-cta h2,
.about-contact-cta > p {
  grid-column: 1;
}

.about-contact-cta .contact-form {
  grid-column: 1;
  grid-row: auto;
  box-shadow: 0 18px 46px rgba(27, 93, 159, 0.12);
}

.footer-inner {
  align-items: start;
}

.ecosystem-links h3 {
  margin-bottom: 20px;
}

.refined-page .image-hero {
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.93) 26%, rgba(246, 250, 255, 0.72) 43%, rgba(246, 250, 255, 0.26) 68%, rgba(246, 250, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(237, 247, 255, 0.18)),
    url("../images/hero-enterprise-scene-v4.png") right center / cover no-repeat;
}

.refined-page .image-hero::before {
  display: none;
}

.breakpoint-grid .pain-card {
  grid-template-columns: 48px minmax(0, 1fr);
}

.breakpoint-grid .pain-card h3 {
  align-self: center;
}

.breakpoint-grid .pain-card p {
  grid-column: 1 / -1;
}

.flow-diagram article:not(:last-child)::after {
  left: calc(50% + 28px);
  right: auto;
}

.refined-cta h2 {
  max-width: none;
  white-space: nowrap;
}

.refined-cta {
  width: min(1320px, calc(100% - 44px));
}

.sa-hub-tools article {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
}

.solution-page .agent-card h4 {
  max-width: calc(100% - 100px);
}

.solution-page .agent-card a {
  min-width: 86px;
  padding: 0 12px;
}

@media (max-width: 1080px) {
  .inner-hero {
    padding: 32px;
  }

  .about-intro-head .section-subtitle,
  .about-service-head .section-subtitle,
  .cta-section p,
  .refined-cta h2 {
    white-space: normal;
  }

  .about-contact-cta {
    grid-template-columns: 1fr;
  }

  .about-contact-cta h2,
  .about-contact-cta > p,
  .about-contact-cta .contact-form {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .inner-hero {
    padding: 24px;
  }
}

.page-hero .about-hero-title {
  font-size: clamp(34px, 3.8vw, 48px);
}

.page-hero .about-hero-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .page-hero .about-hero-title span {
    white-space: normal;
  }
}

/* Agent page card header: align content to media edges and keep CTA clear of long titles. */
.solution-page .agent-card > div {
  position: relative;
  padding: 20px 0 22px;
}

.solution-page .agent-card h4 {
  max-width: none;
  min-height: 34px;
  margin: 0 118px 12px 0;
  padding: 0;
  color: #061b3a;
  font-size: 20px;
  line-height: 1.35;
  white-space: normal;
}

.solution-page .agent-card p {
  margin-right: 0;
}

.solution-page .agent-card a {
  position: absolute;
  top: 20px;
  right: 0;
  left: auto;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 32px;
  margin: 0;
  padding: 0 12px;
  border-radius: 8px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .solution-page .agent-card h4 {
    margin-right: 112px;
  }

  .solution-page .agent-card a {
    top: 18px;
    right: 0;
  }
}
