@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");

:root {
  --primary-blue: #4da8da;
  --deep-blue: #040d21;
  --bg-start: #020611;
  --bg-mid: #06132b;
  --bg-end: #0a1f42;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --glass: rgba(13, 33, 66, 0.34);
  --glass-strong: rgba(10, 25, 47, 0.84);
  --glass-line: rgba(255, 255, 255, 0.08);
  --max: 1200px;
  --header: 78px;
  --radius: 20px;
  --font: "Pretendard", Arial, Helvetica, sans-serif;
  --ref-hero-height: 420px;
  --ref-hero-height-tablet: 380px;
  --ref-hero-height-mobile: 360px;
  --ref-hero-content-top: calc(var(--header) + 44px);
  --ref-hero-content-bottom: 40px;
  --ref-hero-breadcrumb-slot: 20px;
  --ref-hero-eyebrow-slot: 16px;
  --ref-hero-title-slot: 142px;
  --ref-hero-desc-slot: 54px;
  --ref-hero-row-gap: 8px;
  --ref-hero-breadcrumb-y: -34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 48%, var(--bg-end) 100%);
  background-attachment: fixed;
  font-family: var(--font);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

button {
  font: inherit;
}

#canvas-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
}

#canvas-container canvas {
  display: block;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--primary-blue);
  border-radius: 999px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(4, 13, 33, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(2, 6, 17, 0.88);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo img {
  width: min(200px, 45vw);
  max-height: 42px;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--primary-blue);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 250px;
  padding: 14px 0;
  background: var(--glass-strong);
  border: 1px solid var(--glass-line);
  border-radius: 12px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(14px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--primary-blue);
  background: rgba(77, 168, 218, 0.14);
  padding-left: 30px;
}

.dropdown-menu .material-icons {
  color: var(--primary-blue);
  font-size: 20px;
}

.dropdown-menu small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.3;
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(77, 168, 218, 0.45);
  border-radius: 999px;
  background: rgba(77, 168, 218, 0.07);
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle.is-active {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-1px);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #38bdf8;
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #38bdf8;
}

.nav-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.menu-dim-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 25, 47, 0.42);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-dim-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-dim-overlay[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -42%;
  z-index: 1000;
  display: flex;
  width: 42%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 90px 44px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(15, 43, 92, 0.96) 0%, rgba(10, 25, 47, 0.98) 100%);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu.active {
  right: 0;
}

.side-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 1003;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.side-menu-close:hover,
.side-menu-close:focus-visible {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  color: #ffffff;
  transform: rotate(90deg);
}

.side-menu-close .material-icons-outlined {
  font-size: 24px;
}

.menu-scroll-container {
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 6px;
}

.menu-scroll-container::-webkit-scrollbar {
  width: 4px;
}

.menu-scroll-container::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.side-menu-home,
.group-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  color: #38bdf8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-menu-home {
  margin-bottom: 34px;
  color: #ffffff;
}

.side-menu-home.is-active,
.menu-group.is-active .group-title {
  color: #ffffff;
}

.group-title .material-icons-outlined,
.side-menu-home .material-icons-outlined {
  font-size: 19px;
}

.menu-group {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu.active .menu-group {
  opacity: 1;
  transform: translateY(0);
}

.side-menu.active .menu-group:nth-of-type(1) { transition-delay: 0.05s; }
.side-menu.active .menu-group:nth-of-type(2) { transition-delay: 0.10s; }
.side-menu.active .menu-group:nth-of-type(3) { transition-delay: 0.15s; }
.side-menu.active .menu-group:nth-of-type(4) { transition-delay: 0.20s; }
.side-menu.active .menu-group:nth-of-type(5) { transition-delay: 0.25s; }

.sub-links-row {
  display: flex;
  overflow: visible;
  flex-wrap: wrap;
  gap: 10px;
  padding: 2px;
}

.sub-item-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out, background 0.2s ease-in-out;
}

.sub-item-badge .material-icons-outlined {
  color: #94a3b8;
  font-size: 18px;
  transition: color 0.2s ease;
}

.sub-item-name {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.sub-item-badge:hover,
.sub-item-badge:focus-visible,
.sub-item-badge.is-active {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-2px);
}

.sub-item-badge:hover .material-icons-outlined,
.sub-item-badge:focus-visible .material-icons-outlined,
.sub-item-badge.is-active .material-icons-outlined {
  color: #38bdf8;
}

.sub-item-badge:hover .sub-item-name,
.sub-item-badge:focus-visible .sub-item-name,
.sub-item-badge.is-active .sub-item-name {
  color: #ffffff;
}

.menu-banner-space {
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 24px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.3s;
}

.side-menu.active .menu-banner-space {
  opacity: 1;
  transform: translateY(0);
}

.banner-icon {
  color: rgba(56, 189, 248, 0.4);
  font-size: 32px;
}

.banner-text {
  display: flex;
  flex-direction: column;
}

.banner-text .main-txt {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
}

.banner-text .sub-txt {
  margin-top: 2px;
  color: #64748b;
  font-size: 11px;
}

.menu-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-footer p {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 12px;
}

.mobile-panel {
  position: fixed;
  inset: var(--header) 0 0;
  z-index: 90;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px 24px 42px;
  background: rgba(2, 6, 17, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-home,
.mobile-group {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-home {
  padding: 18px 0;
  color: var(--text-light);
  font-weight: 700;
}

.mobile-group summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  color: var(--text-light);
  cursor: pointer;
  list-style: none;
}

.mobile-group summary::-webkit-details-marker {
  display: none;
}

.mobile-group summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.mobile-group .material-icons {
  color: var(--primary-blue);
  font-size: 22px;
}

.mobile-subnav {
  display: grid;
  gap: 10px;
  padding: 0 0 18px 32px;
}

.mobile-subnav a {
  color: var(--text-muted);
  font-size: 15px;
}

.mobile-subnav .mobile-parent {
  color: var(--primary-blue);
}

main {
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.section-container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.home-hero,
.page-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  gap: 40px;
  padding-top: 130px;
}

.home-hero {
  text-align: center;
}

.page-hero {
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.home-hero .hero-copy {
  margin: 0 auto;
}

.section-subtitle {
  margin: 0 0 10px;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 14vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.72);
}

.section-title {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 10vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  word-break: normal;
  background: linear-gradient(90deg, #ffffff, #8dbce8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc-text {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-hero .desc-text {
  margin-left: 0;
}

.btn,
.link-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  min-width: 0;
}

.btn {
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid rgba(77, 168, 218, 0.58);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77, 168, 218, 0.12), rgba(59, 130, 246, 0.06));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: rgba(77, 168, 218, 0.2);
  box-shadow: 0 0 30px rgba(77, 168, 218, 0.34);
  transform: translateY(-2px);
}

.home-grid,
.grid-2,
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.glass-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 220px;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(77, 168, 218, 0.16), transparent 58%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.glass-card:hover,
.glass-card:focus-visible {
  border-color: rgba(77, 168, 218, 0.36);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  transform: translateY(-8px);
}

.glass-card:hover::before,
.glass-card:focus-visible::before {
  opacity: 1;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card .material-icons {
  display: block;
  margin-bottom: 22px;
  color: var(--primary-blue);
  font-size: 46px;
}

.glass-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: normal;
}

.glass-card p {
  color: var(--text-muted);
  line-height: 1.72;
}

.card-link-block em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--primary-blue);
  font-style: normal;
  font-weight: 600;
}

.wire-orbit-card {
  display: grid;
  min-width: 0;
  min-height: 300px;
  align-content: center;
  gap: 15px;
  padding: 34px;
  border: 1px solid rgba(77, 168, 218, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(77, 168, 218, 0.07), rgba(13, 33, 66, 0.46));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wire-orbit-card .material-icons {
  margin-bottom: 10px;
  color: var(--primary-blue);
  font-size: 70px;
}

.wire-line {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0.5), rgba(77, 168, 218, 0.12));
}

.line-1 {
  width: 94%;
}

.line-2 {
  width: 78%;
}

.line-3 {
  width: 62%;
}

.line-4 {
  width: 84%;
}

.line-5 {
  width: 48%;
}

