:root {
  --navy: #003b5c;
  --deep: #002b45;
  --blue: #0077a3;
  --green: #4bae8f;
  --mint: #dcefea;
  --pale: #f5f8fa;
  --cold: #eef3f6;
  --ink: #263238;
  --muted: #647782;
  --line: #d6e1e6;
  --white: #fff;
  --shadow: 0 18px 44px rgba(0, 43, 69, .12);
  --radius: 8px;
  --header: 82px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: Inter, Arial, "Helvetica Neue", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif; line-height: 1.7; text-rendering: optimizeLegibility; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--white); background: rgba(0, 43, 69, .72); border-bottom: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(16px); transition: background .25s ease, box-shadow .25s ease, color .25s ease; }
.site-header.is-scrolled { color: var(--navy); background: rgba(255,255,255,.97); border-color: var(--line); box-shadow: 0 8px 26px rgba(0,43,69,.12); }
.header-row { min-height: var(--header); display: flex; align-items: stretch; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 56px; height: 56px; border-radius: 5px; object-fit: contain; background: #081d29; }
.brand-name { display: grid; color: currentColor; font-size: 16px; font-weight: 800; line-height: 1.05; letter-spacing: .12em; }
.brand-name small { margin-top: 5px; color: var(--green); font-size: 8px; letter-spacing: .27em; }
.desktop-nav { display: flex; align-items: stretch; margin-left: auto; }
.desktop-nav ul { display: flex; align-items: stretch; gap: 2px; padding: 0; margin: 0; list-style: none; }
.primary-item { display: flex; align-items: stretch; }
.primary-link { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 0 11px; color: currentColor; font-size: 13px; font-weight: 700; line-height: 1.1; }
.primary-link small { margin-top: 5px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 500; }
.is-scrolled .primary-link small { color: var(--muted); }
.primary-link::after { position: absolute; inset: auto 10px 0; height: 3px; background: var(--green); content: ""; opacity: 0; transform: scaleX(.5); transition: .2s ease; }
.primary-link:hover::after, .primary-link.active::after, .primary-item:hover .primary-link::after { opacity: 1; transform: scaleX(1); }
.utility-nav { display: flex; align-items: center; gap: 11px; margin-left: auto; font-size: 12px; font-weight: 700; }
.utility-nav a:hover { color: var(--green); }
.utility-nav button { display: grid; place-items: center; min-width: 28px; height: 32px; padding: 0 4px; color: currentColor; background: transparent; border: 0; }
.utility-nav button span { font-size: 23px; line-height: 1; }
.utility-nav em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mega-menu { position: absolute; top: var(--header); left: 0; right: 0; visibility: hidden; opacity: 0; background: rgba(255,255,255,.99); color: var(--ink); box-shadow: 0 24px 40px rgba(0,43,69,.14); transform: translateY(-10px); transition: opacity .22s ease, transform .22s ease, visibility .22s ease; }
.primary-item:hover .mega-menu, .primary-item:focus-within .mega-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: 320px 1fr; gap: 50px; padding-top: 42px; padding-bottom: 44px; }
.mega-intro { padding-right: 32px; border-right: 1px solid var(--line); }
.mega-intro span, .search-kicker { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.mega-intro h2 { margin: 5px 0 12px; color: var(--navy); font-size: 30px; }
.mega-intro p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.mega-overview { color: var(--blue); font-size: 14px; font-weight: 800; }
.mega-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mega-columns h3 { margin: 0 0 12px; color: var(--navy); font-size: 14px; }
.mega-columns a { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; color: var(--muted); font-size: 13px; border-bottom: 1px solid #edf3f5; }
.mega-columns a:hover { color: var(--blue); }
.global-menu { position: absolute; top: var(--header); left: 0; right: 0; visibility: hidden; opacity: 0; color: var(--navy); background: var(--white); box-shadow: 0 14px 30px rgba(0,43,69,.1); transform: translateY(-8px); transition: .2s ease; }
.global-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.global-menu .container { display: flex; align-items: center; gap: 28px; min-height: 64px; font-size: 14px; }
.global-menu a { display: inline-flex; align-items: center; min-height: 38px; }
.global-menu a:hover { color: var(--blue); }
.menu-toggle { display: none; width: 42px; height: 42px; margin: auto 0 auto auto; border: 1px solid rgba(255,255,255,.38); border-radius: 5px; background: rgba(255,255,255,.08); }
.is-scrolled .menu-toggle { border-color: var(--line); background: var(--white); }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 19px; height: 2px; margin: auto; background: currentColor; content: ""; transition: .2s ease; }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: rotate(45deg); }
.menu-toggle.is-open span::after { transform: rotate(-45deg) translate(1px,-1px); }

