:root {
  --ink: #16202b;
  --muted: #6c7782;
  --line: #dfe5e9;
  --soft: #f4f7f8;
  --blue: #1762bd;
  --blue-bright: #2484e8;
  --cyan: #53d9ef;
  --navy: #071826;
  --navy-2: #0c2233;
  --white: #ffffff;
  --max: 1320px;
  --side: clamp(24px, 5vw, 76px);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.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;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.028;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 var(--side);
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: clamp(24px, 3.4vw, 64px);
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-color: rgba(22, 32, 43, 0.08);
  box-shadow: 0 12px 36px rgba(30, 54, 77, 0.05);
}

.brand img {
  width: 176px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 2.4vw, 44px);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  color: #3d4853;
  padding: 11px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-link {
  min-width: 132px;
  height: 42px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  transition: background 0.25s ease;
}

.contact-link:hover {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.3s ease;
}

.hero {
  position: relative;
  min-height: min(930px, 100svh);
  padding: 148px var(--side) 76px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 36px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 30%, rgba(73, 184, 225, 0.12), transparent 25%),
    linear-gradient(113deg, #fff 0%, #fff 46%, #f2f6f8 100%);
}

.hero-grid {
  position: absolute;
  inset: 82px 0 0 50%;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(30, 92, 132, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 92, 132, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, black 25%, transparent 92%);
}

.hero::before {
  content: "ZEALISE";
  position: absolute;
  left: var(--side);
  top: 54%;
  z-index: -1;
  color: transparent;
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(23, 98, 189, 0.055);
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  align-self: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 5.7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.065em;
  font-weight: 300;
  color: #5f6a74;
}

.hero h1 strong {
  display: inline-block;
  color: var(--ink);
  font-weight: 680;
}

.hero-lead {
  margin: 32px 0 0;
  padding-left: 19px;
  border-left: 2px solid var(--blue);
  color: #69737c;
  font-size: clamp(17px, 1.45vw, 23px);
  letter-spacing: 0.09em;
}

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

.button {
  min-width: 168px;
  height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: #0e4d9d;
}

.button-ghost {
  border-color: #cfd8df;
  color: #3a4650;
}

.button-ghost:hover {
  border-color: var(--ink);
}

.hero-visual {
  position: relative;
  justify-self: stretch;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1.1;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 47%, rgba(52, 174, 219, 0.1), transparent 27%),
    radial-gradient(circle, rgba(10, 33, 49, 0.94) 0%, rgba(7, 26, 40, 0.97) 56%, rgba(14, 45, 64, 0.15) 69%, transparent 70%);
  filter: drop-shadow(0 42px 72px rgba(23, 70, 100, 0.13));
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.scan-plane {
  position: absolute;
  inset: 14% 16%;
  border: 1px solid rgba(82, 221, 239, 0.13);
  transform: perspective(650px) rotateX(68deg) rotateZ(-8deg);
  box-shadow: inset 0 0 70px rgba(45, 174, 212, 0.08);
}

.scan-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(85, 224, 241, 0.26) 49%, transparent 51%);
  animation: scan 4.2s linear infinite;
}

@keyframes scan {
  from { transform: translateX(-65%); }
  to { transform: translateX(65%); }
}

.target {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(82, 222, 244, 0.75);
  border-radius: 50%;
  animation: pulse 2.6s ease-out infinite;
}

.target i,
.target::before,
.target::after {
  content: "";
  position: absolute;
  background: rgba(82, 222, 244, 0.72);
}

.target i { inset: 50% 7px auto; height: 1px; }
.target::before { left: 50%; top: 7px; width: 1px; bottom: 7px; }
.target::after { width: 5px; height: 5px; border-radius: 50%; inset: 50% auto auto 50%; transform: translate(-50%, -50%); }
.target-a { right: 30%; top: 28%; }
.target-b { right: 49%; top: 62%; animation-delay: 0.9s; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(66, 211, 235, 0); }
  50% { box-shadow: 0 0 0 15px rgba(66, 211, 235, 0.06); }
}

.visual-label {
  position: absolute;
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(229, 248, 251, 0.88);
  font-size: 11px;
}

.visual-label > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(98, 214, 235, 0.36);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 9px;
}

.visual-label b { display: block; font-weight: 500; }
.visual-label small { color: rgba(148, 185, 197, 0.57); font-size: 7px; letter-spacing: 0.12em; }
.label-a { left: 16%; top: 27%; }
.label-b { right: 14%; bottom: 28%; }

