:root {
  --bg: #eff2f4;
  --bg-soft: #f7f8fa;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-alt: rgba(245, 247, 250, 0.98);
  --line: rgba(25, 43, 64, 0.12);
  --line-strong: rgba(25, 43, 64, 0.22);
  --text: #172534;
  --muted: #677688;
  --muted-strong: #455668;
  --primary: #1d4165;
  --accent: #8d6b45;
  --accent-soft: rgba(141, 107, 69, 0.08);
  --shadow: 0 18px 44px rgba(20, 33, 48, 0.07);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 48px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Helvetica Neue", sans-serif;
  background:
    linear-gradient(180deg, #f8f9fb 0%, #eef2f5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(20, 39, 61, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 39, 61, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 68%);
}

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

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

ul {
  margin: 0;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: #ffffff;
  border-bottom: 1px solid rgba(25, 43, 64, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-lockup-link {
  gap: 0;
  flex: 0 0 auto;
}

.brand img.brand-lockup-page {
  width: clamp(210px, 18vw, 286px);
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  padding: 8px 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 180ms ease;
}

.site-nav > a:not(.cta-link) {
  position: relative;
}

.site-nav > a:not(.cta-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(29, 65, 101, 0.95), rgba(141, 107, 69, 0.72));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-nav > a:not(.cta-link):hover,
.site-nav > a:not(.cta-link).active {
  color: var(--text);
  background: transparent;
}

.site-nav > a:not(.cta-link).active::after {
  transform: scaleX(1);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: 180ms ease;
}

.cta-link.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #173b5d, #254f7b);
  box-shadow: 0 14px 30px rgba(29, 65, 101, 0.18);
}

.cta-link.secondary {
  color: var(--text);
  border-color: rgba(25, 43, 64, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

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

.panel,
.problem-card,
.capability-card,
.scenario-card,
.roadmap-item,
.deployment-card,
.contact-banner,
.contact-card,
.metric-card,
.card,
.step-card,
.faq-item,
.footer-card,
.quote-card,
.list-card,
.cta-card,
.aside-nav,
.statement-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96));
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(199, 154, 99, 0.75);
}

.home-main {
  padding-bottom: 64px;
}

.hero-home {
  padding: 26px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  padding: 28px 0 14px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5.8vw, 66px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-accent {
  margin: 14px 0 0;
  color: #9f7343;
  font-size: clamp(18px, 2.3vw, 28px);
  font-weight: 700;
  line-height: 1.45;
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.85;
}

.hero-definition {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(27, 53, 82, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

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

.hero-definition strong {
  font-size: 14px;
  color: var(--text);
}

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

.hero-stage {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-stage-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 600px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #dfe7ef;
  box-shadow: var(--shadow);
}

.hero-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(0.86) contrast(0.94);
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(13, 24, 38, 0.10) 54%, rgba(13, 24, 38, 0.36) 100%);
}

.hero-stage-label {
  position: absolute;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #203043;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.hero-stage-panel {
  position: absolute;
  right: 26px;
  bottom: 26px;
  max-width: 396px;
  padding: 24px;
  border: 1px solid rgba(27, 53, 82, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(20, 39, 61, 0.14);
}

.hero-stage-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-stage-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.35;
}

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

.hero-panel-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-panel-grid b {
  display: block;
  margin-top: 8px;
  color: #9f7343;
  font-size: 18px;
}

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

.reading-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96));
  box-shadow: var(--shadow);
}

.reading-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reading-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.42;
}

.reading-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.82;
}

.reading-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--primary);
  font-weight: 700;
}

.reading-link::after {
  content: "→";
  font-size: 15px;
}

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

.trust-item {
  min-height: 124px;
  padding: 20px 22px;
  border-top: 1px solid rgba(27, 53, 82, 0.1);
  border-right: 1px solid rgba(27, 53, 82, 0.08);
  border-bottom: 1px solid rgba(27, 53, 82, 0.08);
  border-left: 1px solid rgba(27, 53, 82, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

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

.trust-item strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.4;
}

.statement-section {
  padding-top: 28px;
}

.statement-card {
  padding: 34px 36px;
}

.statement-card h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.4;
}

.section {
  padding-top: 34px;
}

.section-shell {
  padding-top: 34px;
}

.section-dark {
  padding: 46px 0 12px;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.34;
}

.problem-grid,
.scenario-grid,
.roadmap-grid,
.metrics-grid,
.card-grid,
.steps-grid,
.faq-grid,
.footer-grid,
.capability-stack {
  display: grid;
  gap: 18px;
}

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

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

.problem-card {
  padding: 28px;
}

.problem-index,
.roadmap-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #10151c;
  background: linear-gradient(135deg, #d3ac77, #f4d4a7);
  font-weight: 800;
}

.problem-card h3,
.scenario-card h3,
.card h3,
.faq-item h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  line-height: 1.42;
}

.problem-card p,
.capability-copy p,
.capability-card p,
.scenario-card p,
.roadmap-item p,
.deployment-copy p,
.deployment-list,
.page-hero p,
.article p,
.article li,
.quote-card p,
.list-card p,
.footer-note,
.contact-copy p,
.contact-card span,
.metric-card p,
.card p,
.faq-item p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.9;
}

.capability-grid,
.deployment-grid,
.highlight-strip,
.content-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.capability-grid,
.deployment-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.capability-copy {
  padding: 8px 6px 0 0;
}

.capability-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.34;
}

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

.capability-card {
  min-height: 208px;
  padding: 24px;
}

.capability-card span {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.capability-card strong {
  display: block;
  margin: 16px 0 12px;
  font-size: 22px;
  line-height: 1.38;
}

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

.scenario-card {
  overflow: hidden;
  padding: 0;
}

.scenario-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.scenario-card-copy {
  padding: 22px 22px 24px;
}

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

.roadmap-item {
  position: relative;
  min-height: 232px;
  padding: 26px;
}

.roadmap-item strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 22px;
}

.deployment-copy,
.deployment-card,
.quote-card,
.list-card,
.contact-banner,
.cta-card,
.footer-card,
.metric-card,
.card,
.step-card,
.faq-item,
.aside-nav,
.page-hero,
.article {
  padding: 28px;
}

.deployment-copy h2,
.page-hero h1,
.article h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.28;
}

.deployment-list,
.list-card ul,
.footer-card ul,
.article ul {
  padding-left: 22px;
}

.deployment-list li,
.list-card li,
.footer-card li,
.article li {
  margin-top: 10px;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.34;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-card {
  min-height: 112px;
  background: rgba(248, 250, 252, 0.76);
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.3;
}

.page-main {
  padding: 24px 0 64px;
}

.page-hero h1 span,
.article h1 span {
  display: block;
  margin-top: 14px;
  color: #9f7343;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.45;
}

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

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

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: 34px;
  line-height: 1;
}

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

.card p + p {
  margin-top: 12px;
}

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

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

.step-card strong,
.quote-card strong,
.cta-card strong {
  display: block;
  margin: 16px 0 12px;
  font-size: 22px;
  line-height: 1.42;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #10151c;
  background: linear-gradient(135deg, #d3ac77, #f4d4a7);
  font-weight: 800;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.article section {
  margin-top: 34px;
}

.article h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.aside-nav {
  position: sticky;
  top: 108px;
}

.aside-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}

.aside-nav a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 24px 0 50px;
}

.footer-grid {
  grid-template-columns: 1.18fr 0.92fr 0.92fr;
}

.footer-brand {
  font-size: 22px;
  font-weight: 800;
}

.footer-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.footer-note {
  margin-top: 16px;
  font-size: 14px;
}

.hero-industrial {
  padding: 42px 0 0;
}

.hero-industrial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 50px;
  align-items: center;
}

.hero-industrial-copy {
  padding: 30px 0 18px;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-kicker::before,
.section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(141, 107, 69, 0.72);
}

.hero-industrial-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(40px, 4.8vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
  color: #304357;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.5;
}

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.92;
}

.hero-definition-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 18px;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-definition-line span {
  color: var(--muted);
  font-size: 13px;
}

.hero-definition-line strong {
  font-size: 14px;
}

.hero-note-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-note-group span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(25, 43, 64, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #34475c;
  font-size: 13px;
}

.hero-fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(25, 43, 64, 0.1);
}

.hero-fact-row div {
  display: grid;
  gap: 10px;
}

.hero-fact-row dt {
  color: var(--muted);
  font-size: 13px;
}

.hero-fact-row dd {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

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

.hero-frame {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(25, 43, 64, 0.1);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 250, 0.98));
  box-shadow: 0 26px 60px rgba(21, 35, 51, 0.08);
}

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

.hero-frame-head span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-frame-head strong {
  font-size: 16px;
}

.hero-frame-photo {
  position: relative;
  overflow: hidden;
  min-height: 448px;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 20px;
  background: #dfe5ea;
}

.hero-frame-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) saturate(0.82) contrast(0.94);
}

.hero-frame-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(19, 33, 48, 0.14));
}

.hero-photo-grid,
.hero-photo-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.28;
}

.hero-photo-scan::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
  animation: scanSweep 5.8s ease-in-out infinite;
}

.hero-frame-diagram {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 241, 246, 0.96));
}

.hero-frame-diagram::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 65, 101, 0.1);
  border-radius: 16px;
  pointer-events: none;
}

.hero-frame-diagram img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 860;
  object-fit: contain;
}

.hero-frame-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding: 16px 0 4px;
}

.track-step {
  position: relative;
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.track-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(25, 43, 64, 0.16);
}

.track-step::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(29, 65, 101, 0.08);
}