.drawer-backdrop { position: fixed; inset: 0; z-index: 120; visibility: hidden; opacity: 0; background: rgba(0,25,39,.58); transition: .24s ease; }
.drawer-backdrop.is-open, .drawer-backdrop.active { visibility: visible; opacity: 1; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 130; width: min(430px, 92vw); visibility: hidden; color: var(--ink); background: var(--white); box-shadow: -16px 0 36px rgba(0,43,69,.16); transform: translateX(100%); transition: .28s ease; }
.mobile-drawer.is-open, .mobile-drawer.active { visibility: visible; transform: translateX(0); }
.mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; min-height: 82px; padding: 0 18px; color: var(--white); background: linear-gradient(135deg, var(--deep), var(--navy)); }
.drawer-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.drawer-brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 5px; background: #081d29; }
.drawer-brand span { display: grid; color: var(--white); font-size: 18px; font-weight: 800; line-height: 1.05; }
.drawer-brand small { margin-top: 4px; color: #8fe0ca; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.drawer-close, .search-close { width: 42px; height: 42px; color: inherit; background: transparent; border: 0; font-size: 32px; line-height: 1; }
.mobile-drawer-body { height: calc(100vh - 82px); padding: 10px 12px 24px; overflow-y: auto; background: #f5f8fa; }
.mobile-group { margin-bottom: 8px; overflow: hidden; background: var(--white); border: 1px solid #dbe7eb; border-radius: 7px; }
.mobile-group-head { display: grid; grid-template-columns: 1fr 54px; align-items: stretch; }
.mobile-group-head a { display: grid; padding: 15px 16px; color: var(--navy); font-size: 15px; font-weight: 800; }
.mobile-group-head small { margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 500; }
.mobile-expand { border: 0; border-left: 1px solid var(--line); color: var(--blue); background: #f8fbfc; font-size: 22px; transition: background .2s ease, color .2s ease; }
.mobile-group.is-open .mobile-expand { color: var(--white); background: var(--navy); }
.mobile-submenu { display: none; padding: 14px 16px 18px; background: #eef5f7; border-top: 1px solid var(--line); }
.mobile-group.is-open .mobile-submenu { display: block; }
.mobile-submenu section + section { margin-top: 12px; }
.mobile-submenu h3 { margin: 0 0 7px; color: var(--navy); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.mobile-submenu a { display: flex; justify-content: space-between; align-items: center; min-height: 38px; padding: 5px 0; color: #526c77; font-size: 13px; border-bottom: 1px solid rgba(0,59,92,.08); }
.mobile-submenu a:last-child { border-bottom: 0; }
.mobile-utility { display: grid; padding: 10px 2px 0; gap: 8px; }
.mobile-utility > a, .mobile-utility button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 46px; padding: 0 14px; color: var(--navy); background: var(--white); border: 1px solid #dbe7eb; border-radius: 6px; font-weight: 800; text-align: left; }
.mobile-global-links { display: none; grid-template-columns: 1fr 1fr; gap: 7px; padding: 2px 0 8px; }
.mobile-global-links.is-open { display: grid; }
.mobile-global-links a { display: grid; place-items: center; min-height: 40px; color: var(--muted); background: var(--white); border: 1px solid #dbe7eb; border-radius: 5px; font-size: 13px; }

.search-overlay { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0; color: var(--white); background: rgba(0,43,69,.98); transform: translateY(-10px); transition: .22s ease; }
.search-overlay.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.search-inner { position: relative; padding-top: clamp(80px, 13vh, 150px); }
.search-close { position: absolute; top: 28px; right: 0; }
.search-overlay h2 { margin: 9px 0 32px; color: var(--white); font-size: clamp(32px, 5vw, 60px); }
.search-form label { display: block; margin-bottom: 9px; color: #b9dbe8; font-size: 14px; }
.search-form div { display: grid; grid-template-columns: 1fr auto; border-bottom: 2px solid rgba(255,255,255,.64); }
.search-form input { min-width: 0; padding: 13px 0; color: var(--white); background: transparent; border: 0; outline: 0; font-size: clamp(20px, 3vw, 34px); }
.search-form input::placeholder { color: rgba(255,255,255,.38); }
.search-form button { padding: 0 22px; color: var(--white); background: var(--blue); border: 0; }
.popular-search { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 28px; }
.popular-search button { padding: 7px 11px; color: #d4e9ef; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: 12px; }
.search-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 28px; background: rgba(255,255,255,.16); }
.search-results a { display: grid; grid-template-columns: 1fr auto; gap: 0 10px; padding: 14px; background: var(--deep); }
.search-results span { color: #b9dbe8; font-size: 13px; }
.search-results b { grid-row: 1 / 3; grid-column: 2; align-self: center; color: var(--green); }

.hero, .page-hero { position: relative; display: flex; align-items: center; min-height: 690px; overflow: hidden; color: var(--white); background: var(--deep); }
.page-hero { min-height: 460px; padding-top: var(--header); }
.hero::before, .page-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,33,52,.94), rgba(0,59,92,.66) 46%, rgba(0,59,92,.18)); content: ""; }
.hero-bg, .page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content, .page-hero .container { position: relative; z-index: 2; padding-top: 88px; padding-bottom: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 38px; height: 2px; background: currentColor; content: ""; }
h1, h2, h3 { margin: 0 0 17px; color: var(--navy); line-height: 1.16; letter-spacing: 0; text-wrap: balance; }
p { text-wrap: pretty; }
.hero h1 { max-width: 810px; margin-top: 17px; color: var(--white); font-size: clamp(42px, 6vw, 76px); }
.page-hero h1 { max-width: 900px; margin: 15px 0 12px; color: var(--white); font-size: clamp(34px, 4.2vw, 56px); }
.hero .subtitle, .page-hero .cn-title { color: #d8f2fb; font-size: clamp(19px, 2.4vw, 28px); font-weight: 700; }
.hero p, .page-hero p { max-width: 780px; color: rgba(255,255,255,.88); font-size: 17px; }
.breadcrumb { display: none !important; position: absolute; top: var(--header); left: 0; right: 0; z-index: 4; padding: 16px 0; color: rgba(255,255,255,.72); background: transparent; font-size: 13px; }
.breadcrumb a { display: inline-flex; align-items: center; min-height: 28px; color: var(--green); }

section { padding: 86px 0; }
.section-alt { background: var(--pale); }
.section-dark { color: var(--white); background: var(--deep); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark .lead { color: rgba(255,255,255,.8); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
.section-head h2, section h2 { font-size: clamp(30px, 4vw, 50px); }
.lead { max-width: 800px; color: var(--muted); font-size: 17px; }
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.leadership-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.image-panel { position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-panel img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; transition: transform .35s ease; }
.image-panel:hover img { transform: scale(1.035); }
.image-panel::after { position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(0deg, rgba(0,59,92,.56), transparent); content: ""; }
.company-overview {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9e6eb;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0,43,69,.09);
}
.overview-visual {
  position: relative;
  min-height: 560px;
  background: var(--deep);
}
.overview-visual img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.overview-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,43,69,.08), rgba(0,43,69,.46));
  content: "";
}
.overview-badge {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(0,43,69,.82);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
}
.overview-badge strong { display: block; font-size: 25px; line-height: 1.1; }
.overview-badge span { color: rgba(255,255,255,.76); font-size: 14px; }
.overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: clamp(42px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(220,239,234,.46), rgba(255,255,255,0) 38%),
    #fff;
}
.overview-copy h2 { max-width: 680px; margin-top: 12px; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.2; }
.overview-copy p { max-width: 760px; margin: 0 0 18px; color: #586f79; font-size: 17px; line-height: 1.9; }
.overview-copy .lead { color: #314a56; font-size: 19px; }
.overview-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.overview-tags span {
  padding: 8px 12px;
  color: var(--navy);
  background: #eef7f4;
  border: 1px solid #cfe4dc;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.overview-story {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: #fbfdfe;
}
.overview-story p {
  min-height: 178px;
  margin: 0;
  padding: 30px 32px;
  color: #60747d;
  border-left: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.85;
}
.overview-story p:first-child { border-left: 0; }
.overview-story strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
}
.capability-chain {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 1px;
  background: #cfdfe5;
}
.capability-chain span {
  display: grid;
  place-items: center;
  min-height: 70px;
  color: var(--navy);
  background: #f4fafb;
  font-size: 14px;
  font-weight: 900;
}
.company-profile {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  align-items: start;
  gap: 70px;
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(220,239,234,.62), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #fff, #fbfdfe);
  border: 1px solid #dce8ed;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,43,69,.08);
}
.company-profile::before {
  position: absolute;
  top: 34px;
  left: 0;
  width: 5px;
  height: 116px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  content: "";
}
.company-profile-copy { padding-top: 2px; }
.company-profile-copy h2 { margin-bottom: 26px; font-size: clamp(38px, 4.6vw, 62px); }
.company-profile-copy p { margin: 0 0 20px; color: #60747d; font-size: 16px; line-height: 1.95; }
.company-profile-copy .lead {
  max-width: none;
  margin-bottom: 24px;
  padding: 22px 24px;
  color: #324b57;
  background: rgba(255,255,255,.82);
  border-left: 4px solid var(--green);
  box-shadow: 0 12px 30px rgba(0,43,69,.06);
  font-size: 18px;
  line-height: 1.9;
}
.company-profile .image-panel {
  position: sticky;
  top: calc(var(--header) + 32px);
  min-height: 480px;
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(0,43,69,.16);
}
.company-profile .image-panel img { min-height: 480px; }
.card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 22px rgba(0,43,69,.055); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card:hover { border-color: #c3d6dd; box-shadow: var(--shadow); transform: translateY(-5px); }
.card img { width: 100%; height: 204px; object-fit: cover; transition: transform .35s ease; }
.card:hover img { transform: scale(1.045); }
.card-body { padding: 25px; }
.card h3 { font-size: 22px; }
.card p { margin: 0 0 16px; color: var(--muted); }
.leadership-grid .card {
  position: relative;
  overflow: hidden;
  border-color: rgba(0,119,163,.18);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  box-shadow: 0 22px 52px rgba(0,43,69,.09);
}
.leadership-grid .card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  content: "";
}
.leadership-grid .card img {
  height: 232px;
  padding: 0;
  background: #001a2b;
  object-fit: cover;
}
.leadership-grid .card-body { padding: 24px 24px 26px; }
.leadership-grid .card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}
.leadership-grid .card p {
  margin: 0;
  color: #5a707a;
  font-size: 15px;
  line-height: 1.75;
}
.text-link { color: var(--blue); font-weight: 800; }
.text-link:hover { color: var(--green); }
.detail-list { display: grid; gap: 13px; padding: 0; margin: 22px 0 0; list-style: none; }
.detail-list li { position: relative; padding-left: 20px; color: var(--muted); }
.detail-list li::before { position: absolute; top: .68em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--green); content: ""; }
#culture {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, rgba(245,248,250,.96) 34%, #eef5f7),
    radial-gradient(circle at 88% 10%, rgba(75,174,143,.13), transparent 32%);
}
#culture::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,119,163,.3), transparent);
  content: "";
}
.culture-editorial {
  display: block;
}
.culture-panel {
  display: block;
  margin-bottom: 34px;
  padding: 0 0 30px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid #d7e5ea;
  border-radius: 0;
  box-shadow: none;
}
.culture-panel .eyebrow { color: var(--green); }
.culture-panel .culture-kicker {
  display: inline-flex;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .08em;
}
.culture-panel .culture-kicker::before {
  width: 58px;
  height: 2px;
}
.culture-panel h2 { margin: 13px 0 8px; color: var(--navy); font-size: clamp(38px, 4vw, 56px); line-height: 1.08; }
.culture-subtitle { display: block; margin-bottom: 14px; color: var(--green); font-size: clamp(18px, 2vw, 24px); line-height: 1.35; }
.culture-panel p { max-width: 860px; margin: 0; color: #647782; font-size: 16px; line-height: 1.85; }
.culture-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.culture-principles article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 28px 24px 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid #d9e6eb;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0,43,69,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.culture-principles article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  content: "";
}
.culture-principles article::after {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(0,59,92,.055);
  font-size: 96px;
  font-weight: 900;
  line-height: .8;
  content: attr(data-index);
  pointer-events: none;
}
.culture-principles article:nth-child(1)::after { content: "01"; }
.culture-principles article:nth-child(2)::after { content: "02"; }
.culture-principles article:nth-child(3)::after { content: "03"; }
.culture-principles article:hover { border-color: #bdd7df; box-shadow: 0 24px 52px rgba(0,43,69,.11); transform: translateY(-4px); }
.culture-principles article > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0 0 16px;
  color: var(--green);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.culture-principles article > div { display: flex; flex: 1; flex-direction: column; min-width: 0; }
.culture-principles h3 { position: relative; z-index: 1; margin: 0 0 8px; font-size: 27px; }
.culture-principles p { max-width: 820px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.principle-details {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}
.principle-details section {
  min-height: auto;
  padding: 13px 0 12px;
  background: transparent;
  border: 0;
  border-top: 1px solid #e2edf1;
  border-radius: 0;
}
.principle-details h4 {
  position: relative;
  margin: 0 0 7px;
  padding-left: 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}
.principle-details h4::before {
  position: absolute;
  top: .58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}
.principle-details p {
  max-width: none;
  padding: 0;
  color: #60747d;
  font-size: 12.8px;
  line-height: 1.68;
}
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.culture-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid #d8e7ec;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0,43,69,.08);
}
.culture-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  content: "";
}
.culture-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--navy)); }
.culture-card:nth-child(3)::before { background: linear-gradient(90deg, #3d747a, var(--green)); }
.culture-card .card-body { position: relative; height: 100%; padding: 36px 34px 34px; }
.culture-index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0,59,92,.18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.culture-card h3 { margin-bottom: 10px; font-size: 28px; }
.culture-card > .card-body > p { color: #526b76; font-size: 16px; }
.culture-points { display: grid; gap: 0; margin-top: 24px; padding-top: 10px; border-top: 1px solid var(--line); }
.culture-points > div { padding: 17px 0; border-bottom: 1px solid #edf3f5; }
.culture-points > div:last-child { border-bottom: 0; padding-bottom: 0; }
.culture-points h4 { position: relative; margin: 0 0 7px; padding-left: 17px; color: var(--navy); font-size: 16px; line-height: 1.45; }
.culture-points h4::before { position: absolute; top: .54em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); content: ""; }
.culture-points p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.82; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 21px; color: var(--white); background: var(--blue); border: 1px solid transparent; border-radius: 4px; font-weight: 800; transition: .2s ease; }
.btn:hover, .btn:focus-visible { background: var(--navy); box-shadow: 0 10px 22px rgba(0,119,163,.22); transform: translateY(-2px); }
.btn.secondary { background: var(--green); }
.btn.outline { color: var(--navy); background: var(--white); border-color: var(--line); }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.stat-card { padding: 28px 22px; border-left: 4px solid var(--green); }
.stat-card strong { display: block; margin-bottom: 12px; color: var(--navy); font-size: 45px; line-height: 1; }
.stat-card span { color: var(--muted); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.timeline-6 { grid-template-columns: repeat(6, 1fr); }
.timeline-step { min-height: 156px; padding: 22px 17px; background: var(--white); border-top: 4px solid var(--green); border-radius: 0 0 var(--radius) var(--radius); box-shadow: 0 10px 24px rgba(0,43,69,.07); }
.timeline-step strong { color: var(--navy); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 28px; }
.filter-btn { padding: 9px 15px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-weight: 800; transition: .18s ease; }
.filter-btn:hover, .filter-btn.active { color: var(--white); background: var(--navy); border-color: var(--navy); }

.pipeline-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.pipeline-item { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-top: 0; border-radius: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.pipeline-row { display: grid; grid-template-columns: minmax(280px,1fr) minmax(360px,500px) 34px; gap: 28px; align-items: center; min-height: 142px; padding: 24px 28px; }
.pipeline-name strong { display: block; max-width: 560px; color: var(--navy); font-size: 20px; line-height: 1.35; }
.pipeline-name span { display: block; margin-top: 9px; color: var(--muted); font-size: 14px; }
.stage-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; padding: 13px 0 30px; }
.stage-track::after { content: attr(data-current-stage); position: absolute; right: 0; bottom: 0; color: var(--navy); font-size: 15px; font-weight: 800; }
.stage, .stage5 { position: relative; display: grid; place-items: center; min-height: 34px; padding: 0; color: transparent; background: #e7edf0; border-radius: 0; font-size: 0; line-height: 1; text-align: center; }
.stage.done, .stage5.done { background: #b9d8dc; }
.stage.active, .stage5.active { color: var(--white); background: #3d747a; }
.stage5.active::after { font-size: 13px; font-weight: 800; }
.stage5.active:nth-child(1)::after { content: "1"; }
.stage5.active:nth-child(2)::after { content: "2"; }
.stage5.active:nth-child(3)::after { content: "3"; }
.stage5.active:nth-child(4)::after { content: "4"; }
.stage5.active:nth-child(5)::after { content: "5"; }
.stage5.active::before { content: ""; position: absolute; top: -18px; left: 50%; border: 7px solid transparent; border-top-color: #4c555a; transform: translateX(-50%); }
.pipeline-toggle { display: grid; place-items: center; width: 34px; height: 34px; color: #58666d; background: transparent; border: 0; transition: .2s ease; }
.pipeline-toggle::before { content: ""; width: 11px; height: 11px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s ease; }
.pipeline-item.is-expanded { border-color: #b9d3dc; box-shadow: 0 14px 32px rgba(0,59,92,.1); }
.pipeline-item.is-expanded .pipeline-toggle { color: var(--navy); background: transparent; transform: none; }
.pipeline-item.is-expanded .pipeline-toggle::before { transform: rotate(225deg) translate(-2px,-2px); }
.pipeline-detail { display: none; grid-template-columns: repeat(3,1fr); gap: 0; padding: 0; color: var(--white); background: var(--navy); border-top: 0; }
.pipeline-item.is-expanded .pipeline-detail { display: grid; }
.pipeline-detail > div { min-height: 112px; padding: 23px 28px; border-left: 1px solid rgba(255,255,255,.16); }
.pipeline-detail > div:first-child { border-left: 0; }
.pipeline-detail h4 { margin: 0 0 8px; color: #8fe0ca; font-size: 13px; letter-spacing: 0; }
.pipeline-detail p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.7; }
.home-pipeline { gap: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 6px; }
.home-pipeline .pipeline-stage-head { display: grid; grid-template-columns: minmax(280px,1fr) repeat(5, minmax(92px,1fr)); gap: 8px; align-items: center; padding: 16px 28px; color: #5d737b; background: #f7fbfc; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 800; text-align: center; }
.home-pipeline .pipeline-row { grid-template-columns: minmax(280px,1fr) minmax(460px,760px); min-height: 96px; padding: 20px 28px; border-bottom: 1px solid var(--line); }
.home-pipeline .pipeline-row:last-child { border-bottom: 0; }
.home-pipeline .pipeline-name strong { font-size: 18px; }
.home-pipeline .stage-track { gap: 8px; padding: 0 0 24px; }
.home-pipeline .stage-track::after { left: 0; right: auto; bottom: 0; color: #3d747a; font-size: 13px; }
.home-pipeline .stage, .home-pipeline .stage5 { min-height: 30px; }
.home-pipeline + .disclaimer { margin-top: 20px; }
.disclaimer { padding: 15px 17px; margin-top: 24px; color: #38515d; background: #edf7f4; border-left: 4px solid var(--green); font-size: 14px; }

.form { display: grid; gap: 15px; }
.form .row { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.form label { color: var(--navy); font-size: 13px; font-weight: 800; }
.form input, .form select, .form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 4px; outline: 0; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,119,163,.1); }
.form .invalid { border-color: #c64a4a; }
.form textarea { min-height: 146px; resize: vertical; }
.form-message { min-height: 20px; margin: 0; color: #b13f3f; font-size: 14px; }
.form-message.success { color: #287c63; }
.career-apply-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(56,215,255,.22), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(75,174,143,.2), transparent 34%),
    linear-gradient(135deg, #001721, #003b5c 56%, #061f2c);
}
.career-apply-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(124,244,230,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,244,230,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.75), transparent 72%);
  content: "";
}
.career-apply-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}
.career-apply-copy {
  max-width: 560px;
}
.career-apply-copy h2 {
  margin: 18px 0 22px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 74px);
}
.career-apply-copy .lead {
  color: rgba(230,248,255,.82);
  font-size: 18px;
  line-height: 2;
}
.apply-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.apply-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: #d8fff4;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(124,244,230,.22);
  border-radius: 999px;
  box-shadow: inset 0 0 18px rgba(56,215,255,.06);
  font-size: 13px;
  font-weight: 800;
}
.career-form {
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(124,244,230,.24);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
}
.career-form label {
  color: #d6f8ff;
  font-size: 14px;
  letter-spacing: 0;
}
.career-form input,
.career-form select,
.career-form textarea {
  margin-top: 7px;
  min-height: 56px;
  color: var(--white);
  background: rgba(0,22,34,.52);
  border: 1px solid rgba(190,242,255,.22);
  border-radius: 10px;
}
.career-form input::placeholder,
.career-form textarea::placeholder {
  color: rgba(220,244,250,.5);
}
.career-form select {
  color: rgba(255,255,255,.86);
}
.career-form option {
  color: var(--ink);
}
.career-form textarea {
  min-height: 150px;
}
.career-form .btn {
  min-height: 58px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 20px 42px rgba(0,119,163,.32);
}
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(75,174,143,.14), transparent 30%),
    linear-gradient(180deg, #f7fbfc, #eef5f7);
}
.contact-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,119,163,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,119,163,.035) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: stretch;
}
.contact-info-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 42px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0,35,54,.96), rgba(0,77,101,.92));
  border: 1px solid rgba(124,244,230,.2);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,43,69,.18);
}
.contact-info-panel::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(75,174,143,.24), transparent 68%);
  content: "";
}
.contact-info-panel h2 {
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
}
.contact-info-panel .lead {
  color: rgba(235,250,255,.82);
}
.contact-info-panel .detail-list {
  margin-top: 28px;
}
.contact-info-panel .detail-list li {
  color: rgba(235,250,255,.78);
}
.contact-map-card {
  position: relative;
  z-index: 1;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
}
.contact-map-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  opacity: .8;
}
.contact-form {
  gap: 18px;
  padding: 34px;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(0,119,163,.16);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,43,69,.12);
  backdrop-filter: none;
}
.contact-form label {
  color: var(--navy);
  font-size: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 7px;
  min-height: 54px;
  color: var(--ink);
  background: #f8fbfc;
  border: 1px solid #c9dbe2;
  border-radius: 10px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #87979e;
}
.contact-form textarea {
  min-height: 150px;
}
.contact-form .btn {
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  box-shadow: 0 18px 38px rgba(0,59,92,.22);
}
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pagination a { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid var(--line); border-radius: 4px; }
.pagination a.active { color: var(--white); background: var(--navy); border-color: var(--navy); }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 38px; font-size: 28px; }