.visual-status {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  min-width: 205px;
  height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(8, 28, 43, 0.72);
  border: 1px solid rgba(120, 204, 219, 0.18);
  color: #b9ccd2;
  font-size: 9px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.visual-status i { width: 6px; height: 6px; border-radius: 50%; background: #67dcac; box-shadow: 0 0 9px #67dcac; }
.visual-status b { margin-left: auto; color: var(--cyan); font-weight: 500; }

.national-badge {
  position: absolute;
  right: var(--side);
  bottom: 58px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px 16px 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(25, 60, 81, 0.1);
  box-shadow: 0 18px 48px rgba(20, 48, 68, 0.1);
  backdrop-filter: blur(12px);
}

.badge-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.national-badge small,
.national-badge strong { display: block; }
.national-badge small { margin-bottom: 5px; color: var(--blue); font-size: 10px; letter-spacing: 0.08em; }
.national-badge strong { font-size: 13px; font-weight: 600; }

.scroll-cue {
  position: absolute;
  left: var(--side);
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a0a8;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  background: #c7d0d5;
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateX(-100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  50%, 100% { transform: translateX(100%); }
}

.metrics {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #fff;
}

.metric {
  position: relative;
  padding: 24px clamp(20px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.metric:last-child { border-right: 1px solid var(--line); }
.metric strong { display: flex; align-items: baseline; gap: 5px; color: var(--blue); }
.metric strong span { font-family: "Noto Sans SC Variable", "Noto Sans SC", sans-serif; font-size: clamp(38px, 3.8vw, 60px); line-height: 1; letter-spacing: -0.05em; font-weight: 300; }
.metric strong em { font-size: 13px; font-style: normal; font-weight: 500; }
.metric p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }

.section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) max(var(--side), calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.contact-heading h2,
.career-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.3vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.055em;
  font-weight: 330;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.about {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(29, 59, 81, 0.06) 50%, transparent 50.06%),
    #f7f9fa;
}

.about::after {
  content: "AI";
  position: absolute;
  right: -1vw;
  top: 5%;
  color: transparent;
  font: 800 clamp(190px, 29vw, 440px)/1 "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
  -webkit-text-stroke: 1px rgba(25, 83, 120, 0.035);
  pointer-events: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(60px, 11vw, 160px);
  align-items: end;
  margin-top: 80px;
}

.about-copy { max-width: 690px; }
.about-copy p { margin: 0 0 22px; color: #68747d; font-size: 15px; line-height: 2; }
.about-copy .lead-copy { color: var(--ink); font-size: clamp(20px, 1.8vw, 28px); line-height: 1.75; font-weight: 400; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-top: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #c6d0d6;
  color: var(--ink);
  font-size: 13px;
}

.text-link span,
.text-link i { color: var(--blue); font-style: normal; }

.philosophy {
  position: relative;
  margin: 0;
  padding: 42px 0 0 52px;
  border-left: 1px solid #cad5db;
}

.quote-mark {
  position: absolute;
  left: 46px;
  top: -32px;
  color: rgba(23, 98, 189, 0.15);
  font: 120px/1 "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.philosophy p {
  position: relative;
  margin: 0;
  font-family: "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
  color: #334452;
  font-size: clamp(27px, 2.7vw, 43px);
  line-height: 1.58;
  letter-spacing: 0.11em;
}

.philosophy footer { margin-top: 30px; color: #95a1a9; font-size: 10px; letter-spacing: 0.16em; }

.advantage-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 112px;
  border-top: 1px solid #d8e0e4;
}

.advantage-strip > div {
  padding: 30px 32px 0 0;
  border-right: 1px solid #d8e0e4;
}

.advantage-strip > div + div { padding-left: 40px; }
.advantage-strip > div:last-child { border-right: 0; }
.advantage-strip span { display: block; margin-bottom: 22px; color: var(--blue); font: 10px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; }
.advantage-strip strong { display: block; font-size: 19px; font-weight: 520; }
.advantage-strip p { margin: 10px 0 0; color: #7b8790; font-size: 12px; line-height: 1.7; }

.section-dark {
  color: #e7f0f4;
  background:
    linear-gradient(rgba(64, 138, 174, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 138, 174, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(31, 147, 196, 0.11), transparent 32%),
    var(--navy);
  background-size: 80px 80px, 80px 80px, auto, auto;
}

.section-heading-light h2 { color: #f1f6f8; }
.section-heading-light > p:last-child:not(.eyebrow) { color: #7f98a7; }

.product-explorer {
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  gap: clamp(44px, 7vw, 100px);
  margin-top: 86px;
  border-top: 1px solid rgba(149, 203, 225, 0.17);
}

.product-tabs { border-left: 1px solid rgba(149, 203, 225, 0.17); }

.product-tab {
  width: 100%;
  min-height: 78px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(149, 203, 225, 0.14);
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #708895;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, padding 0.3s var(--ease);
}

.product-tab span { font: 10px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; color: #57717f; }
.product-tab b { font-size: 14px; font-weight: 400; }
.product-tab i { opacity: 0; font-style: normal; color: var(--cyan); transform: translateX(-8px); transition: 0.3s ease; }
.product-tab:hover,
.product-tab.is-active { color: #f0f7f9; background: rgba(53, 144, 181, 0.08); padding-left: 28px; }
.product-tab.is-active span { color: var(--cyan); }
.product-tab:hover i,
.product-tab.is-active i { opacity: 1; transform: translateX(0); }

.product-stage {
  min-height: 480px;
  padding-top: 32px;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(310px, 1fr);
  gap: 48px;
  align-items: center;
}

.product-stage.is-switching .product-detail { opacity: 0; transform: translateY(12px); }

.product-orbit {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 166, 205, 0.14), transparent 63%);
}

.orbit-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(102, 215, 231, 0.22);
  border-radius: 50%;
}

.ring-one { animation: orbitSpin 12s linear infinite; }
.ring-one::before,
.ring-two::before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.ring-one::before { left: 11%; top: 19%; }
.ring-two { inset: 25%; border-style: dashed; animation: orbitSpin 9s linear infinite reverse; }
.ring-two::before { right: -4px; top: 47%; width: 6px; height: 6px; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.orbit-core {
  width: 35%;
  aspect-ratio: 1;
  border: 1px solid rgba(79, 215, 237, 0.55);
  border-radius: 43% 57% 56% 44% / 52% 43% 57% 48%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--cyan);
  background: radial-gradient(circle at 35% 30%, rgba(75, 224, 242, 0.18), rgba(22, 83, 108, 0.18));
  box-shadow: 0 0 70px rgba(35, 183, 218, 0.15), inset 0 0 36px rgba(51, 185, 215, 0.13);
  animation: morph 7s ease-in-out infinite;
}

@keyframes morph {
  50% { border-radius: 56% 44% 39% 61% / 46% 57% 43% 54%; transform: rotate(6deg) scale(1.04); }
}

.orbit-core span { font: 300 clamp(34px, 4vw, 58px)/1 "Noto Sans SC Variable", "Noto Sans SC", sans-serif; letter-spacing: -0.06em; }
.orbit-core small { margin-top: 6px; color: #6f9eb0; font-size: 8px; letter-spacing: 0.2em; }
.orbit-node { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #66d6e8; }
.node-one { left: 23%; top: 33%; }
.node-two { right: 18%; top: 46%; }
.node-three { left: 39%; bottom: 16%; }

.product-detail { transition: opacity 0.22s ease, transform 0.22s ease; }
.product-kicker { margin: 0 0 18px; color: var(--cyan); font-size: 9px; letter-spacing: 0.18em; }
.product-detail h3 { margin: 0 0 24px; color: #eff7fa; font-size: clamp(30px, 3vw, 48px); font-weight: 300; line-height: 1.24; }
.product-detail > p:not(.product-kicker) { margin: 0; color: #91a8b4; font-size: 14px; line-height: 1.95; }
.product-detail ul { margin: 28px 0 36px; padding: 0; list-style: none; display: grid; gap: 11px; }
.product-detail li { position: relative; padding-left: 18px; color: #c4d3da; font-size: 12px; }
.product-detail li::before { content: ""; position: absolute; left: 0; top: 0.58em; width: 5px; height: 5px; border: 1px solid var(--cyan); transform: rotate(45deg); }
.button-light { min-width: 172px; border-color: rgba(157, 207, 225, 0.3); color: #e9f5f8; }
.button-light:hover { background: #e8f5f7; color: var(--navy); }

.departments { overflow: hidden; }
.departments::before { content: ""; position: absolute; right: -18%; bottom: -5%; width: 55vw; height: 55vw; border: 1px solid rgba(23, 98, 189, 0.07); border-radius: 50%; }
.department-visual { position: relative; margin-top: 72px; padding: clamp(30px, 5vw, 68px); background: #f7f9fa; border: 1px solid #e3e9ec; }
.image-frame { position: relative; z-index: 1; background: #fff; }
.image-frame img { width: 100%; }
.coverage-note { position: absolute; right: clamp(14px, 3vw, 44px); top: clamp(14px, 3vw, 44px); z-index: 2; min-width: 140px; padding: 18px 20px; display: flex; align-items: flex-end; gap: 10px; background: rgba(7, 24, 38, 0.9); color: #fff; backdrop-filter: blur(10px); }
.coverage-note strong { color: var(--cyan); font: 300 40px/0.8 "Noto Sans SC Variable", "Noto Sans SC", sans-serif; }
.coverage-note sup { font-size: 14px; }
.coverage-note span { color: #b9c9d1; font-size: 10px; line-height: 1.5; }

.timeline { background: #f2f5f6; }
.timeline-shell { margin-top: 84px; }
.year-tabs { display: grid; grid-template-columns: repeat(4, 1fr); }
.year-tab { position: relative; padding: 0 0 28px; border: 0; background: transparent; color: #a1acb2; font: 300 clamp(24px, 3vw, 42px)/1 "Noto Sans SC Variable", "Noto Sans SC", sans-serif; text-align: left; cursor: pointer; transition: color 0.3s ease; }
.year-tab::before { content: ""; position: absolute; left: 0; bottom: -5px; width: 9px; height: 9px; border-radius: 50%; background: #c4cdd2; z-index: 2; transition: 0.3s ease; }
.year-tab.is-active { color: var(--blue); }
.year-tab.is-active::before { background: var(--blue); box-shadow: 0 0 0 7px rgba(23, 98, 189, 0.1); }
.timeline-track { position: relative; height: 1px; background: #cfd8dc; }
.timeline-track span { display: block; height: 100%; width: 0%; background: var(--blue); transition: width 0.55s var(--ease); }
.timeline-content { min-height: 280px; padding-top: 60px; display: grid; grid-template-columns: 1fr 2.1fr; gap: 70px; transition: opacity 0.2s ease, transform 0.2s ease; }
.timeline-content.is-switching { opacity: 0; transform: translateY(8px); }
.timeline-year { margin: 0; color: var(--blue); font: 200 clamp(74px, 10vw, 148px)/0.8 "Noto Sans SC Variable", "Noto Sans SC", sans-serif; letter-spacing: -0.08em; }
.timeline-label { margin: 3px 0 25px; color: #81919a; font-size: 9px; letter-spacing: 0.18em; }
.timeline-content ul { margin: 0; padding: 0; list-style: none; }
.timeline-content li { position: relative; padding: 17px 0 17px 22px; border-bottom: 1px solid #d9e0e3; font-size: 15px; }
.timeline-content li::before { content: ""; position: absolute; left: 0; top: 1.55em; width: 6px; height: 6px; background: var(--blue); }

.founders { overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 78px; }
.founder-card { min-height: 480px; display: grid; grid-template-columns: 0.78fr 1fr; background: #f3f6f7; border: 1px solid #e0e7ea; overflow: hidden; }
.founder-portrait { position: relative; display: grid; place-items: end center; overflow: hidden; background: linear-gradient(155deg, #dae4e8, #9fb1bb); }
.founder-portrait::before { content: ""; position: absolute; width: 82%; aspect-ratio: 0.84; left: 9%; bottom: -12%; border-radius: 44% 44% 0 0; background: linear-gradient(160deg, rgba(255,255,255,0.56), rgba(41,82,105,0.13)); filter: blur(1px); }
.founder-portrait::after { content: ""; position: absolute; width: 34%; aspect-ratio: 0.85; left: 33%; top: 22%; border-radius: 49% 48% 45% 46%; background: linear-gradient(150deg, #eff3f4, #9eafb6); box-shadow: 0 18px 28px rgba(23, 53, 72, 0.15); }
.founder-portrait-b { background: linear-gradient(155deg, #d8e1e5, #8199a6); }
.founder-portrait span { position: relative; z-index: 2; width: 100%; padding: 22px; color: rgba(255,255,255,0.66); font: 700 10px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; letter-spacing: 0.18em; }
.founder-info { padding: 52px clamp(28px, 3vw, 48px); display: flex; flex-direction: column; }
.founder-info > p:first-child { margin: 0 0 9px; color: var(--blue); font-size: 10px; letter-spacing: 0.1em; }
.founder-info h3 { margin: 0 0 26px; font-size: 34px; font-weight: 350; }
.founder-info > p:not(:first-child) { margin: 0; color: #6d7a83; font-size: 13px; line-height: 1.95; }
.founder-info small { display: block; margin-top: auto; padding-top: 30px; border-top: 1px solid #d4dee2; color: #89959d; font-size: 9px; line-height: 1.7; }

.section-soft { background: #f5f7f8; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 76px; }
.case-card { padding: 14px 14px 28px; background: #fff; border: 1px solid #e0e6e9; transition: transform 0.4s var(--ease), box-shadow 0.4s ease; }
.case-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(30, 62, 82, 0.1); }
.case-art { position: relative; height: 260px; margin-bottom: 28px; overflow: hidden; background: var(--navy); }
.case-art::before,
.case-art::after { content: ""; position: absolute; border: 1px solid rgba(88, 212, 236, 0.25); border-radius: 50%; }
.case-art::before { width: 68%; aspect-ratio: 1; left: 16%; top: 17%; }
.case-art::after { width: 42%; aspect-ratio: 1; left: 29%; top: 30%; border-style: dashed; }
.case-art > span { position: absolute; z-index: 2; left: 18px; top: 18px; color: #7ccfe2; font: 9px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; }
.case-art i { position: absolute; z-index: 2; left: 50%; top: 50%; width: 19%; aspect-ratio: 1; border-radius: 42% 58% 48% 52%; background: radial-gradient(circle at 35% 30%, #6ee2f0, #1c729d 60%, transparent 62%); transform: translate(-50%, -50%); box-shadow: 0 0 35px rgba(87, 219, 237, 0.45); }
.case-art-b { background: linear-gradient(145deg, #11364c, #071723); }
.case-art-b::before { transform: rotateX(62deg); }
.case-art-b i { border-radius: 50%; background: radial-gradient(circle at 60% 42%, #d5f6f5 0 4%, #2796c3 5% 23%, transparent 24%); box-shadow: none; }
.case-art-c { background: linear-gradient(145deg, #0b2638, #071721); }
.case-art-c::before { border-radius: 0; transform: rotate(45deg); }
.case-art-c i { border-radius: 3px; transform: translate(-50%, -50%) rotate(45deg); }
.case-card > p { margin: 0 18px 10px; color: var(--blue); font-size: 10px; letter-spacing: 0.06em; }
.case-card h3 { min-height: 54px; margin: 0 18px 30px; font-size: 20px; line-height: 1.5; font-weight: 420; }
.case-more { margin: 0 18px; color: #85919a; font-size: 11px; }

.news-layout { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 22px; margin-top: 76px; }
.news-feature { min-height: 500px; display: grid; grid-template-rows: 1.15fr 0.85fr; background: var(--navy); color: #fff; overflow: hidden; }
.news-visual { position: relative; min-height: 270px; display: grid; place-content: center; text-align: center; background: radial-gradient(circle at center, rgba(44,164,204,0.27), transparent 36%), linear-gradient(135deg, #0f3148, #071724); overflow: hidden; }
.news-visual::before { content: ""; position: absolute; inset: -20%; background-image: linear-gradient(rgba(84,176,207,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(84,176,207,.08) 1px, transparent 1px); background-size: 48px 48px; transform: perspective(500px) rotateX(58deg); }
.gps-ring { position: absolute; width: 180px; height: 180px; left: 50%; top: 50%; border: 1px solid rgba(83,217,239,.45); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 35px rgba(69,196,223,.035), 0 0 0 70px rgba(69,196,223,.025); }
.news-visual b { position: relative; color: var(--cyan); font: 200 56px/1 "Noto Sans SC Variable", "Noto Sans SC", sans-serif; letter-spacing: .08em; }
.news-visual small { position: relative; margin-top: 8px; color: #638da0; font-size: 8px; letter-spacing: .27em; }
.news-copy { padding: 34px clamp(28px,4vw,54px); }
.news-copy > p { margin: 0 0 16px; color: #748f9c; font-size: 10px; }
.news-copy > p span { color: var(--cyan); }
.news-copy h3 { max-width: 570px; margin: 0; font-size: clamp(23px,2.2vw,34px); line-height: 1.45; font-weight: 320; }
.news-copy .text-link { color: #d9e8ed; border-color: #415a67; }
.news-list { border-top: 1px solid var(--line); }
.news-list-head { height: 66px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 11px; }
.news-list-head a { color: #7d8991; }
.news-list article { min-height: 135px; display: grid; grid-template-columns: 70px 1fr 20px; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s ease; }
.news-list article:hover { padding: 0 16px; background: #f7f9fa; }
.news-list time { color: #98a4ab; font: 11px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; }
.news-list h3 { margin: 0; font-size: 15px; line-height: 1.65; font-weight: 420; }
.news-list article > span { color: var(--blue); }

.careers { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(60px, 10vw, 150px); align-items: start; color: #fff; background: linear-gradient(135deg, #0a2335, #071722 65%); }
.career-intro h2 { color: #f2f7f9; }
.career-intro > p:last-child { max-width: 410px; margin: 28px 0 0; color: #829aa6; font-size: 14px; line-height: 1.9; }
.career-options { border-top: 1px solid rgba(147,197,215,.2); }
.career-options a { min-height: 132px; padding: 24px 0; display: grid; grid-template-columns: 44px 1fr 40px; grid-template-rows: auto auto; align-items: center; border-bottom: 1px solid rgba(147,197,215,.2); transition: padding .35s var(--ease), background .35s ease; }
.career-options a:hover { padding-left: 22px; padding-right: 18px; background: rgba(44,142,181,.09); }
.career-options span { grid-row: 1 / 3; color: var(--cyan); font: 9px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; }
.career-options h3 { margin: 0; font-size: 22px; font-weight: 350; }
.career-options p { margin: 9px 0 0; color: #718b99; font-size: 11px; }
.career-options i { grid-column: 3; grid-row: 1 / 3; justify-self: end; color: var(--cyan); font-style: normal; }

.contact { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px,11vw,170px); background: #f4f7f8; }
.contact-heading h2 { margin-bottom: 42px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; }
.contact-cards article { padding: 6px 38px 20px; border-left: 1px solid #d5dee2; }
.contact-cards article > p { margin: 0 0 20px; color: var(--blue); font-size: 10px; letter-spacing: .08em; }
.contact-cards h3 { min-height: 68px; margin: 0 0 38px; font-size: 18px; line-height: 1.7; font-weight: 430; }
.contact-cards dl { margin: 0; }
.contact-cards dl div { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid #d8e0e4; }
.contact-cards dt { color: #9ba6ad; font-size: 10px; }
.contact-cards dd { margin: 0; color: #53616b; font-size: 11px; line-height: 1.75; word-break: break-word; }
.contact-cards a:hover { color: var(--blue); }

.site-footer { padding: 80px var(--side) 28px; color: #b5c3ca; background: #06131d; }
.footer-brand { max-width: var(--max); margin: 0 auto; }
.footer-brand img { width: 210px; padding: 11px; background: #fff; }
.footer-brand p { max-width: 390px; margin: 22px 0 0; color: #647d8a; font-size: 12px; line-height: 1.8; }
.footer-links { max-width: var(--max); margin: -72px auto 72px; padding-left: 50%; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links div { display: grid; gap: 13px; }
.footer-links strong { margin-bottom: 7px; color: #e3edf1; font-size: 12px; font-weight: 450; }
.footer-links a { color: #718793; font-size: 10px; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between; border-top: 1px solid rgba(132,175,194,.13); color: #536a76; font-size: 9px; letter-spacing: .04em; }
.footer-bottom div { display: flex; gap: 30px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.qa-static .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 180px 1fr auto; gap: 22px; }
  .brand img { width: 155px; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 12px; }
  .language { display: none; }
  .hero { grid-template-columns: .85fr 1.15fr; }
  .national-badge { bottom: 32px; }
  .scroll-cue { bottom: 32px; }
  .product-stage { grid-template-columns: .82fr 1fr; }
  .founder-card { grid-template-columns: .65fr 1fr; }
  .contact { gap: 70px; }
}

@media (max-width: 920px) {
  .site-header { height: 70px; grid-template-columns: 1fr auto; background: rgba(255,255,255,.91); backdrop-filter: blur(14px); border-bottom-color: rgba(20,40,60,.08); }
  .brand { position: relative; z-index: 2; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .main-nav { position: fixed; inset: 0; padding: 120px var(--side) 60px; flex-direction: column; justify-content: flex-start; gap: 0; background: rgba(247,249,250,.98); transform: translateY(-105%); transition: transform .6s var(--ease); }
  .main-nav a { padding: 18px 0; border-bottom: 1px solid #dfe5e8; font-size: 23px; font-weight: 350; }
  .header-actions { display: none; }
  .main-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-24px);
    transition: opacity .3s ease, visibility .3s ease, transform .55s var(--ease);
  }
  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.menu-open .menu-toggle > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.menu-open .menu-toggle > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 120px; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .hero-content { max-width: 640px; }
  .hero-visual { width: min(680px,100%); justify-self: center; margin-top: -30px; }
  .hero-grid { inset: 50% 0 0; }
  .national-badge { right: var(--side); bottom: 28px; }
  .scroll-cue { bottom: 42px; }
  .metrics { grid-template-columns: 1fr 1fr; padding: 40px var(--side); }
  .metric:nth-child(3) { border-top: 1px solid var(--line); }
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .metric:nth-child(2) { border-right: 1px solid var(--line); }
  .about-layout { grid-template-columns: 1fr; gap: 72px; }
  .philosophy { max-width: 440px; margin-left: auto; }
  .product-explorer { grid-template-columns: 1fr; }
  .product-tabs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(149,203,225,.14); }
  .product-tab { border-right: 1px solid rgba(149,203,225,.14); }
  .product-stage { min-height: 430px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card { min-height: 420px; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-card:last-child { grid-column: span 2; }
  .news-layout { grid-template-columns: 1fr; }
  .careers,
  .contact { grid-template-columns: 1fr; }
  .contact-cards { max-width: 780px; }
  .footer-links { margin: 60px auto; padding-left: 0; }
}

@media (max-width: 620px) {
  :root { --side: 20px; }
  .brand img { width: 145px; }
  .hero { padding-top: 112px; padding-bottom: 150px; }
  .hero h1 { font-size: clamp(45px, 13vw, 62px); }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; margin-top: 34px; }
  .hero-visual { margin: 0 -8px; width: calc(100% + 16px); }
  .visual-label { display: none; }
  .visual-status { bottom: 5%; transform: translateX(-50%) scale(.82); }
  .national-badge { left: var(--side); right: auto; bottom: 32px; }
  .national-badge strong { font-size: 11px; }
  .scroll-cue { display: none; }
  .metrics { padding-top: 20px; padding-bottom: 20px; }
  .metric { padding: 25px 16px; }
  .metric strong span { font-size: 38px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-heading h2,
  .contact-heading h2,
  .career-intro h2 { font-size: 39px; }
  .about-layout { margin-top: 55px; }
  .philosophy { margin-left: 0; padding-left: 30px; }
  .quote-mark { left: 24px; }
  .advantage-strip { grid-template-columns: 1fr; margin-top: 78px; }
  .advantage-strip > div,
  .advantage-strip > div + div { padding: 24px 0; border-right: 0; border-bottom: 1px solid #d8e0e4; }
  .product-explorer { margin-top: 56px; }
  .product-tabs { grid-template-columns: 1fr; }
  .product-tab { min-height: 66px; }
  .product-stage { grid-template-columns: 1fr; gap: 18px; }
  .product-orbit { width: 82%; justify-self: center; }
  .department-visual { padding: 12px; margin-top: 48px; }
  .coverage-note { position: relative; right: auto; top: auto; margin-top: 12px; }
  .year-tab { font-size: 20px; }
  .timeline-content { grid-template-columns: 1fr; gap: 38px; padding-top: 48px; }
  .timeline-year { font-size: 84px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-portrait { min-height: 260px; }
  .founder-info { min-height: 330px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card:last-child { grid-column: auto; }
  .case-art { height: 220px; }
  .news-feature { min-height: 470px; }
  .news-list article { grid-template-columns: 48px 1fr 15px; }
  .career-options a { grid-template-columns: 34px 1fr 24px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-cards article { padding: 30px 0; border-left: 0; border-top: 1px solid #d5dee2; }
  .contact-cards h3 { min-height: auto; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .footer-bottom { gap: 22px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Multi-page site shell */
.main-nav {
  height: 100%;
  align-items: stretch;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item-head {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item-head > a {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item.is-current .nav-item-head > a {
  color: var(--blue);
}

.nav-item.is-current .nav-item-head > a::after {
  transform: scaleX(1);
}

.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 82px;
  padding: 42px var(--side) 50px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e8edef;
  border-bottom: 1px solid #dfe6e9;
  box-shadow: 0 30px 70px rgba(27, 51, 67, 0.11);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.4s var(--ease), top 0.35s ease;
  z-index: 45;
}

.site-header.is-scrolled .mega-menu {
  top: 68px;
}

.mega-menu-inner {
  max-width: var(--max);
  min-height: 265px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(500px, 1.7fr) 150px;
  gap: clamp(36px, 6vw, 88px);
  align-items: stretch;
}

.mega-menu-intro {
  padding-right: 34px;
  border-right: 1px solid #e1e7ea;
}

.mega-menu-intro > span {
  color: var(--blue);
  font: 10px "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.mega-menu-intro p {
  margin: 38px 0 10px;
  color: #9aa6ad;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.mega-menu-intro h2 {
  margin: 0 0 20px;
  font-size: 29px;
  font-weight: 380;
}

.mega-menu-intro small {
  display: block;
  max-width: 240px;
  color: #7d8991;
  font-size: 11px;
  line-height: 1.8;
}

.mega-menu-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  align-content: start;
}

.main-nav .mega-menu-links a {
  min-height: 74px;
  padding: 0 18px;
  border-bottom: 1px solid #e3e9ec;
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  align-items: center;
  gap: 8px;
  color: #53606a;
  transition: color 0.25s ease, background 0.25s ease, padding 0.3s var(--ease);
}

.main-nav .mega-menu-links a::after,
.main-nav .mega-menu-overview::after {
  display: none;
}

.mega-menu-links a span {
  color: #a8b3b9;
  font: 9px "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.mega-menu-links a b {
  font-size: 13px;
  font-weight: 400;
}

.mega-menu-links a i,
.mega-menu-overview i {
  color: var(--blue);
  font-style: normal;
}

.main-nav .mega-menu-links a:hover {
  padding-left: 26px;
  color: var(--blue);
  background: #f5f8fa;
}

.main-nav .mega-menu-overview {
  align-self: end;
  min-height: 50px;
  padding: 0 0 12px;
  border-bottom: 1px solid #bfcbd2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #54626c;
  font-size: 11px;
}

@media (min-width: 921px) {
  .has-mega-menu:hover .mega-menu,
  .has-mega-menu:focus-within .mega-menu,
  .has-mega-menu.qa-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Inner-page mastheads */
.page-hero {
  min-height: 520px;
  padding: 165px max(var(--side), calc((100vw - var(--max)) / 2)) 86px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 36%, rgba(43, 145, 193, 0.13), transparent 28%),
    linear-gradient(115deg, #fff 0 52%, #edf3f5 100%);
}

.page-hero > div {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.8vw, 104px);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 320;
}

.page-hero > div > p:last-child {
  max-width: 600px;
  margin: 30px 0 0;
  color: #6f7d86;
  font-size: 15px;
  line-height: 1.9;
}

.page-hero-index {
  color: transparent;
  font: 700 clamp(150px, 22vw, 340px)/0.72 "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
  -webkit-text-stroke: 1px rgba(23, 98, 189, 0.1);
  letter-spacing: -0.1em;
  transform: translate(5%, 15%);
}

.metrics-page {
  max-width: none;
  padding-left: max(var(--side), calc((100vw - var(--max)) / 2));
  padding-right: max(var(--side), calc((100vw - var(--max)) / 2));
}

.contact-page {
  min-height: 700px;
}

/* Homepage solution switcher */
.home-solutions {
  background: #f5f7f8;
}

.home-solution-switcher {
  margin-top: 76px;
}

.home-solution-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d5dee2;
  border-bottom: 1px solid #d5dee2;
}

.home-solution-tab {
  min-height: 118px;
  padding: 24px clamp(18px, 3vw, 42px);
  border: 0;
  border-right: 1px solid #d5dee2;
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 4px 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.home-solution-tab:last-child {
  border-right: 0;
}

.home-solution-tab span {
  grid-row: 1 / 3;
  color: #a3afb6;
  font: 9px "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.home-solution-tab b {
  font-size: 17px;
  font-weight: 430;
}

.home-solution-tab small {
  color: #9ba7ae;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.home-solution-tab.is-active,
.home-solution-tab:hover {
  color: #fff;
  background: var(--blue);
}

.home-solution-tab.is-active span,
.home-solution-tab.is-active small,
.home-solution-tab:hover span,
.home-solution-tab:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.home-solution-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  background: #fff;
  border: 1px solid #e0e7ea;
  border-top: 0;
}

.home-solution-panel.is-switching .home-solution-copy {
  opacity: 0;
  transform: translateY(10px);
}

.home-solution-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(68, 151, 182, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 151, 182, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(49, 174, 210, 0.2), transparent 38%),
    var(--navy);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.solution-sphere {
  position: relative;
  z-index: 2;
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid rgba(88, 221, 239, 0.46);
  border-radius: 44% 56% 48% 52%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--cyan);
  background: radial-gradient(circle at 35% 30%, rgba(83, 224, 240, 0.28), rgba(23, 83, 106, 0.14));
  box-shadow: 0 0 0 80px rgba(50, 183, 215, 0.035), 0 0 90px rgba(53, 199, 225, 0.16);
  animation: morph 7s ease-in-out infinite;
}

.solution-sphere span {
  font: 300 60px/1 "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.solution-sphere small {
  margin-top: 8px;
  color: #74a2b2;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.solution-path {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(89, 213, 234, 0.19);
  border-radius: 50%;
}

.path-two { inset: 28%; border-style: dashed; }
.path-three { inset: 38%; }

.home-solution-copy {
  padding: clamp(48px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-solution-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(31px, 3.2vw, 50px);
  line-height: 1.25;
  font-weight: 350;
}

.home-solution-copy > p:not(.product-kicker) {
  margin: 0;
  color: #6d7a83;
  font-size: 14px;
  line-height: 1.95;
}

.home-solution-copy ul {
  margin: 28px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.home-solution-copy li {
  position: relative;
  padding-left: 18px;
  color: #4e5b64;
  font-size: 12px;
}

.home-solution-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--blue);
}

/* Homepage news */
.home-news-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.home-news-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 390px;
  color: #fff;
  background: var(--navy);
}

.home-news-feature > div:last-child {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-news-feature p {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 10px;
}

.home-news-feature h3 {
  margin: 0 0 48px;
  font-size: clamp(25px, 2.3vw, 36px);
  line-height: 1.5;
  font-weight: 350;
}

.home-news-feature > div:last-child > span {
  color: #91a8b4;
  font-size: 11px;
}

.home-news-list {
  border-top: 1px solid var(--line);
}

.home-news-list > a:not(.news-more) {
  min-height: 145px;
  padding: 24px 10px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr 20px;
  gap: 20px;
  align-items: center;
  transition: padding 0.3s var(--ease), background 0.3s ease;
}

.home-news-list > a:not(.news-more):hover {
  padding-left: 24px;
  background: #f6f8f9;
}

.home-news-list time {
  color: #9aa7ae;
  font: 11px "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.home-news-list small {
  color: var(--blue);
  font-size: 9px;
}

.home-news-list h3 {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 430;
}

.home-news-list > a > span {
  color: var(--blue);
}

.home-news-list .news-more {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5d6a73;
  font-size: 11px;
}

/* News page */
.media-feature {
  margin-top: 72px;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--navy);
}

.media-feature > div:last-child {
  padding: clamp(45px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-feature > div:last-child > p:first-child {
  color: var(--cyan);
  font-size: 10px;
}

.media-feature h3 {
  margin: 12px 0 26px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.4;
  font-weight: 350;
}

.media-feature > div:last-child > p:not(:first-child) {
  color: #8fa6b1;
  font-size: 13px;
  line-height: 1.9;
}

.media-feature > div:last-child > span {
  margin-top: 30px;
  color: #d7e7ec;
  font-size: 11px;
}

.company-news-list {
  margin-top: 70px;
  border-top: 1px solid #d5dee2;
}

.company-news-list article {
  min-height: 170px;
  padding: 28px 8px;
  border-bottom: 1px solid #d5dee2;
  display: grid;
  grid-template-columns: 100px 1fr 30px;
  gap: 24px;
  align-items: center;
}

.company-news-list time {
  color: var(--blue);
  font: 300 28px "Noto Sans SC Variable", "Noto Sans SC", sans-serif;
}

.company-news-list p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 9px;
}

.company-news-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 420;
}

.company-news-list div > span {
  color: #7f8c94;
  font-size: 11px;
}

.company-news-list i {
  color: var(--blue);
  font-style: normal;
}

/* Careers page */
.career-path-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.career-path-card {
  min-height: 390px;
  padding: 38px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.career-path-card:last-child { border-right: 0; }
.career-path-card > span { color: var(--blue); font: 10px "Noto Sans SC Variable", "Noto Sans SC", sans-serif; }
.career-path-card > p:first-of-type { margin: 52px 0 12px; color: #9aa7ae; font-size: 8px; letter-spacing: 0.17em; }
.career-path-card h3 { margin: 0 0 24px; font-size: 29px; font-weight: 380; }
.career-path-card > p:last-of-type { margin: 0; color: #748089; font-size: 12px; line-height: 1.9; }
.career-path-card a { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--blue); font-size: 11px; }
.career-path-card i { font-style: normal; }

.job-board {
  margin-top: 72px;
  border-top: 1px solid #d4dde1;
}

.job-board > div {
  min-height: 145px;
  padding: 24px 8px;
  border-bottom: 1px solid #d4dde1;
  display: grid;
  grid-template-columns: 120px 1fr 150px 120px;
  gap: 20px;
  align-items: center;
}

.job-board span { color: var(--blue); font-size: 10px; }
.job-board h3 { margin: 0; font-size: 19px; font-weight: 420; }
.job-board p { color: #89959d; font-size: 10px; }
.job-board a { color: var(--blue); font-size: 11px; text-align: right; }

.footer-links {
  grid-template-columns: repeat(4, 1fr);
  padding-left: 43%;
}

@media (max-width: 920px) {
  .main-nav {
    align-items: stretch;
    overflow-y: auto;
  }

  .nav-item,
  .nav-item-head {
    height: auto;
    display: block;
  }

  .nav-item {
    border-bottom: 1px solid #dfe5e8;
  }

  .nav-item-head {
    display: flex;
    align-items: center;
  }

  .nav-item-head > a {
    flex: 1;
    height: auto;
    border-bottom: 0;
  }

  .submenu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--blue);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .nav-item.is-open .submenu-toggle {
    transform: rotate(180deg);
  }

  .mega-menu,
  .site-header.is-scrolled .mega-menu {
    position: static;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: #eef3f5;
    transition: max-height 0.45s var(--ease);
  }

  .nav-item.is-open .mega-menu {
    max-height: 650px;
  }

  .mega-menu-inner {
    min-height: 0;
    display: block;
  }

  .mega-menu-intro,
  .mega-menu-overview {
    display: none !important;
  }

  .mega-menu-links {
    display: block;
    padding: 8px 16px 18px;
  }

  .main-nav .mega-menu-links a {
    min-height: 52px;
    padding: 0 12px;
    border-bottom-color: #d9e2e6;
    font-size: 12px;
  }

  .page-hero {
    min-height: 430px;
    padding-top: 130px;
  }

  .page-hero-index { font-size: 180px; }
  .home-solution-panel { grid-template-columns: 1fr; }
  .home-solution-art { min-height: 410px; }
  .home-news-grid { grid-template-columns: 1fr; }
  .footer-links { padding-left: 0; }
  .career-path-grid { grid-template-columns: 1fr; }
  .career-path-card { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--line); }
  .career-path-card:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .page-hero {
    min-height: 390px;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .page-hero h1 { font-size: 54px; }
  .page-hero-index { position: absolute; right: -14px; bottom: 20px; font-size: 140px; }
  .home-solution-tabs { grid-template-columns: 1fr; }
  .home-solution-tab { min-height: 82px; border-right: 0; border-bottom: 1px solid #d5dee2; }
  .home-solution-tab:last-child { border-bottom: 0; }
  .home-solution-panel { min-height: 0; }
  .home-solution-art { min-height: 350px; }
  .solution-sphere { width: 155px; }
  .solution-sphere span { font-size: 46px; }
  .home-solution-copy { padding: 46px 24px; }
  .home-news-feature { grid-template-columns: 1fr; }
  .home-news-feature .news-visual { min-height: 260px; }
  .home-news-feature > div:last-child { padding: 34px 26px; }
  .media-feature { grid-template-columns: 1fr; }
  .media-feature .news-visual { min-height: 290px; }
  .company-news-list article { grid-template-columns: 58px 1fr 16px; }
  .company-news-list time { font-size: 18px; }
  .job-board > div { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .job-board a { text-align: left; margin-top: 10px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* Compact desktop dropdowns */
.company-news-list article {
  position: relative;
}

.cms-news-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.company-news-list article:has(.cms-news-overlay:hover) h3 {
  color: var(--blue);
}

.news-detail {
  width: min(920px, calc(100% - 48px));
  padding-top: 170px;
  padding-bottom: 120px;
}

.news-detail-back {
  display: inline-flex;
  margin-bottom: 68px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}

.news-detail header {
  max-width: 820px;
}

.news-detail-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.news-detail h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.news-detail header > p {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.news-detail-cover {
  width: 100%;
  max-height: 540px;
  margin-top: 58px;
  object-fit: cover;
}

.news-detail-body {
  max-width: 720px;
  margin-top: 64px;
  color: #334b59;
  font-size: 17px;
  line-height: 2;
}

.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
  margin: 2.2em 0 .7em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}

.news-detail-body p,
.news-detail-body ul {
  margin: 0 0 1.5em;
}

.news-detail-body li + li {
  margin-top: .45em;
}

@media (max-width: 620px) {
  .news-detail {
    width: min(100% - 32px, 920px);
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .news-detail-back { margin-bottom: 42px; }
  .news-detail header > p { font-size: 16px; }
  .news-detail-body { font-size: 16px; }
}

@media (min-width: 921px) {
  .nav-item {
    position: relative;
  }

  .mega-menu,
  .site-header.is-scrolled .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 270px;
    padding: 8px 10px 10px;
    transform: translate(-50%, -8px);
    border: 1px solid #e1e7ea;
    border-top: 2px solid var(--blue);
    box-shadow: 0 18px 44px rgba(27, 51, 67, 0.13);
  }

  .has-mega-menu:hover .mega-menu,
  .has-mega-menu:focus-within .mega-menu,
  .has-mega-menu.qa-open .mega-menu {
    transform: translate(-50%, 0);
  }

  .mega-menu-inner {
    display: block;
    min-height: 0;
  }

  .mega-menu-links {
    display: block;
  }

  .main-nav .mega-menu-links a {
    min-height: 50px;
    padding: 0 14px;
    grid-template-columns: 1fr 18px;
    gap: 10px;
  }

  .main-nav .mega-menu-links a:hover {
    padding-left: 20px;
  }

  .mega-menu-links a span {
    display: none;
  }

  .mega-menu-links a b {
    font-size: 13px;
  }
}