.track-step span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.track-step strong {
  font-size: 16px;
  line-height: 1.35;
}

.hero-dossier {
  position: absolute;
  left: -26px;
  bottom: 34px;
  width: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 114px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 18px;
  background: rgba(252, 253, 254, 0.94);
  box-shadow: 0 18px 38px rgba(20, 33, 48, 0.10);
  backdrop-filter: blur(12px);
  animation: dossierFloat 6s ease-in-out infinite;
}

.hero-dossier-copy {
  display: grid;
  gap: 10px;
}

.hero-dossier-copy span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-dossier-copy strong {
  font-size: 18px;
  line-height: 1.45;
}

.hero-dossier-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.78;
}

.hero-dossier-media {
  overflow: hidden;
  border: 1px solid rgba(25, 43, 64, 0.08);
  border-radius: 12px;
}

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

.industrial-section {
  padding-top: 96px;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 36px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(248, 249, 251, 0.28));
  pointer-events: none;
}

.section-soft > .wrap {
  position: relative;
  z-index: 1;
}

.section-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-intro-split {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
}

.section-intro h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.section-summary {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.9;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
  align-items: start;
}

.architecture-copy {
  padding-top: 10px;
}

.architecture-copy p,
.knowledge-copy p,
.contact-final-copy p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.architecture-board {
  position: relative;
  padding: 18px 28px;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.96));
  box-shadow: var(--shadow);
}

.architecture-board::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(29, 65, 101, 0.2), rgba(29, 65, 101, 0.06));
}

.architecture-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 18px 0;
}

.architecture-item + .architecture-item {
  border-top: 1px solid rgba(25, 43, 64, 0.08);
}

.architecture-no,
.route-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(29, 65, 101, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.architecture-item h3,
.solution-column h3,
.route-step h3,
.case-entry h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.32;
}

.architecture-item p,
.solution-column p,
.route-step p,
.case-entry p,
.knowledge-item em {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.86;
}

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

.solution-column {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.solution-column header {
  display: grid;
  gap: 10px;
}

.solution-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(25, 43, 64, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(29, 65, 101, 0.1) calc(50% - 1px), rgba(29, 65, 101, 0.1) calc(50% + 1px), transparent calc(50% + 1px)),
    rgba(246, 249, 252, 0.9);
}

.solution-diagram::before,
.solution-diagram::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18%;
  height: 1px;
  background: rgba(29, 65, 101, 0.22);
}

.solution-diagram::before {
  left: 26%;
}

.solution-diagram::after {
  right: 26%;
}

.solution-diagram i {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 65, 101, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(46, 111, 165, 0.2) 0 20%, transparent 21%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 237, 244, 0.94));
}

.solution-diagram i:nth-child(2) {
  background:
    radial-gradient(circle at 50% 50%, rgba(141, 107, 69, 0.22) 0 20%, transparent 21%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 237, 244, 0.94));
}

.solution-column header span,
.case-tag,
.knowledge-item span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
}

.solution-list li + li {
  margin-top: 8px;
}

.solution-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(25, 43, 64, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.solution-strip div {
  display: grid;
  gap: 10px;
}

.solution-strip span,
.contact-final-meta span {
  color: var(--muted);
  font-size: 13px;
}

.solution-strip strong,
.contact-final-meta strong {
  font-size: 20px;
  line-height: 1.4;
}

.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.route-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 43, 64, 0.1), rgba(29, 65, 101, 0.24), rgba(25, 43, 64, 0.1));
}

.route-step {
  position: relative;
  padding-top: 54px;
}

.route-step::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(29, 65, 101, 0.08);
}

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

.case-entry {
  display: grid;
  gap: 14px;
  padding: 26px 24px;
  border: 1px solid rgba(25, 43, 64, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

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

.knowledge-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(25, 43, 64, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-item strong {
  font-size: 20px;
  line-height: 1.4;
}

.knowledge-item em {
  font-style: normal;
}

.knowledge-item:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 65, 101, 0.16);
  box-shadow: 0 16px 34px rgba(20, 33, 48, 0.08);
}

.contact-final {
  padding: 94px 0 20px;
}

.contact-final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(25, 43, 64, 0.12);
  border-bottom: 1px solid rgba(25, 43, 64, 0.12);
}

.contact-final-copy h2 {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.3;
}

.contact-final-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.contact-final-meta > div {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.site-footer-refined {
  margin-top: 48px;
  padding: 26px 0 48px;
  border-top: 1px solid rgba(19, 40, 58, 0.08);
  background: var(--ov-paper-200);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
  gap: 24px;
}

.site-footer-brand strong {
  display: block;
  font-size: 22px;
}

.site-footer-brand p {
  margin: 14px 0 0;
  color: var(--muted-strong);
  line-height: 1.84;
}

.site-footer-refined a {
  color: inherit;
  text-decoration: none;
}

.site-footer-group h4 {
  margin: 0 0 12px;
  font-size: 17px;
}

.site-footer-group ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
}

.site-footer-group li + li {
  margin-top: 8px;
}

.contact-action-link,
.footer-contact-copy,
.footer-demo-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-action-link {
  text-decoration: none;
}

.footer-contact-copy {
  text-align: left;
}

.contact-action-link:focus-visible,
.footer-contact-copy:focus-visible,
.footer-demo-link:focus-visible {
  outline: 2px solid rgba(98, 199, 209, 0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.contact-action-link:hover,
.footer-contact-copy:hover,
.footer-demo-link:hover {
  color: var(--ov-ink);
}

.ov-contact-toast[hidden] {
  display: none;
}

.ov-contact-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 110;
  transform: translateX(-50%);
  max-width: calc(100vw - 36px);
  padding: 10px 14px;
  border: 1px solid rgba(98, 199, 209, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 20, 33, 0.9);
  box-shadow: 0 14px 38px rgba(7, 20, 33, 0.22);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

@keyframes scanSweep {
  0% {
    top: 18%;
    opacity: 0;
  }

  10%,
  72% {
    opacity: 1;
  }

  100% {
    top: 82%;
    opacity: 0;
  }
}

@keyframes dossierFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .capability-grid,
  .deployment-grid,
  .contact-banner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 30px;
  }

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

  .hero-trust,
  .roadmap-grid,
  .steps-grid,
  .card-grid.four,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid,
  .scenario-grid,
  .reading-grid,
  .card-grid.three,
  .faq-grid,
  .footer-grid,
  .card-grid.two,
  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .hero-industrial-grid,
  .section-intro-split,
  .architecture-layout,
  .knowledge-layout,
  .contact-final-inner {
    grid-template-columns: 1fr;
  }

  .hero-industrial-visual {
    min-height: auto;
    padding-bottom: 180px;
  }

  .hero-dossier {
    left: 24px;
    bottom: 18px;
  }

  .solution-matrix,
  .case-list,
  .route-track,
  .solution-strip,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-home {
    padding-top: 18px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-accent {
    font-size: 18px;
  }

  .lead,
  .page-hero p,
  .article .summary,
  .problem-card p,
  .capability-copy p,
  .capability-card p,
  .scenario-card p,
  .roadmap-item p,
  .deployment-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-stage-media {
    min-height: 380px;
  }

  .hero-stage-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 20px;
  }

  .hero-panel-grid,
  .hero-trust,
  .steps-grid,
  .capability-stack,
  .roadmap-grid,
  .metrics-grid,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .panel,
  .problem-card,
  .capability-card,
  .scenario-card,
  .roadmap-item,
  .deployment-card,
  .contact-banner,
  .contact-card,
  .metric-card,
  .card,
  .step-card,
  .faq-item,
  .footer-card,
  .quote-card,
  .list-card,
  .cta-card,
  .aside-nav,
  .statement-card,
  .deployment-copy,
  .page-hero,
  .article {
    padding: 22px;
  }

  .statement-card h2,
  .section-head h2,
  .capability-copy h2,
  .deployment-copy h2,
  .contact-copy h2,
  .page-hero h1,
  .article h1 {
    font-size: 28px;
  }

  .hero-industrial {
    padding-top: 24px;
  }

  .hero-industrial-copy h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-lead,
  .section-summary,
  .architecture-copy p,
  .solution-column p,
  .route-step p,
  .case-entry p,
  .knowledge-copy p,
  .knowledge-item em,
  .contact-final-copy p {
    font-size: 16px;
  }

  .hero-fact-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-frame {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-frame-photo {
    min-height: 320px;
  }

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

  .hero-industrial-visual {
    padding-bottom: 0;
  }

  .hero-dossier {
    position: static;
    width: 100%;
    margin-top: 16px;
    grid-template-columns: minmax(0, 1fr) 96px;
    animation: none;
  }

  .architecture-board,
  .solution-column,
  .case-entry,
  .knowledge-item {
    padding: 22px 20px;
  }

  .architecture-item {
    grid-template-columns: 56px 1fr;
  }

  .contact-final {
    padding-top: 72px;
  }

  .contact-final-meta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo-scan::after,
  .hero-dossier,
  .cta-link,
  .knowledge-item {
    animation: none !important;
    transition: none !important;
  }
}

/* Homepage v2: restrained industrial enterprise style. */
.home-v2 {
  overflow: hidden;
  padding-bottom: 56px;
}

.home-v2 .v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #87633c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.home-v2 .v2-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(135, 99, 60, 0.72);
}

.v2-hero {
  padding: 34px 0 0;
}

.v2-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: 42px;
  align-items: center;
  min-height: 650px;
}