.footer { padding: 54px 0 0; color: rgba(255,255,255,.76); background: #072536; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; padding-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 17px; }
.footer-brand img { width: 112px; height: 78px; border-radius: 5px; object-fit: contain; background: #0a1d28; }
.footer-brand span { display: grid; }
.footer-brand strong { color: var(--white); }
.footer-brand small { color: #b4cdd7; }
.footer-about p { max-width: 440px; }
.footer h3 { color: var(--white); font-size: 16px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { display: inline-flex; align-items: center; min-height: 30px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding: 20px 0 24px; border-top: 1px solid rgba(255,255,255,.13); font-size: 12px; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 15px; }
@media (max-width: 768px) {
  .footer {
    padding: 28px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 22px;
  }
  .footer-about {
    padding: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(185,244,255,.12);
    border-radius: 14px;
  }
  .footer-brand {
    gap: 12px;
    margin-bottom: 12px;
  }
  .footer-brand img {
    width: 76px;
    height: 54px;
  }
  .footer-brand strong {
    font-size: 16px;
  }
  .footer-brand small {
    max-width: 220px;
    font-size: 11px;
    line-height: 1.45;
  }
  .footer-about p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
  }
  .footer-grid > div:not(.footer-about) {
    padding: 16px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(185,244,255,.1);
    border-radius: 14px;
  }
  .footer h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 12px;
    font-size: 15px;
  }
  .footer h3::before {
    width: 22px;
    height: 2px;
    background: var(--green);
    content: "";
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .footer-links a {
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
    color: rgba(238,250,255,.86);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(185,244,255,.1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }
  .footer-bottom {
    display: grid;
    gap: 12px;
    padding: 16px 0 18px;
    font-size: 11px;
    text-align: center;
  }
  .footer-bottom div {
    justify-content: center;
    gap: 8px 14px;
    margin-top: 0;
  }
}
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 44px; height: 44px; color: var(--white); background: var(--blue); border: 0; border-radius: 50%; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .62s ease, transform .62s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.public-pipeline-section { background: #eef5f7; }
.public-pipeline-intro { display: grid; grid-template-columns: 1.45fr .85fr; gap: 34px; align-items: start; }
.public-source-note { padding: 24px; color: rgba(255,255,255,.82); background: var(--navy); border-radius: 6px; }
.public-source-note strong { color: var(--white); font-size: 17px; }
.public-source-note p { margin: 10px 0 14px; font-size: 14px; }
.public-source-note a { color: #8fe0ca; font-size: 14px; font-weight: 800; }
.public-pipeline-stats { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; margin: 34px 0; background: #c9dce3; border: 1px solid #c9dce3; }
.public-stat { min-height: 112px; padding: 20px; background: var(--white); }
.public-stat strong { display: block; color: var(--navy); font-size: 34px; line-height: 1; }
.public-stat span { display: block; margin-top: 12px; color: #4f6873; font-size: 13px; font-weight: 800; }
.public-pipeline-toolbar { display: grid; grid-template-columns: 1fr 170px 220px 250px; gap: 14px; padding: 18px; background: var(--white); border: 1px solid #d7e4e9; }
.public-pipeline-toolbar label { display: grid; gap: 7px; }
.public-pipeline-toolbar label span { color: var(--navy); font-size: 12px; font-weight: 800; }
.public-pipeline-toolbar select, .public-pipeline-toolbar input { width: 100%; min-height: 42px; padding: 0 11px; color: var(--ink); background: var(--white); border: 1px solid #cbdce2; border-radius: 3px; outline: none; }
.public-pipeline-toolbar select:focus, .public-pipeline-toolbar input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,119,163,.1); }
.public-pipeline-area-filters { display: flex; flex-wrap: wrap; align-content: start; gap: 7px; }
.public-filter { min-height: 42px; padding: 0 12px; color: var(--navy); background: #edf5f6; border: 1px solid transparent; border-radius: 3px; font-size: 12px; font-weight: 800; cursor: pointer; }
.public-filter.active, .public-filter:hover { color: var(--white); background: var(--navy); }
.public-pipeline-result-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin: 34px 0 15px; }
.public-pipeline-result-head h3 { margin: 5px 0 0; color: var(--navy); font-size: 30px; }
.public-pipeline-result-head > strong { color: var(--blue); font-size: 14px; }
.public-pipeline-list { display: grid; gap: 0; border-top: 1px solid #d5e3e8; }
.public-pipeline-item { overflow: hidden; background: var(--white); border: 1px solid #d5e3e8; border-top: 0; transition: box-shadow .2s ease; }
.public-pipeline-row { display: grid; grid-template-columns: minmax(300px,1fr) minmax(330px,450px) 34px; gap: 28px; align-items: center; width: 100%; min-height: 132px; padding: 22px 28px; text-align: left; background: transparent; border: 0; cursor: pointer; }
.public-pipeline-row:hover { background: #f8fbfc; }
.public-pipeline-primary { display: grid; gap: 7px; min-width: 0; }
.public-pipeline-primary small { color: #347078; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.public-pipeline-primary strong { color: var(--navy); font-size: 19px; line-height: 1.35; overflow-wrap: anywhere; }
.public-pipeline-primary em { color: #536b75; font-size: 14px; font-style: normal; }
.public-phase-wrap { display: grid; gap: 10px; align-items: center; }
.public-phase-wrap > strong { justify-self: end; color: var(--navy); font-size: 15px; }
.public-phase-meter { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.public-phase-segment { display: grid; place-items: center; min-height: 34px; color: transparent; background: #e7edf0; font-size: 0; font-style: normal; }
.public-phase-segment.done { background: #b9d8dc; }
.public-phase-segment.active { color: var(--white); background: #3d747a; font-size: 13px; font-weight: 800; }
.public-expand { width: 13px; height: 13px; border-right: 2px solid #58666d; border-bottom: 2px solid #58666d; transform: rotate(45deg) translate(-2px,-2px); transition: transform .2s ease; }
.public-pipeline-item.open { box-shadow: 0 14px 32px rgba(0,59,92,.1); }
.public-pipeline-item.open .public-expand { transform: rotate(225deg) translate(-2px,-2px); }
.public-pipeline-detail { display: none; grid-template-columns: repeat(3,1fr); gap: 0; padding: 0; color: var(--white); background: var(--navy); }
.public-pipeline-item.open .public-pipeline-detail { display: grid; }
.public-pipeline-detail > div { min-height: 108px; padding: 20px 24px; border-left: 1px solid rgba(255,255,255,.16); border-top: 1px solid rgba(255,255,255,.16); }
.public-pipeline-detail > div:nth-child(3n+1) { border-left: 0; }
.public-pipeline-detail h4 { margin: 0 0 7px; color: #8fe0ca; font-size: 13px; }
.public-pipeline-detail p { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.65; }
.public-pipeline-empty { padding: 25px; color: #617982; background: var(--white); border: 1px solid #d5e3e8; }

@media (max-width: 1200px) {
  .header-row { gap: 14px; }
  .primary-link { padding-inline: 7px; font-size: 12px; }
  .utility-nav { gap: 7px; }
  .utility-nav > a { display: none; }
  .public-pipeline-toolbar { grid-template-columns: 1fr 160px 200px; }
  .public-pipeline-search { grid-column: 1 / -1; }
  .overview-story { grid-template-columns: 1fr; }
  .overview-story p { min-height: auto; border-left: 0; border-top: 1px solid var(--line); }
  .overview-story p:first-child { border-top: 0; }
}
@media (max-width: 992px) {
  .desktop-nav, .utility-nav { display: none; }
  .menu-toggle { display: block; }
  .split, .grid-4, .grid-5 { grid-template-columns: repeat(2,1fr); }
  .company-overview { grid-template-columns: 1fr; }
  .overview-visual, .overview-visual img { min-height: 420px; }
  .overview-copy { min-height: auto; }
  .capability-chain { grid-template-columns: repeat(3, 1fr); }
  .company-profile { grid-template-columns: 1fr; padding: 44px; }
  .company-profile .image-panel { position: relative; top: auto; min-height: 360px; }
  .company-profile .image-panel img { min-height: 360px; }
  .culture-grid { grid-template-columns: 1fr; }
  .culture-panel { grid-template-columns: 1fr; align-items: start; }
  .culture-principles { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .pipeline-row { grid-template-columns: 1fr auto; }
  .stage-track { grid-column: 1 / -1; grid-row: 2; }
  .home-pipeline .pipeline-stage-head { display: none; }
  .home-pipeline .pipeline-row { grid-template-columns: 1fr; min-height: auto; gap: 14px; padding: 19px 20px; }
  .home-pipeline .stage-track { grid-column: auto; grid-row: auto; }
  .public-pipeline-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  :root { --header: 72px; }
  .container { width: min(100% - 32px, 1240px); }
  .brand img { width: 52px; height: 52px; }
  .brand-name { font-size: 14px; }
  .hero { min-height: 560px; }
  .page-hero { min-height: 330px; }
  .hero-content, .page-hero .container { padding-top: 50px; padding-bottom: 32px; }
  section { padding: 42px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2, section h2 { font-size: 30px; }
  .split, .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; gap: 14px; }
  .overview-copy { padding: 34px 26px; }
  .overview-copy h2 { font-size: 28px; }
  .overview-copy .lead { font-size: 17px; }
  .overview-story p { padding: 22px; }
  .capability-chain { grid-template-columns: repeat(2, 1fr); }
  .culture-principles {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .culture-principles article {
    flex: 0 0 min(84vw, 390px);
    scroll-snap-align: start;
  }
  .culture-principles article { padding: 22px; }
  .principle-details section { min-height: auto; padding: 13px 14px; }
  .company-profile { gap: 30px; padding: 34px 26px; }
  .company-profile::before { height: 78px; }
  .company-profile-copy h2 { font-size: 38px; }
  .company-profile-copy .lead { padding: 18px 18px; font-size: 16px; }
  .company-profile-copy p { font-size: 15px; line-height: 1.9; }
  .culture-card .card-body { padding: 31px 25px 28px; }
  .section-head { display: block; }
  .card img { height: 210px; }
  .grid .card:has(> img) {
    display: grid;
    grid-template-columns: 118px 1fr;
    min-height: 138px;
  }
  .grid .card:has(> img) > img {
    width: 118px;
    height: 100%;
    min-height: 138px;
  }
  .grid .card:has(> img) .card-body { padding: 16px; }
  .grid .card:has(> img) h3 { margin-bottom: 8px; font-size: 18px; }
  .grid .card:has(> img) p { margin-bottom: 10px; font-size: 14px; line-height: 1.65; }
  .leadership-grid .card:has(> img) {
    grid-template-columns: 104px 1fr;
    min-height: 126px;
    border-radius: 12px;
  }
  .leadership-grid .card:has(> img) > img {
    width: 104px;
    min-height: 126px;
  }
  .leadership-grid .card:has(> img) .card-body { padding: 15px 16px; }
  .leadership-grid .card:has(> img) h3 { font-size: 17px; }
  .leadership-grid .card:has(> img) p { font-size: 13px; line-height: 1.58; }
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .filter-btn { flex: 0 0 auto; }
  .timeline {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .timeline-step {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { min-height: auto; }
  .pipeline-detail { grid-template-columns: 1fr; }
  .pipeline-detail > div { min-height: auto; padding: 19px 20px; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .pipeline-detail > div:first-child { border-top: 0; }
  .pipeline-row { min-height: auto; gap: 15px; padding: 20px; }
  .pipeline-name strong { font-size: 17px; }
  .stage-track { padding-top: 10px; }
  .search-results { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom { display: grid; }
  .footer-bottom div { margin-top: 0; }
  .global-menu .container { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .global-menu a { justify-content: center; min-height: 42px; background: #f2f7f9; border: 1px solid var(--line); border-radius: 4px; font-weight: 800; }
  .public-pipeline-intro, .public-pipeline-toolbar { grid-template-columns: 1fr; }
  .public-pipeline-search { grid-column: auto; }
  .public-pipeline-row { grid-template-columns: 1fr auto; padding: 16px; }
  .public-phase-wrap { grid-column: 1; }
  .public-expand { grid-column: 2; grid-row: 1 / span 2; }
  .public-pipeline-detail { grid-template-columns: 1fr; }
  .public-pipeline-detail > div { min-height: auto; padding: 18px 20px; border-left: 0; }
  .public-pipeline-detail > div:first-child { border-top: 0; }
  .career-apply-section { padding: 58px 0; }
  .career-apply-grid { grid-template-columns: 1fr; gap: 24px; }
  .career-apply-copy h2 { font-size: 36px; }
  .career-apply-copy .lead { font-size: 15px; line-height: 1.85; }
  .apply-signals { margin-top: 20px; }
  .career-form { padding: 22px; border-radius: 14px; }
  .career-form input,
  .career-form select,
  .career-form textarea { min-height: 50px; }
  .career-form textarea { min-height: 118px; }
  .contact-section { padding: 52px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-info-panel { min-height: auto; padding: 28px 22px; border-radius: 14px; }
  .contact-info-panel h2 { font-size: 34px; }
  .contact-map-card img { height: 160px; }
  .contact-form { padding: 22px; border-radius: 14px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { min-height: 50px; }
  .contact-form textarea { min-height: 120px; }
}
@media (max-width: 576px) {
  .container { width: min(100% - 24px, 1240px); }
  .brand { gap: 8px; }
  .brand img { width: 46px; height: 46px; }
  .brand-name { display: grid; font-size: 13px; letter-spacing: .08em; }
  .brand-name small { font-size: 7px; letter-spacing: .16em; }
  .hero h1 { font-size: 30px; }
  .hero p, .page-hero p { font-size: 14px; }
  .page-hero h1 { font-size: 25px; }
  .hero .subtitle, .page-hero .cn-title { font-size: 17px; }
  .hero { min-height: 470px; }
  .page-hero { min-height: 258px; }
  .hero-content, .page-hero .container { padding-top: 40px; padding-bottom: 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .grid-5 .card-body { padding: 16px 14px; }
  .grid-5 .card h3 { font-size: 17px; }
  .grid-5 .card p { font-size: 13px; line-height: 1.55; }
  .overview-visual, .overview-visual img { min-height: 300px; }
  .overview-badge { left: 18px; right: 18px; bottom: 18px; padding: 17px 18px; }
  .overview-badge strong { font-size: 21px; }
  .overview-copy { padding: 28px 20px; }
  .overview-copy h2 { font-size: 25px; }
  .overview-copy p, .overview-story p, .culture-principles p { font-size: 15px; }
  .principle-details { gap: 10px; margin-top: 18px; }
  .principle-details section { padding: 16px; }
  .principle-details p { font-size: 14px; }
  .capability-chain span { min-height: 58px; }
  .culture-panel { padding: 0 0 22px; margin-bottom: 18px; }
  .culture-panel .culture-kicker { font-size: 13px; }
  .culture-panel h2 { font-size: 34px; }
  .culture-subtitle { font-size: 18px; }
  .culture-principles h3 { font-size: 23px; }
  .culture-principles article > span { margin-bottom: 12px; }
  .culture-principles h3 { margin-right: 0; }
  .principle-details section { padding: 12px 0; }
  .company-profile { width: min(100% - 24px, 1240px); padding: 28px 20px; border-radius: 8px; }
  .company-profile-copy h2 { font-size: 34px; }
  .company-profile .image-panel, .company-profile .image-panel img { min-height: 260px; }
  .culture-index { width: 42px; height: 42px; }
  .culture-card h3 { font-size: 25px; }
  .hero-actions, .section-actions { flex-direction: column; }
  .hero-actions { margin-top: 20px; }
  .btn { width: 100%; }
  .form .row { grid-template-columns: 1fr; }
  .stage-track { grid-template-columns: repeat(5,1fr); gap: 4px; }
  .stage-track::after { font-size: 13px; }
  .home-pipeline { border-radius: 4px; }
  .home-pipeline .pipeline-name strong { font-size: 17px; }
  .home-pipeline .stage, .home-pipeline .stage5 { min-height: 26px; }
  .breadcrumb { padding-top: 8px; padding-bottom: 8px; font-size: 12px; }
  .breadcrumb a { min-height: 32px; }
  .legal-content h2 { font-size: 24px; }
  .public-pipeline-stats { grid-template-columns: repeat(2,1fr); }
  .public-stat { min-height: 96px; padding: 15px; }
  .public-stat strong { font-size: 28px; }
  .public-pipeline-result-head { display: block; }
  .public-pipeline-result-head > strong { display: block; margin-top: 8px; }
  .public-pipeline-primary strong { font-size: 17px; }
  .public-phase-meter { gap: 4px; }
}

/* Compact culture system refinement */
#culture {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(0,43,69,.04), rgba(56,215,255,.06)),
    linear-gradient(180deg, #f8fcfd, #eef6f8);
}

.culture-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 22px;
}

.culture-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 4.8vw, 64px);
}

.culture-subtitle {
  margin: 0 0 8px;
}

.culture-panel p {
  max-width: 760px;
  line-height: 1.72;
}

.culture-principles {
  gap: 18px;
}

.culture-principles article {
  padding: 24px 22px 22px;
}

.culture-principles article::after {
  top: 14px;
  right: 16px;
  font-size: 82px;
}

.culture-principles article > span {
  margin-bottom: 10px;
}

.culture-principles h3 {
  font-size: 25px;
}

.culture-principles > article > div > p {
  min-height: 52px;
  font-size: 14px;
}

.principle-details {
  gap: 8px;
  margin-top: 12px;
}

.principle-details section {
  padding: 12px 13px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(238,248,250,.68));
  border: 1px solid rgba(0,119,163,.12);
  border-radius: 8px;
}

.principle-details h4 {
  margin-bottom: 5px;
  font-size: 14px;
}

.principle-details p {
  font-size: 12.5px;
  line-height: 1.62;
}

@media (max-width: 992px) {
  .culture-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
}

@media (max-width: 768px) {
  #culture {
    padding: 46px 0;
  }
  .culture-panel {
    margin-bottom: 16px;
  }
}

/* Futuristic medical technology layer */
:root {
  --neon: #38d7ff;
  --cyan-soft: #b9f4ff;
  --glass: rgba(255,255,255,.76);
  --glass-line: rgba(74, 206, 218, .24);
  --tech-shadow: 0 28px 70px rgba(0,43,69,.16);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 38%, #eef6f8 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,119,163,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,119,163,.03) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(56,215,255,.14), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(75,174,143,.12), transparent 28%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  content: "";
}

.site-header {
  background:
    linear-gradient(90deg, rgba(0,22,36,.86), rgba(0,59,92,.72)),
    rgba(0,43,69,.72);
  box-shadow: inset 0 -1px 0 rgba(56,215,255,.16);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand img,
.drawer-brand img,
.footer-brand img {
  box-shadow: 0 0 0 1px rgba(56,215,255,.22), 0 10px 28px rgba(0,119,163,.22);
}

.mega-menu {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,248,250,.96)),
    var(--white);
  border-bottom: 1px solid rgba(56,215,255,.2);
}

.mega-menu::before,
.search-overlay::before,
.mobile-drawer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,119,163,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,119,163,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.hero,
.page-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 30%), rgba(56,215,255,.22), transparent 25%),
    linear-gradient(135deg, #001c2d, #003b5c);
}

.hero::before,
.page-hero::before {
  background:
    linear-gradient(90deg, rgba(0,17,28,.96), rgba(0,59,92,.72) 48%, rgba(0,119,163,.2)),
    radial-gradient(circle at 74% 38%, rgba(56,215,255,.24), transparent 34%);
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(185,244,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,244,255,.08) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 62%, rgba(56,215,255,.18) 63%, transparent 66%),
    linear-gradient(180deg, transparent 0 72%, rgba(0,43,69,.75));
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  content: "";
  opacity: .7;
  animation: techGridDrift 18s linear infinite;
}

.hero-content,
.page-hero .container {
  position: relative;
}

.hero-content::before,
.page-hero .container::before {
  position: absolute;
  left: 0;
  top: 78px;
  width: min(50vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, var(--neon), transparent);
  box-shadow: 0 0 18px rgba(56,215,255,.55);
  content: "";
}

.hero h1,
.page-hero h1 {
  text-shadow: 0 18px 50px rgba(0,0,0,.3);
}

.hero .subtitle,
.page-hero .cn-title {
  color: #bff8ff;
}

.section-alt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234,246,250,.94), rgba(247,251,252,.96)),
    var(--pale);
}

.section-alt::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0,119,163,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,119,163,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: .7;
}

.section-alt > .container,
.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #001a2a, #00324d 58%, #00445c);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(185,244,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,244,255,.07) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(56,215,255,.18), transparent 34%);
  background-size: 52px 52px, 52px 52px, auto;
  content: "";
}

.eyebrow {
  color: #35bfa3;
}

.eyebrow::before {
  box-shadow: 0 0 16px rgba(75,174,143,.55);
}

.card,
.timeline-step,
.form,
.company-overview,
.company-profile,
.culture-principles article,
.metric-card,
.public-pipeline-item,
.pipeline-item {
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(247,252,253,.82));
  border-color: rgba(0,119,163,.16);
  box-shadow: 0 18px 48px rgba(0,43,69,.08);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
}

.card,
.timeline-step,
.culture-principles article,
.metric-card {
  position: relative;
}

.card::before,
.timeline-step::before,
.stat-card::before,
.metric-card::before,
.culture-principles article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--neon), var(--blue));
  content: "";
}

.card:hover,
.timeline-step:hover,
.metric-card:hover,
.culture-principles article:hover {
  border-color: rgba(56,215,255,.34);
  box-shadow: var(--tech-shadow), 0 0 0 1px rgba(56,215,255,.08);
}

.card-body h3,
.pipeline-name strong,
.public-pipeline-primary strong {
  color: #003a58;
}

.image-panel,
.card img {
  filter: saturate(1.08) contrast(1.03);
}

.image-panel {
  border: 1px solid rgba(56,215,255,.18);
}

.image-panel::before {
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(185,244,255,.18);
  content: "";
}

.tech-image::before {
  background:
    linear-gradient(90deg, rgba(56,215,255,.34), transparent 26%),
    linear-gradient(180deg, rgba(56,215,255,.2), transparent 20%);
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--blue), #005f86);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0,119,163,.24);
}

.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.34), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform .5s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn.secondary {
  background: linear-gradient(135deg, var(--green), #23a4b9);
}

.btn.outline {
  color: var(--navy);
  background: rgba(255,255,255,.72);
  border-color: rgba(0,119,163,.22);
  backdrop-filter: blur(10px);
}

.stat-card {
  border-left: 0;
  min-height: 178px;
}

.stat-card strong {
  color: #006f95;
  text-shadow: 0 8px 26px rgba(56,215,255,.18);
}

.timeline {
  position: relative;
}

.timeline-step {
  border-top: 0;
}

.timeline-step strong::after {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--green), var(--neon));
  content: "";
}

.stage-track .stage,
.home-pipeline .stage,
.public-phase {
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.stage-track .stage.done,
.public-phase.done {
  background: linear-gradient(135deg, #b6dadd, #4baea9);
}

.stage-track .stage.active,
.public-phase.active {
  background: linear-gradient(135deg, #00a8d6, #006c8d);
  box-shadow: 0 0 22px rgba(56,215,255,.28);
}

.pipeline-list,
.public-pipeline-list {
  border: 1px solid rgba(0,119,163,.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: 0 22px 52px rgba(0,43,69,.08);
}

.pipeline-item,
.public-pipeline-item {
  border-left: 0;
  border-right: 0;
}

.pipeline-row,
.public-pipeline-row {
  background:
    linear-gradient(90deg, rgba(255,255,255,.8), rgba(248,253,254,.6));
}

.pipeline-toggle,
.public-expand {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 1px solid rgba(56,215,255,.3);
  box-shadow: 0 10px 24px rgba(0,59,92,.18);
}

.pipeline-detail,
.public-pipeline-detail {
  background:
    linear-gradient(135deg, rgba(0,43,69,.94), rgba(0,77,103,.92));
  color: rgba(255,255,255,.8);
}

.pipeline-detail h4,
.public-pipeline-detail h4 {
  color: #bff8ff;
}

.filter-btn {
  background: rgba(255,255,255,.7);
  border-color: rgba(0,119,163,.18);
  backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 26px rgba(0,59,92,.2);
}

.form {
  border: 1px solid rgba(0,119,163,.16);
  backdrop-filter: blur(12px);
}

.form input,
.form select,
.form textarea {
  background: rgba(255,255,255,.82);
  border-color: rgba(0,119,163,.18);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 4px rgba(56,215,255,.12);
  outline: 0;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #001722, #002b45 60%, #003c54);
}

.footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(185,244,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,244,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: .75;
}

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

.mobile-drawer {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,248,250,.96));
}

.mobile-drawer-head {
  background:
    linear-gradient(135deg, #001a2a, #003b5c 72%, #0077a3);
}

.mobile-group,
.mobile-utility > a,
.mobile-utility button {
  background: rgba(255,255,255,.76);
  border-color: rgba(0,119,163,.16);
  box-shadow: 0 10px 26px rgba(0,43,69,.055);
  backdrop-filter: blur(12px);
}

.search-overlay {
  background:
    radial-gradient(circle at 72% 22%, rgba(56,215,255,.22), transparent 30%),
    linear-gradient(135deg, rgba(0,17,28,.98), rgba(0,59,92,.98));
}

.back-to-top {
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 28px rgba(0,119,163,.28);
}

@keyframes techGridDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 72px 72px, -72px 72px, 0 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .page-hero::after {
    animation: none;
  }
  .card,
  .timeline-step,
  .form,
  .company-overview,
  .company-profile,
  .culture-principles article,
  .metric-card,
  .public-pipeline-item,
  .pipeline-item {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  body::before {
    background-size: 34px 34px, 34px 34px, auto, auto;
  }
  .site-header {
    background: rgba(0,25,39,.82);
  }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 13px; }
  .hero::after,
  .page-hero::after {
    background-size: 46px 46px, 46px 46px, 100% 100%, 100% 100%;
    opacity: .44;
  }
  .hero-content::before,
  .page-hero .container::before {
    top: 40px;
    width: 74vw;
  }
  .card,
  .timeline-step,
  .stat-card,
  .pipeline-list,
  .public-pipeline-list {
    box-shadow: 0 12px 30px rgba(0,43,69,.075);
  }
  .image-panel::before {
    inset: 10px;
  }
  .mobile-drawer {
    width: min(390px, 92vw);
  }
  .mobile-drawer-body {
    background:
      linear-gradient(rgba(0,119,163,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,119,163,.035) 1px, transparent 1px),
      #eef6f8;
    background-size: 30px 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 27px; }
  .hero,
  .page-hero {
    background-position: center;
  }
  .btn {
    min-height: 48px;
  }
  .stat-card {
    min-height: 132px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 22px !important;
  }
  .footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding-bottom: 16px !important;
  }
  .footer-about {
    grid-column: 1 / -1 !important;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px !important;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(185,244,255,.12);
    border-radius: 14px;
  }
  .footer-brand {
    display: contents !important;
    margin: 0 !important;
  }
  .footer-brand img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 10px !important;
  }
  .footer-brand span {
    min-width: 0;
  }
  .footer-brand strong {
    display: block;
    font-size: 16px !important;
    line-height: 1.25;
  }
  .footer-brand small {
    display: block;
    margin-top: 3px;
    font-size: 11px !important;
    line-height: 1.35;
  }
  .footer-about p {
    grid-column: 1 / -1;
    margin: 2px 0 0 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
  .footer-grid > div:not(.footer-about) {
    min-width: 0;
    padding: 12px !important;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(185,244,255,.1);
    border-radius: 14px;
  }
  .footer h3 {
    margin: 0 0 10px !important;
    font-size: 14px !important;
    line-height: 1.2;
  }
  .footer h3::before {
    width: 18px !important;
  }
  .footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }
  .footer-links a {
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 6px !important;
    color: rgba(238,250,255,.86) !important;
    background: rgba(255,255,255,.065) !important;
    border: 1px solid rgba(185,244,255,.1);
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    white-space: nowrap;
  }
  .footer-bottom {
    display: grid !important;
    gap: 10px !important;
    padding: 14px 0 16px !important;
    text-align: center;
  }
  .footer-bottom div {
    justify-content: center !important;
    gap: 7px 12px !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid > div:not(.footer-about) {
    padding: 12px 14px !important;
  }
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .footer-links a {
    min-height: 32px !important;
    font-size: 11px !important;
  }
}
