:root {
  --navy-950: #00111f;
  --navy-900: #00172d;
  --navy-800: #062a48;
  --blue-600: #087dff;
  --blue-500: #16a0ff;
  --blue-100: #dceeff;
  --blue-50: #f2f8ff;
  --amber-500: #ffb526;
  --amber-400: #ffc95b;
  --ink: #172331;
  --muted: #637384;
  --line: #dbe6ef;
  --surface: #ffffff;
  --footer: #211b19;
  --shadow: 0 24px 70px rgba(0, 36, 72, .12);
  --radius: 18px;
  --radius-lg: 36px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "HarmonyOS Sans SC", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section--soft { background: var(--blue-50); }
.section--ink { color: #fff; background: var(--navy-900); }
.section--rounded {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--blue-600);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 2px; content: ""; background: currentColor; }
.eyebrow--light { color: #8fc8ff; }
.section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.14;
  letter-spacing: -.04em;
}
.section-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-intro--light { color: #a9bfd1; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.section-head .section-intro { margin: 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-weight: 700;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--amber-500);
  color: #16120b;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--amber-400); box-shadow: 0 16px 34px rgba(255, 181, 38, .22); }
.button--ghost { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); color: #fff; }
.button--ghost:hover { background: rgba(255,255,255,.14); box-shadow: none; }
.button--blue { background: var(--blue-600); color: #fff; }
.button--blue:hover { background: #006ee8; box-shadow: 0 16px 34px rgba(8,125,255,.22); }
.button--small { min-height: 42px; padding: 0 18px; border-radius: 10px; font-size: .92rem; }

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: 82px;
  color: #fff;
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.site-header--solid { height: 72px; background: rgba(0,23,45,.96); box-shadow: 0 9px 30px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 34px; }
.brand { display: inline-flex; width: 170px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: flex-end; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-link,
.nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255,255,255,.84);
  font-size: .95rem;
  cursor: pointer;
}
.nav-link:hover,
.nav-trigger:hover,
.nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-trigger { color: #fff; background: rgba(255,255,255,.09); }
.nav-trigger svg { transition: transform .2s ease; }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 10px; }
.language { color: rgba(255,255,255,.7); font-size: .85rem; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.menu-button span,
.menu-button::before,
.menu-button::after { display: block; width: 20px; height: 2px; margin: 4px auto; content: ""; background: currentColor; }
.mega-menu {
  position: absolute;
  top: 70px;
  left: 50%;
  width: min(900px, calc(100vw - 48px));
  padding: 20px;
  border: 1px solid rgba(126,194,255,.22);
  border-radius: 20px;
  background: rgba(3,31,56,.98);
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: .22s ease;
}
.nav-item:hover .mega-menu,
.mega-menu.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-card { display: flex; min-height: 92px; gap: 14px; padding: 15px; border-radius: 13px; transition: background .2s ease; }
.mega-card:hover { background: rgba(255,255,255,.07); }
.mega-number { color: var(--amber-500); font-size: .74rem; font-weight: 800; }
.mega-card strong { display: block; margin-bottom: 2px; color: #fff; font-size: .97rem; }
.mega-card span:last-child { color: #8da9be; font-size: .82rem; line-height: 1.45; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0,17,31,.98) 0%, rgba(0,23,45,.87) 38%, rgba(0,23,45,.25) 67%, rgba(0,23,45,.34) 100%),
              url('../images/hero-global.webp') 66% center / cover no-repeat;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  content: "";
  background: linear-gradient(transparent, var(--navy-900));
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
  gap: 50px;
  padding-top: 90px;
}
.hero-kicker { display: flex; align-items: center; gap: 13px; margin: 0 0 24px; color: #9ed3ff; font-size: .88rem; font-weight: 700; letter-spacing: .14em; }
.hero-kicker::before { width: 42px; height: 2px; content: ""; background: var(--amber-500); }
.hero h1 { margin: 0; font-size: clamp(3rem, 6.1vw, 5.8rem); line-height: 1.02; letter-spacing: -.055em; }
.hero h1 span { display: block; margin-top: 12px; color: var(--amber-500); font-size: .53em; letter-spacing: -.025em; }
.hero-copy { max-width: 610px; margin: 28px 0 0; color: #b7cad9; font-size: 1.12rem; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-metrics { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 76px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(0,20,38,.42); backdrop-filter: blur(14px); }
.hero-metric { padding: 22px 24px; }
.hero-metric + .hero-metric { border-left: 1px solid rgba(255,255,255,.12); }
.hero-metric strong { display: block; color: #fff; font-size: 1.32rem; line-height: 1.3; }
.hero-metric span { color: #86a2b8; font-size: .82rem; }
.scroll-cue { position: absolute; z-index: 3; right: 30px; bottom: 40px; writing-mode: vertical-rl; color: rgba(255,255,255,.46); font-size: .7rem; letter-spacing: .18em; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 84px; align-items: center; }
.intro-copy p { margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.orbit-card { position: relative; aspect-ratio: 1.12; display: grid; place-items: center; min-height: 480px; }
.orbit-card::before,
.orbit-card::after { position: absolute; border: 1px solid #c9e4fb; border-radius: 50%; content: ""; }
.orbit-card::before { width: 68%; height: 68%; }
.orbit-card::after { width: 94%; height: 94%; border-style: dashed; }
.orbit-center { position: relative; z-index: 2; width: 180px; height: 180px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: radial-gradient(circle at 35% 25%, #1597ff, #003d78 72%); box-shadow: 0 25px 70px rgba(8,125,255,.3); text-align: center; }
.orbit-center strong { display: block; font-size: 1.35rem; }
.orbit-center span { color: #a9d8ff; font-size: .78rem; letter-spacing: .1em; }
.orbit-node { position: absolute; z-index: 3; width: 132px; padding: 15px; border: 1px solid #d8e9f7; border-radius: 14px; background: #fff; box-shadow: 0 15px 38px rgba(0,39,77,.1); text-align: center; }
.orbit-node strong { display: block; color: var(--navy-900); }
.orbit-node span { color: var(--muted); font-size: .76rem; }
.orbit-node--1 { top: 5%; left: 38%; }
.orbit-node--2 { top: 35%; right: 0; }
.orbit-node--3 { right: 9%; bottom: 6%; }
.orbit-node--4 { bottom: 5%; left: 12%; }
.orbit-node--5 { top: 34%; left: 0; }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.capability-card { position: relative; min-height: 285px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.045); overflow: hidden; }
.capability-card::after { position: absolute; right: -35px; bottom: -35px; width: 120px; height: 120px; border: 1px solid rgba(76,170,255,.24); border-radius: 50%; content: ""; box-shadow: 0 0 0 22px rgba(76,170,255,.04); }
.capability-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(8,125,255,.16); color: #63b5ff; }
.capability-card h3 { margin: 56px 0 10px; font-size: 1.25rem; }
.capability-card p { margin: 0; color: #8da9be; font-size: .92rem; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { position: relative; min-height: 360px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-7px); border-color: #a9d6ff; box-shadow: var(--shadow); }
.product-card__index { display: flex; align-items: center; justify-content: space-between; color: #a5b4c2; font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.product-card__index span:last-child { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); }
.product-card h3 { margin: 78px 0 12px; font-size: 1.38rem; line-height: 1.35; }
.product-card p { margin: 0 0 28px; color: var(--muted); font-size: .92rem; }
.product-card .text-link { margin-top: auto; font-size: .9rem; }
.product-card--featured { grid-column: span 2; color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.product-card--featured::before { position: absolute; right: -30px; bottom: -50px; width: 290px; height: 290px; border: 1px solid rgba(73,174,255,.24); border-radius: 50%; content: ""; box-shadow: 0 0 0 55px rgba(8,125,255,.05), 0 0 0 105px rgba(8,125,255,.035); }
.product-card--featured p { color: #9bb3c6; }
.product-card--featured .text-link { color: #70bdff; }

.proof-band { display: grid; grid-template-columns: 1fr 1.25fr; min-height: 540px; }
.proof-copy { padding: 78px; background: var(--navy-900); color: #fff; }
.proof-copy p { color: #9fb5c5; }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #dce8f2; }
.proof-stat { display: flex; flex-direction: column; justify-content: flex-end; padding: 44px; background: #f8fbfe; }
.proof-stat strong { color: var(--blue-600); font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.05em; }
.proof-stat span { margin-top: 15px; color: var(--muted); }

.partner-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 46px; }
.partner-item { min-height: 110px; display: grid; place-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: #688096; font-weight: 750; text-align: center; }
.partner-item span { display: block; color: #9aa9b7; font-size: .72rem; font-weight: 500; letter-spacing: .08em; }

.case-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 290px); gap: 16px; }
.case-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; border-radius: var(--radius); background: linear-gradient(155deg, #0b4c7c, #021d36); color: #fff; overflow: hidden; }
.case-card:first-child { grid-row: 1 / 3; }
.case-card::before { position: absolute; inset: 0; content: ""; opacity: .72; background-image: radial-gradient(circle at 75% 20%, rgba(65,169,255,.52), transparent 30%), linear-gradient(130deg, transparent 45%, rgba(255,255,255,.08)); }
.case-card::after { position: absolute; right: -5%; top: -8%; width: 60%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; content: ""; box-shadow: 0 0 0 35px rgba(255,255,255,.035), 0 0 0 70px rgba(255,255,255,.025); }
.case-content { position: relative; z-index: 2; }
.case-tag { display: inline-flex; padding: 5px 11px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; color: #b9d8ef; font-size: .72rem; }
.case-card h3 { margin: 15px 0 8px; font-size: 1.65rem; }
.case-card p { max-width: 480px; margin: 0 0 17px; color: #9eb8cb; }

.news-list { border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 28px; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); }
.news-date { color: var(--muted); font-size: .85rem; }
.news-row h3 { margin: 0; font-size: 1.08rem; }
.news-row p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; }
.news-arrow { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-600); }

.cta-panel { position: relative; padding: 70px; border-radius: var(--radius-lg); background: linear-gradient(125deg, #0069d8, #00376f); color: #fff; overflow: hidden; }
.cta-panel::after { position: absolute; right: -80px; top: -170px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; content: ""; box-shadow: 0 0 0 65px rgba(255,255,255,.04), 0 0 0 130px rgba(255,255,255,.025); }
.cta-panel__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-panel h2 { max-width: 680px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.15; }
.cta-panel p { max-width: 590px; margin: 16px 0 0; color: #badcff; }

.page-hero { min-height: 510px; display: grid; align-items: end; padding: 160px 0 82px; color: #fff; background: var(--navy-900); overflow: hidden; }
.page-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 78% 35%, rgba(8,125,255,.34), transparent 28%), linear-gradient(135deg, transparent 55%, rgba(255,181,38,.06)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1.06; letter-spacing: -.05em; }
.page-hero p { max-width: 650px; margin: 24px 0 0; color: #a8c2d6; font-size: 1.08rem; }
.breadcrumb { margin-bottom: 26px; color: #789ab4; font-size: .82rem; }
.breadcrumb a { color: #9ac8eb; }

.feature-stack { display: grid; gap: 28px; }
.feature-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 460px; border: 1px solid var(--line); border-radius: 28px; background: #fff; overflow: hidden; }
.feature-panel:nth-child(even) .feature-copy { order: 2; }
.feature-panel:nth-child(even) .feature-visual { order: 1; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.feature-number { color: var(--blue-600); font-size: .78rem; font-weight: 850; letter-spacing: .14em; }
.feature-copy h2 { margin: 20px 0 16px; font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.2; }
.feature-copy p { margin: 0; color: var(--muted); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.feature-tags span { padding: 7px 12px; border-radius: 99px; background: var(--blue-50); color: #326a98; font-size: .8rem; }
.feature-visual { position: relative; min-height: 360px; display: grid; place-items: center; padding: 36px; background: linear-gradient(145deg, #eaf5ff, #f8fbff); overflow: hidden; }
.mockup { width: min(100%, 540px); border: 1px solid #b9d5eb; border-radius: 18px; background: #fff; box-shadow: 0 30px 60px rgba(0,53,97,.15); overflow: hidden; transform: rotate(-2deg); }
.mockup-bar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 13px; background: #eef5fb; }
.mockup-bar span { width: 7px; height: 7px; border-radius: 50%; background: #afc5d6; }
.mockup-body { display: grid; grid-template-columns: 26% 1fr; min-height: 260px; }
.mockup-side { padding: 18px 12px; background: #072c4c; }
.mockup-side i { display: block; height: 9px; margin: 0 0 13px; border-radius: 4px; background: rgba(255,255,255,.16); }
.mockup-main { padding: 24px; }
.mockup-chart { height: 115px; margin-bottom: 18px; border-radius: 10px; background: linear-gradient(180deg, rgba(8,125,255,.08), transparent), linear-gradient(120deg, transparent 0 10%, #087dff 10% 12%, transparent 12% 28%, #38a6ff 28% 30%, transparent 30% 44%, #087dff 44% 46%, transparent 46%); }
.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mockup-cards i { height: 58px; border-radius: 9px; background: #edf5fb; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; }
.article-content { font-size: 1.04rem; line-height: 1.9; }
.article-content h2 { margin: 2.2em 0 .7em; font-size: 2rem; line-height: 1.3; }
.article-content h3 { margin: 1.8em 0 .6em; font-size: 1.35rem; }
.article-content p { color: #435466; }
.article-content img { margin: 32px 0; border-radius: 18px; }
.article-meta { color: var(--muted); font-size: .85rem; }
.article-side { position: sticky; top: 110px; align-self: start; padding: 26px; border-radius: 18px; background: var(--blue-50); }
.article-side h3 { margin: 0 0 18px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { display: block; color: var(--muted); font-size: .8rem; }
.contact-item strong { display: block; margin-top: 5px; font-size: 1.05rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .86rem; font-weight: 700; }
.form-field input,
.form-field textarea,
.form-field select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cad9e6; border-radius: 10px; background: #fff; color: var(--ink); outline: none; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8,125,255,.1); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .8rem; }
.form-status { min-height: 26px; margin: 13px 0 0; color: #b63d2b; font-size: .85rem; }
.form-status.is-success { color: #087f53; }

.site-footer { padding: 72px 0 0; color: #c9c1bd; background: var(--footer); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 60px; }
.footer-brand { width: 160px; }
.footer-summary { max-width: 420px; margin: 22px 0 0; color: #928984; }
.footer-title { margin: 0 0 18px; color: #fff; font-size: .9rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { color: #9d9490; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-contact strong { display: block; color: #fff; font-size: 1.12rem; }
.footer-contact span { display: block; color: #928984; font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); color: #817a76; font-size: .78rem; }

.contact-modal[hidden] { display: none; }
.contact-modal { position: fixed; z-index: 120; inset: 0; display: grid; place-items: center; padding: 20px; }
.contact-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,12,23,.78); cursor: default; backdrop-filter: blur(5px); }
.contact-modal__panel { position: relative; z-index: 2; width: min(620px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 38px; border-radius: 24px; background: #fff; box-shadow: 0 32px 100px rgba(0,0,0,.35); }
.contact-modal__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #eef5fa; cursor: pointer; }
.contact-modal h2 { margin: 0; font-size: 2rem; }
.contact-modal__panel > p { margin: 10px 0 26px; color: var(--muted); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .header-actions .language { display: none; }
  .nav-link, .nav-trigger { padding-inline: 10px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-wall { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .brand { width: 160px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 70px 0 0; display: block; padding: 24px 20px 40px; background: var(--navy-900); transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .main-nav.is-open { transform: none; }
  .nav-list { display: block; }
  .nav-link, .nav-trigger { width: 100%; min-height: 54px; justify-content: space-between; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; font-size: 1rem; }
  .header-actions { margin: 25px 0 0; }
  .header-actions .button { width: 100%; }
  .mega-menu { position: static; width: 100%; max-height: 0; padding: 0; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; overflow: hidden; transition: max-height .3s ease; }
  .mega-menu.is-open { max-height: 700px; padding: 10px 0; }
  .nav-item:hover .mega-menu:not(.is-open) { max-height: 0; padding: 0; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-card { min-height: auto; padding: 13px 10px 13px 25px; }
  .hero { min-height: 680px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-metrics { margin-top: 50px; }
  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .orbit-card { min-height: 430px; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-copy { padding: 56px; }
  .case-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .case-card:first-child { grid-column: 1 / -1; grid-row: auto; min-height: 420px; }
  .case-card:not(:first-child) { min-height: 300px; }
  .cta-panel__inner { align-items: flex-start; flex-direction: column; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel:nth-child(even) .feature-copy,
  .feature-panel:nth-child(even) .feature-visual { order: initial; }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .section--rounded { width: calc(100% - 24px); border-radius: 24px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero { min-height: 720px; align-items: end; padding-bottom: 50px; }
  .hero::before { background: linear-gradient(180deg, rgba(0,17,31,.25), rgba(0,23,45,.93) 44%, #00172d 100%), url('../images/hero-global.webp') 68% top / auto 52% no-repeat; }
  .hero-grid { padding-top: 190px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metric { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; }
  .hero-metric + .hero-metric { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .scroll-cue { display: none; }
  .orbit-card { min-height: 390px; transform: scale(.9); }
  .orbit-node { width: 112px; padding: 10px; }
  .capability-grid,
  .product-grid { grid-template-columns: 1fr; }
  .product-card--featured { grid-column: auto; }
  .product-card { min-height: 300px; }
  .product-card h3 { margin-top: 52px; }
  .proof-copy { padding: 42px 28px; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stat { min-height: 200px; padding: 30px; }
  .partner-wall { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card:first-child,
  .case-card:not(:first-child) { grid-column: auto; min-height: 330px; }
  .news-row { grid-template-columns: 1fr auto; gap: 10px 18px; }
  .news-date { grid-column: 1 / -1; }
  .news-row p { display: none; }
  .cta-panel { padding: 44px 26px; border-radius: 24px; }
  .page-hero { min-height: 440px; padding: 140px 0 60px; }
  .feature-copy { padding: 36px 26px; }
  .feature-visual { min-height: 300px; padding: 20px; }
  .mockup-body { min-height: 200px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .contact-modal__panel { padding: 32px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* PDF 0915 visual system */
:root {
  --pdf-blue: #176ef0;
  --pdf-blue-deep: #064ec3;
  --pdf-sky: #eaf4ff;
  --pdf-pale: #f4f9ff;
  --pdf-yellow: #ffbf21;
  --pdf-ink: #16283b;
}
.site-header { height: 76px; }
.site-header .header-inner { width:min(calc(100% - 80px),1680px); }
.site-header.site-header--solid,
.site-header.site-header--solid.is-scrolled { height: 72px; color: var(--pdf-ink); background: rgba(255,255,255,.97); box-shadow: 0 10px 30px rgba(41,79,115,.09); }
.site-header:not(.site-header--solid).is-scrolled { height: 72px; background: rgba(4,23,48,.94); }
.brand { position: relative; width: 320px; height: 72px; overflow: visible; }
.brand-logo { position: absolute; top: 50%; left: -10px; width: 350px !important; height: auto !important; max-width: none; transform: translateY(-50%); }
.site-header--solid .nav-link,
.site-header--solid .nav-trigger { color: #40566c; }
.site-header--solid .nav-link:hover,
.site-header--solid .nav-trigger:hover,
.site-header--solid .nav-item.is-active > .nav-link,
.site-header--solid .nav-item.is-active > .nav-trigger { color: var(--pdf-blue); background: #eef6ff; }
.site-header--solid .language { color: #758698; }
.site-header--solid .menu-button { border-color: #d7e1eb; background: #fff; color: #17334f; }
.mega-menu { top: 66px; width: min(1040px, calc(100vw - 48px)); border: 1px solid #e3ebf3; border-radius: 0 0 16px 16px; background: rgba(255,255,255,.99); box-shadow: 0 24px 54px rgba(39,70,101,.13); }
.mega-grid { grid-template-columns: repeat(4,1fr); }
.mega-card { border-bottom: 2px solid transparent; }
.mega-card:hover { background: #f4f9ff; border-color: var(--pdf-yellow); }
.mega-card strong { color: var(--pdf-ink); }
.mega-card span:last-child { color: #76889a; }
.header-actions .button { min-height: 40px; border-radius: 5px; }

.design-section { padding: 100px 0; }
.design-section--soft { background: var(--pdf-pale); }
.design-label { margin: 0 0 15px; color: var(--pdf-blue); font-size: .82rem; font-weight: 800; letter-spacing: .03em; text-transform: none; }
.design-title { max-width: 940px; margin: 0; color: var(--pdf-ink); font-size: clamp(2rem,4vw,3.5rem); line-height: 1.18; letter-spacing: -.045em; }
.design-lead { margin-top: 25px; color: #627486; font-size: 1.08rem; line-height: 1.9; }
.design-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 42px; }
.design-more { flex: 0 0 auto; color: var(--pdf-blue); font-weight: 750; }
.design-two-col { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.design-rounded-image { width: 100%; border-radius: 28px; box-shadow: 0 28px 60px rgba(31,82,133,.13); }

.design-hero { position: relative; min-height: 670px; display: grid; align-items: center; overflow: hidden; background-color: #e8f3ff; }
.design-hero__content { position:relative; z-index:2; width:min(calc(100% - 180px),1680px); padding-top:75px; }
.design-hero__content h1 { max-width: 820px; margin: 22px 0 36px; font-size: clamp(2.2rem,4.5vw,4.7rem); line-height: 1.15; letter-spacing: -.045em; }
.design-hero__en { max-width: 980px; margin:0; color:#fff; font-size:clamp(2.8rem,3.35vw,4rem); font-weight:760; line-height:1.06; letter-spacing:-.045em; }
.design-hero--dark { color:#fff; background:#03152c url('../images/hero-stream.webp') center top / cover no-repeat; }
.design-hero--dark::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,#03152c 3%,rgba(3,21,44,.92) 42%,rgba(3,21,44,.1)); }
.design-hero--dark h1 { margin:20px 0 40px; color:#f3f8ff; font-size:clamp(1.45rem,1.7vw,2rem); font-weight:500; line-height:1.35; letter-spacing:.08em; }
.home-page .design-hero__content { transform:none; }
.home-page .design-hero .button { min-height:42px; padding:0 20px; border-radius:6px; font-size:.86rem; }
.design-hero--ai { min-height: 610px; background: #edf6ff url('../images/hero-ai.webp') center / cover no-repeat; }
.design-hero--matrix { min-height: 610px; background: #edf6ff url('../images/hero-matrix.webp') center / cover no-repeat; }
.design-hero__content--dark { color: var(--pdf-ink); }
.design-hero__content--dark h1 { max-width: 650px; }
.design-hero__content--dark .design-label { color: var(--pdf-blue); }
.design-pain-tags { max-width: 700px; display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 32px; }
.design-pain-tags span { padding: 8px 13px; border: 1px solid #c7ddf4; border-radius: 5px; background: rgba(255,255,255,.72); color: #4c6780; font-size: .83rem; }

.design-brand { position: relative; margin-top: -44px; border-radius: 44px 44px 0 0; background: #fff; }
.design-brand h2 { margin: 0 0 28px; color: var(--pdf-ink); font-size: clamp(2.2rem,4vw,3.7rem); line-height: 1.18; letter-spacing: -.04em; }
.design-brand h2 span { color: var(--pdf-blue); }
.design-brand p:not(.design-label) { color: #627486; }
.design-orbit { position: relative; min-height: 520px; display: grid; place-items: center; }
.design-orbit::before,.design-orbit::after { position:absolute; border:1px solid #bfdcff; border-radius:50%; content:""; }
.design-orbit::before { width: 64%; aspect-ratio: 1; }
.design-orbit::after { width: 90%; aspect-ratio: 1; border-style: dashed; }
.design-orbit__core { position: relative; z-index:2; width:190px; aspect-ratio:1; display:grid; place-items:center; align-content:center; border-radius:50%; background:radial-gradient(circle at 32% 28%,#55b8ff,var(--pdf-blue-deep)); color:#fff; box-shadow:0 22px 60px rgba(23,110,240,.35); text-align:center; }
.design-orbit__core strong { display:block; font-size:1.55rem; }
.design-orbit__core span { color:#c8e3ff; font-size:.7rem; letter-spacing:.1em; }
.design-orbit__node { position:absolute; z-index:3; min-width:105px; padding:11px 16px; border:1px solid #d4e6f8; border-radius:99px; background:#fff; box-shadow:0 10px 26px rgba(31,83,133,.12); color:#315b82; text-align:center; }
.design-orbit__node.n1 { top:3%; left:40%; }.design-orbit__node.n2 { top:30%; right:1%; }.design-orbit__node.n3 { right:10%; bottom:8%; }.design-orbit__node.n4 { bottom:6%; left:12%; }.design-orbit__node.n5 { top:31%; left:0; }

.design-capabilities { background: linear-gradient(180deg,#fff,#f0f7ff); }
.design-capability-flow { display:grid; grid-template-columns:repeat(5,1fr); gap:0; margin-top:54px; }
.design-capability-flow div { position:relative; min-height:260px; display:flex; flex-direction:column; justify-content:flex-end; padding:28px 24px; border:1px solid #d9e8f7; background:#fff; }
.design-capability-flow div:first-child { border-radius:22px 0 0 22px; }.design-capability-flow div:last-child { border-radius:0 22px 22px 0; }
.design-capability-flow b { position:absolute; top:25px; color:#c4d9ee; font-size:2.8rem; line-height:1; }
.design-capability-flow strong { color:var(--pdf-ink); font-size:1.22rem; }.design-capability-flow span { margin-top:8px; color:#789; font-size:.86rem; }
.design-capability-flow div:nth-child(3) { z-index:2; color:#fff; background:linear-gradient(145deg,#1b7cff,#0751c7); border-color:transparent; transform:translateY(-16px); box-shadow:0 22px 50px rgba(23,110,240,.25); }.design-capability-flow div:nth-child(3) b,.design-capability-flow div:nth-child(3) strong { color:#fff; }.design-capability-flow div:nth-child(3) span { color:#cce3ff; }

.design-products-home { background:#eaf4ff; }
.design-product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.design-product-card { min-height:330px; display:flex; flex-direction:column; padding:30px; border:1px solid #d5e5f5; border-radius:20px; background:rgba(255,255,255,.88); transition:.25s ease; }
.design-product-card:hover { transform:translateY(-7px); box-shadow:0 22px 50px rgba(42,94,148,.13); }
.design-product-card > span { color:#91a8bd; font-size:.75rem; font-weight:800; letter-spacing:.12em; }.design-product-card h3 { margin:75px 0 8px; color:var(--pdf-ink); font-size:1.7rem; }.design-product-card p { margin:0; color:#667d92; font-size:.9rem; }.design-product-card i { margin-top:auto; color:var(--pdf-blue); font-size:.88rem; font-style:normal; font-weight:700; }

.design-patents { background:#fff; }
.design-patent-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:50px; }
.design-patent-grid div { min-height:210px; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; border-radius:18px; background:linear-gradient(145deg,#f3f9ff,#e1f0ff); }
.design-patent-grid strong { color:var(--pdf-blue); font-size:1.25rem; }.design-patent-grid span { margin-top:8px; color:#6f8295; }
.design-ecosystem-home { background:#f5f9fd; }
.design-partners { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin-top:48px; }
.design-partners span { min-height:95px; display:grid; place-items:center; padding:15px; border:1px solid #dfe8f0; border-radius:9px; background:#fff; color:#62778b; font-weight:700; text-align:center; }
.design-cases-home { padding:18px 0 176px; background:#fff; }
.design-cases-inner { max-width:1000px; }
.design-cases-home > .design-cases-inner > .design-label { display:flex; flex-direction:column; align-items:flex-start; gap:4px; margin:0; color:#111f2c; font-size:27px; font-weight:500; line-height:1.05; letter-spacing:0; }
.design-cases-home > .design-cases-inner > .design-label::after { width:30px; height:2px; margin-top:12px; background:var(--pdf-blue); content:""; }
.design-cases-heading { margin:52px 0 58px; text-align:center; }
.design-cases-heading h2 { margin:0; color:#087cff; font-size:36px; line-height:1.25; letter-spacing:-.035em; }
.design-cases-heading p { margin:20px auto 0; color:#8a949e; font-size:13px; line-height:1.85; }
.design-photo-wall { display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); grid-template-rows:302px 302px 260px; gap:24px; width:100%; height:auto; }
.case-tile { position:relative; min-width:0; margin:0; overflow:hidden; background:#dceeff; }
.case-tile::after { position:absolute; inset:0; z-index:1; content:""; pointer-events:none; }
.case-tile img { width:100%; height:100%; object-fit:cover; border-radius:0; transition:transform .45s ease; }
.case-tile:hover img { transform:scale(1.025); }
.case-tile--main { grid-column:1 / 9; grid-row:1; }
.case-tile--city { grid-column:9 / 13; grid-row:1; }
.case-tile--office { grid-column:1 / 5; grid-row:2; }
.case-tile--factory { grid-column:5 / 13; grid-row:2; }
.case-tile--ship { grid-column:1 / 5; grid-row:3; }
.case-tile--park { grid-column:5 / 9; grid-row:3; }
.case-tile--growth { grid-column:9 / 13; grid-row:3; }
.case-tile--main::after { background:linear-gradient(90deg,rgba(0,130,235,.55),rgba(0,130,235,.12) 72%); }
.case-tile--office::after,.case-tile--factory::after,.case-tile--park::after { background:linear-gradient(90deg,rgba(0,132,237,.48),rgba(0,132,237,.08) 78%); }
.case-tile__copy { position:absolute; z-index:2; left:35px; right:24px; bottom:28px; display:flex; align-items:flex-start; flex-direction:column; color:#fff; line-height:1.35; }
.case-tile__copy small { margin-bottom:4px; font-size:12px; }
.case-tile__copy strong { font-size:19px; }
.case-tile__copy span { margin-top:4px; font-size:11px; }
.case-tile__copy a { margin-top:16px; color:#ffe43d; font-size:12px; font-weight:800; }
.home-page + .section#contact { display:none; }

.design-product-matrix { background:#f7fbff; }
.design-product-stack { display:grid; gap:34px; margin-top:55px; }
.design-product-panel { position:relative; min-height:510px; display:grid; grid-template-columns:.86fr 1.14fr; align-items:center; gap:36px; padding:58px 86px 58px 58px; border-radius:30px; background:#eaf4ff; overflow:hidden; }
.design-product-panel:nth-child(even) { background:#f1f3f5; }.design-product-panel:nth-child(even) .design-product-copy { order:2; }.design-product-panel:nth-child(even) .design-product-screen { order:1; }
.design-product-copy { position:relative; z-index:2; }.design-product-copy > span { color:var(--pdf-blue); font-weight:850; letter-spacing:.12em; }.design-product-copy > p { margin:20px 0 6px; color:#607a94; }.design-product-copy h2 { margin:0 0 18px; color:var(--pdf-ink); font-size:clamp(2.2rem,4vw,4rem); line-height:1.05; }.design-product-copy div { color:#697c8e; }.design-product-copy a { display:inline-flex; margin-top:32px; color:var(--pdf-blue); font-weight:750; }
.design-product-screen { position:relative; z-index:2; }.design-product-screen img { width:100%; border-radius:16px; box-shadow:0 24px 56px rgba(35,75,115,.18); }
.design-product-num { position:absolute; right:18px; top:50%; color:rgba(23,110,240,.18); font-size:9rem; line-height:1; transform:translateY(-50%); writing-mode:vertical-rl; }

.design-case-section h3 { max-width:900px; margin:13px 0 42px; color:var(--pdf-ink); font-size:clamp(2rem,4vw,3.6rem); line-height:1.18; }.design-case-brand { margin:0; color:var(--pdf-blue); font-size:1.55rem; }.design-case-section--soft { background:#edf6ff; }
.design-case-layout { display:grid; grid-template-columns:1fr 1fr; align-items:stretch; gap:45px; }.design-case-layout--reverse .design-case-copy { order:2; }.design-case-layout img { width:100%; min-height:390px; height:100%; object-fit:cover; border-radius:22px; }
.design-case-copy { display:flex; flex-direction:column; justify-content:center; }.design-case-copy > p { color:#607387; font-size:1.03rem; line-height:1.9; }
.design-chips { display:flex; flex-wrap:wrap; gap:8px; margin:20px 0 28px; }.design-chips span { padding:8px 12px; border-radius:5px; font-size:.8rem; }.design-chips--red span { background:#fff0ef; color:#c54d43; }
.design-path { display:flex; flex-wrap:wrap; align-items:center; gap:9px; }.design-path span { padding:10px 13px; border:1px solid #c6dcf2; border-radius:6px; background:#f4f9ff; color:#275d90; font-size:.84rem; }.design-path i { color:#86a8c8; font-style:normal; }
.design-metrics { display:grid; grid-template-columns:repeat(4,1fr); margin-top:42px; border:1px solid #d8e5f1; border-radius:17px; background:#fff; overflow:hidden; }.design-metrics div { padding:28px; text-align:center; }.design-metrics div+div { border-left:1px solid #d8e5f1; }.design-metrics strong { display:block; color:var(--pdf-blue); font-size:1.85rem; }.design-metrics span { color:#6f8091; font-size:.83rem; }

.design-tech-arch { display:grid; grid-template-columns:1.05fr .95fr; gap:35px; margin-top:48px; }.design-tech-arch > img { width:100%; height:100%; object-fit:cover; border-radius:22px; }.design-tech-arch > div { display:grid; grid-template-columns:1fr 1fr; gap:12px; }.design-tech-arch > div > div { display:flex; flex-direction:column; justify-content:flex-end; min-height:190px; padding:24px; border-radius:16px; background:#ecf5ff; }.design-tech-arch b { color:#aac5df; font-size:2rem; }.design-tech-arch strong { color:var(--pdf-ink); font-size:1.12rem; }.design-tech-arch span { color:#718498; font-size:.82rem; }
.design-event-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:50px; }.design-event-grid img { width:100%; aspect-ratio:1.25; object-fit:cover; border-radius:14px; }
.design-patent-table { display:grid; gap:10px; margin-top:44px; }.design-patent-table > div { display:grid; grid-template-columns:120px 280px 1fr; align-items:center; gap:20px; padding:22px 25px; border:1px solid #dbe7f2; border-radius:12px; background:#fff; }.design-patent-table b { color:var(--pdf-blue); }.design-patent-table strong { color:var(--pdf-ink); }.design-patent-table span { color:#718396; }

.design-wide-photo { position:relative; margin-top:45px; border-radius:26px; overflow:hidden; }.design-wide-photo img { width:100%; max-height:580px; object-fit:cover; }.design-wide-photo div { position:absolute; left:35px; right:35px; bottom:30px; padding:28px; border-radius:16px; background:rgba(3,30,61,.84); color:#fff; backdrop-filter:blur(8px); }.design-wide-photo strong { display:block; font-size:1.4rem; }.design-wide-photo span { color:#c7d8e8; }
.design-industry-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; margin-top:48px; }.design-industry-grid img { width:100%; height:340px; object-fit:cover; border-radius:18px; }.design-three-values { display:flex; justify-content:center; gap:65px; margin-top:40px; }.design-three-values span { min-width:150px; padding:16px; border-radius:99px; background:#eaf4ff; color:var(--pdf-blue); font-weight:800; text-align:center; }
.design-about-collage { display:grid; grid-template-columns:1fr 1fr; gap:14px; }.design-about-collage img { width:100%; height:430px; object-fit:cover; border-radius:18px; }.design-about-collage img:last-child { margin-top:50px; }
.design-vision { min-height:590px; display:grid; align-items:center; background-position:center; background-size:cover; color:#fff; }.design-vision p { color:#bcd5ec; }.design-vision h2 { max-width:850px; margin:18px 0 0; font-size:clamp(2.2rem,5vw,4.7rem); line-height:1.15; }
.design-news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:15px; margin-top:44px; }.design-news-grid a { min-height:300px; display:flex; flex-direction:column; padding:28px; border:1px solid #dce7f1; border-radius:18px; background:#fff; }.design-news-grid time { color:#91a3b5; font-size:.78rem; }.design-news-grid h3 { margin:58px 0 12px; color:var(--pdf-ink); font-size:1.2rem; }.design-news-grid p { margin:0; color:#748698; font-size:.88rem; }.design-news-grid span { margin-top:auto; color:var(--pdf-blue); font-weight:700; font-size:.84rem; }
.design-contact { text-align:center; }.design-contact .design-title { margin-inline:auto; }.design-contact .button { margin-top:34px; }

.cta-panel { border-radius:24px; background:linear-gradient(120deg,#0759ca,#0e7cf2); }
.site-footer { background:#2a211e; }.footer-brand { width:270px; }

@media (max-width:1100px) {
  .brand { width:260px; }.brand-logo { left:-8px; width:300px !important; }
  .mega-grid { grid-template-columns:repeat(3,1fr); }
  .design-two-col { gap:45px; }.design-product-grid { grid-template-columns:repeat(2,1fr); }.design-capability-flow { grid-template-columns:repeat(3,1fr); gap:10px; }.design-capability-flow div:first-child,.design-capability-flow div:last-child { border-radius:18px; }.design-capability-flow div:nth-child(3) { transform:none; }.design-partners { grid-template-columns:repeat(4,1fr); }.design-product-panel { padding:48px; }.design-product-num { display:none; }.design-event-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:900px) {
  .brand { width:250px; }.brand-logo { width:290px !important; }
  .site-header--solid .main-nav { background:#fff; }.site-header--solid .nav-link,.site-header--solid .nav-trigger { border-color:#e2e9ef; color:#364e64; }
  .design-hero { min-height:570px; background-position:62% center; }.design-hero::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(240,248,255,.96),rgba(240,248,255,.45)); }.design-hero--dark { background-position:center top; }.design-hero--dark::before { background:linear-gradient(90deg,#03152c 5%,rgba(3,21,44,.82),rgba(3,21,44,.3)); }.site-header .header-inner,.design-hero__content { width:min(calc(100% - 40px),1680px); }.home-page .design-hero__content { transform:none; }
  .design-two-col,.design-product-panel,.design-case-layout,.design-tech-arch { grid-template-columns:1fr; }.design-product-panel:nth-child(even) .design-product-copy,.design-product-panel:nth-child(even) .design-product-screen,.design-case-layout--reverse .design-case-copy { order:initial; }.design-orbit { min-height:460px; }.design-photo-wall { grid-template-columns:1fr 1fr; grid-template-rows:300px repeat(3,240px); gap:14px; }.case-tile--main { grid-column:1/3; grid-row:1; }.case-tile--city { grid-column:1; grid-row:2; }.case-tile--office { grid-column:2; grid-row:2; }.case-tile--factory { grid-column:1/3; grid-row:3; }.case-tile--ship { grid-column:1; grid-row:4; }.case-tile--park { grid-column:2; grid-row:4; }.case-tile--growth { display:none; }.design-metrics { grid-template-columns:1fr 1fr; }.design-metrics div:nth-child(3) { border-top:1px solid #d8e5f1; border-left:0; }.design-metrics div:nth-child(4) { border-top:1px solid #d8e5f1; }.design-industry-grid { grid-template-columns:1fr 1fr; }.design-industry-grid img:last-child { grid-column:1/3; }.design-news-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:700px) {
  .design-section { padding:72px 0; }.design-section-head { align-items:flex-start; flex-direction:column; }.design-hero { min-height:620px; align-items:flex-end; padding-bottom:65px; }.design-hero__content { padding-top:100px; }.home-page .design-hero__content { transform:none; }.design-hero__en { max-width:100%; font-size:clamp(2.35rem,10.8vw,3.1rem); line-height:1.02; }.design-hero--dark h1 { font-size:1.2rem; letter-spacing:.03em; }.design-hero--ai,.design-hero--matrix { min-height:680px; background-position:70% center; }.design-pain-tags { gap:6px; }
  .design-brand { margin-top:-28px; border-radius:28px 28px 0 0; }.design-orbit { min-height:390px; transform:scale(.88); }.design-capability-flow { grid-template-columns:1fr; }.design-capability-flow div { min-height:150px; }.design-capability-flow div:nth-child(3) { transform:none; }.design-product-grid,.design-patent-grid { grid-template-columns:1fr; }.design-product-card { min-height:270px; }.design-product-card h3 { margin-top:45px; }.design-partners { grid-template-columns:1fr 1fr; }.design-cases-home { padding:14px 0 86px; }.design-cases-home > .design-cases-inner > .design-label { font-size:21px; }.design-cases-heading { margin:42px 0 34px; }.design-cases-heading h2 { font-size:28px; }.design-cases-heading p br { display:none; }.design-photo-wall { display:grid; grid-template-columns:1fr; grid-template-rows:280px repeat(6,220px); gap:12px; }.case-tile,.case-tile--main,.case-tile--city,.case-tile--office,.case-tile--factory,.case-tile--ship,.case-tile--park,.case-tile--growth { display:block; grid-column:1; grid-row:auto; }.case-tile__copy { left:22px; bottom:20px; }
  .design-product-panel { min-height:0; padding:34px 24px; border-radius:22px; }.design-product-screen { order:2 !important; }.design-case-layout img { min-height:280px; }.design-metrics { grid-template-columns:1fr; }.design-metrics div+div { border-top:1px solid #d8e5f1; border-left:0; }.design-tech-arch > div { grid-template-columns:1fr; }.design-event-grid { grid-template-columns:1fr; }.design-patent-table > div { grid-template-columns:1fr; gap:5px; }.design-industry-grid { grid-template-columns:1fr; }.design-industry-grid img,.design-industry-grid img:last-child { grid-column:auto; height:260px; }.design-three-values { gap:8px; }.design-three-values span { min-width:0; flex:1; }.design-about-collage img { height:300px; }.design-news-grid { grid-template-columns:1fr; }
  .footer-brand { width:250px; }
}

/* Home page layout aligned with the approved PDF artwork */
.home-reference-shell { max-width: 980px; }
.home-overview-grid,
.home-core-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 78px;
}
.home-core-grid { margin-top: 118px; }
.home-reference-media,
.home-core-figure { margin: 0; }
.home-reference-media img { width: 100%; aspect-ratio: 1.28; object-fit: cover; }
.home-reference-copy .design-label,
.home-products-shell > .design-label {
  display: grid;
  justify-items: start;
  gap: 0;
  margin-bottom: 34px;
  color: #171717;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.15;
}
.home-reference-copy .design-label small,
.home-products-shell > .design-label small {
  font-size: .72rem;
  font-weight: 700;
}
.home-reference-copy .design-label::after,
.home-products-shell > .design-label::after {
  width: 27px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: #1678ef;
}
.design-brand .home-reference-copy h2 {
  margin: 0 0 20px;
  color: #0479ed;
  font-size: clamp(1.85rem, 2.65vw, 2.75rem);
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -.035em;
}
.design-brand .home-reference-copy h2 span { color: #0479ed; }
.design-brand .home-reference-copy > p:not(.design-label) {
  margin: 0;
  color: #768391;
  font-size: .82rem;
  line-height: 1.85;
}
.home-core-copy { padding-right: 8px; }
.design-brand .home-core-copy h2 {
  font-size: clamp(1.72rem, 2.15vw, 2.05rem);
  white-space: nowrap;
}
.home-core-button {
  min-height: 42px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: .82rem;
}
.home-core-figure { display: grid; place-items: center; }
.home-core-figure img { width: min(100%, 470px); }

.design-products-home {
  position: relative;
  padding: 70px 0 118px;
  background: #edf7ff;
}
.home-products-shell { max-width: 980px; }
.home-products-shell > .design-label { margin-bottom: 34px; }
.home-products-shell > .design-title {
  max-width: none;
  margin: 0 auto 42px;
  color: #0783ec;
  font-size: clamp(1.8rem, 2.55vw, 2.65rem);
  text-align: center;
  letter-spacing: -.025em;
}
.home-product-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-product-visual-grid a {
  display: block;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(24, 102, 171, .13);
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-product-visual-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(24, 102, 171, .2);
}
.home-product-visual-grid img { width: 100%; aspect-ratio: .892; object-fit: cover; }

@media (max-width: 900px) {
  .home-overview-grid,
  .home-core-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-core-grid { margin-top: 86px; }
  .home-core-figure { order: -1; }
  .home-reference-media img { max-height: 480px; }
  .home-product-visual-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .home-reference-shell { width: min(calc(100% - 36px), 1100px); }
  .home-reference-copy .design-label,
  .home-products-shell > .design-label { margin-bottom: 24px; }
  .design-brand .home-reference-copy h2 { font-size: 1.75rem; }
  .home-product-visual-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-products-shell > .design-title { text-align: left; }
}

.design-hero--dark::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 30%;
  content: "";
  background: linear-gradient(90deg, rgba(3, 21, 44, 0), #03152c 35%);
  pointer-events: none;
}

/* Product matrix page aligned with the approved PDF artwork */
.nav-product-entry {
  display: flex;
  align-items: center;
  border-radius: 9px;
}
.nav-product-entry .nav-product-link { padding-right: 7px; }
.nav-product-toggle {
  width: 30px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 9px 0 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.84);
  cursor: pointer;
}
.nav-product-toggle svg { transition: transform .2s ease; }
.nav-product-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-item--products:hover .nav-product-entry,
.nav-item--products.is-active .nav-product-entry { background: rgba(255,255,255,.09); }
.site-header--solid .nav-product-toggle { color: #40566c; }
.site-header--solid .nav-item--products:hover .nav-product-entry,
.site-header--solid .nav-item--products.is-active .nav-product-entry { background: #eef6ff; }
.site-header--solid .nav-item--products.is-active .nav-product-link,
.site-header--solid .nav-item--products.is-active .nav-product-toggle { color: var(--pdf-blue); }

.product-matrix-page { background: #eef5fb; }
.product-matrix-hero {
  min-height: 100vh;
  min-height: 100svh;
  background-position: center center;
}
.product-matrix-hero .design-hero__content { padding-top: 88px; }
.product-matrix-hero .design-hero__content h1 {
  max-width: 760px;
  margin: 0 0 38px;
  color: #087cff;
  font-size: clamp(3.2rem, 5.3vw, 6.2rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.065em;
}
.product-matrix-pains {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 34px;
  color: #385168;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}
.product-matrix-hero__button {
  min-height: 42px;
  margin-top: 38px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: .84rem;
}
.product-matrix-reference { position: relative; background: #eef5fb; }
.product-reference-stack { width: 100%; overflow: hidden; }
.product-reference-card {
  position: relative;
  min-height: clamp(700px, 51vw, 980px);
  display: grid;
  align-items: center;
  border-radius: 54px 54px 0 0;
  overflow: hidden;
  scroll-margin-top: 78px;
}
.product-reference-card + .product-reference-card { margin-top: -38px; }
.product-reference-media { position: absolute; inset: 0; }
.product-reference-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-reference-copy {
  position: relative;
  z-index: 2;
  width: min(25vw, 430px);
  margin-left: max(7.5vw, 72px);
  color: #687a8a;
}
.product-reference-kicker {
  margin: 0 0 6px;
  color: #075dae;
  font-size: clamp(.95rem, 1.1vw, 1.35rem);
  font-weight: 750;
  line-height: 1.45;
}
.product-reference-copy h2 {
  margin: 0 0 34px;
  color: #087cff;
  font-size: clamp(1.65rem, 2.25vw, 2.8rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.product-reference-description {
  max-width: none;
  margin: 0;
  color: #253e58;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 500;
  line-height: 1.85;
  overflow-wrap: anywhere;
}
.product-reference-more {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 38px;
  padding: 0 22px;
  border-radius: 5px;
  background: var(--pdf-yellow);
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.product-reference-more:hover { background: #ffb000; transform: translateY(-2px); }
.product-reference-number {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 5.6vw;
  color: #0a77ee;
  font-size: clamp(7rem, 10.5vw, 12.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.08em;
  transform: translateY(-72%);
  text-shadow: 0 14px 28px rgba(8,124,255,.18);
}
.product-reference-number::after {
  position: absolute;
  top: calc(100% + 34px);
  left: 62%;
  width: 2px;
  height: 210px;
  content: "";
  background: linear-gradient(to bottom, #ffbf21 0 22%, rgba(255,255,255,.94) 22% 100%);
}

@media (max-width: 1100px) {
  .product-reference-copy { width: 34vw; margin-left: 6vw; }
  .product-reference-number { right: 3.8vw; }
}

@media (max-width: 900px) {
  .nav-product-entry {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
  }
  .nav-product-entry .nav-product-link {
    width: auto;
    flex: 1;
    border-bottom: 0;
  }
  .nav-product-toggle {
    width: 54px;
    min-height: 54px;
    padding: 0;
    color: #364e64;
  }
  .site-header--solid .nav-item--products:hover .nav-product-entry,
  .site-header--solid .nav-item--products.is-active .nav-product-entry { background: transparent; }
  .product-matrix-hero::before {
    z-index: 1;
    background: linear-gradient(90deg, rgba(240,248,255,.97) 0%, rgba(240,248,255,.82) 52%, rgba(240,248,255,.18) 100%);
  }
  .product-matrix-pains { grid-template-columns: repeat(2, max-content); }
  .product-reference-card { min-height: 650px; }
  .product-reference-copy { width: 38vw; margin-left: 5vw; }
  .product-reference-number { font-size: 6.5rem; }
  .product-reference-number::after { height: 155px; }
}

@media (max-width: 700px) {
  .product-matrix-hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding-bottom: 0;
    background-position: 68% center;
  }
  .product-matrix-hero .design-hero__content { padding-top: 90px; }
  .product-matrix-hero .design-hero__content h1 { margin-bottom: 30px; font-size: clamp(2.8rem, 15vw, 4.25rem); }
  .product-matrix-pains { grid-template-columns: 1fr 1fr; gap: 11px 18px; font-size: .82rem; }
  .product-matrix-hero__button { margin-top: 32px; }
  .product-reference-stack { display: grid; gap: 14px; padding: 14px; }
  .product-reference-card,
  .product-reference-card + .product-reference-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    border-radius: 24px;
    background: #eef2f5;
  }
  .product-reference-card:nth-child(even) { background: #dfecff; }
  .product-reference-media { position: relative; width: 100%; height: 290px; }
  .product-reference-media img { object-position: 70% center; }
  .product-reference-copy {
    width: 100%;
    margin: 0;
    padding: 12px 24px 34px;
  }
  .product-reference-copy h2 { margin-bottom: 18px; font-size: 1.85rem; }
  .product-reference-description { padding-right: 0; font-size: .9rem; }
  .product-reference-more { margin-top: 26px; }
  .product-reference-number {
    top: 22px;
    right: 22px;
    font-size: 4.4rem;
    transform: none;
  }
  .product-reference-number::after { display: none; }
}

/* Product detail pages: authentic project screens plus CMS-managed copy */
.product-detail-page { background: #f3f7fb; }
.product-detail-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 150px 0 78px;
  color: #fff;
  background: linear-gradient(118deg, #051d3a 0%, #0c3d70 58%, #087dff 145%);
  overflow: hidden;
}
.product-detail-hero::before,
.product-detail-hero::after {
  position: absolute;
  border: 1px solid rgba(143,204,255,.22);
  border-radius: 50%;
  content: "";
}
.product-detail-hero::before {
  top: -220px;
  right: -90px;
  width: 650px;
  height: 650px;
  box-shadow: 0 0 0 72px rgba(8,125,255,.055), 0 0 0 144px rgba(8,125,255,.035);
}
.product-detail-hero::after {
  right: 29%;
  bottom: -330px;
  width: 470px;
  height: 470px;
  opacity: .45;
}
.product-detail-hero__inner { position: relative; z-index: 2; }
.product-detail-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
  color: #91b8d8;
  font-size: .84rem;
}
.product-detail-breadcrumb a { color: #c4e2fa; transition: color .2s ease; }
.product-detail-breadcrumb a:hover { color: #fff; }
.product-detail-breadcrumb span {
  padding: 6px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 99px;
  background: rgba(255,255,255,.06);
}
.product-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: 90px;
  align-items: end;
}
.product-detail-kicker {
  margin: 0 0 18px;
  color: #79c4ff;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-detail-hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.product-detail-subtitle {
  margin: 19px 0 0;
  color: #d7ecfc;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}
.product-detail-hero__summary {
  padding: 26px 0 6px 34px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.product-detail-hero__summary > span {
  color: #78bfff;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.product-detail-hero__summary > p {
  margin: 10px 0 23px;
  color: #b8d0e4;
  font-size: 1rem;
  line-height: 1.85;
}
.product-detail-feature {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(77,175,255,.13);
  color: #a9d9ff;
  font-size: .79rem;
}
.product-detail-showcase { padding: 92px 0 104px; }
.product-detail-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 34px;
}
.product-detail-section-head .eyebrow { margin-bottom: 10px; }
.product-detail-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -.045em;
}
.product-detail-section-head > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}
.product-detail-screen {
  margin: 0;
  padding: 16px 16px 0;
  border: 1px solid #d7e4ee;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 34px 86px rgba(8,48,86,.15);
  overflow: hidden;
}
.product-detail-screen img {
  width: 100%;
  height: auto;
  border: 1px solid #e3ebf2;
  border-radius: 15px;
  background: #f7f9fb;
}
.product-detail-screen figcaption {
  padding: 14px 5px 17px;
  color: #8a9bac;
  font-size: .78rem;
  text-align: right;
}
.product-detail-content-section { padding: 96px 0 112px; background: #fff; }
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 86px;
  align-items: start;
}
.product-detail-content {
  max-width: 850px;
  padding-right: 34px;
}
.product-detail-content .product-detail-content__title {
  margin: 0 0 34px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.product-detail-content h2:not(.product-detail-content__title) {
  margin-top: 2.1em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
  color: #0a3157;
  font-size: 1.55rem;
}
.product-detail-content ul,
.product-detail-content ol { padding-left: 1.25em; color: #435466; }
.product-detail-content li + li { margin-top: 8px; }
.product-detail-side {
  position: sticky;
  top: 108px;
  padding: 30px;
  border: 1px solid #dce9f5;
  border-radius: 22px;
  background: linear-gradient(145deg, #f3f8ff, #eaf4ff);
}
.product-detail-side h3 { margin: 0 0 15px; font-size: 1.35rem; line-height: 1.45; }
.product-detail-side > p:not(.eyebrow) { margin: 0 0 24px; color: var(--muted); font-size: .92rem; }
.product-detail-side .button { width: 100%; }
.product-detail-back {
  display: block;
  margin-top: 21px;
  color: var(--blue-600);
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .product-detail-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .product-detail-hero__summary { max-width: 700px; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-detail-content { max-width: none; padding-right: 0; }
  .product-detail-side { position: static; }
}

@media (max-width: 700px) {
  .product-detail-hero { min-height: 600px; padding: 120px 0 58px; }
  .product-detail-breadcrumb { align-items: flex-start; flex-direction: column; margin-bottom: 42px; }
  .product-detail-hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .product-detail-hero__summary { padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .product-detail-showcase { padding: 68px 0 74px; }
  .product-detail-section-head { align-items: flex-start; flex-direction: column; gap: 18px; }
  .product-detail-screen { padding: 7px 7px 0; border-radius: 16px; }
  .product-detail-screen img { border-radius: 10px; }
  .product-detail-screen figcaption { text-align: left; }
  .product-detail-content-section { padding: 72px 0 82px; }
}

/* The matrix is a vertical snap carousel: one full card per view. */
.product-matrix-reference {
  position: relative;
  padding: 0;
  background: #eef5fb;
}
.product-reference-stack {
  width: 100%;
  height: calc(100vh - var(--matrix-header-height, 72px));
  height: calc(100dvh - var(--matrix-header-height, 72px));
  display: block;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.product-reference-stack::-webkit-scrollbar { display: none; width: 0; height: 0; }
.product-matrix-reference.has-scroll-controller:not(.is-scroll-ready) .product-reference-stack { overflow-y: hidden; }
.product-reference-card,
.product-reference-card + .product-reference-card {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  align-items: center;
  margin: 0;
  border-radius: 50px 50px 0 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}
.product-reference-card:first-child { border-radius: 0; }
.product-reference-media { position: absolute; inset: 0; }
.product-reference-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-reference-copy {
  position: relative;
  z-index: 2;
  width: min(27vw, 410px);
  margin: 0 0 0 max(4.5vw, 40px);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 22px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 42px rgba(30,66,99,.09);
}
.product-reference-copy h2 { margin-bottom: 22px; }
.product-reference-copy .product-reference-more { margin-top: 26px; color: #2d250a; }
.product-reference-number {
  top: 50%;
  right: 5.6vw;
  transform: translateY(-72%);
}
.product-reference-number { display: none; }
.product-carousel-indicator {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: 5.6vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #0a77ee;
  transform: translateY(-53%);
  pointer-events: none;
  text-shadow: 0 14px 28px rgba(8,124,255,.18);
}
.product-carousel-indicator > strong {
  min-width: 1.65em;
  font-size: clamp(7rem, 10.5vw, 12.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.08em;
  text-align: center;
}
.product-carousel-indicator__rail {
  position: relative;
  width: 2px;
  height: 230px;
  display: block;
  margin-top: 34px;
  background: rgba(255,255,255,.92);
}
.product-carousel-indicator__rail i {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 46px;
  display: block;
  background: #ffb400;
  box-shadow: 0 0 12px rgba(255,180,0,.28);
  transition: top .28s ease, transform .28s ease;
}
.product-reference-hint {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(8,125,255,.16);
  border-radius: 99px;
  background: rgba(255,255,255,.82);
  color: #50718e;
  font-size: .75rem;
  backdrop-filter: blur(8px);
}
.product-reference-hint span { color: var(--blue-600); font-weight: 850; }

@media (max-width: 900px) {
  .product-matrix-reference { --matrix-header-height: 70px; }
  .product-reference-card,
  .product-reference-card + .product-reference-card {
    min-height: 100%;
    height: 100%;
  }
  .product-reference-copy { width: min(44vw, 390px); margin-left: 4vw; padding: 24px; }
  .product-carousel-indicator { right: 3.8vw; }
  .product-carousel-indicator > strong { font-size: 6.5rem; }
  .product-carousel-indicator__rail { height: 170px; }
}

@media (max-width: 700px) {
  .product-reference-stack {
    min-height: 0;
    display: block;
    gap: 0;
    padding: 0;
  }
  .product-reference-card,
  .product-reference-card + .product-reference-card {
    position: relative;
    min-height: 100%;
    height: 100%;
    display: grid;
    align-items: end;
    flex-direction: initial;
    margin: 0;
    border-radius: 28px 28px 0 0;
  }
  .product-reference-card:first-child { border-radius: 0; }
  .product-reference-media { position: absolute; width: auto; height: auto; inset: 0; }
  .product-reference-media img { object-position: 58% center; }
  .product-reference-copy {
    width: calc(100% - 32px);
    margin: 0 16px 26px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 48px rgba(30,66,99,.16);
    backdrop-filter: blur(9px);
  }
  .product-reference-copy h2 { margin-bottom: 14px; }
  .product-reference-description { display: block; overflow: visible; font-size: 1rem; }
  .product-reference-more { margin-top: 20px; }
  .product-reference-number { top: 23px; right: 23px; font-size: 4.7rem; transform: none; }
  .product-reference-number::after { display: none; }
  .product-carousel-indicator {
    top: 24px;
    right: 22px;
    transform: none;
  }
  .product-carousel-indicator > strong { font-size: 4.7rem; }
  .product-carousel-indicator__rail { height: 112px; margin-top: 15px; }
  .product-carousel-indicator__rail i { height: 24px; }
  .product-reference-hint { right: 14px; bottom: 12px; font-size: 0; }
  .product-reference-hint span { font-size: .8rem; }
}

.design-patents { padding: 96px 0 104px; background: #fff; }
.home-patent-shell {
  max-width: 980px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 58px;
}
.home-patent-media { margin: 0; }
.home-patent-media img { width: 100%; }
.home-patent-copy .design-label,
.home-ecosystem-shell > .design-label {
  display: grid;
  justify-items: start;
  gap: 0;
  margin-bottom: 36px;
  color: #171717;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.15;
}
.home-patent-copy .design-label small,
.home-ecosystem-shell > .design-label small {
  font-size: .72rem;
  font-weight: 700;
}
.home-patent-copy .design-label::after,
.home-ecosystem-shell > .design-label::after {
  width: 27px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: #1678ef;
}
.home-patent-copy h2 {
  margin: 0 0 24px;
  color: #0479ed;
  font-size: clamp(1.65rem, 2.05vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -.035em;
}

@media (min-width: 901px) {
  .home-patent-copy h2 { white-space: nowrap; }
}
.home-patent-copy > p:not(.design-label) {
  margin: 0;
  color: #768391;
  font-size: .82rem;
  line-height: 1.85;
}
.home-patent-button {
  min-height: 42px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: .82rem;
}

.design-ecosystem-home {
  padding: 78px 0 104px;
  background: linear-gradient(180deg, #dceeff 0%, #f7fbff 54%, #dceeff 100%);
}
.home-ecosystem-shell { max-width: 1100px; }
.home-ecosystem-shell > h2 {
  margin: 0 auto 22px;
  color: #0479ed;
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -.035em;
}
.home-ecosystem-shell > p:not(.design-label) {
  max-width: 850px;
  margin: 0 auto;
  color: #748291;
  font-size: .82rem;
  line-height: 1.85;
  text-align: center;
}
.home-partner-logos {
  width: 100%;
  margin-top: 42px;
}

@media (max-width: 900px) {
  .home-patent-shell { grid-template-columns: 1fr; gap: 40px; }
  .home-patent-media img { max-width: 640px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .home-patent-copy .design-label,
  .home-ecosystem-shell > .design-label { margin-bottom: 24px; }
  .design-brand .home-core-copy h2 { font-size: 1.42rem; white-space: nowrap; }
  .home-patent-copy h2,
  .home-ecosystem-shell > h2 { font-size: 1.75rem; }
  .home-partner-logos { width: 180%; max-width: none; transform: translateX(-22%); }
  .design-ecosystem-home { overflow: hidden; }
}

/* Case page aligned with the approved case-study artwork */
.design-hero--matrix {
  min-height: 650px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -9px 0 #fff;
}
.case-matrix-hero-copy { padding-top: 72px; }
.case-matrix-title {
  margin: 0;
  color: #0783f5;
  font-size: clamp(3.1rem, 5.1vw, 5.25rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.055em;
}
.design-hero--matrix .case-matrix-hero-copy h1 {
  margin: 14px 0 34px;
  color: #172d43;
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
  font-weight: 650;
  letter-spacing: .01em;
}
.case-matrix-hero-copy .button {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 5px;
  font-size: .82rem;
}

.design-case-section--xbel { padding: 102px 0 58px; background: #fff; }
.case-reference-shell { max-width: 1000px; }
.case-reference-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
  gap: 62px;
}
.case-reference-copy .design-label {
  display: grid;
  justify-items: start;
  gap: 0;
  margin: 0 0 38px;
  color: #171717;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.15;
}
.case-reference-copy .design-label small {
  font-size: .76rem;
  font-weight: 700;
}
.case-reference-copy .design-label::after {
  width: 28px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: #1678ef;
}
.case-reference-copy > h2 {
  margin: 0 0 42px;
  color: #0479ed;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.16;
  letter-spacing: -.045em;
}
.case-reference-copy h3 {
  margin: 28px 0 12px;
  color: #1366c3;
  font-size: .92rem;
  line-height: 1.3;
  letter-spacing: 0;
}
.case-reference-copy > p {
  margin: 0;
  color: #718091;
  font-size: .79rem;
  line-height: 1.85;
}
.case-reference-media {
  display: grid;
  gap: 14px;
  padding-top: 98px;
}
.case-reference-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.case-reference-media img:last-child { height: 215px; }
.case-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.case-pain-grid > div {
  min-height: 66px;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 9px 10px;
  border-radius: 5px;
  background: linear-gradient(180deg, #fff4f4, #ffe7e7);
  color: #ef3340;
}
.case-pain-grid > div > span {
  grid-row: 1 / 3;
  font-size: 1.4rem;
}
.case-pain-grid small { color: #8c5960; font-size: .62rem; }
.case-pain-grid strong { font-size: 1.05rem; line-height: 1; }

.case-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 54px;
}
.case-result-grid > div {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
}
.case-result-grid > div::before {
  grid-row: 1 / 3;
  align-self: center;
  width: 0;
  height: 0;
  margin-right: 12px;
  border-top: 34px solid #70d69c;
  border-right: 29px solid transparent;
  border-left: 29px solid transparent;
  content: "";
  filter: drop-shadow(0 -8px 0 rgba(112, 214, 156, .2));
}
.case-result-grid span {
  align-self: end;
  color: #526272;
  font-size: .72rem;
}
.case-result-grid strong {
  align-self: start;
  color: #12af67;
  font-size: 2rem;
  line-height: 1.1;
}
.case-result-grid strong small { font-size: 1rem; }

@media (max-width: 900px) {
  .design-hero--matrix { min-height: 560px; background-position: 64% center; }
  .case-reference-grid { grid-template-columns: 1fr; gap: 42px; }
  .case-reference-media { grid-template-columns: 1fr 1fr; padding-top: 0; }
  .case-reference-media img,
  .case-reference-media img:last-child { height: 250px; }
  .case-result-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .case-matrix-title { font-size: 2.65rem; }
  .case-reference-copy > h2 { font-size: 1.85rem; }
  .case-reference-media { grid-template-columns: 1fr; }
  .case-pain-grid,
  .case-result-grid { grid-template-columns: 1fr; }
}

/* Case studies: YicaiTong and Mengyun reference layout */
.case-detail-section {
  padding: 112px 0 96px;
  background: #fff;
}
.case-detail-section--yicai { padding-top: 48px; padding-bottom: 48px; }
.case-detail-section--mengyun { padding-top: 44px; padding-bottom: 116px; }
.case-detail-shell { max-width: 1000px; }
.case-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
  gap: 72px;
}
.case-detail-copy { min-width: 0; }
.case-detail-brand {
  display: grid;
  justify-items: start;
  gap: 1px;
  margin: 0 0 42px;
  color: #151c24;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.15;
}
.case-detail-brand small {
  color: #151c24;
  font-size: .75rem;
  font-weight: 700;
}
.case-detail-brand::after {
  width: 28px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: #1678ef;
}
.case-detail-copy > h2 {
  margin: 0 0 42px;
  color: #0577e8;
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -.04em;
}
.case-detail-copy > h3 {
  margin: 24px 0 10px;
  color: #1167c4;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.35;
}
.case-detail-copy > p:not(.case-detail-brand) {
  margin: 0;
  color: #768596;
  font-size: .74rem;
  line-height: 1.85;
}
.case-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.case-detail-tags span {
  min-width: 112px;
  padding: 8px 12px;
  border: 1px solid;
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
}
.case-detail-tags--blue span { border-color: #2b78e8; color: #1768d5; background: #fff; }
.case-detail-tags--red span { border-color: transparent; color: #db474f; background: #ffe9ec; }
.case-enable-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  align-items: center;
  gap: 24px;
}
.case-enable-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.case-enable-list li {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  padding-left: 16px;
}
.case-enable-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  color: #f69a16;
  content: ">";
  font-size: .9rem;
  font-weight: 900;
}
.case-enable-list strong {
  color: #ed8500;
  font-size: .7rem;
  line-height: 1.55;
}
.case-enable-list span {
  color: #788797;
  font-size: .67rem;
  line-height: 1.55;
}
.case-enable-list--wide li { grid-template-columns: 126px 1fr; }
.case-ai-orbit {
  position: relative;
  width: 102px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #c6e6ff;
  border-radius: 50%;
  background: conic-gradient(from 10deg, #9bdbff 0 22%, transparent 22% 32%, #d7f2ff 32% 57%, transparent 57% 68%, #a9dbff 68% 88%, transparent 88%);
}
.case-ai-orbit::before {
  position: absolute;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: linear-gradient(145deg, #f5fbff, #d2edff);
  box-shadow: 0 5px 18px rgba(37, 136, 218, .13);
}
.case-ai-orbit span {
  position: relative;
  z-index: 1;
  color: #1477d6;
  font-size: .69rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.case-detail-media {
  display: grid;
  gap: 10px;
  padding-top: 108px;
}
.case-detail-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}
.case-detail-media--three {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 205px 150px;
}
.case-detail-media--three img:first-child {
  grid-column: 1 / -1;
  height: 205px;
}
.case-detail-media--three img:not(:first-child) { height: 150px; }
.case-detail-media--stack { grid-template-rows: 205px 205px; }
.case-detail-media--stack img { height: 205px; }
.case-detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 58px;
}
.case-detail-metrics > div { min-width: 0; }
.case-detail-metrics--arrows > div {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
}
.case-detail-metrics--arrows > div::before {
  grid-row: 1 / 4;
  align-self: center;
  width: 0;
  height: 0;
  margin-right: 12px;
  border-right: 29px solid transparent;
  border-left: 29px solid transparent;
  content: "";
}
.case-detail-metrics--arrows .is-up::before {
  border-right-color: transparent;
  border-bottom: 34px solid #83b8ff;
  border-left-color: transparent;
  filter: drop-shadow(0 8px 0 rgba(131, 184, 255, .18));
}
.case-detail-metrics--arrows .is-down::before {
  border-top: 34px solid #70d69c;
  filter: drop-shadow(0 -8px 0 rgba(112, 214, 156, .2));
}
.case-detail-metrics--arrows span {
  align-self: end;
  color: #526272;
  font-size: .7rem;
}
.case-detail-metrics--arrows strong {
  color: #1479e8;
  font-size: 1.7rem;
  line-height: 1.1;
  white-space: nowrap;
}
.case-detail-metrics--arrows .is-down strong { color: #0ca65f; }
.case-detail-metrics--arrows small {
  color: #8995a1;
  font-size: .58rem;
  line-height: 1.3;
}
.case-detail-metrics--numbers { gap: 28px; margin-top: 48px; }
.case-detail-metrics--numbers > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1px 12px;
}
.case-detail-metrics--numbers strong {
  grid-row: 1 / 3;
  color: #0873e3;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -.05em;
}
.case-detail-metrics--numbers strong small { font-size: 1.15rem; }
.case-detail-metrics--numbers span {
  align-self: end;
  color: #3f5468;
  font-size: .65rem;
  font-weight: 800;
}
.case-detail-metrics--numbers > div > small {
  align-self: start;
  color: #8a98a5;
  font-size: .57rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .case-detail-grid { grid-template-columns: 1fr; gap: 42px; }
  .case-detail-media { padding-top: 0; }
  .case-detail-metrics { grid-template-columns: 1fr 1fr; row-gap: 24px; }
}

@media (max-width: 560px) {
  .case-detail-section { padding: 76px 0; }
  .case-detail-copy > h2 { font-size: 1.8rem; }
  .case-detail-tags span { min-width: 0; flex: 1 1 calc(50% - 8px); }
  .case-enable-row { grid-template-columns: 1fr; }
  .case-ai-orbit { display: none; }
  .case-enable-list li,
  .case-enable-list--wide li { grid-template-columns: 1fr; gap: 2px; }
  .case-detail-media--three { grid-template-rows: 185px 130px; }
  .case-detail-media--three img:first-child { height: 185px; }
  .case-detail-media--three img:not(:first-child) { height: 130px; }
  .case-detail-media--stack { grid-template-rows: 185px 185px; }
  .case-detail-media--stack img { height: 185px; }
  .case-detail-metrics { grid-template-columns: 1fr; }
}

/* Technology page: PDF reference composition */
.technology-hero {
  min-height: 490px;
  background-position: center;
}
.technology-hero .technology-hero__copy {
  width: min(calc(100% - 180px), 1680px);
  padding-top: 54px;
}
.technology-hero .technology-hero__copy h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #087cf0;
  font-size: clamp(2.9rem, 4.8vw, 5.3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.06em;
}
.technology-pain-list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 42px;
  margin: 0 0 34px;
}
.technology-pain-list div {
  display: grid;
  gap: 5px;
}
.technology-pain-list strong,
.technology-pain-list span {
  color: #606f7d;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.25;
}
.technology-hero .button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: .76rem;
}
.technology-content {
  padding: 124px 0 106px;
  background: #fff;
}
.technology-shell { max-width: 1000px; }
.technology-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.technology-feature + .technology-feature { margin-top: 126px; }
.technology-feature > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 0;
}
.technology-feature__copy { min-width: 0; }
.technology-label {
  display: grid;
  justify-items: start;
  gap: 0;
  margin: 0 0 36px;
  color: #151c24;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.1;
}
.technology-label small {
  color: #151c24;
  font-size: .78rem;
  font-weight: 700;
}
.technology-label::after {
  width: 28px;
  height: 2px;
  margin-top: 9px;
  content: "";
  background: #176ef0;
}
.technology-feature__copy h2 {
  margin: 0 0 28px;
  color: #0876e4;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.22;
  letter-spacing: -.04em;
}
.technology-feature__copy > p:last-child {
  margin: 0;
  color: #768493;
  font-size: .72rem;
  line-height: 1.88;
}
.technology-feature--driving {
  grid-template-columns: 1.04fr .96fr;
}
.technology-feature--driving .technology-feature__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 2.35vw, 2.2rem);
}
.technology-drive-map {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1.52;
  justify-self: center;
}
.technology-drive-map__core,
.technology-drive-map__arc,
.technology-drive-map__tag { position: absolute; }
.technology-drive-map__core {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 9px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #117fed, #0758cb);
  color: #fff;
  box-shadow: 0 10px 28px rgba(21, 113, 219, .24);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  transform: translate(-50%, -50%);
}
.technology-drive-map__arc {
  top: 50%;
  z-index: 2;
  width: 145px;
  height: 145px;
  display: grid;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  transform: translateY(-50%);
}
.technology-drive-map__arc--tech {
  left: 65px;
  justify-items: start;
  padding-left: 10px;
  border: 21px solid #1684ef;
  border-right-color: transparent;
}
.technology-drive-map__arc--business {
  right: 65px;
  justify-items: end;
  padding-right: 5px;
  border: 21px solid #31b970;
  border-left-color: transparent;
}
.technology-drive-map__tag {
  min-width: 72px;
  padding: 6px 9px;
  border-radius: 99px;
  background: #dff5e9;
  color: #24935a;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.technology-drive-map__tag::after {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  content: "";
  background: #b9e7ce;
}
.technology-drive-map .tag-1 { top: 21px; left: 0; }
.technology-drive-map .tag-2 { top: 77px; left: 1px; }
.technology-drive-map .tag-3 { bottom: 21px; left: 22px; }
.technology-drive-map .tag-4 { top: 21px; right: 0; background: #e4efff; color: #2673dd; }
.technology-drive-map .tag-5 { top: 77px; right: 1px; background: #e4efff; color: #2673dd; }
.technology-drive-map .tag-6 { right: 22px; bottom: 21px; background: #e4efff; color: #2673dd; }
.technology-drive-map .tag-1::after,
.technology-drive-map .tag-2::after,
.technology-drive-map .tag-3::after { left: 100%; }
.technology-drive-map .tag-4::after,
.technology-drive-map .tag-5::after,
.technology-drive-map .tag-6::after { right: 100%; background: #c6dcff; }
.technology-event-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 62px;
}
.technology-event-strip img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 0;
}
.technology-algorithm-section {
  padding: 118px 0 126px;
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 70%, rgba(255,255,255,.7) 100%),
    url('../images/home-products-bg.png') center bottom / cover no-repeat;
}
.technology-algorithm-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 84px;
}
.technology-algorithm-grid .technology-feature__copy h2 {
  max-width: 440px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.3;
}
.technology-algorithm-grid .technology-feature__copy > p:last-child { max-width: 430px; }
.technology-algorithm-grid > img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}
.technology-patent-section {
  padding: 104px 0 132px;
  background: #fff;
}
.technology-patent-section > .technology-shell > .technology-label { margin-bottom: 44px; }
.technology-patent-heading {
  margin-bottom: 48px;
  text-align: center;
}
.technology-patent-heading h2 {
  margin: 0;
  color: #0879eb;
  font-size: 2.15rem;
  line-height: 1.2;
}
.technology-patent-heading p {
  margin: 12px 0 0;
  color: #718092;
  font-size: .78rem;
}
.technology-patent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 9px;
  overflow: hidden;
}
.technology-patent-column { min-width: 0; }
.technology-patent-column header {
  min-height: 120px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 18px 12px;
  background: #d8f2ff;
  text-align: center;
}
.technology-patent-column--green header { background: #c9f3df; }
.technology-patent-column header > span {
  color: #0d83ec;
  font-size: 1.4rem;
  line-height: 1;
}
.technology-patent-column--green header > span { color: #17ad6b; }
.technology-patent-column header strong {
  color: #0875de;
  font-size: 1rem;
  line-height: 1.25;
}
.technology-patent-column--green header strong { color: #119c61; }
.technology-patent-column header small {
  color: #657a8d;
  font-size: .6rem;
  line-height: 1.35;
}
.technology-patent-column ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.technology-patent-column li {
  position: relative;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 12px 12px 48px;
  background: #eef7ff;
  counter-increment: list-item;
}
.technology-patent-column li:nth-child(even) { background: #f7fbff; }
.technology-patent-column--green li { background: #edf9f4; }
.technology-patent-column--green li:nth-child(even) { background: #f7fcfa; }
.technology-patent-column li::before {
  position: absolute;
  top: 50%;
  left: 17px;
  color: #0879eb;
  content: counter(list-item);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}
.technology-patent-column--green li::before { color: #15aa68; }
.technology-patent-column li strong {
  color: #315471;
  font-size: .68rem;
  line-height: 1.3;
}
.technology-patent-column--green li strong { color: #26805d; }
.technology-patent-column li span {
  color: #82909d;
  font-size: .55rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .technology-hero .technology-hero__copy { width: min(calc(100% - 40px), 1680px); }
  .technology-pain-list { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .technology-feature,
  .technology-feature--driving { grid-template-columns: 1fr; gap: 40px; }
  .technology-feature--driving .technology-feature__copy { order: 1; }
  .technology-drive-map { order: 2; }
  .technology-event-strip { grid-template-columns: 1fr 1fr; }
  .technology-algorithm-grid { grid-template-columns: 1fr; gap: 44px; }
  .technology-algorithm-grid > img { max-height: 330px; }
  .technology-patent-grid { grid-template-columns: 1fr 1fr; gap: 10px; overflow: visible; }
  .technology-patent-column { border-radius: 9px; overflow: hidden; }
}

@media (max-width: 560px) {
  .technology-hero { min-height: 600px; background-position: 64% center; }
  .technology-hero .technology-hero__copy h1 { font-size: 2.85rem; }
  .technology-pain-list { grid-template-columns: 1fr 1fr; }
  .technology-content { padding: 76px 0; }
  .technology-feature + .technology-feature { margin-top: 84px; }
  .technology-feature > img { height: 235px; }
  .technology-label { margin-bottom: 28px; }
  .technology-event-strip { grid-template-columns: 1fr; }
  .technology-event-strip img { height: 200px; }
  .technology-algorithm-section,
  .technology-patent-section { padding: 76px 0; }
  .technology-patent-grid { grid-template-columns: 1fr; }
}

/* Ecosystem page: finance and university reference layout */
.ecosystem-hero {
  min-height: 490px;
  background-position: center;
  box-shadow: inset 0 -7px 0 #fff;
}
.ecosystem-hero .ecosystem-hero__copy { padding-top: 56px; }
.ecosystem-matrix-title {
  margin: 0;
  color: #087df2;
  font-size: clamp(3.2rem, 5vw, 5.25rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -.055em;
}
.ecosystem-hero .ecosystem-hero__copy h1 {
  margin: 14px 0 34px;
  color: #172d43;
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
  font-weight: 650;
  letter-spacing: .01em;
}
.ecosystem-hero .button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: .76rem;
}
.ecosystem-shell { max-width: 1000px; }
.ecosystem-finance-section {
  padding: 104px 0 68px;
  background: #fff;
}
.ecosystem-label {
  display: grid;
  justify-items: start;
  gap: 1px;
  margin: 0 0 46px;
  color: #151c24;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.12;
}
.ecosystem-label small {
  color: #151c24;
  font-size: .76rem;
  font-weight: 700;
}
.ecosystem-label::after {
  width: 28px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: #176ef0;
}
.ecosystem-finance-section h2,
.ecosystem-university-copy h2 {
  margin: 0;
  color: #0876e4;
  font-size: clamp(1.75rem, 2.65vw, 2.45rem);
  line-height: 1.24;
  letter-spacing: -.04em;
}
.ecosystem-lead,
.ecosystem-university-copy p {
  color: #768493;
  font-size: .72rem;
  line-height: 1.9;
}
.ecosystem-lead { margin: 24px 0 0; }
.ecosystem-finance-map {
  position: relative;
  height: 360px;
  margin-top: 34px;
  background: url('../images/ecosystem-finance.webp') center bottom / cover no-repeat;
}
.ecosystem-finance-illustration {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: calc(100% - 10px);
  overflow: visible;
}
.ecosystem-finance-bridge {
  position: absolute;
  right: 20%;
  bottom: 82px;
  left: 20%;
  height: 12px;
  border-radius: 8px;
  background: #087bf0;
  box-shadow: 0 7px 18px rgba(8, 123, 240, .18);
}
.ecosystem-finance-bridge::before,
.ecosystem-finance-bridge::after {
  position: absolute;
  bottom: 0;
  width: 46%;
  height: 120px;
  border-top: 7px solid #1388ef;
  border-radius: 50% 50% 0 0;
  content: "";
}
.ecosystem-finance-bridge::before { left: 0; transform: rotate(7deg); }
.ecosystem-finance-bridge::after { right: 0; transform: rotate(-7deg); }
.ecosystem-finance-node,
.ecosystem-finance-core {
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}
.ecosystem-finance-node {
  bottom: 37px;
  width: 172px;
  padding: 12px 16px 10px;
  border-radius: 10px 10px 28px 28px;
  background: linear-gradient(180deg, #eef8ff, #cbe8ff);
  box-shadow: inset 0 -10px 0 #167bea, 0 8px 20px rgba(40, 115, 178, .12);
}
.ecosystem-finance-node--government { left: 9%; }
.ecosystem-finance-node--bank { right: 9%; }
.ecosystem-finance-node > span { color: #f7a300; font-size: 1.55rem; }
.ecosystem-finance-node strong { color: #0d65c7; font-size: .82rem; }
.ecosystem-finance-node small { margin: 14px 0 -31px; color: #5c7185; font-size: .56rem; }
.ecosystem-finance-core {
  bottom: 48px;
  left: 50%;
  width: 126px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  border: 10px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #77d6ff, #0b78e8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 117, 219, .23);
  transform: translateX(-50%);
}
.ecosystem-finance-core span { font-size: .58rem; }
.ecosystem-finance-core strong { margin-top: 3px; font-size: .78rem; }
.ecosystem-finance-tag {
  position: absolute;
  z-index: 3;
  min-width: 82px;
  padding: 6px 10px;
  border-radius: 99px;
  background: #e3f2ff;
  color: #1471d7;
  font-size: .58rem;
  font-weight: 700;
  text-align: center;
}
.ecosystem-finance-tag.tag-a { top: 48px; left: 41%; }
.ecosystem-finance-tag.tag-b { top: 94px; left: 34%; }
.ecosystem-finance-tag.tag-c { top: 48px; right: 41%; }
.ecosystem-finance-tag.tag-d { top: 94px; right: 34%; }
.ecosystem-university-section {
  padding: 92px 0 116px;
  background: #fff;
}
.ecosystem-university-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.ecosystem-university-copy p { margin: 28px 0 0; }
.ecosystem-partner-logos {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}
.ecosystem-university-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.ecosystem-university-media img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}
.ecosystem-industry-section {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%);
}
.ecosystem-industry-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
}
.ecosystem-industry-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ecosystem-industry-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.ecosystem-industry-copy h2 {
  margin: 0;
  color: #0876e4;
  font-size: clamp(1.65rem, 2.45vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -.04em;
}
.ecosystem-industry-copy > p {
  margin: 24px 0 0;
  color: #768493;
  font-size: .7rem;
  line-height: 1.88;
}
.ecosystem-industry-values {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 24px;
  max-width: 460px;
  margin-top: 32px;
}
.ecosystem-industry-values span {
  display: grid;
  grid-template-columns: 52px auto;
  align-items: center;
  gap: 10px;
}
.ecosystem-industry-values b {
  position: relative;
  width: 52px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #8ee7ff, #0b8af1);
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 137, 231, .16);
  font-size: 1.45rem;
  line-height: 1;
}
.ecosystem-industry-values b::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 8px;
  content: "";
}
.ecosystem-industry-values strong {
  display: grid;
  gap: 2px;
  color: #0874de;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.12;
}
.ecosystem-industry-values strong small {
  color: #6393be;
  font-size: .54rem;
  font-weight: 500;
  letter-spacing: .01em;
}

@media (max-width: 900px) {
  .ecosystem-hero { background-position: 62% center; }
  .ecosystem-university-grid { grid-template-columns: 1fr; gap: 40px; }
  .ecosystem-partner-logos { max-height: none; }
  .ecosystem-finance-node { width: 145px; }
  .ecosystem-finance-node--government { left: 2%; }
  .ecosystem-finance-node--bank { right: 2%; }
  .ecosystem-industry-layout { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 560px) {
  .ecosystem-hero { min-height: 600px; }
  .ecosystem-matrix-title { font-size: 2.7rem; }
  .ecosystem-finance-section,
  .ecosystem-university-section { padding: 76px 0; }
  .ecosystem-finance-map { height: 410px; overflow: hidden; }
  .ecosystem-finance-bridge { right: 10%; left: 10%; }
  .ecosystem-finance-node { width: 126px; }
  .ecosystem-finance-core { width: 104px; }
  .ecosystem-finance-tag { display: none; }
  .ecosystem-university-media { grid-template-columns: 1fr; }
  .ecosystem-university-media img { height: 220px; }
  .ecosystem-industry-section { padding: 76px 0; }
  .ecosystem-industry-media { grid-template-columns: 1fr 1fr; }
  .ecosystem-industry-media img { height: 170px; }
  .ecosystem-industry-media img:last-child { grid-column: 1 / -1; }
  .ecosystem-industry-values { grid-template-columns: 1fr; justify-content: start; }
}

@media (min-width: 901px) {
  .ecosystem-hero {
    min-height: 510px;
    background-position: center 35%;
  }
  .ecosystem-hero .ecosystem-hero__copy {
    width: min(calc(100% - 390px), 1380px);
    padding-top: 26px;
  }
  .ecosystem-matrix-title {
    font-size: clamp(4.6rem, 4.8vw, 5.2rem);
    letter-spacing: -.065em;
  }
  .ecosystem-hero .ecosystem-hero__copy h1 {
    margin: 12px 0 38px;
    color: #263e5e;
    font-size: clamp(1.95rem, 2vw, 2.2rem);
    font-weight: 400;
    letter-spacing: .08em;
  }
  .ecosystem-hero .button {
    min-width: 116px;
    min-height: 34px;
    padding: 0 14px;
    font-size: .67rem;
  }
}

/* About page: restored from the last approved revision. */
.about-reference-page {
  --about-blue: #0078e8;
  --about-amber: #f8ad1d;
  color: #68727b;
  background: #fff;
}
.about-reference-intro { padding: 118px 0; }
.about-reference-intro__grid {
  width: min(calc(100% - 64px), 1240px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 82px;
}
.about-reference-story { min-width: 0; }
.about-reference-logo {
  width: 330px;
  max-width: 86%;
  margin: 0 0 18px -12px;
}
.about-reference-story > p {
  margin: 0;
  color: #69747e;
  font-size: 13px;
  line-height: 1.9;
}
.about-reference-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 42px;
}
.about-reference-photos img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.about-reference-orbit { margin: 0; }
.about-reference-orbit img { width: 100%; max-width: 450px; margin-inline: auto; }

.about-reference-vision {
  position: relative;
  min-height: 490px;
  display: grid;
  align-items: start;
  padding: 118px 0 70px;
  background: #eef8ff url('../images/home-products-bg.png?v=1.0.0') center bottom / cover no-repeat;
  text-align: center;
}
.about-reference-vision::before {
  position: absolute;
  inset: 0 0 auto;
  height: 155px;
  content: "";
  background: linear-gradient(180deg, #eef8ff 76%, rgba(238,248,255,0));
}
.about-reference-vision .container { position: relative; z-index: 1; max-width: 960px; }
.about-reference-kicker,
.about-reference-heading > p {
  margin: 0 0 10px;
  color: #4d5963;
  font-size: 15px;
  line-height: 1.2;
}
.about-reference-vision h1,
.about-reference-heading h2 {
  margin: 0;
  color: var(--about-blue);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.03em;
}
.about-reference-vision__copy {
  max-width: 930px;
  margin: 23px auto 0;
  color: #6e7983;
  font-size: 12px;
  line-height: 1.9;
}

.about-reference-news { padding: 145px 0 160px; }
.about-reference-news > .container,
.about-reference-contact > .container { width: min(calc(100% - 64px), 1180px); }
.about-reference-heading { text-align: center; }
.about-reference-news .about-reference-heading > p { font-size: 18px; }
.about-reference-news .about-reference-heading h2 { font-size: clamp(30px, 3.15vw, 42px); }
.about-reference-news__layout {
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  align-items: center;
  gap: 42px;
  margin-top: 58px;
}
.about-reference-news__mosaic {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: stretch;
  gap: 10px;
}
.about-news-feature {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid #d6d6d6;
  background: #fff;
}
.about-news-feature__image {
  position: relative;
  aspect-ratio: 296 / 194;
  overflow: hidden;
  background: #b52827;
}
.about-news-feature__image img {
  position: absolute;
  top: -18.04%;
  left: -14.53%;
  width: 390.88%;
  max-width: none;
  height: auto;
}
.about-news-feature__body { padding: 14px 15px 12px; }
.about-news-feature__body h3 {
  margin: 0;
  color: #30383f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.about-news-feature__body p {
  margin: 10px 0 0;
  color: #899198;
  font-size: 11px;
  line-height: 1.65;
}
.about-news-feature__body time,
.about-news-minor time {
  display: block;
  margin-top: 11px;
  color: #bcc1c5;
  font-size: 9px;
}
.about-news-minor-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.about-news-minor {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  background: #edf4fb;
}
.about-news-minor img { width: 100%; height: 100%; object-fit: cover; }
.about-news-minor div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 9px 11px;
  background: rgba(255,255,255,.93);
}
.about-news-minor strong {
  display: block;
  overflow: hidden;
  color: #3f474e;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.about-news-minor time { margin-top: 3px; }
.about-reference-news__list { display: grid; align-content: center; }
.about-reference-news__list > a:not(.about-reference-more) {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding: 10px 0;
  border-bottom: 1px solid #737b82;
  color: #525b63;
  font-size: 15px;
  line-height: 1.45;
  transition: color .2s ease;
}
.about-reference-news__list > a:not(.about-reference-more):hover { color: var(--about-blue); }
.about-reference-news__list time { color: #9aa3ab; font-size: 11px; line-height: 1.2; }
.about-reference-more {
  width: max-content;
  min-width: 84px;
  margin-top: 27px;
  padding: 9px 18px;
  border-radius: 2px;
  background: var(--about-amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.about-reference-more::after { margin-left: 12px; content: "›"; }

.about-reference-contact { padding: 20px 0 150px; }
.about-reference-form {
  max-width: 1100px;
  display: grid;
  gap: 23px;
  margin: 78px auto 0;
}
.about-reference-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.about-reference-form label {
  display: grid;
  gap: 8px;
  color: #5c656c;
  font-size: 12px;
}
.about-reference-form input,
.about-reference-form textarea {
  width: 100%;
  border: 1px solid #747b80;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #26323c;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.about-reference-form input { height: 39px; padding: 0 12px; }
.about-reference-form textarea { min-height: 122px; padding: 10px 12px; resize: vertical; }
.about-reference-form input:focus,
.about-reference-form textarea:focus { border-color: var(--about-blue); box-shadow: 0 0 0 2px rgba(0,120,232,.1); }
.about-reference-form button {
  min-width: 84px;
  height: 34px;
  justify-self: center;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  background: var(--about-amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.about-reference-form .form-status { min-height: 20px; margin: -8px 0 0; text-align: center; }

/* Compact footer used by the approved About-page layout. */
.site-footer.site-footer--compact {
  min-height: 220px;
  display: grid;
  align-items: center;
  padding: 46px 0 42px;
  background: #2a211f;
  color: #fff;
}
.site-footer.site-footer--compact .footer-compact {
  width: min(calc(100% - 64px), 1080px);
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.site-footer.site-footer--compact .footer-compact__content { min-width: 0; display: block; }
.site-footer.site-footer--compact .footer-compact__logo {
  width: 250px;
  height: auto;
  margin: 0 0 17px -13px;
  object-fit: contain;
}
.site-footer.site-footer--compact .footer-compact__copyright {
  margin: 0;
  color: #fff;
  font-size: 11px;
  line-height: 1.7;
  white-space: nowrap;
}
.site-footer.site-footer--compact .footer-compact__links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  color: #fff;
  font-size: 12px;
}
.site-footer.site-footer--compact .footer-compact__links span { color: #8e8581; }
.site-footer.site-footer--compact .footer-compact__links a { color: #fff; transition: color .2s ease; }
.site-footer.site-footer--compact .footer-compact__links a:hover { color: var(--amber-500); }
.site-footer.site-footer--compact .footer-compact__button {
  min-width: 112px;
  height: 43px;
  min-height: 0;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 99px;
  background: var(--amber-500);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.site-footer.site-footer--compact .footer-compact__button:hover { transform: translateY(-2px); background: var(--amber-400); }

@media (max-width: 900px) {
  .about-reference-intro { padding: 115px 0 85px; }
  .about-reference-intro__grid,
  .about-reference-news__layout { grid-template-columns: 1fr; }
  .about-reference-intro__grid { gap: 56px; }
  .about-reference-orbit { order: -1; }
  .about-reference-orbit img { max-width: 390px; }
  .about-reference-news__layout { gap: 34px; }
  .site-footer.site-footer--compact .footer-compact { align-items: flex-start; }
  .site-footer.site-footer--compact .footer-compact__copyright { white-space: normal; }
}

@media (max-width: 640px) {
  .site-footer.site-footer--compact { min-height: 0; padding: 44px 0; }
  .site-footer.site-footer--compact .footer-compact {
    width: min(calc(100% - 36px), 1080px);
    flex-direction: column;
    gap: 28px;
  }
  .site-footer.site-footer--compact .footer-compact__logo { width: 230px; }
  .site-footer.site-footer--compact .footer-compact__copyright { font-size: 10px; }
  .site-footer.site-footer--compact .footer-compact__links { flex-wrap: wrap; gap: 7px; font-size: 11px; }
}

@media (max-width: 600px) {
  .about-reference-intro__grid,
  .about-reference-news > .container,
  .about-reference-contact > .container { width: min(calc(100% - 32px), 1080px); }
  .about-reference-intro { padding: 96px 0 70px; }
  .about-reference-photos { margin-top: 30px; }
  .about-reference-photos img { height: 112px; }
  .about-reference-vision { min-height: 420px; padding-top: 82px; background-size: auto 100%; }
  .about-reference-vision h1,
  .about-reference-heading h2 { font-size: 26px; }
  .about-reference-news { padding: 95px 0; }
  .about-reference-news__mosaic { grid-template-columns: 1fr; }
  .about-news-minor-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
  .about-reference-news__list > a:not(.about-reference-more) { min-height: 64px; }
  .about-reference-contact { padding: 20px 0 100px; }
  .about-reference-form { margin-top: 52px; }
  .about-reference-form__row { grid-template-columns: 1fr; gap: 23px; }
}

/* Header actions: compact language control from the approved reference. */
.header-actions {
  margin-left: 18px;
}
.header-actions .language {
  min-width: 66px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 13px;
  border-radius: 99px;
  background: var(--pdf-yellow);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.site-header--solid .header-actions .language { color: #fff; }

@media (max-width: 1100px) {
  .header-actions { gap: 10px; margin-left: 8px; }
  .header-actions .language { display: none; }
}

@media (max-width: 900px) {
  .header-actions { margin: 25px 0 0; }
}

/* Final mobile header normalization after merging legacy and reference styles. */
@media (max-width: 900px) {
  html,
  body { overflow-x: hidden; }
  .site-header,
  .site-header:not(.site-header--solid).is-scrolled,
  .site-header.site-header--solid,
  .site-header.site-header--solid.is-scrolled { height: 70px; }
  .site-header .header-inner {
    width: calc(100% - 32px);
    gap: 12px;
  }
  .site-header .brand {
    width: 220px;
    height: 70px;
  }
  .site-header .brand-logo {
    left: -6px;
    width: 250px !important;
  }
  .site-header .menu-button {
    position: fixed !important;
    z-index: 82;
    top: 14px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 42px;
    margin-left: 0;
    border-color: var(--pdf-yellow);
    border-radius: 8px;
    background: var(--pdf-yellow);
    color: #16283b;
    box-shadow: 0 5px 14px rgba(255,191,33,.2);
  }
  .site-header .main-nav {
    z-index: 81;
    inset: 70px 0 0;
    bottom: auto;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    overscroll-behavior: contain;
  }
  .site-header .mega-grid { grid-template-columns: 1fr; }
  .site-header .mega-menu,
  .site-header .nav-item:hover .mega-menu { width: 100%; transform: none; }
  .header-actions .language { display: none; }
}

@media (max-width: 420px) {
  .site-header .brand { width: 205px; }
  .site-header .brand-logo { width: 232px !important; }
}