.v2-hero-shell::before {
  content: "";
  position: absolute;
  inset: 28px -32px 42px;
  z-index: -1;
  border: 1px solid rgba(22, 40, 58, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 70% 20%, rgba(46, 111, 165, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 241, 246, 0.62));
}

.v2-hero-copy h1 {
  margin: 0;
  max-width: 680px;
  color: #142234;
  font-size: clamp(42px, 5.1vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.v2-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #435569;
  font-size: 18px;
  line-height: 1.9;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.v2-meta span {
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(22, 40, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #405269;
  font-size: 13px;
}

.v2-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(22, 40, 58, 0.12);
  border-radius: 30px;
  background: #e5ebf0;
  box-shadow: 0 30px 70px rgba(21, 35, 51, 0.12);
}

.v2-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: brightness(1.12) saturate(0.84) contrast(0.94);
}

.v2-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(13, 27, 41, 0.02), rgba(13, 27, 41, 0.28));
}

.v2-command-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(15, 31, 47, 0.14);
}

.v2-command-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.v2-command-head span {
  color: #87633c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.v2-command-head strong {
  color: #142234;
  font-size: 20px;
}

.v2-command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.v2-command-grid article {
  padding-top: 14px;
  border-top: 1px solid rgba(22, 40, 58, 0.12);
}

.v2-command-grid span {
  display: block;
  color: #687789;
  font-size: 12px;
}

.v2-command-grid strong {
  display: block;
  margin-top: 8px;
  color: #18283a;
  font-size: 18px;
  line-height: 1.35;
}

.v2-scan-line {
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.45);
  animation: v2Scan 6s ease-in-out infinite;
}

.v2-capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 24px;
  background: rgba(22, 40, 58, 0.08);
}

.v2-capability-strip article {
  min-height: 146px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.v2-capability-strip span,
.v2-route span {
  color: #87633c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.v2-capability-strip strong {
  display: block;
  margin-top: 14px;
  color: #15263a;
  font-size: 22px;
}

.v2-capability-strip p {
  margin: 10px 0 0;
  color: #5a6b7d;
  line-height: 1.72;
}

.v2-section {
  padding-top: 96px;
}

.v2-section-tint {
  position: relative;
}

.v2-section-tint::before {
  content: "";
  position: absolute;
  inset: 44px 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(236, 241, 246, 0.18));
}

.v2-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.v2-section-head-split {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
}

.v2-section-head h2,
.v2-platform-copy h3,
.v2-knowledge h2,
.v2-contact h2 {
  margin: 0;
  color: #142234;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.v2-section-head p,
.v2-platform-copy p,
.v2-route p,
.v2-knowledge p,
.v2-contact p {
  margin: 0;
  color: #4d5f72;
  line-height: 1.9;
}

.v2-platform-board {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.v2-platform-copy {
  padding: 34px;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 251, 0.88));
  box-shadow: var(--shadow);
}

.v2-platform-copy h3 {
  font-size: clamp(26px, 2.5vw, 36px);
}

.v2-platform-copy p {
  margin-top: 18px;
}

.v2-object-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 24px;
  background: rgba(22, 40, 58, 0.08);
  box-shadow: var(--shadow);
}

.v2-object-map article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 250, 0.92));
}

.v2-object-map span,
.v2-solution-card span,
.v2-case-list span {
  color: #87633c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.v2-object-map strong {
  color: #142234;
  font-size: 22px;
  line-height: 1.36;
}

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

.v2-solution-card {
  overflow: hidden;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.v2-solution-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(1.12) saturate(0.82) contrast(0.94);
}

.v2-solution-card div {
  padding: 24px;
}

.v2-solution-card h3 {
  margin: 12px 0 12px;
  color: #142234;
  font-size: 24px;
}

.v2-solution-card p {
  margin: 0;
  color: #4d5f72;
  line-height: 1.85;
}

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

.v2-route article {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  border-top: 3px solid rgba(29, 65, 101, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 248, 251, 0.78));
}

.v2-route h3 {
  margin: 58px 0 12px;
  color: #142234;
  font-size: 24px;
}

.v2-route article::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 24px;
  width: 48px;
  height: 1px;
  background: rgba(135, 99, 60, 0.5);
}

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

.v2-case-list a {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.v2-case-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 35, 51, 0.09);
}

.v2-case-list strong {
  color: #142234;
  font-size: 22px;
  line-height: 1.42;
}

.v2-knowledge {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 244, 249, 0.82));
  box-shadow: var(--shadow);
}

.v2-knowledge p {
  margin-top: 16px;
}

.v2-knowledge-links {
  display: grid;
  gap: 12px;
}

.v2-knowledge-links a {
  padding: 18px 20px;
  border: 1px solid rgba(22, 40, 58, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: #142234;
  font-weight: 700;
}

.v2-contact {
  padding: 96px 0 24px;
}

.v2-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background: #142234;
  color: #fff;
}

.v2-contact .v2-kicker,
.v2-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.v2-contact .v2-kicker::before {
  background: rgba(255, 255, 255, 0.42);
}

.v2-contact h2 {
  color: #fff;
}

.v2-contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.v2-contact-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.v2-contact-card strong {
  color: #fff;
  font-size: 28px;
}

@keyframes v2Scan {
  0% {
    top: 22%;
    opacity: 0;
  }

  12%,
  70% {
    opacity: 1;
  }

  100% {
    top: 78%;
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .v2-hero-shell,
  .v2-platform-board,
  .v2-knowledge,
  .v2-contact-inner,
  .v2-section-head-split {
    grid-template-columns: 1fr;
  }

  .v2-capability-strip,
  .v2-route,
  .v2-object-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-solution-grid,
  .v2-case-list {
    grid-template-columns: 1fr;
  }
}

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

  .v2-hero-shell::before {
    inset: 0 -12px 24px;
    border-radius: 24px;
  }

  .v2-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

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

  .v2-hero-visual,
  .v2-hero-visual > img {
    min-height: 420px;
  }

  .v2-command-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .v2-command-head,
  .v2-command-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .v2-capability-strip,
  .v2-route,
  .v2-object-map {
    grid-template-columns: 1fr;
  }

  .v2-section {
    padding-top: 72px;
  }

  .v2-section-head h2,
  .v2-platform-copy h3,
  .v2-knowledge h2,
  .v2-contact h2 {
    font-size: 28px;
  }

  .v2-platform-copy,
  .v2-knowledge,
  .v2-contact-inner {
    padding: 24px;
  }
}

/* Homepage v3: restrained factory-facing technology language. */
.home-v3 {
  --v3-ink: #142234;
  --v3-ink-soft: #4f6174;
  --v3-blue: #1f4a72;
  --v3-blue-soft: rgba(31, 74, 114, 0.1);
  --v3-bronze: #a97945;
  --v3-teal: #2c8c8f;
  --v3-paper: #f7f4ee;
  --v3-panel: rgba(255, 255, 255, 0.86);
  --v3-line: rgba(20, 34, 52, 0.12);
  --v3-shadow: 0 24px 70px rgba(31, 47, 66, 0.11);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(169, 121, 69, 0.14), transparent 32%),
    radial-gradient(circle at 84% 6%, rgba(44, 140, 143, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #eef2f4 58%, #f7f4ee 100%);
}

.home-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(20, 34, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 34, 52, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 68%);
}

.v3-hero,
.v3-section,
.v3-contact {
  position: relative;
  z-index: 1;
}

.v3-hero {
  padding: 46px 0 38px;
}

.v3-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 46px;
  align-items: center;
  min-height: 680px;
}

.v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--v3-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.v3-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--v3-bronze);
}

.v3-hero-copy h1,
.v3-section-head h2,
.v3-deploy-panel h2,
.v3-geo-panel h2,
.v3-contact h2 {
  margin: 0;
  color: var(--v3-ink);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.v3-hero-copy h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(40px, 4.45vw, 60px);
  font-weight: 800;
}

.v3-lead {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--v3-ink-soft);
  font-size: 18px;
  line-height: 1.92;
}