.line-6 {
  width: 72%;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.side-nav {
  min-height: 0;
  display: grid;
  gap: 12px;
}

.side-nav a,
.side-nav span {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  overflow-wrap: anywhere;
}

.detail-stack {
  display: grid;
  gap: 22px;
}

.detail-card {
  min-width: 0;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.detail-card.large {
  min-height: 360px;
}

.site-footer {
  position: relative;
  z-index: 10;
  padding: 62px 24px 34px;
  background: #020611;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
}

.footer-logo img {
  width: min(220px, 64vw);
  max-height: 42px;
  object-fit: contain;
}

.footer-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 0;
  text-align: left;
}

.footer-column > a {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 700;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  list-style: none;
}

.site-footer p {
  margin: 38px 0 0;
  color: #475569;
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .section-container {
    width: min(100% - 80px, var(--max));
    padding: 120px 0;
  }

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

@media (min-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

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

@media (min-width: 1120px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1080px) {
  .desktop-nav {
    display: block;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

@media (max-width: 719px) {
  :root {
    --header: 74px;
  }

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

  .logo img {
    width: min(190px, 52vw);
    max-height: 36px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .side-menu {
    right: -85%;
    width: 85%;
    padding: 80px 24px 32px;
  }

  .menu-group {
    margin-bottom: 28px;
  }

  .sub-item-badge {
    padding: 9px 14px;
  }

  .sub-item-name {
    font-size: 13px;
  }

  .menu-banner-space {
    height: 80px;
  }

  .mobile-panel {
    padding: 16px 22px 38px;
  }

  .mobile-subnav {
    padding-left: 18px;
  }

  .section-container {
    width: min(100% - 36px, var(--max));
    padding: 82px 0;
  }

  .home-hero,
  .page-hero {
    min-height: auto;
    padding-top: 118px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
    letter-spacing: -0.035em;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 8.4vw, 3.35rem);
    letter-spacing: -0.025em;
  }

  .section-title {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  .desc-text {
    font-size: 1rem;
    line-height: 1.72;
  }

  .glass-card {
    min-height: 190px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .glass-card:hover,
  .glass-card:focus-visible {
    transform: none;
  }

  .glass-card .material-icons {
    font-size: 40px;
  }

  .wire-orbit-card {
    min-height: 220px;
    padding: 26px 22px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
  }

  .detail-layout {
    gap: 18px;
  }

  .side-nav {
    padding: 22px;
  }

  .detail-card {
    min-height: 180px;
  }

  .detail-card.large {
    min-height: 260px;
  }

  .site-footer {
    padding: 54px 22px 32px;
  }

  .footer-map {
    gap: 18px;
    margin-top: 34px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
  }

  .logo img {
    width: min(174px, 50vw);
  }

  .section-container {
    width: min(100% - 30px, var(--max));
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.35rem);
  }

  .page-hero h1 {
    font-size: clamp(2.08rem, 9vw, 2.4rem);
  }

  .section-title {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .section-subtitle {
    letter-spacing: 0.12em;
  }

  .glass-card {
    padding: 24px 18px;
  }

  .mobile-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.ref-hero {
  min-height: auto;
  padding-top: 150px;
  padding-bottom: 54px;
  text-align: center;
}

.ref-breadcrumb {
  margin-bottom: 18px;
  color: rgba(226, 232, 240, 0.62);
  font-size: 14px;
}

.ref-breadcrumb span {
  margin: 0 7px;
  color: rgba(77, 168, 218, 0.8);
}

.ref-eyebrow {
  margin: 0 0 12px;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ref-hero h1,
.media-section h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.04;
}

.ref-hero-desc {
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.ref-subnav {
  display: inline-flex;
  max-width: 100%;
  gap: 6px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ref-subnav a {
  flex: 0 0 auto;
  padding: 10px 22px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.ref-subnav a.active {
  color: #06132b;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.16);
}

.ref-headline {
  max-width: 980px;
  margin: 0 auto 48px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.ref-title-section {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.values-hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

.values-eyebrow {
  margin-bottom: 0.8rem;
  color: #c8a84b;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.values-title {
  margin: 0 0 0.9rem;
  background: linear-gradient(135deg, #e8edf5 0%, #4a90e2 55%, #c8a84b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.values-sub {
  max-width: 620px;
  margin: 0 auto 1.2rem;
  color: rgba(226, 232, 240, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.values-divider {
  width: 60px;
  height: 3px;
  margin: 0 auto;
  border-radius: 2px;
  background: linear-gradient(90deg, #2d6fd4, #c8a84b);
}

.ref-intro {
  text-align: center;
}

.image-stack-wrapper {
  display: flex;
  height: 380px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  perspective: 1000px;
}

.image-stack {
  position: relative;
  width: min(420px, 68vw);
  height: 260px;
}

.stack-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform 0.48s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}

.stack-card .material-icons {
  color: rgba(255, 255, 255, 0.34);
  font-size: 54px;
}

.card-1 {
  z-index: 1;
  transform: translate(-34px, 12px) rotate(-4deg);
}

.card-2 {
  z-index: 2;
  transform: translate(34px, 15px) rotate(5deg);
}

.card-3 {
  z-index: 3;
  background: rgba(255, 255, 255, 0.09);
  transform: translate(0, 0) rotate(-1deg);
}

.image-stack-wrapper:hover .card-1 {
  background: rgba(255, 255, 255, 0.09);
  transform: translate(-170px, -10px) rotate(-8deg) scale(1.02);
}

.image-stack-wrapper:hover .card-2 {
  background: rgba(255, 255, 255, 0.09);
  transform: translate(170px, 15px) rotate(8deg) scale(1.02);
}

.image-stack-wrapper:hover .card-3 {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
  transform: translate(0, -15px) rotate(0deg) scale(1.08);
}

.ref-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  text-align: left;
}

.ref-text-grid p,
.ref-hq p,
.history-intro p,
.era-card p,
.cert-card p,
.cert-group li,
.core-summary,
.core-feature-copy,
.expertise-grid p {
  color: rgba(226, 232, 240, 0.76);
  line-height: 1.78;
}

.ref-hq,
.ref-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ref-hq h2,
.history-intro h2,
.cert-section h2,
.core-section h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.16;
}

.hq-image-box {
  display: block;
  min-height: 280px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: transparent;
  transition: transform 0.32s ease;
}

.hq-image-box > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.hq-image-box:hover {
  transform: translateY(-8px) scale(1.02);
}

.hq-media {
  display: grid;
  gap: 16px;
}

.hq-link-btn {
  width: fit-content;
  justify-self: end;
}

.hq-image-box .material-icons {
  color: rgba(255, 255, 255, 0.34);
  font-size: 58px;
}

.ref-cta {
  padding-top: 58px;
  padding-bottom: 80px;
}

.ref-cta p {
  margin-bottom: 4px;
  color: rgba(226, 232, 240, 0.72);
  font-weight: 700;
}

.ref-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.ref-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.btn-quiet {
  background: rgba(255, 255, 255, 0.05);
}

.history-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: center;
}

.history-stat,
.era-card,
.cert-card,
.cert-group,
.expertise-grid article,
.contact-card,
.plant-detail {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(13, 33, 66, 0.38);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.history-stat {
  padding: 34px;
}

.history-stat span {
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-stat strong {
  display: block;
  margin: 12px 0;
  font-size: 4.4rem;
  line-height: 1;
}

.era-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.era-btn {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: rgba(226, 232, 240, 0.72);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.era-btn.active {
  color: #ffffff;
  border-color: rgba(77, 168, 218, 0.48);
  background: rgba(77, 168, 218, 0.16);
}

.era-btn .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary-blue);
}

.era-btn .label {
  font-weight: 800;
}

.era-btn .sub {
  font-size: 12px;
  text-transform: uppercase;
}

.era-card {
  display: none;
  padding: 34px;
}

.era-card.active {
  display: block;
  animation: refFade 0.3s ease;
}

.era-range {
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-weight: 800;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.milestone {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.milestone span {
  color: var(--primary-blue);
  font-weight: 800;
}

.milestone h4 {
  margin: 8px 0;
}

.future-vision {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(77, 168, 218, 0.32);
  border-radius: 14px;
  background: rgba(77, 168, 218, 0.1);
}

.future-vision span {
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

body[data-page-key="certifications"] #canvas-container {
  opacity: 1;
}

body[data-page-key="certifications"] .cert-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 0;
}

body[data-page-key="certifications"] .cert-section::before,
body[data-page-key="certifications"] .cert-section::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 0;
  width: 120vw;
  pointer-events: none;
  transform: translateX(-50%);
}

body[data-page-key="certifications"] .cert-section::before {
  top: -80px;
  bottom: -90px;
  background:
    radial-gradient(circle at 20% 18%, rgba(77, 168, 218, 0.22), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(0, 230, 118, 0.12), transparent 24%),
    radial-gradient(circle at 66% 86%, rgba(77, 168, 218, 0.16), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: auto, auto, auto, 54px 54px, 54px 54px;
  opacity: 0.78;
  animation: certAmbientDrift 18s ease-in-out infinite alternate;
}

body[data-page-key="certifications"] .cert-section::after {
  top: 18px;
  height: min(760px, 80vh);
  background:
    repeating-radial-gradient(ellipse at 72% 42%, rgba(77, 168, 218, 0.16) 0 1px, transparent 2px 74px),
    radial-gradient(ellipse at 72% 42%, rgba(77, 168, 218, 0.12), transparent 54%);
  opacity: 0.55;
  animation: certRingPulse 14s ease-in-out infinite;
}

body[data-page-key="certifications"] .cert-section > * {
  position: relative;
  z-index: 1;
}

.cert-card {
  min-height: 250px;
  padding: 24px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cert-group {
  padding: 28px;
}

.cert-group h3 {
  color: #ffffff;
}

.cert-group ol {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin-bottom: 0;
}

.locations-layout {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 30px;
  align-items: stretch;
}

.location-card-list {
  display: grid;
  gap: 20px;
}

.location-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  color: #cbd5e1;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 16px;
  background-image: linear-gradient(#13223c, #13223c), linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card.active,
.location-card:hover {
  background-image: linear-gradient(#13223c, #13223c), linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 10px 30px rgba(0, 198, 255, 0.14);
  transform: translateY(-2px);
}

.location-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  font-size: 1.15rem;
}

.location-card.active .location-card-head {
  color: #38bdf8;
}

.location-card span:not(.location-card-head) {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.location-card .material-icons {
  color: #94a3b8;
  font-size: 20px;
}

.location-map {
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: #1e293b;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.core-summary,
.core-feature-copy {
  max-width: 920px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

.core-feature-grid,
.expertise-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.core-feature-grid article {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.core-feature-grid .material-icons {
  color: var(--primary-blue);
  font-size: 44px;
}

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

.expertise-grid article,
.contact-card {
  padding: 26px;
}

.supply-head {
  text-align: center;
}

.supply-head h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.supply-head p {
  color: rgba(226, 232, 240, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.supply-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 34px 0;
  color: rgba(226, 232, 240, 0.72);
}

.supply-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.legend-dot.standby {
  background: #3a6090;
}

.legend-dot.active {
  background: #00e676;
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.7);
}

.legend-dot.new {
  background: #ff8a80;
}

.supply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.supply-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(77, 168, 218, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 54% 45%, rgba(77, 168, 218, 0.2), transparent 28%),
    linear-gradient(160deg, rgba(13, 33, 66, 0.72), rgba(2, 6, 17, 0.92));
}

.supply-map::before {
  content: "KOREA";
  position: absolute;
  inset: 60px 80px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(5rem, 16vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.plant-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: #dbeafe;
  border: 1px solid rgba(77, 168, 218, 0.22);
  border-radius: 999px;
  background: rgba(13, 33, 66, 0.82);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plant-pin.active,
.plant-pin:hover {
  border-color: rgba(0, 230, 118, 0.75);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.25);
  transform: translateY(-2px) scale(1.04);
}

.plant-pin span {
  color: #00e676;
}

.pin-1 { left: 18%; top: 58%; }
.pin-2 { right: 20%; top: 34%; }
.pin-3 { right: 16%; top: 55%; }
.pin-4 { right: 21%; top: 69%; }
.pin-5 { right: 22%; bottom: 13%; }

.supply-sidebar {
  display: grid;
  gap: 18px;
}

.plant-detail {
  padding: 24px;
}

.plant-detail h3 {
  color: var(--primary-blue);
}

.plant-location {
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.92rem;
}

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

.plant-stats span {
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(226, 232, 240, 0.62);
  font-size: 11px;
  text-transform: uppercase;
}

.plant-stats strong {
  color: #ffffff;
  font-size: 1.4rem;
}

.plant-unit-grid,
.plant-card span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.supply-reactor {
  display: inline-flex;
  min-width: 54px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  color: #dbeafe;
  border-radius: 8px;
  background: #3a6090;
  font-size: 11px;
  font-weight: 800;
}

.supply-reactor.active {
  color: #002410;
  background: #00e676;
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.45);
}

.supply-reactor.new {
  color: #2d0505;
  background: #ff8a80;
}

.plant-card-list {
  display: grid;
  gap: 10px;
}

.plant-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: #ffffff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.plant-card.active,
.plant-card:hover {
  border-color: rgba(77, 168, 218, 0.52);
  background: rgba(77, 168, 218, 0.12);
}

body[data-page-key="supply-records"] .supply-section {
  padding-top: 92px;
  padding-bottom: 72px;
}

body[data-page-key="supply-records"] .supply-page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

body[data-page-key="supply-records"] .supply-head {
  margin-bottom: 28px;
  text-align: left;
}

body[data-page-key="supply-records"] .supply-head h2 {
  margin: 0;
  color: #e8f4ff;
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(100, 180, 255, 0.3);
}

body[data-page-key="supply-records"] .supply-head p {
  margin: 10px 0 0;
  color: rgba(180, 210, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page-key="supply-records"] .supply-legend {
  justify-content: flex-start;
  gap: 28px;
  margin: 0 0 28px;
}

body[data-page-key="supply-records"] .supply-legend span {
  color: rgba(200, 225, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body[data-page-key="supply-records"] .supply-legend-reactor,
body[data-page-key="supply-records"] .reactor-body {
  display: inline-flex;
  width: 26px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

body[data-page-key="supply-records"] .supply-legend-reactor svg,
body[data-page-key="supply-records"] .reactor-body svg {
  width: 26px;
  height: 30px;
}

body[data-page-key="supply-records"] .supply-legend-reactor.active svg,
body[data-page-key="supply-records"] .reactor-icon.active svg,
body[data-page-key="supply-records"] .detail-unit.active svg {
  animation: supplyGlowPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px #00e676) drop-shadow(0 0 8px rgba(0, 230, 118, 0.5));
}

body[data-page-key="supply-records"] .supply-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

body[data-page-key="supply-records"] .supply-map-column {
  display: grid;
  gap: 18px;
}

body[data-page-key="supply-records"] .supply-map-container {
  position: relative;
  order: 1;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(100, 160, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body[data-page-key="supply-records"] .supply-map-container svg {
  display: block;
  width: 100%;
  height: auto;
}

body[data-page-key="supply-records"] .supply-map-note {
  display: grid;
  order: 2;
  gap: 8px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(100, 160, 255, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 18%, rgba(77, 168, 218, 0.16), transparent 34%),
    rgba(7, 18, 38, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-page-key="supply-records"] .supply-map-note h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
}

body[data-page-key="supply-records"] .supply-map-note p {
  margin: 0;
  color: rgba(200, 225, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

body[data-page-key="supply-records"] .supply-map-shape path {
  fill: url("#supplyMapGrad");
  stroke: rgba(100, 160, 255, 0.36);
  stroke-width: 1.5;
  pointer-events: none;
}

body[data-page-key="supply-records"] .supply-map-shape path:not(:first-child) {
  opacity: 0.92;
  stroke-width: 1;
}

body[data-page-key="supply-records"] .supply-region-shade {
  fill: rgba(30, 70, 140, 0.15);
  stroke: none;
  pointer-events: none;
}

body[data-page-key="supply-records"] .supply-city-layer {
  fill: rgba(180, 210, 255, 0.5);
  font-family: Arial, sans-serif;
  font-size: 9px;
  opacity: 0.74;
  pointer-events: none;
}

body[data-page-key="supply-records"] .supply-city-layer text {
  fill: rgba(180, 210, 255, 0.58);
}

body[data-page-key="supply-records"] .supply-map-marker,
body[data-page-key="supply-records"] .supply-map-pin {
  color: #00e676;
  outline: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

body[data-page-key="supply-records"] .supply-map-marker {
  pointer-events: none;
}

body[data-page-key="supply-records"] .supply-map-pin {
  cursor: pointer;
  pointer-events: bounding-box;
}

body[data-page-key="supply-records"] .supply-pin-hit {
  fill: rgba(255, 255, 255, 0);
  stroke: none;
  pointer-events: auto;
}

body[data-page-key="supply-records"] .supply-label-hit {
  fill: rgba(255, 255, 255, 0);
  stroke: none;
  pointer-events: auto;
}

body[data-page-key="supply-records"] .supply-map-pin:hover,
body[data-page-key="supply-records"] .supply-map-pin:focus {
  filter: drop-shadow(0 0 8px #4ac8ff) drop-shadow(0 0 16px rgba(74, 200, 255, 0.45));
  transform: scale(1.3);
}

body[data-page-key="supply-records"] .supply-map-pin text {
  fill: currentColor;
  pointer-events: none;
}

body[data-page-key="supply-records"] .supply-map-marker:not(.active-pin),
body[data-page-key="supply-records"] .supply-map-pin:not(.active-pin) {
  color: rgba(180, 210, 255, 0.7);
}

body[data-page-key="supply-records"] .supply-pin-label {
  fill: rgba(180, 210, 255, 0.72) !important;
  font-size: 9px;
  font-weight: 700;
}

body[data-page-key="supply-records"] .pulse-ring {
  animation: supplyRingExpand 2s ease-out infinite;
  pointer-events: none;
}

body[data-page-key="supply-records"] .supply-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body[data-page-key="supply-records"] .supply-detail-panel {
  padding: 20px;
  border: 1px solid rgba(100, 160, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

body[data-page-key="supply-records"] .no-selection {
  padding: 26px 0;
  color: rgba(180, 210, 255, 0.42);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

body[data-page-key="supply-records"] .no-selection-mark {
  margin-bottom: 10px;
  color: rgba(74, 200, 255, 0.42);
  font-size: 1.5rem;
}

body[data-page-key="supply-records"] .supply-overview {
  padding: 0;
  color: rgba(200, 225, 255, 0.76);
  text-align: left;
}

body[data-page-key="supply-records"] .supply-overview-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(74, 200, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page-key="supply-records"] .supply-overview-kicker .no-selection-mark {
  margin: 0;
  color: #00e676;
  font-size: 0.85rem;
  line-height: 1;
}

body[data-page-key="supply-records"] .supply-overview h3 {
  margin-bottom: 8px;
}

body[data-page-key="supply-records"] .supply-overview-copy {
  margin: 0 0 14px;
  color: rgba(180, 210, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.5;
}

body[data-page-key="supply-records"] .supply-overview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

body[data-page-key="supply-records"] .supply-overview-stats span {
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid rgba(100, 160, 255, 0.18);
  border-radius: 8px;
  background: rgba(100, 160, 255, 0.07);
  color: rgba(180, 210, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

body[data-page-key="supply-records"] .supply-overview-stats .active-stat {
  border-color: rgba(0, 200, 100, 0.28);
  background: rgba(0, 200, 100, 0.1);
}

body[data-page-key="supply-records"] .supply-overview-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #cce4ff;
  font-size: 1.15rem;
  line-height: 1;
}

body[data-page-key="supply-records"] .supply-overview-stats .active-stat strong {
  color: #00e676;
}

body[data-page-key="supply-records"] .supply-overview-list {
  display: grid;
  gap: 8px;
}

body[data-page-key="supply-records"] .supply-overview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid rgba(100, 160, 255, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

body[data-page-key="supply-records"] .supply-overview-row.has-supply {
  border-color: rgba(0, 200, 100, 0.2);
  background: rgba(0, 200, 100, 0.055);
}

body[data-page-key="supply-records"] .supply-overview-row span {
  min-width: 0;
}

body[data-page-key="supply-records"] .supply-overview-row strong {
  display: block;
  color: #d8ecff;
  font-size: 0.82rem;
  line-height: 1.2;
}

body[data-page-key="supply-records"] .supply-overview-row em {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: rgba(180, 210, 255, 0.48);
  font-size: 0.63rem;
  font-style: normal;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page-key="supply-records"] .supply-overview-row b {
  color: rgba(180, 210, 255, 0.58);
  font-size: 1.2rem;
  line-height: 1;
}

body[data-page-key="supply-records"] .supply-overview-row.has-supply b {
  color: #00e676;
}

body[data-page-key="supply-records"] .supply-overview-row small {
  grid-column: 2;
  color: rgba(180, 210, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

body[data-page-key="supply-records"] .supply-overview-hint {
  margin: 14px 0 0;
  color: rgba(180, 210, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.45;
}

body[data-page-key="supply-records"] .supply-detail-panel h3 {
  margin: 0 0 8px;
  color: #4ac8ff;
  font-size: 1.02rem;
}

body[data-page-key="supply-records"] .plant-location,
body[data-page-key="supply-records"] .plant-desc {
  margin: 0 0 10px;
  color: rgba(180, 210, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.45;
}

body[data-page-key="supply-records"] .plant-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

body[data-page-key="supply-records"] .plant-stats span {
  min-width: 92px;
  padding: 9px 11px;
  border: 1px solid rgba(100, 160, 255, 0.2);
  border-radius: 8px;
  background: rgba(100, 160, 255, 0.08);
  color: rgba(180, 210, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page-key="supply-records"] .plant-stats .active-stat {
  border-color: rgba(0, 200, 100, 0.25);
  background: rgba(0, 200, 100, 0.1);
}

body[data-page-key="supply-records"] .plant-stats .new-stat {
  border-color: rgba(255, 107, 107, 0.25);
  background: rgba(255, 107, 107, 0.1);
}

body[data-page-key="supply-records"] .plant-stats strong {
  display: block;
  color: #cce4ff;
  font-size: 1.22rem;
  line-height: 1.1;
}

body[data-page-key="supply-records"] .plant-stats .active-stat strong {
  color: #00e676;
}

body[data-page-key="supply-records"] .plant-stats .new-stat strong {
  color: #ff8a80;
}

body[data-page-key="supply-records"] .plant-unit-grid,
body[data-page-key="supply-records"] .units-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page-key="supply-records"] .detail-unit,
body[data-page-key="supply-records"] .reactor-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

body[data-page-key="supply-records"] .detail-unit {
  min-width: 58px;
  padding: 8px 7px;
  border: 1px solid rgba(100, 160, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body[data-page-key="supply-records"] .detail-unit:hover {
  border-color: rgba(100, 180, 255, 0.4);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

body[data-page-key="supply-records"] .unit-label,
body[data-page-key="supply-records"] .unit-name {
  color: rgba(180, 210, 255, 0.7);
  font-size: 0.64rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

body[data-page-key="supply-records"] .unit-label.highlight,
body[data-page-key="supply-records"] .unit-name.new-unit {
  color: #ff8a80;
  font-weight: 800;
}

body[data-page-key="supply-records"] .unit-status {
  color: rgba(180, 210, 255, 0.42);
  font-size: 0.6rem;
}

body[data-page-key="supply-records"] .detail-unit.active .unit-status {
  color: #00e676;
}

body[data-page-key="supply-records"] .detail-unit.new .unit-status {
  color: #ff8a80;
}

body[data-page-key="supply-records"] .plant-card-list {
  display: grid;
  gap: 12px;
}

body[data-page-key="supply-records"] .plant-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 17px 18px;
  color: #ffffff;
  text-align: left;
  border: 1px solid rgba(100, 160, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

body[data-page-key="supply-records"] .plant-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #4a9eff, #00d4ff);
  opacity: 0;
  transition: opacity 0.24s ease;
}

body[data-page-key="supply-records"] .plant-card strong {
  color: #cce4ff;
  font-size: 1rem;
}

body[data-page-key="supply-records"] .plant-card:hover,
body[data-page-key="supply-records"] .plant-card.active {
  border-color: rgba(100, 180, 255, 0.52);
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}

body[data-page-key="supply-records"] .plant-card:hover::before,
body[data-page-key="supply-records"] .plant-card.active::before {
  opacity: 1;
}

body[data-page-key="supply-records"] .supply-tooltip {
  position: fixed;
  z-index: 1000;
  max-width: 230px;
  padding: 13px 16px;
  color: #cce4ff;
  border: 1px solid rgba(100, 180, 255, 0.4);
  border-radius: 10px;
  background: rgba(8, 20, 45, 0.97);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

body[data-page-key="supply-records"] .supply-tooltip.visible {
  opacity: 1;
}

body[data-page-key="supply-records"] .supply-tooltip h4 {
  margin: 0 0 6px;
  color: #4ac8ff;
  font-size: 0.9rem;
}

body[data-page-key="supply-records"] .supply-tooltip p {
  margin: 0 0 5px;
  color: rgba(180, 210, 255, 0.8);
  line-height: 1.4;
}

body[data-page-key="supply-records"] .status-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border: 1px solid rgba(100, 130, 180, 0.25);
  border-radius: 4px;
  color: rgba(180, 210, 255, 0.65);
  background: rgba(100, 130, 180, 0.15);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body[data-page-key="supply-records"] .status-badge.active {
  color: #00e676;
  border-color: rgba(0, 200, 100, 0.4);
  background: rgba(0, 200, 100, 0.2);
}

@keyframes supplyGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 3px #00e676) drop-shadow(0 0 6px rgba(0, 230, 118, 0.4));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 8px #00e676) drop-shadow(0 0 16px rgba(0, 230, 118, 0.7));
    opacity: 0.86;
  }
}

@keyframes supplyRingExpand {
  0% {
    opacity: 0.78;
  }
  50% {
    opacity: 0.28;
  }
  100% {
    opacity: 0.78;
  }
}

.media-section {
  padding-top: 150px;
}

.media-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.45);
}

.media-tab,
.media-view-toggle button {
  border: 0;
  cursor: pointer;
}

.media-tab {
  height: 40px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
}

.media-tab.active {
  color: #0d1b2a;
  background: #eef5fc;
  box-shadow: 0 4px 20px rgba(238, 245, 252, 0.24);
}

.media-right-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.media-search {
  position: relative;
  display: flex;
  align-items: center;
}

.media-search .material-icons {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 20px;
}

.media-search input {
  width: min(280px, 52vw);
  height: 40px;
  padding: 0 18px 0 44px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
}

.media-view-toggle {
  display: inline-flex;
  gap: 4px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.media-view-toggle button {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

.media-view-toggle button.active {
  color: #ffffff;
}

.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
}

.media-list {
  animation: refFade 0.3s ease;
}

.media-item {
  color: inherit;
  text-decoration: none;
}

.view-list .media-item {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.view-grid .media-item {
  display: grid;
  gap: 18px;
}

.media-thumb {
  flex: 0 0 320px;
  width: 320px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035) center / cover no-repeat;
}

.view-grid .media-thumb {
  width: 100%;
  flex-basis: auto;
}

.media-text {
  display: grid;
  gap: 10px;
}

.media-meta {
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

.magazine-meta {
  color: #8ab4f8;
}

.media-text strong {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.42;
}

.media-text span:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.media-status,
.media-empty {
  padding: 22px;
  margin-bottom: 18px;
  color: rgba(226, 232, 240, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.media-empty {
  text-align: center;
}

.media-detail-page {
  max-width: 980px;
}

.media-detail-meta {
  margin-bottom: 14px;
  color: var(--primary-blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.media-detail-page h2 {
  margin-bottom: 32px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.16;
}

.media-detail-image {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.media-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

.media-detail-body {
  color: rgba(226, 232, 240, 0.78);
  font-size: 1.05rem;
  line-height: 1.85;
}

.media-detail-body p {
  margin-bottom: 1.2em;
}

.media-detail-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 34px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.contact-card a {
  color: var(--primary-blue);
}

.ref-empty {
  padding-top: 40px;
}

@keyframes refFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes certAmbientDrift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    transform: translateX(-50%) translate3d(-18px, 0, 0) scale(1);
  }
  50% {
    background-position: 0 0, 0 0, 0 0, 34px -22px, -28px 30px;
    transform: translateX(-50%) translate3d(16px, -20px, 0) scale(1.025);
  }
  100% {
    background-position: 0 0, 0 0, 0 0, 68px -44px, -56px 60px;
    transform: translateX(-50%) translate3d(-10px, 14px, 0) scale(1.04);
  }
}

@keyframes certRingPulse {
  0% {
    opacity: 0.34;
    transform: translateX(-50%) scale(0.96) rotate(-1deg);
  }
  50% {
    opacity: 0.62;
    transform: translateX(-50%) scale(1.03) rotate(1.5deg);
  }
  100% {
    opacity: 0.42;
    transform: translateX(-50%) scale(1.08) rotate(0deg);
  }
}

@media (max-width: 900px) {
  .ref-text-grid,
  .ref-hq,
  .ref-cta,
  .history-intro,
  .locations-layout,
  .supply-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ref-cta-actions {
    justify-content: flex-start;
  }

  .era-nav,
  .cert-card-grid,
  .core-feature-grid,
  .expertise-grid,
  .view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supply-map {
    min-height: 500px;
  }

  body[data-page-key="supply-records"] .supply-main-layout {
    grid-template-columns: 1fr;
  }

  body[data-page-key="supply-records"] .supply-sidebar {
    order: 2;
  }

  body[data-page-key="supply-records"] .supply-map-container {
    order: 1;
  }

  body[data-page-key="supply-records"] .supply-map-column {
    order: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page-key="certifications"] .cert-section::before,
  body[data-page-key="certifications"] .cert-section::after {
    animation: none;
  }
}

@media (max-width: 719px) {
  .ref-hero,
  .media-section {
    padding-top: 118px;
  }

  .ref-hero h1,
  .media-section h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .ref-subnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
    border-radius: 18px;
  }

  .ref-subnav a {
    min-width: 0;
    padding: 10px 16px;
    text-align: center;
    white-space: normal;
    font-size: 13px;
  }

  .image-stack-wrapper {
    height: 260px;
    margin-bottom: 34px;
  }

  .image-stack {
    width: min(280px, 76vw);
    height: 180px;
  }

  .image-stack-wrapper:hover .card-1 {
    transform: translate(-58px, -6px) rotate(-8deg) scale(0.98);
  }

  .image-stack-wrapper:hover .card-2 {
    transform: translate(58px, 8px) rotate(8deg) scale(0.98);
  }

  .image-stack-wrapper:hover .card-3 {
    transform: translate(0, -12px) rotate(0deg) scale(1.04);
  }

  .milestones,
  .era-nav,
  .cert-card-grid,
  .core-feature-grid,
  .expertise-grid,
  .view-grid {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 340px;
  }

  .supply-map {
    min-height: 430px;
  }

  .plant-pin {
    padding: 7px 9px;
    font-size: 12px;
  }

  .pin-1 { left: 8%; top: 58%; }
  .pin-2 { right: 8%; top: 30%; }
  .pin-3 { right: 7%; top: 51%; }
  .pin-4 { right: 10%; top: 66%; }
  .pin-5 { right: 12%; bottom: 12%; }

  .plant-stats {
    grid-template-columns: 1fr;
  }

  body[data-page-key="supply-records"] .supply-section {
    padding-top: 62px;
  }

  body[data-page-key="supply-records"] .supply-map-container {
    padding: 14px;
    border-radius: 14px;
  }

  body[data-page-key="supply-records"] .supply-legend {
    gap: 14px;
  }

  body[data-page-key="supply-records"] .reactor-body,
  body[data-page-key="supply-records"] .supply-legend-reactor {
    width: 22px;
    height: 26px;
  }

  body[data-page-key="supply-records"] .reactor-body svg,
  body[data-page-key="supply-records"] .supply-legend-reactor svg {
    width: 22px;
    height: 26px;
  }

  body[data-page-key="supply-records"] .plant-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  body[data-page-key="supply-records"] .supply-tooltip {
    display: none;
  }

  .media-controls,
  .media-right-controls,
  .view-list .media-item {
    align-items: stretch;
    flex-direction: column;
  }

  .media-right-controls {
    width: 100%;
  }

  .media-search input {
    width: 100%;
  }

  .media-thumb {
    width: 100%;
    flex-basis: auto;
  }
}

.ref-hero {
  padding-top: 132px;
  padding-bottom: 46px;
  text-align: left;
}

.ref-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 33, 66, 0.62), rgba(2, 6, 17, 0.72));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ref-hero-copy {
  min-width: 0;
  align-self: center;
}

.ref-hero-desc {
  margin-right: 0;
  margin-left: 0;
}

.ref-hero h1,
.media-section h1 {
  max-width: 760px;
}

.ref-hero .ref-subnav {
  justify-content: flex-start;
}

.image-slot {
  position: relative;
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 78% 18%, rgba(77, 168, 218, 0.22), transparent 36%);
}

.image-slot::before {
  display: none;
}

.image-slot > img,
.ref-hero-image > img,
.ref-cta-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-slot .material-icons {
  color: rgba(226, 232, 240, 0.42);
  font-size: 54px;
}

.ref-hero-media .image-slot {
  height: 100%;
  min-height: 272px;
}

.ref-cta {
  display: block;
  padding-top: 70px;
  padding-bottom: 92px;
  border-top: 0;
}

.ref-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.75fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(77, 168, 218, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.92), rgba(19, 34, 60, 0.78));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.ref-cta-copy p {
  margin-bottom: 4px;
}

.ref-cta-media .image-slot {
  min-height: 160px;
}

.image-stack-wrapper {
  height: 350px;
  margin-bottom: 54px;
}

.image-stack {
  width: min(540px, 72vw);
  height: 300px;
}

.stack-card {
  border-color: rgba(255, 255, 255, 0.18);
}

.stack-card .image-slot {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.035);
}

.stack-card .image-slot::before {
  inset: 18px;
}

.card-1 {
  transform: translate(-72px, 22px) rotate(-3deg);
}

.card-2 {
  transform: translate(72px, 22px) rotate(4deg);
}

.card-3 {
  transform: translate(0, 0) rotate(0deg);
}

.image-stack-wrapper:hover .card-1 {
  transform: translate(-122px, 12px) rotate(-6deg) scale(1.01);
}

.image-stack-wrapper:hover .card-2 {
  transform: translate(122px, 16px) rotate(6deg) scale(1.01);
}

.image-stack-wrapper:hover .card-3 {
  transform: translate(0, -18px) rotate(0deg) scale(1.045);
}

.timeline-progress {
  height: 4px;
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.timeline-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-blue), #00e676);
  transition: width 0.38s ease;
}

.era-btn,
.milestone,
.future-vision,
.history-stat {
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.era-btn:hover,
.milestone:hover,
.history-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 168, 218, 0.38);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-item.is-visible,
.era-card.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.cert-card {
  display: grid;
  gap: 20px;
  align-content: start;
}

.cert-image-slot .image-slot {
  min-height: 156px;
  border-radius: 14px;
}

.cert-image-slot .image-slot .material-icons {
  font-size: 42px;
}

.locations-layout {
  align-items: stretch;
}

.location-card-list {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.location-card {
  min-height: 0;
}

.location-map,
.location-map iframe {
  min-height: 560px;
}

.media-section {
  padding-top: 70px;
}

@media (max-width: 980px) {
  .ref-hero-grid,
  .ref-cta-box {
    grid-template-columns: 1fr;
  }

  .ref-cta-actions {
    justify-content: flex-start;
  }

  .ref-hero-media .image-slot {
    min-height: 240px;
  }
}

@media (max-width: 719px) {
  .ref-hero {
    padding-top: 104px;
    padding-bottom: 30px;
  }

  .ref-hero-grid {
    gap: 22px;
    padding: 22px;
    border-radius: 20px;
  }

  .ref-breadcrumb {
    font-size: 13px;
  }

  .ref-hero-media .image-slot {
    min-height: 190px;
  }

  .ref-cta {
    padding-top: 44px;
    padding-bottom: 62px;
  }

  .ref-cta-box {
    gap: 22px;
    border-radius: 20px;
  }

  .ref-cta-media .image-slot {
    min-height: 140px;
  }

  .image-stack-wrapper {
    height: 250px;
  }

  .image-stack {
    width: min(300px, 74vw);
    height: 190px;
  }

  .card-1 {
    transform: translate(-34px, 18px) rotate(-3deg);
  }

  .card-2 {
    transform: translate(34px, 18px) rotate(4deg);
  }

  .image-stack-wrapper:hover .card-1 {
    transform: translate(-48px, 12px) rotate(-5deg) scale(1);
  }

  .image-stack-wrapper:hover .card-2 {
    transform: translate(48px, 12px) rotate(5deg) scale(1);
  }

  .location-card-list {
    grid-template-rows: none;
  }

  .location-map,
  .location-map iframe {
    min-height: 440px;
  }
}

.ref-hero {
  position: relative;
  width: 100%;
  height: var(--ref-hero-height);
  min-height: var(--ref-hero-height);
  max-height: var(--ref-hero-height);
  display: grid;
  align-items: stretch;
  padding: var(--ref-hero-content-top) 0 var(--ref-hero-content-bottom);
  overflow: hidden;
  text-align: left;
}

.ref-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.88) 0%, rgba(2, 6, 17, 0.66) 38%, rgba(2, 6, 17, 0.22) 100%),
    radial-gradient(circle at 74% 38%, rgba(77, 168, 218, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(25, 48, 78, 0.88), rgba(7, 17, 34, 0.94));
}

.ref-hero-image > img {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.ref-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
  opacity: 0.7;
}

.ref-hero-image .material-icons {
  position: absolute;
  right: clamp(36px, 10vw, 160px);
  color: rgba(226, 232, 240, 0.2);
  font-size: clamp(5rem, 12vw, 12rem);
}

.ref-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  grid-template-rows:
    var(--ref-hero-breadcrumb-slot)
    var(--ref-hero-eyebrow-slot)
    var(--ref-hero-title-slot)
    var(--ref-hero-desc-slot);
  align-content: start;
  gap: var(--ref-hero-row-gap);
  padding-top: 0;
  padding-bottom: 0;
  min-width: 0;
  overflow: visible;
}

.ref-hero-content .ref-breadcrumb,
.ref-hero-content .ref-eyebrow,
.ref-hero-content h1,
.ref-hero-content .ref-hero-desc {
  max-width: min(100%, 920px);
  min-width: 0;
}

.ref-hero-content .ref-breadcrumb {
  height: var(--ref-hero-breadcrumb-slot);
  margin: 0;
  overflow: hidden;
  line-height: var(--ref-hero-breadcrumb-slot);
  text-overflow: ellipsis;
  transform: translateY(var(--ref-hero-breadcrumb-y));
  white-space: nowrap;
}

.ref-hero-content .ref-eyebrow {
  height: var(--ref-hero-eyebrow-slot);
  margin: 0;
  line-height: var(--ref-hero-eyebrow-slot);
}

.ref-hero-content h1 {
  display: -webkit-box;
  height: var(--ref-hero-title-slot);
  margin: 0;
  overflow: hidden;
  font-size: clamp(3rem, 5.4vw, 4.35rem);
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ref-hero-content .ref-hero-desc {
  display: -webkit-box;
  height: var(--ref-hero-desc-slot);
  max-height: var(--ref-hero-desc-slot);
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.55;
}

.ref-subnav-area {
  padding-top: 34px;
  padding-bottom: 36px;
  text-align: center;
}

.ref-hero .ref-subnav,
.ref-hero-grid,
.ref-hero-media {
  display: none;
}

.ref-subnav {
  max-width: min(100%, 720px);
}

.ref-cta {
  display: block;
  padding-top: 72px;
  padding-bottom: 92px;
  border-top: 0;
}

.ref-cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 260px;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #0b1729;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.42);
}

.ref-cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(5, 13, 29, 0.9), rgba(5, 13, 29, 0.66)),
    radial-gradient(circle at 82% 46%, rgba(77, 168, 218, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(28, 52, 83, 0.9), rgba(6, 15, 31, 0.95));
}

.ref-cta-image > img {
  position: absolute;
  inset: 0;
  opacity: 0.36;
}

.ref-cta-image::before {
  display: none;
}

.ref-cta-image .material-icons {
  color: rgba(226, 232, 240, 0.22);
  font-size: clamp(4rem, 10vw, 9rem);
}

.ref-cta-copy,
.ref-cta-actions {
  position: relative;
  z-index: 1;
}

.ref-cta-copy h2 {
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

.ref-cta-actions {
  display: flex;
  width: min(260px, 100%);
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.ref-cta-actions .btn {
  width: 100%;
  justify-content: space-between;
}

.image-stack-wrapper {
  height: 390px;
  margin-bottom: 56px;
}

.image-stack {
  width: min(660px, 76vw);
  height: 310px;
}

.stack-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.stack-card .image-slot {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.035);
}

.card-1 {
  z-index: 1;
  transform: translate(-205px, 48px) rotate(0deg);
}

.card-2 {
  z-index: 2;
  transform: translate(0, 8px) rotate(0deg);
}

.card-3 {
  z-index: 3;
  transform: translate(0, 56px) rotate(0deg);
}

.card-4 {
  z-index: 1;
  transform: translate(205px, 50px) rotate(7deg);
}

.image-stack-wrapper:hover .card-1 {
  transform: translate(-230px, 42px) rotate(-2deg);
}

.image-stack-wrapper:hover .card-2 {
  transform: translate(0, -4px) rotate(0deg);
}

.image-stack-wrapper:hover .card-3 {
  transform: translate(0, 48px) rotate(0deg) scale(1.03);
}

.image-stack-wrapper:hover .card-4 {
  transform: translate(230px, 42px) rotate(9deg);
}

.history-timeline {
  position: relative;
}

.history-timeline::before {
  content: "";
  position: absolute;
  inset: 92px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 168, 218, 0.7), transparent);
}

.timeline-progress {
  position: relative;
  height: 5px;
  margin-bottom: 26px;
}

.era-card.active {
  border-color: rgba(77, 168, 218, 0.34);
  background:
    radial-gradient(circle at 90% 8%, rgba(77, 168, 218, 0.18), transparent 30%),
    rgba(13, 33, 66, 0.42);
}

.cert-card-grid {
  align-items: stretch;
}

body[data-page-key="certifications"] .cert-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

body[data-page-key="certifications"] .cert-card {
  display: grid;
  height: 100%;
  min-height: 520px;
  grid-template-rows: 330px 1fr;
  align-content: start;
  gap: 18px;
}

body[data-page-key="certifications"] .cert-image-slot {
  display: grid;
  place-items: center;
  min-height: 0;
}

body[data-page-key="certifications"] .cert-image-slot .image-slot {
  width: min(100%, 218px);
  min-height: 0;
  aspect-ratio: 210 / 297;
  margin: 0 auto;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

body[data-page-key="certifications"] .cert-card p {
  margin: 0;
}

@media (max-width: 980px) {
  body[data-page-key="certifications"] .cert-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  body[data-page-key="certifications"] .cert-card-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  body[data-page-key="certifications"] .cert-card {
    min-height: auto;
    grid-template-rows: auto auto;
  }
}

body[data-page-key="certifications"] .cert-image-slot .image-slot img,
body[data-page-key="certifications"] .cert-group-image .image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.cert-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.cert-logo-slot {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #dbeafe;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
  font-weight: 800;
}

.cert-group-body {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body[data-page-key="certifications"] .cert-group-image .image-slot {
  width: min(100%, 220px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.core-feature-grid article {
  min-height: 300px;
  align-content: stretch;
}

.core-feature-grid .image-slot {
  min-height: 160px;
  margin-bottom: 4px;
}

.core-expertise-title {
  margin: 72px 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.expertise-grid article {
  display: grid;
  gap: 18px;
  align-content: start;
}

.expertise-grid .image-slot {
  min-height: 180px;
}

.core-platform {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: center;
  margin: 42px 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(77, 168, 218, 0.2);
  border-radius: 22px;
  background: rgba(13, 33, 66, 0.42);
}

.core-platform h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.core-platform .image-slot {
  min-height: 270px;
}

.ref-cta-image .material-icons {
  font-size: clamp(7rem, 16vw, 12rem);
  opacity: 0.12;
}

.location-map,
.location-map iframe {
  min-height: 620px;
}

@media (max-width: 980px) {
  .ref-hero {
    height: var(--ref-hero-height-tablet);
    min-height: var(--ref-hero-height-tablet);
    max-height: var(--ref-hero-height-tablet);
    --ref-hero-content-top: calc(var(--header) + 38px);
    --ref-hero-content-bottom: 34px;
    --ref-hero-title-slot: 116px;
    --ref-hero-desc-slot: 50px;
    --ref-hero-breadcrumb-y: -28px;
  }

  .ref-cta-box,
  .core-platform {
    grid-template-columns: 1fr;
  }

  .ref-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 719px) {
  .ref-hero {
    height: var(--ref-hero-height-mobile);
    min-height: var(--ref-hero-height-mobile);
    max-height: var(--ref-hero-height-mobile);
    --ref-hero-content-top: calc(var(--header) + 28px);
    --ref-hero-content-bottom: 30px;
    --ref-hero-breadcrumb-slot: 18px;
    --ref-hero-eyebrow-slot: 14px;
    --ref-hero-title-slot: 86px;
    --ref-hero-desc-slot: 48px;
    --ref-hero-row-gap: 6px;
    --ref-hero-breadcrumb-y: -20px;
    padding: var(--ref-hero-content-top) 0 var(--ref-hero-content-bottom);
  }

  .ref-hero-content h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
  }

  .ref-subnav-area {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .ref-cta-box {
    min-height: 360px;
    grid-template-columns: 1fr;
  }

  .ref-cta-actions {
    display: grid;
    width: 100%;
  }

  .image-stack-wrapper {
    height: 280px;
  }

  .image-stack {
    width: min(335px, 78vw);
    height: 210px;
  }

  .card-1 {
    transform: translate(-64px, 44px) rotate(0deg);
  }

  .card-2 {
    transform: translate(0, 10px) rotate(0deg);
  }

  .card-3 {
    transform: translate(0, 54px) rotate(0deg);
  }

  .card-4 {
    transform: translate(64px, 46px) rotate(6deg);
  }

  .image-stack-wrapper:hover .card-1 {
    transform: translate(-76px, 40px) rotate(-2deg);
  }

  .image-stack-wrapper:hover .card-2 {
    transform: translate(0, 2px) rotate(0deg);
  }

  .image-stack-wrapper:hover .card-3 {
    transform: translate(0, 50px) rotate(0deg) scale(1.02);
  }

  .image-stack-wrapper:hover .card-4 {
    transform: translate(76px, 40px) rotate(8deg);
  }

  .cert-card {
    min-height: auto;
    grid-template-rows: auto;
  }

  .cert-group-body {
    grid-template-columns: 1fr;
  }

  .core-platform .image-slot {
    min-height: 190px;
  }

  .expertise-grid .image-slot,
  .cert-group-image .image-slot {
    min-height: 190px;
  }

  .location-map,
  .location-map iframe {
    min-height: 500px;
  }
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] {
  height: 390px;
  overflow: visible;
  isolation: isolate;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .image-stack {
  --fan-card-width: clamp(190px, 21vw, 260px);
  --fan-open-wide-offset: clamp(310px, 36vw, 420px);
  --fan-open-mid-offset: clamp(105px, 12vw, 140px);
  width: min(660px, 76vw);
  max-width: 100%;
  height: 310px;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .stack-card {
  inset: 0;
  width: 100%;
  height: 100%;
  transition:
    left 0.48s cubic-bezier(0.25, 0.8, 0.25, 1),
    width 0.48s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.48s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
  will-change: transform;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .card-1 {
  z-index: 1;
  transform: translate(-205px, 48px) rotate(0deg);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .card-2 {
  z-index: 2;
  transform: translate(0, 8px) rotate(0deg);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .card-3 {
  z-index: 3;
  transform: translate(0, 56px) rotate(0deg);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .card-4 {
  z-index: 1;
  transform: translate(205px, 50px) rotate(7deg);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"]:hover .stack-card {
    left: 50%;
    width: var(--fan-card-width);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"]:hover .card-1 {
    z-index: 4;
    transform: translate(calc(-50% - var(--fan-open-wide-offset)), 8px) rotate(-4deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"]:hover .card-2 {
    z-index: 5;
    transform: translate(calc(-50% - var(--fan-open-mid-offset)), 30px) rotate(-1.4deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"]:hover .card-3 {
    z-index: 5;
    transform: translate(calc(-50% + var(--fan-open-mid-offset)), 30px) rotate(1.4deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"]:hover .card-4 {
    z-index: 4;
    transform: translate(calc(-50% + var(--fan-open-wide-offset)), 8px) rotate(4deg);
  }
}

@media (max-width: 1180px), (hover: none) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] {
    height: auto;
    margin-bottom: 42px;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .image-stack {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .stack-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }
}

@media (max-width: 520px) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="fan-out"] .image-stack {
    grid-template-columns: 1fr;
  }
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] {
  --deck-x: 50%;
  --deck-y: 50%;
  --tilt-x: 0;
  --tilt-y: 0;
  height: 470px;
  margin-bottom: 70px;
  overflow: visible;
  isolation: isolate;
  perspective: 1300px;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]::before {
  content: "";
  position: absolute;
  inset: -70px -4vw;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--deck-x) var(--deck-y), rgba(77, 168, 218, 0.24), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(0, 230, 118, 0.1), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover::before,
body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged::before {
  opacity: 1;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .image-stack {
  position: relative;
  z-index: 1;
  width: min(760px, 76vw);
  height: 340px;
  transform:
    rotateX(calc(var(--tilt-y) * -0.8deg))
    rotateY(calc(var(--tilt-x) * 0.8deg));
  transform-style: flat;
  transition: transform 0.32s ease, width 0.32s ease;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .stack-card {
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-style: flat;
  backface-visibility: hidden;
  cursor: pointer;
  transition:
    left 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform, width, left;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.2) 45%, transparent 58%),
    radial-gradient(circle at var(--deck-x) var(--deck-y), rgba(255, 255, 255, 0.18), transparent 36%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 0.3s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .stack-card::after,
body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .stack-card::after {
  opacity: 0.7;
  transform: translateX(22%);
}

/* Revert note: restore the old translateZ values and preserve-3d above if the deeper 3D card penetration effect is wanted again. */
body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .card-1 {
  z-index: 1;
  transform: translate3d(-238px, 72px, 0) rotateZ(-9deg) rotateY(-10deg) rotateX(2deg);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .card-2 {
  z-index: 4;
  transform: translate3d(-72px, -6px, 0) rotateZ(3.5deg) rotateY(-4deg) rotateX(-1deg);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .card-3 {
  z-index: 3;
  transform: translate3d(36px, 64px, 0) rotateZ(-4deg) rotateY(5deg) rotateX(1.5deg);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .card-4 {
  z-index: 2;
  transform: translate3d(226px, 30px, 0) rotateZ(10deg) rotateY(11deg) rotateX(-2deg);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .stack-card,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .stack-card {
    left: 50%;
    width: clamp(220px, 22vw, 290px);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-1,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-1 {
    z-index: 4;
    transform: translate3d(calc(-50% - clamp(330px, 36vw, 430px)), 18px, 0) rotateZ(-7deg) rotateY(12deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-2,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-2 {
    z-index: 6;
    transform: translate3d(calc(-50% - clamp(112px, 12vw, 150px)), 48px, 0) rotateZ(-2deg) rotateY(5deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-3,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-3 {
    z-index: 7;
    transform: translate3d(calc(-50% + clamp(112px, 12vw, 150px)), 48px, 0) rotateZ(2deg) rotateY(-5deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-4,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-4 {
    z-index: 4;
    transform: translate3d(calc(-50% + clamp(330px, 36vw, 430px)), 18px, 0) rotateZ(7deg) rotateY(-12deg);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .stack-card.is-active {
    z-index: 20;
    border-color: rgba(77, 168, 218, 0.68);
    box-shadow:
      0 34px 80px rgba(0, 0, 0, 0.52),
      0 0 0 1px rgba(77, 168, 218, 0.28),
      0 0 54px rgba(77, 168, 218, 0.16);
    filter: brightness(1.08) saturate(1.08);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .stack-card.is-muted {
    opacity: 0.58;
    filter: brightness(0.58) saturate(0.72);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-1.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-1.is-active {
    transform: translate3d(calc(-50% - clamp(330px, 36vw, 430px)), -4px, 0) rotateZ(-4deg) rotateY(8deg) scale(1.08);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-2.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-2.is-active {
    transform: translate3d(calc(-50% - clamp(112px, 12vw, 150px)), 20px, 0) rotateZ(-1deg) rotateY(3deg) scale(1.08);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-3.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-3.is-active {
    transform: translate3d(calc(-50% + clamp(112px, 12vw, 150px)), 20px, 0) rotateZ(1deg) rotateY(-3deg) scale(1.08);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-4.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-4.is-active {
    transform: translate3d(calc(-50% + clamp(330px, 36vw, 430px)), -4px, 0) rotateZ(4deg) rotateY(-8deg) scale(1.08);
  }
}

@media (max-width: 1180px), (hover: none) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] {
    height: auto;
    margin-bottom: 42px;
    perspective: none;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]::before {
    display: none;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .image-stack {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    transform: none;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .stack-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .stack-card,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .stack-card {
    left: auto;
    width: 100%;
    transform: none;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .stack-card.is-active {
    border-color: rgba(77, 168, 218, 0.68);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    transform: translateY(-4px);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-1.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-2.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-3.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"]:hover .card-4.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-1.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-2.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-3.is-active,
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"].is-engaged .card-4.is-active {
    transform: translateY(-4px);
  }
}

@media (max-width: 520px) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="kinetic-deck"] .image-stack {
    grid-template-columns: 1fr;
  }
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] {
  --card-width: clamp(520px, 50vw, 860px);
  --card-ratio: 16 / 9;
  --card-max-height: clamp(292px, 28.125vw, 484px);
  min-height: calc(var(--card-max-height) + 92px);
  margin: 22px auto 72px;
  display: grid;
  place-items: center;
  gap: 22px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .image-stack {
  position: relative;
  width: var(--card-width);
  height: auto;
  min-height: var(--card-max-height);
  overflow: visible;
  touch-action: pan-y;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .swiper-wrapper {
  align-items: center;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: var(--card-ratio);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(140, 190, 255, 0.18);
  transition:
    opacity 0.32s ease,
    filter 0.32s ease,
    box-shadow 0.32s ease;
  will-change: opacity, filter;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card.swiper-slide-active,
body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card.is-active {
  opacity: 1;
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(77, 168, 218, 0.46),
    0 0 60px rgba(77, 168, 218, 0.2);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(2, 14, 32, 0.62)),
    radial-gradient(circle at 70% 10%, rgba(77, 168, 218, 0.2), transparent 34%);
  opacity: 0.82;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.24) 46%, transparent 58%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 0.32s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card:hover::after,
body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card:focus-visible::after {
  opacity: 0.75;
  transform: translateX(38%);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card .image-slot {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: inherit;
  border: 0;
  border-radius: inherit;
  background: rgba(7, 18, 38, 0.78);
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card .image-slot::before {
  display: none;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card .image-slot img {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  justify-self: stretch;
  align-self: stretch;
  object-fit: cover;
  object-position: center center;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"].is-dragging .stack-card {
  transition-duration: 0.18s;
}

body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"]:not(.is-swiper-ready) .stack-card {
  position: absolute;
  inset: auto 0 auto 0;
  top: 50%;
  transform:
    translateX(calc(var(--fallback-offset, 0) * 56px))
    translateY(calc(-50% + 18px))
    rotateZ(calc(var(--fallback-offset, 0) * -5deg));
}

body[data-page-key="company-overview"] .card-effect-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

body[data-page-key="company-overview"] .card-effect-btn {
  inline-size: 42px;
  block-size: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(140, 190, 255, 0.28);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  line-height: 1;
  color: #dcecff;
  background: rgba(9, 24, 50, 0.72);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body[data-page-key="company-overview"] .card-effect-btn:hover,
body[data-page-key="company-overview"] .card-effect-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(77, 168, 218, 0.74);
  background: rgba(18, 48, 88, 0.88);
}

body[data-page-key="company-overview"] .card-effect-btn .material-icons {
  font-size: 22px;
}

body[data-page-key="company-overview"] .card-effect-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

body[data-page-key="company-overview"] .card-effect-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(180, 210, 255, 0.36);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

body[data-page-key="company-overview"] .card-effect-dot.active {
  width: 24px;
  background: #4ac8ff;
}

@media (max-width: 900px) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] {
    --card-width: min(78vw, 360px);
    --card-max-height: calc(var(--card-width) / 2.392);
    min-height: calc(var(--card-max-height) + 78px);
    margin-bottom: 46px;
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .image-stack {
    width: var(--card-width);
  }

  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] .stack-card {
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  body[data-page-key="company-overview"] .image-stack-wrapper[data-stack-interaction="swiper-cards"] {
    --card-width: min(86vw, 320px);
    --card-max-height: calc(var(--card-width) / 2.392);
  }

  body[data-page-key="company-overview"] .card-effect-controls {
    gap: 10px;
  }

  body[data-page-key="company-overview"] .card-effect-btn {
    inline-size: 38px;
    block-size: 38px;
    min-width: 38px;
    min-height: 38px;
    flex-basis: 38px;
  }
}