.v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.v3-proof-row article {
  padding: 18px 18px 20px;
  border: 1px solid rgba(20, 34, 52, 0.1);
  border-left: 3px solid rgba(169, 121, 69, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.v3-proof-row span,
.v3-capability-board span,
.v3-case-grid span,
.v3-monitor-card span,
.v3-dashboard-card span {
  color: var(--v3-bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.v3-proof-row strong {
  display: block;
  margin-top: 12px;
  color: var(--v3-ink);
  font-size: 18px;
}

.v3-proof-row p {
  margin: 8px 0 0;
  color: var(--v3-ink-soft);
  font-size: 14px;
  line-height: 1.68;
}

.v3-system-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(20, 34, 52, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(242, 246, 248, 0.82)),
    linear-gradient(90deg, rgba(31, 74, 114, 0.09), transparent 42%, rgba(169, 121, 69, 0.1));
  box-shadow: var(--v3-shadow);
}

.v3-system-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background:
    linear-gradient(rgba(31, 74, 114, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 74, 114, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
}

.v3-visual-topline,
.v3-line-map,
.v3-monitor-card,
.v3-dashboard-card,
.v3-visual-footer {
  position: relative;
  z-index: 1;
}

.v3-visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 0 4px;
}

.v3-visual-topline span {
  color: rgba(20, 34, 52, 0.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.v3-visual-topline strong {
  color: var(--v3-blue);
  font-size: 15px;
}

.v3-line-map {
  height: 360px;
  margin-top: 26px;
  border: 1px solid rgba(20, 34, 52, 0.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 22% 30%, rgba(44, 140, 143, 0.13), transparent 24%),
    radial-gradient(circle at 76% 66%, rgba(169, 121, 69, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.54);
}

.v3-station {
  position: absolute;
  z-index: 2;
  width: 152px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(20, 34, 52, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(31, 47, 66, 0.09);
}

.v3-station::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--v3-teal);
  box-shadow: 0 0 0 7px rgba(44, 140, 143, 0.1);
}

.v3-station span {
  color: rgba(20, 34, 52, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v3-station strong {
  display: block;
  margin-top: 7px;
  color: var(--v3-ink);
  font-size: 18px;
}

.station-a {
  left: 7%;
  top: 15%;
}

.station-b {
  left: 41%;
  top: 15%;
}

.station-c {
  left: 41%;
  bottom: 14%;
}

.station-d {
  right: 7%;
  bottom: 14%;
}

.v3-flow-line {
  position: absolute;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(44, 140, 143, 0.72), rgba(169, 121, 69, 0.72));
}

.line-a {
  left: 28%;
  top: 30%;
  width: 18%;
  height: 2px;
}

.line-b {
  left: 50%;
  top: 38%;
  width: 2px;
  height: 24%;
  background: linear-gradient(180deg, rgba(44, 140, 143, 0.72), rgba(169, 121, 69, 0.72));
}

.line-c {
  right: 28%;
  bottom: 27%;
  width: 18%;
  height: 2px;
}

.v3-monitor-card,
.v3-dashboard-card {
  position: absolute;
  border: 1px solid rgba(20, 34, 52, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 47, 66, 0.12);
}

.v3-monitor-card {
  left: 38px;
  bottom: 86px;
  width: 252px;
  padding: 14px;
}

.v3-monitor-card img {
  width: 100%;
  margin-top: 10px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  object-fit: cover;
  filter: brightness(1.18) saturate(0.72) contrast(0.92);
}

.v3-dashboard-card {
  right: 38px;
  top: 142px;
  width: 196px;
  padding: 18px;
}

.v3-dashboard-card strong {
  display: block;
  margin-top: 10px;
  color: #1f6e55;
  font-size: 30px;
  line-height: 1;
}

.v3-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 68px;
  margin-top: 18px;
}

.v3-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(44, 140, 143, 0.9), rgba(31, 74, 114, 0.72));
}

.v3-visual-footer {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(20, 34, 52, 0.1);
  border-radius: 18px;
  background: rgba(20, 34, 52, 0.86);
}

.v3-visual-footer span {
  padding: 16px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.v3-visual-footer span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.v3-section {
  padding: 88px 0;
}

.v3-section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.7)),
    rgba(233, 239, 242, 0.62);
}

.v3-section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.v3-section-head h2,
.v3-deploy-panel h2,
.v3-geo-panel h2,
.v3-contact h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.v3-section-head p,
.v3-deploy-panel p,
.v3-geo-panel p,
.v3-contact p,
.v3-capability-board p,
.v3-solution-board p,
.v3-case-grid p {
  margin: 0;
  color: var(--v3-ink-soft);
  line-height: 1.86;
}

.v3-section-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  align-items: end;
}

.v3-capability-board,
.v3-solution-board,
.v3-case-grid {
  display: grid;
  gap: 18px;
}

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

.v3-capability-board article,
.v3-solution-board article,
.v3-case-grid a {
  border: 1px solid var(--v3-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(31, 47, 66, 0.08);
}

.v3-capability-board article {
  min-height: 268px;
  padding: 24px;
  border-radius: 22px;
}

.v3-capability-board h3,
.v3-solution-board h3,
.v3-case-grid strong,
.v3-timeline strong {
  display: block;
  margin: 14px 0 12px;
  color: var(--v3-ink);
  font-size: 22px;
  line-height: 1.38;
}

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

.v3-solution-board article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  border-radius: 26px;
}

.v3-solution-board article::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(31, 74, 114, 0.12);
  border-radius: 50%;
}

.v3-solution-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--v3-blue), var(--v3-teal));
  font-size: 22px;
  font-weight: 800;
}

.v3-solution-board .text-link {
  margin-top: 22px;
}

.v3-deploy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(20, 34, 52, 0.96), rgba(29, 65, 101, 0.92)),
    #142234;
  box-shadow: var(--v3-shadow);
}

.v3-deploy-panel .v3-eyebrow,
.v3-deploy-panel p,
.v3-deploy-panel h2 {
  color: rgba(255, 255, 255, 0.9);
}

.v3-deploy-panel .v3-eyebrow::before {
  background: rgba(255, 255, 255, 0.44);
}

.v3-deploy-panel > div > p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

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

.v3-timeline li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.v3-timeline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.v3-timeline strong {
  margin: 0 0 6px;
  color: #fff;
  font-size: 19px;
}

.v3-timeline p {
  color: rgba(255, 255, 255, 0.66);
}

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

.v3-case-grid a {
  display: block;
  min-height: 208px;
  padding: 26px;
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.v3-case-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(31, 47, 66, 0.12);
}

.v3-case-grid strong {
  margin-top: 18px;
}

.v3-geo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

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

.v3-geo-links a {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(20, 34, 52, 0.1);
  border-radius: 18px;
  background: rgba(247, 244, 238, 0.72);
  color: var(--v3-ink);
  font-weight: 800;
  line-height: 1.5;
}

.v3-contact {
  padding: 92px 0 28px;
}

.v3-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.62fr);
  gap: 38px;
  align-items: stretch;
  padding: 38px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(242, 246, 248, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--v3-shadow);
}

.v3-contact h2 {
  margin-top: 16px;
}

.v3-contact p {
  margin-top: 18px;
}

.v3-contact-list {
  display: grid;
  gap: 12px;
}

.v3-contact-list a,
.v3-contact-list p {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(20, 34, 52, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.v3-contact-list span {
  color: rgba(20, 34, 52, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.v3-contact-list strong {
  color: var(--v3-ink);
  font-size: 20px;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .v3-hero-shell,
  .v3-section-split,
  .v3-deploy-panel,
  .v3-geo-panel,
  .v3-contact-inner {
    grid-template-columns: 1fr;
  }

  .v3-hero-shell {
    min-height: auto;
  }

  .v3-capability-board,
  .v3-solution-board,
  .v3-case-grid,
  .v3-geo-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .v3-hero {
    padding-top: 28px;
  }

  .v3-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

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

  .v3-proof-row,
  .v3-capability-board,
  .v3-solution-board,
  .v3-case-grid,
  .v3-geo-links {
    grid-template-columns: 1fr;
  }

  .v3-system-visual {
    min-height: 720px;
    padding: 18px;
    border-radius: 24px;
  }

  .v3-line-map {
    height: 430px;
  }

  .v3-station {
    width: 138px;
  }

  .station-a {
    left: 6%;
    top: 10%;
  }

  .station-b {
    right: 6%;
    left: auto;
    top: 26%;
  }

  .station-c {
    left: 6%;
    bottom: 26%;
  }

  .station-d {
    right: 6%;
    bottom: 10%;
  }

  .v3-flow-line {
    display: none;
  }

  .v3-monitor-card,
  .v3-dashboard-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: auto;
    margin-top: 14px;
  }

  .v3-visual-footer {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .v3-visual-footer span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .v3-section {
    padding: 70px 0;
  }

  .v3-deploy-panel,
  .v3-contact-inner,
  .v3-geo-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .v3-timeline li {
    grid-template-columns: 1fr;
  }

  .v3-timeline span {
    margin-bottom: 14px;
  }
}

/* --------------------------------------------------------------------------
   OrdVista home v3 final: deep-blue platform center, dual deployment paths
   -------------------------------------------------------------------------- */
.ov-home-final {
  /* Color system for the release homepage
     Deep blue = platform center; paper grey = readable content; cyan = detection/status; gold = long-term/local deployment emphasis. */
  --ov-navy-950: #071421;
  --ov-navy-900: #0e1b2a;
  --ov-navy-800: #13283a;

  --ov-paper-100: #f5f7f9;
  --ov-paper-200: #eef3f6;
  --ov-white: #ffffff;

  --ov-text-900: #0f1d2b;
  --ov-text-700: #2f4256;
  --ov-text-600: #5f7082;

  --ov-cyan-500: #62c7d1;
  --ov-cyan-soft: rgba(98, 199, 209, 0.14);
  --ov-gold-500: #b98749;
  --ov-gold-soft: rgba(185, 135, 73, 0.14);

  --ov-line-light: rgba(21, 39, 59, 0.12);
  --ov-line-dark: rgba(211, 232, 244, 0.16);

  --ov-card: rgba(255, 255, 255, 0.92);
  --ov-shadow: 0 22px 60px rgba(11, 27, 43, 0.10);
  --ov-shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.30);

  /* Backward-compatible aliases for existing scoped components. */
  --ov-ink: var(--ov-text-900);
  --ov-ink-soft: var(--ov-text-700);
  --ov-muted: var(--ov-text-600);
  --ov-navy: var(--ov-navy-950);
  --ov-navy-2: var(--ov-navy-900);
  --ov-navy-3: var(--ov-navy-800);
  --ov-cyan: var(--ov-cyan-500);
  --ov-gold: var(--ov-gold-500);
  --ov-paper: var(--ov-paper-100);
  --ov-paper-2: var(--ov-paper-200);
  --ov-line: var(--ov-line-light);

  color: var(--ov-text-900);
  background: var(--ov-paper-100);
}

.ov-home-final .page-shell {
  background:
    linear-gradient(180deg, #061421 0, #081827 720px, var(--ov-paper-200) 721px, var(--ov-paper-100) 100%);
}

.ov-home-final .wrap {
  width: min(1220px, calc(100% - 48px));
}

.ov-home-final .ov-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(211, 232, 244, 0.10);
  background: rgba(7, 20, 33, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.ov-home-final .header-inner {
  min-height: 72px;
}

.ov-home-final .brand {
  min-width: 0;
}

.ov-home-final .brand .brand-lockup {
  width: clamp(240px, 21vw, 330px);
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.ov-home-final .site-nav a {
  color: rgba(233, 244, 250, 0.70);
  font-size: 16px;
  font-weight: 800;
}

.ov-home-final .site-nav > a::after {
  bottom: -8px;
  background: linear-gradient(90deg, rgba(98, 199, 209, 0.95), rgba(185, 135, 73, 0.82));
}

.ov-home-final .site-nav > a:hover,
.ov-home-final .site-nav > a.active {
  color: #ffffff;
}

.ov-main {
  overflow: hidden;
}

.ov-hero {
  position: relative;
  isolation: isolate;
  padding: 34px 0 36px;
  color: #eef7fb;
  background:
    radial-gradient(circle at 76% 18%, rgba(98, 199, 209, 0.18), transparent 28%),
    radial-gradient(circle at 24% 26%, rgba(185, 135, 73, 0.10), transparent 28%),
    linear-gradient(rgba(103, 184, 206, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 184, 206, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--ov-navy-950) 0%, #0a1725 100%);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.ov-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 20, 33, 0), var(--ov-paper-200) 88%);
}

.ov-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  gap: 38px;
  align-items: center;
}

.ov-hero-copy {
  padding: 4px 0 32px;
}

.ov-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ov-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ov-eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.ov-hero h1 {
  margin: 0;
  max-width: 700px;
  color: #f6fbff;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.ov-hero h1 span {
  display: inline;
}

.ov-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(236, 247, 252, 0.76);
  font-size: 17px;
  line-height: 1.88;
}

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

.ov-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.ov-button-primary {
  color: var(--ov-navy-950);
  background: linear-gradient(135deg, #aee7ec, #f3fbff);
  box-shadow: 0 16px 32px rgba(98, 199, 209, 0.16);
}

.ov-button-secondary {
  color: #eefbff;
  border-color: rgba(222, 241, 248, 0.20);
  background: rgba(255, 255, 255, 0.055);
}

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

.ov-proof-row article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(222, 241, 248, 0.13);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.ov-proof-row span {
  color: rgba(185, 135, 73, 0.95);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ov-proof-row strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 17px;
}

.ov-proof-row p {
  margin: 8px 0 0;
  color: rgba(236, 247, 252, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.ov-system-panel {
  position: relative;
  overflow: hidden;
  min-height: 585px;
  padding: 22px;
  border: 1px solid rgba(222, 241, 248, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 38%, rgba(98, 199, 209, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(19, 40, 58, 0.88), rgba(8, 20, 33, 0.94));
  box-shadow: var(--ov-shadow-dark);
}

.ov-system-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(222, 241, 248, 0.07);
  border-radius: 24px;
}

.ov-panel-head,
.ov-panel-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ov-panel-head {
  padding: 2px 4px 18px;
  border-bottom: 1px solid rgba(222, 241, 248, 0.10);
}

.ov-panel-head span {
  color: rgba(236, 247, 252, 0.46);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ov-panel-head strong {
  color: rgba(246, 251, 255, 0.92);
  font-size: 14px;
}

.ov-topology {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 0.80fr 1.50fr;
  gap: 14px;
  align-items: center;
  min-height: 430px;
  padding: 24px 0 18px;
}

.ov-topology::before,
.ov-topology::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(98, 199, 209, 0), rgba(98, 199, 209, 0.42), rgba(98, 199, 209, 0));
}

.ov-topology::before {
  left: 24%;
  width: 25%;
}

.ov-topology::after {
  left: 50%;
  width: 25%;
}

.ov-mode-stack {
  display: grid;
  gap: 14px;
}

.ov-mode-card,
.ov-status-card {
  position: relative;
  overflow: hidden;
  padding: 17px 16px;
  border: 1px solid rgba(222, 241, 248, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.ov-mode-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(98, 199, 209, 0.56), transparent);
}

.ov-local-mode {
  border-color: rgba(185, 135, 73, 0.34);
  background: linear-gradient(180deg, rgba(185, 135, 73, 0.14), rgba(255, 255, 255, 0.05));
}

.ov-mode-card span,
.ov-status-card span {
  display: block;
  margin-bottom: 7px;
  color: rgba(236, 247, 252, 0.46);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.ov-mode-card strong,
.ov-status-card strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  white-space: nowrap;
}

.ov-mode-card p,
.ov-status-card p {
  margin: 8px 0 0;
  color: rgba(236, 247, 252, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.ov-core-node {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 248px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(98, 199, 209, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(98, 199, 209, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 46px rgba(98, 199, 209, 0.08), 0 0 44px rgba(98, 199, 209, 0.08);
}

.ov-core-node::before,
.ov-core-node::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(222, 241, 248, 0.10);
  border-radius: 50%;
}

.ov-core-node::before {
  inset: 18px;
}

.ov-core-node::after {
  inset: -16px;
}

.ov-core-glow {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: rgba(98, 199, 209, 0.10);
  filter: blur(10px);
}

.ov-core-node span,
.ov-core-node strong,
.ov-core-node p {
  position: relative;
  z-index: 2;
}

.ov-core-node span {
  margin-top: 26px;
  color: rgba(236, 247, 252, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ov-core-node strong {
  margin-top: -6px;
  color: #ffffff;
  font-size: 24px;
  white-space: nowrap;
}

.ov-core-node p {
  max-width: 180px;
  margin: -4px 0 24px;
  color: rgba(236, 247, 252, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.ov-core-node p span {
  display: block;
  white-space: nowrap;
}

.ov-detection-side {
  display: grid;
  gap: 14px;
}

.ov-monitor {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  border: 1px solid rgba(222, 241, 248, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 20, 33, 0.10), rgba(8, 20, 33, 0.22)),
    var(--monitor-image),
    rgba(255, 255, 255, 0.06);
  background-size: cover;
  background-position: 40% 52%;
}

.ov-monitor img {
  display: none;
}

.ov-monitor-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(222, 241, 248, 0.13);
  border-radius: 14px;
  background: rgba(7, 20, 33, 0.62);
  backdrop-filter: blur(10px);
}

.ov-monitor-overlay span {
  display: block;
  color: rgba(236, 247, 252, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ov-monitor-overlay strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
}

.ov-status-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(98, 199, 209, 0.10), rgba(255, 255, 255, 0.045));
}

.ov-panel-footer {
  padding: 18px 4px 2px;
  border-top: 1px solid rgba(222, 241, 248, 0.10);
}

.ov-panel-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(236, 247, 252, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.ov-panel-footer span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ov-cyan);
}

.ov-impact {
  position: relative;
  padding: 36px 0 42px;
  background:
    linear-gradient(rgba(32, 71, 110, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 71, 110, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, var(--ov-paper-200), var(--ov-paper-100));
  background-size: 84px 84px, 84px 84px, auto;
}

.ov-impact-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: end;
}

.ov-impact-head h2 {
  margin: 0;
  color: var(--ov-ink);
  font-size: 42px;
  line-height: 1.18;
}

.ov-impact-head p {
  margin: 0;
  color: var(--ov-muted);
  font-size: 16px;
  line-height: 1.86;
}

.ov-impact-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ov-impact-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(185, 135, 73, 0.20);
  border-radius: 999px;
  color: #8f6232;
  background: rgba(185, 135, 73, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.ov-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.ov-impact-grid article {
  display: flex;
  flex-direction: column;
  min-height: 344px;
  padding: 21px;
  border: 1px solid rgba(19, 40, 58, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(12, 29, 46, 0.05);
}

.ov-impact-grid article > span {
  color: var(--ov-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ov-impact-grid h3 {
  margin: 14px 0 0;
  min-height: 60px;
  color: var(--ov-ink);
  font-size: 21px;
  line-height: 1.42;
}

.ov-impact-grid h3 span {
  display: block;
}

.ov-impact-grid p {
  margin: 12px 0 0;
  min-height: 82px;
  color: var(--ov-muted);
  font-size: 15px;
  line-height: 1.72;
}

.ov-impact-grid small {
  display: block;
  margin-top: 10px;
  min-height: 40px;
  color: rgba(39, 61, 85, 0.70);
  font-size: 13px;
  line-height: 1.55;
}

.ov-impact-result {
  margin-top: auto;
  padding-top: 12px;
}

.ov-impact-result strong {
  display: block;
  color: var(--ov-ink);
  font-size: 14px;
}

.ov-impact-result p {
  margin-top: 8px;
  min-height: 72px;
  padding: 12px 14px;
  border-left: 3px solid rgba(185, 135, 73, 0.52);
  border-radius: 0 14px 14px 0;
  background: rgba(185, 135, 73, 0.08);
  color: rgba(39, 61, 85, 0.86);
}

.ov-section {
  padding: 52px 0;
  background: var(--ov-paper-100);
}

.ov-cases {
  padding: 38px 0 42px;
}

.ov-scenarios {
  padding: 52px 0;
}

.ov-section:nth-of-type(odd) {
  background: var(--ov-paper-200);
}

.ov-section-head {
  margin-bottom: 24px;
}

.ov-cases .ov-section-head {
  margin-bottom: 16px;
}

.ov-cases .ov-section-split {
  gap: 24px;
}

.ov-cases .ov-section-head h2 {
  max-width: 760px;
  font-size: clamp(28px, 2.7vw, 36px);
}

.ov-cases .ov-case-head-copy p {
  font-size: 14px;
  line-height: 1.65;
}

.ov-case-head-link {
  align-self: end;
  justify-self: end;
  margin-bottom: 4px;
}

.ov-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.54fr);
  gap: 36px;
  align-items: end;
}

.ov-section-head h2,
.ov-rollout-copy h2,
.ov-contact h2,
.ov-insight-panel h2 {
  margin: 0;
  color: var(--ov-ink);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.ov-section-head p:not(.ov-eyebrow),
.ov-rollout-copy p,
.ov-insight-panel p,
.ov-contact p {
  margin: 0;
  color: var(--ov-muted);
  font-size: 16px;
  line-height: 1.85;
}

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

.ov-mode-detail {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(19, 40, 58, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(12, 29, 46, 0.06);
}

.ov-mode-preferred {
  border-color: rgba(185, 135, 73, 0.28);
  background:
    radial-gradient(circle at 86% 0%, rgba(185, 135, 73, 0.14), transparent 30%),
    #ffffff;
}

.ov-mode-title span {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #1e5a68;
  background: rgba(98, 199, 209, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.ov-mode-preferred .ov-mode-title span {
  color: #7c552a;
  background: rgba(185, 135, 73, 0.15);
}

.ov-mode-detail h3 {
  margin: 0;
  color: var(--ov-ink);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.ov-mode-detail p {
  margin: 16px 0 0;
  color: var(--ov-ink-soft);
  font-size: 16px;
  line-height: 1.86;
}

.ov-mode-detail ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ov-mode-detail li {
  position: relative;
  padding-left: 22px;
  color: var(--ov-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ov-mode-detail li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ov-cyan);
}

.ov-mode-preferred li::before {
  background: var(--ov-gold);
}

.ov-deployment-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 26px;
  border: 1px solid rgba(19, 40, 58, 0.12);
  border-radius: 20px;
  color: var(--ov-ink);
  background: #ffffff;
}

.ov-deployment-note strong {
  color: var(--ov-gold);
  font-size: 17px;
}

.ov-deployment-note p {
  margin: 0;
  color: var(--ov-muted);
  font-size: 15px;
  line-height: 1.75;
}

.ov-deployment-choice {
  background: var(--ov-paper-100) !important;
}

.ov-choice-panel {
  padding: 34px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(98, 199, 209, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
  box-shadow: var(--ov-shadow);
}

.ov-choice-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 34px;
  align-items: end;
}

.ov-choice-head h2 {
  margin: 0;
  color: var(--ov-ink);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.22;
}

.ov-choice-head p:not(.ov-eyebrow) {
  margin: 0;
  color: var(--ov-muted);
  font-size: 16px;
  line-height: 1.78;
}

.ov-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.ov-choice-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(19, 40, 58, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.ov-choice-card-primary {
  border-color: rgba(185, 135, 73, 0.24);
  background:
    radial-gradient(circle at 92% 0%, rgba(185, 135, 73, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.ov-choice-card > span {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1e5a68;
  background: rgba(98, 199, 209, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.ov-choice-card-primary > span {
  color: #7c552a;
  background: rgba(185, 135, 73, 0.15);
}

.ov-choice-card h3 {
  margin: 14px 0 0;
  color: var(--ov-ink);
  font-size: 27px;
  line-height: 1.25;
}

.ov-choice-card p {
  margin: 12px 0 0;
  color: var(--ov-ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.ov-choice-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.ov-choice-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ov-choice-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ov-cyan);
}

.ov-choice-card-primary li::before {
  background: var(--ov-gold);
}

.ov-choice-note {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(98, 199, 209, 0.16);
  border-radius: 18px;
  background: rgba(98, 199, 209, 0.06);
}

.ov-choice-note strong {
  color: #1e557f;
  font-size: 16px;
}

.ov-choice-note p {
  margin: 0;
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ov-platform {
  color: var(--ov-text-900);
  background:
    radial-gradient(circle at 82% 8%, rgba(98, 199, 209, 0.09), transparent 26%),
    radial-gradient(circle at 14% 10%, rgba(185, 135, 73, 0.07), transparent 20%),
    var(--ov-paper-200) !important;
}

.ov-capability-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ov-capability-map article {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.98));
  box-shadow: 0 18px 44px rgba(12, 29, 46, 0.05);
}

.ov-capability-map article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(98, 199, 209, 0.42), transparent);
}

.ov-capability-map span {
  color: rgba(185, 135, 73, 0.94);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ov-capability-map h3 {
  margin: 18px 0 0;
  color: var(--ov-ink);
  font-size: 21px;
}

.ov-capability-map p {
  margin: 12px 0 0;
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.78;
}

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

.ov-scenario-grid a,
.ov-case-grid a,
.ov-insight-links a {
  color: inherit;
  text-decoration: none;
}

.ov-scenario-grid a {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 14px 14px 20px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(12, 29, 46, 0.045);
  transition: transform 180ms ease, border-color 180ms ease;
}

.ov-scenario-grid a:hover,
.ov-case-grid a:hover,
.ov-insight-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 199, 209, 0.34);
}

.ov-scenario-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 128px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--ov-paper-200);
}

.ov-scenario-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 20, 33, 0), rgba(7, 20, 33, 0.16)),
    radial-gradient(circle at 12% 12%, rgba(98, 199, 209, 0.18), transparent 28%);
}

.ov-scenario-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ov-scenario-grid picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ov-detect-box,
.ov-detect-zone,
.ov-detect-tag {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.ov-detect-box {
  border: 1.5px solid rgba(98, 218, 228, 0.94);
  border-radius: 7px;
  box-shadow: 0 0 0 1px rgba(7, 20, 33, 0.32), 0 0 14px rgba(98, 218, 228, 0.24);
}

.ov-detect-box::before,
.ov-detect-box::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: rgba(255, 255, 255, 0.94);
  border-style: solid;
}

.ov-detect-box::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.ov-detect-box::after {
  right: -2px;
  bottom: -2px;
  border-width: 0 2px 2px 0;
}

.ov-detect-zone {
  border: 1.5px dashed rgba(246, 194, 104, 0.92);
  border-radius: 8px;
  background: rgba(246, 194, 104, 0.08);
  box-shadow: inset 0 0 0 1px rgba(7, 20, 33, 0.18);
}

.ov-detect-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border: 1px solid rgba(222, 246, 250, 0.7);
  border-radius: 999px;
  color: #f6fbff;
  background: rgba(7, 20, 33, 0.62);
  box-shadow: 0 8px 18px rgba(7, 20, 33, 0.22);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
}

.ov-box-a1 {
  left: 52%;
  top: 42%;
  width: 26%;
  height: 24%;
}

.ov-box-a2 {
  left: 10%;
  top: 43%;
  width: 22%;
  height: 20%;
}

.ov-tag-a1 {
  left: 55%;
  top: 35%;
}

.ov-tag-a2 {
  left: 11%;
  top: 35%;
}

.ov-box-p1 {
  left: 8%;
  top: 54%;
  width: 34%;
  height: 26%;
}

.ov-box-p2 {
  left: 63%;
  top: 38%;
  width: 24%;
  height: 22%;
}

.ov-tag-p1 {
  left: 9%;
  top: 45%;
}

.ov-tag-p2 {
  left: 63%;
  top: 29%;
}

.ov-zone-l1 {
  left: 37%;
  top: 49%;
  width: 48%;
  height: 34%;
  transform: skewX(-8deg);
}

.ov-box-l1 {
  left: 3%;
  top: 53%;
  width: 31%;
  height: 33%;
}

.ov-box-l2 {
  left: 65%;
  top: 38%;
  width: 28%;
  height: 35%;
}

.ov-tag-l1 {
  left: 5%;
  top: 43%;
}

.ov-tag-l2 {
  right: 8%;
  top: 28%;
}

.ov-zone-s1 {
  left: 8%;
  top: 30%;
  width: 42%;
  height: 54%;
}

.ov-box-s1 {
  left: 35%;
  top: 28%;
  width: 18%;
  height: 36%;
}

.ov-tag-s1 {
  left: 36%;
  top: 19%;
}

.ov-tag-s2 {
  left: 10%;
  top: 21%;
}

.ov-box-i1 {
  left: 44%;
  top: 43%;
  width: 24%;
  height: 20%;
}

.ov-box-i2 {
  left: 68%;
  top: 44%;
  width: 18%;
  height: 22%;
}

.ov-tag-i1 {
  left: 45%;
  top: 34%;
}

.ov-tag-i2 {
  left: 69%;
  top: 35%;
}

.ov-scenario-grid span {
  color: var(--ov-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ov-scenario-grid h3 {
  margin: 18px 0 0;
  color: var(--ov-ink);
  font-size: 23px;
}

.ov-detect-line {
  display: flex;
  align-items: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(98, 199, 209, 0.2);
  border-radius: 999px;
  background: rgba(98, 199, 209, 0.08);
  color: rgba(25, 47, 68, 0.88);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.ov-scenario-grid p {
  margin: 12px 0 0;
  color: var(--ov-muted);
  font-size: 15px;
  line-height: 1.76;
}

.ov-scenario-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: rgba(25, 47, 68, 0.86);
  font-size: 13px;
  line-height: 1.55;
}

.ov-rollout {
  background: var(--ov-paper-100) !important;
}

.ov-rollout-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 36px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(98, 199, 209, 0.09), transparent 30%),
    #ffffff;
  box-shadow: var(--ov-shadow);
}

.ov-rollout-copy p:not(.ov-eyebrow) {
  margin-top: 18px;
}

.ov-rollout-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.ov-rollout-steps li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0 16px;
  padding: 20px;
  border: 1px solid rgba(19, 40, 58, 0.10);
  border-radius: 18px;
  background: #f7fafb;
}

.ov-rollout-steps span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #0d2a38;
  background: rgba(98, 199, 209, 0.15);
  font-size: 13px;
  font-weight: 900;
}

.ov-rollout-steps strong {
  color: var(--ov-ink);
  font-size: 18px;
}

.ov-rollout-steps p {
  margin: 7px 0 0;
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.ov-case-grid a {
  display: flex;
  flex-direction: column;
  min-height: 254px;
  padding: 18px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(12, 29, 46, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.ov-case-kind {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  color: #7c552a;
  background: rgba(185, 135, 73, 0.14);
  font-size: 11px;
  font-weight: 900;
}

.ov-case-grid h3 {
  margin: 10px 0 0;
  min-height: 44px;
  color: var(--ov-ink);
  font-size: 21px;
  line-height: 1.24;
}

.ov-case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 9px;
}

.ov-case-metrics b {
  display: grid;
  gap: 3px;
  min-height: 50px;
  padding: 7px;
  border: 1px solid rgba(98, 199, 209, 0.18);
  border-radius: 10px;
  background: rgba(98, 199, 209, 0.07);
  font-style: normal;
}

.ov-case-metrics b span {
  padding: 0;
  color: rgba(47, 66, 86, 0.72);
  background: transparent;
  font-size: 10px;
  line-height: 1.25;
}

.ov-case-metrics b strong {
  color: var(--ov-ink);
  font-size: 14px;
  line-height: 1.22;
  word-break: keep-all;
}

.ov-case-grid p {
  margin: 0;
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ov-case-grid p strong {
  color: var(--ov-ink-soft);
}

.ov-case-ability {
  display: grid;
  overflow: hidden;
  margin: 9px 0 0;
  border: 1px solid rgba(98, 199, 209, 0.18);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(98, 199, 209, 0.055), rgba(98, 199, 209, 0.025));
}

.ov-case-ability div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 38px;
  padding: 9px 10px;
}

.ov-case-ability div + div {
  border-top: 1px solid rgba(98, 199, 209, 0.14);
}

.ov-case-ability dt,
.ov-case-ability dd {
  margin: 0;
}

.ov-case-ability dt {
  color: #7c552a;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.ov-case-ability dd {
  color: rgba(47, 66, 86, 0.88);
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.45;
}

.ov-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e557f;
  font-weight: 900;
  text-decoration: none;
}

.ov-text-link::after {
  content: "→";
}

.ov-insights {
  color: var(--ov-text-900);
  background:
    radial-gradient(circle at 80% 12%, rgba(98, 199, 209, 0.08), transparent 24%),
    var(--ov-paper-100) !important;
}

.ov-insight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(98, 199, 209, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
  box-shadow: var(--ov-shadow);
}

.ov-insight-panel h2,
.ov-insight-panel p {
  color: var(--ov-text-900);
}

.ov-insight-panel p:not(.ov-eyebrow) {
  margin-top: 16px;
  color: var(--ov-muted);
}

.ov-insight-links {
  display: grid;
  gap: 12px;
}

.ov-insight-links a {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(19, 40, 58, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease;
}

.ov-insight-links span {
  color: var(--ov-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ov-insight-links strong {
  color: var(--ov-ink);
  font-size: 18px;
}

.ov-contact {
  padding: 52px 0;
  background: var(--ov-paper-100);
}

.ov-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.52fr);
  gap: 36px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 249, 0.98));
  box-shadow: var(--ov-shadow);
}

.ov-contact p:not(.ov-eyebrow) {
  margin-top: 16px;
  max-width: 720px;
}

.ov-contact-list {
  display: grid;
  gap: 12px;
}

.ov-contact-list a,
.ov-contact-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 17px 18px;
  border: 1px solid rgba(19, 40, 58, 0.10);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
}

.ov-contact-list span {
  color: var(--ov-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ov-contact-list strong {
  color: var(--ov-ink);
  font-size: 16px;
  line-height: 1.45;
  word-break: break-all;
}

.ov-home-final .ov-footer {
  margin-top: 0;
  color: var(--ov-muted);
  background: var(--ov-paper-200);
  border-top: 1px solid rgba(19, 40, 58, 0.08);
}

.ov-home-final .ov-footer strong,
.ov-home-final .ov-footer h4,
.ov-home-final .ov-footer a {
  color: var(--ov-ink);
}

.ov-home-final .ov-footer p,
.ov-home-final .ov-footer li {
  color: var(--ov-muted);
}

.site-footer-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(19, 40, 58, 0.08);
  color: var(--ov-muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
}

.footer-record-link {
  color: inherit;
  text-decoration: none;
}

.footer-record-link:hover,
.footer-record-link:focus-visible {
  color: var(--ov-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ov-modal-open {
  overflow: hidden;
}

.ov-qr-modal[hidden] {
  display: none;
}

.ov-mobile-sticky-cta {
  display: none;
}

.ov-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ov-qr-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 20, 33, 0.56);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.ov-qr-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 22px;
  border: 1px solid rgba(19, 40, 58, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 20, 33, 0.24);
  text-align: center;
}

.ov-qr-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(19, 40, 58, 0.10);
  border-radius: 50%;
  color: var(--ov-muted);
  background: rgba(245, 247, 249, 0.96);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.ov-qr-dialog h2 {
  margin: 8px 40px 16px;
  color: var(--ov-ink);
  font-size: 24px;
  line-height: 1.28;
}

.ov-qr-dialog img {
  width: min(320px, 100%);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(19, 40, 58, 0.08);
  border-radius: 16px;
}

.ov-qr-dialog p {
  margin: 14px 0 0;
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ov-home-light-hero .ov-header {
  border-bottom: 1px solid rgba(31, 48, 70, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(24, 41, 59, 0.04);
}

.ov-home-light-hero .site-nav a {
  color: rgba(74, 92, 113, 0.82);
}

.ov-home-light-hero .site-nav > a:hover,
.ov-home-light-hero .site-nav > a.active {
  color: #18293b;
}

.ov-home-light-hero .ov-hero {
  color: #1a2b3c;
  background:
    radial-gradient(circle at 78% 14%, rgba(98, 199, 209, 0.13), transparent 26%),
    radial-gradient(circle at 24% 22%, rgba(185, 135, 73, 0.10), transparent 28%),
    linear-gradient(rgba(32, 71, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 71, 110, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}

.ov-home-light-hero .ov-hero::after {
  background: linear-gradient(180deg, rgba(239, 244, 248, 0), var(--ov-paper-200) 88%);
}

.ov-home-light-hero .ov-hero h1 {
  color: #162839;
}

.ov-home-light-hero .ov-lead {
  color: rgba(64, 82, 101, 0.84);
}

.ov-home-light-hero .ov-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #bb8852, #d0a16e);
  box-shadow: 0 16px 32px rgba(185, 135, 73, 0.2);
}

.ov-home-light-hero .ov-button-secondary {
  color: #18293b;
  border-color: rgba(31, 48, 70, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.ov-home-light-hero .ov-proof-row article {
  border: 1px solid rgba(31, 48, 70, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 253, 0.84));
  box-shadow: 0 10px 24px rgba(24, 41, 59, 0.05);
}

.ov-home-light-hero .ov-proof-row strong {
  color: #162839;
}

.ov-home-light-hero .ov-proof-row p {
  color: rgba(74, 92, 113, 0.82);
}

.ov-home-light-hero .ov-system-panel {
  border-color: rgba(31, 48, 70, 0.08);
  box-shadow: 0 24px 56px rgba(24, 41, 59, 0.14);
}

.footer-logo-lockup {
  width: clamp(180px, 18vw, 252px);
  height: auto;
  margin-bottom: 18px;
  mix-blend-mode: multiply;
}


.ov-faq {
  padding: 26px 0 30px;
  background: var(--ov-paper-100);
}

.ov-faq-head {
  margin-bottom: 14px;
}

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

.ov-faq-grid article {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(19, 40, 58, 0.11);
  border-radius: 18px;
  background: var(--ov-white);
  box-shadow: 0 12px 26px rgba(12, 29, 46, 0.04);
}

.ov-faq-grid h3 {
  margin: 0;
  color: var(--ov-text-900);
  font-size: 17px;
  line-height: 1.45;
}

.ov-faq-grid p {
  margin: 10px 0 0;
  color: var(--ov-text-600);
  font-size: 13px;
  line-height: 1.7;
}

.ov-home-final,
.ov-home-final * {
  letter-spacing: 0 !important;
}


@media (max-width: 1120px) {
  .ov-hero-grid,
  .ov-section-split,
  .ov-rollout-panel,
  .ov-choice-head,
  .ov-insight-panel,
  .ov-contact-panel {
    grid-template-columns: 1fr;
  }

  .ov-hero-grid {
    gap: 22px;
  }

  .ov-system-panel {
    min-height: auto;
  }

  .ov-topology {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ov-topology::before,
  .ov-topology::after {
    display: none;
  }

  .ov-core-node {
    width: min(280px, 100%);
    min-height: 240px;
    margin: 8px auto;
  }

  .ov-capability-map,
  .ov-scenario-grid,
  .ov-impact-grid,
  .ov-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ov-impact-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ov-case-head-link {
    justify-self: start;
  }
}

@media (max-width: 880px) {
  .ov-home-final .wrap {
    width: min(100% - 32px, 1220px);
  }

  .ov-home-final .header-inner {
    gap: 14px;
  }

  .ov-home-final .site-nav {
    gap: 12px;
  }

  .ov-home-final .site-nav a {
    font-size: 15px;
  }

  .ov-hero {
    padding-top: 28px;
  }

  .ov-proof-row,
  .ov-mode-compare,
  .ov-choice-grid,
  .ov-case-grid {
    grid-template-columns: 1fr;
  }

  .ov-section {
    padding: 44px 0;
  }

  .ov-scenarios {
    padding: 44px 0;
  }

  .ov-impact {
    padding: 34px 0 42px;
  }

  .ov-impact-head h2 {
    font-size: 36px;
  }

  .ov-deployment-note {
    grid-template-columns: 1fr;
  }

  .ov-rollout-panel,
  .ov-choice-panel,
  .ov-insight-panel,
  .ov-contact-panel {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 102px;
  }

  .ov-home-final {
    padding-bottom: 72px;
  }

  .ov-home-final .wrap {
    width: min(100% - 28px, 1220px);
  }

  .ov-home-final .header-inner {
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 8px 0 0;
  }

  .brand img.brand-lockup-page {
    width: 176px;
  }

  .ov-home-final .brand .brand-lockup {
    width: 164px;
  }

  .ov-home-final .site-nav {
    display: flex;
    width: calc(100vw - 28px);
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 2px 0 9px;
    scrollbar-width: none;
  }

  .ov-home-final .site-nav::-webkit-scrollbar {
    display: none;
  }

  .ov-home-final .site-nav a {
    flex: 0 0 auto;
    min-width: 44px;
    padding: 7px 8px;
    border: 1px solid rgba(31, 48, 70, 0.10);
    border-radius: 999px;
    background: rgba(245, 248, 250, 0.82);
    color: rgba(74, 92, 113, 0.86);
    font-size: 0;
    line-height: 1;
  }

  .ov-home-final .site-nav a::before {
    content: attr(data-mobile-label);
    font-size: 13px;
    font-weight: 850;
  }

  .ov-home-final .site-nav > a::after {
    display: none;
  }

  .ov-home-final .site-nav > a.active {
    border-color: rgba(98, 199, 209, 0.35);
    color: #142638;
    background: rgba(98, 199, 209, 0.12);
  }

  .ov-hero h1 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.16;
  }

  .ov-hero h1 span {
    display: inline;
  }

  .ov-lead {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .ov-hero {
    padding: 16px 0 24px;
  }

  .ov-hero-copy {
    padding-bottom: 4px;
  }

  .ov-hero-actions {
    display: none;
  }

  .ov-proof-row {
    display: none;
  }

  .ov-proof-row article {
    flex: 0 0 148px;
    min-height: auto;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .ov-proof-row strong {
    font-size: 16px;
  }

  .ov-proof-row p {
    display: none;
  }

  .ov-impact-head h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .ov-button {
    width: 100%;
  }

  .ov-qr-modal {
    padding: 18px;
  }

  .ov-qr-dialog {
    padding: 20px 18px;
  }

  .ov-qr-dialog h2 {
    font-size: 21px;
  }

  .ov-system-panel {
    min-height: 0;
    padding: 12px;
    border-radius: 22px;
  }

  .ov-panel-head,
  .ov-mode-stack,
  .ov-core-node,
  .ov-status-card,
  .ov-panel-footer {
    display: none;
  }

  .ov-topology {
    display: block;
    padding: 0;
  }

  .ov-detection-side {
    display: block;
  }

  .ov-mode-card,
  .ov-status-card {
    padding: 13px;
    border-radius: 15px;
  }

  .ov-mode-card strong,
  .ov-status-card strong {
    font-size: 16px;
  }

  .ov-mode-card p,
  .ov-status-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .ov-panel-head,
  .ov-panel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ov-core-node {
    width: min(210px, 100%);
    min-height: 190px;
    padding: 18px;
  }

  .ov-core-node span {
    margin-top: 16px;
    font-size: 10px;
  }

  .ov-core-node strong {
    font-size: 21px;
  }

  .ov-core-node p {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .ov-monitor {
    min-height: 210px;
    background-position: 58% 48%;
  }

  .ov-monitor-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
  }

  .ov-panel-footer {
    padding-top: 12px;
    gap: 8px;
  }

  .ov-impact {
    padding: 28px 0 28px;
  }

  .ov-impact-head {
    gap: 12px;
  }

  .ov-impact-head > div:nth-child(2) > p {
    display: none;
  }

  .ov-impact-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
  }

  .ov-impact-summary span {
    justify-content: center;
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  .ov-capability-map,
  .ov-impact-grid,
  .ov-faq-grid {
    grid-template-columns: 1fr;
  }

  .ov-capability-map article,
  .ov-scenario-grid a,
  .ov-impact-grid article,
  .ov-case-grid a,
  .ov-faq-grid article {
    min-height: auto;
  }

  .ov-impact-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .ov-impact-grid article {
    padding: 16px;
  }

  .ov-impact-grid article:nth-child(4) {
    display: none;
  }

  .ov-impact-grid h3 {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.34;
  }

  .ov-impact-grid p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.6;
  }

  .ov-impact-grid small,
  .ov-impact-result {
    display: none;
  }

  .ov-section {
    padding: 30px 0;
  }

  .ov-section-head {
    margin-bottom: 16px;
  }

  .ov-section-split {
    gap: 10px;
  }

  .ov-section-head h2,
  .ov-rollout-copy h2,
  .ov-contact h2,
  .ov-insight-panel h2 {
    font-size: 27px;
    line-height: 1.18;
  }

  .ov-section-head p:not(.ov-eyebrow),
  .ov-rollout-copy p,
  .ov-insight-panel p,
  .ov-contact p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ov-scenarios {
    padding: 30px 0;
  }

  .ov-scenario-grid,
  .ov-case-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .ov-scenario-grid::-webkit-scrollbar,
  .ov-case-grid::-webkit-scrollbar {
    display: none;
  }

  .ov-scenario-visual {
    height: 150px;
    margin-bottom: 12px;
  }

  .ov-scenario-grid a {
    flex: 0 0 min(84vw, 330px);
    scroll-snap-align: start;
    padding: 12px 12px 16px;
  }

  .ov-scenario-grid h3 {
    margin-top: 12px;
    font-size: 21px;
  }

  .ov-scenario-grid p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.66;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .ov-scenario-grid strong {
    padding-top: 12px;
  }

  .ov-detect-line {
    min-height: 30px;
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .ov-case-grid a {
    flex: 0 0 min(84vw, 330px);
    scroll-snap-align: start;
    padding: 15px;
  }

  .ov-case-grid h3 {
    min-height: auto;
    margin-top: 9px;
    font-size: 20px;
    line-height: 1.22;
  }

  .ov-case-kind {
    padding: 4px 8px;
    font-size: 10.5px;
  }

  .ov-case-ability {
    margin-top: 10px;
    border-color: rgba(98, 199, 209, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
  }

  .ov-case-ability div {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 7px;
    min-height: auto;
    padding: 7px 8px;
  }

  .ov-case-ability dt {
    font-size: 11px;
  }

  .ov-case-ability dd {
    font-size: 11.6px;
    line-height: 1.42;
  }

  .ov-cases {
    padding: 28px 0 30px;
  }

  .ov-case-head-link {
    font-size: 14px;
  }

  .ov-deployment-choice {
    padding: 30px 0;
  }

  .ov-choice-panel {
    padding: 18px;
  }

  .ov-choice-card {
    min-height: auto;
    padding: 18px;
  }

  .ov-choice-head {
    gap: 10px;
  }

  .ov-choice-head p:not(.ov-eyebrow) {
    display: none;
  }

  .ov-choice-card h3 {
    font-size: 22px;
  }

  .ov-choice-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .ov-choice-card ul {
    padding-top: 12px;
  }

  .ov-faq {
    display: none;
  }

  .site-footer-refined {
    margin-top: 30px;
    padding: 22px 0 30px;
  }

  .site-footer-grid {
    gap: 16px;
  }

  .footer-logo-lockup {
    width: 172px;
    margin-bottom: 10px;
  }

  .site-footer-brand p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .site-footer-grid .site-footer-group:nth-of-type(2) {
    display: none;
  }

  .site-footer-group h4 {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .site-footer-group li + li {
    margin-top: 5px;
  }

  .site-footer-bottom {
    margin-top: 14px;
    padding-top: 12px;
  }

  .ov-mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(31, 48, 70, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(7, 20, 33, 0.18);
    backdrop-filter: blur(14px);
  }

  .ov-mobile-sticky-cta a,
  .ov-mobile-sticky-cta button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 900;
  }

  .ov-mobile-sticky-cta a {
    border: 1px solid rgba(31, 48, 70, 0.12);
    color: #18293b;
    background: rgba(245, 248, 250, 0.96);
  }

  .ov-mobile-sticky-cta button {
    border: 1px solid transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #bb8852, #d0a16e);
    cursor: pointer;
  }

  .ov-impact-grid h3,
  .ov-impact-grid p,
  .ov-impact-grid small,
  .ov-impact-result p {
    min-height: auto;
  }

  .ov-rollout-steps li {
    grid-template-columns: 1fr;
  }

  .ov-rollout-steps span {
    margin-bottom: 12px;
  }

  .ov-choice-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
