:root {
  color-scheme: dark;
  --header-height: 92px;
  --page-pad: clamp(28px, 7.6vw, 112px);
  --navy: #061428;
  --navy-2: #08203d;
  --navy-3: #0d3157;
  --panel: rgba(7, 25, 48, 0.86);
  --panel-strong: rgba(8, 30, 56, 0.96);
  --ink: #f5f9ff;
  --muted: #aebdd0;
  --soft: #d9e4f2;
  --gold: #c0a064;
  --cyan: #2ab4e8;
  --blue: #006eb8;
  --line: rgba(124, 190, 232, 0.18);
  --line-strong: rgba(124, 190, 232, 0.32);
  --paper: #f5f8fc;
  --paper-line: #dce4ed;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-height) + 24px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(42, 180, 232, 0.12), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(192, 160, 100, 0.1), transparent 28%),
    linear-gradient(180deg, #061428 0%, #07172c 46%, #061428 100%);
  font-family: "Alibaba PuHuiTi", "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: -2;
  clip-path: inset(0);
  pointer-events: none;
}

body::before {
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(42, 180, 232, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 180, 232, 0.16) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

body::after {
  z-index: -1;
  opacity: 0.32;
  background:
    radial-gradient(circle at var(--cursor-x, 72%) var(--cursor-y, 18%), rgba(42, 180, 232, 0.22), transparent min(34vw, 460px)),
    linear-gradient(115deg, transparent 0%, transparent 43%, rgba(42, 180, 232, 0.1) 50%, transparent 58%, transparent 100%),
    radial-gradient(circle at 78% 58%, rgba(0, 110, 184, 0.12), transparent 34%);
  animation: ambientScan 10s linear infinite;
  will-change: transform;
}

@keyframes ambientScan {
  from {
    transform: translateX(-18%);
  }
  to {
    transform: translateX(18%);
  }
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 120;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--cyan);
  color: #fff;
  background: rgba(4, 19, 38, 0.96);
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.14;
  font-weight: 900;
}

h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.18;
  font-weight: 900;
}

p {
  margin-bottom: 0;
  color: rgba(226, 235, 245, 0.78);
}

.mobile-break {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 60;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
  max-height: 136px;
  padding: 18px clamp(24px, 5.2vw, 84px);
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 13, 27, 0.78), rgba(2, 13, 27, 0));
  transition:
    min-height 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(24px, 5.2vw, 84px);
  right: clamp(24px, 5.2vw, 84px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 180, 232, 0.52), rgba(192, 160, 100, 0.36), transparent);
  opacity: 0.72;
}

.site-header.is-scrolled {
  min-height: 76px;
  background: rgba(4, 19, 38, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  padding: 5px 14px;
  margin: -5px -14px;
  overflow: visible;
  isolation: isolate;
}

.brand::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand::after {
  left: 50%;
  top: 5px;
  z-index: 3;
  width: clamp(142px, 12vw, 210px);
  aspect-ratio: 442 / 144;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 38%,
      rgba(42, 180, 232, 0.22) 43%,
      rgba(42, 180, 232, 1) 47%,
      rgba(255, 255, 255, 1) 50%,
      rgba(192, 160, 100, 1) 53%,
      rgba(42, 180, 232, 0.28) 58%,
      transparent 64%,
      transparent 100%
    );
  background-size: 260% 100%;
  background-position: 130% 0;
  -webkit-mask: url("../img/logo.png") left top / contain no-repeat;
  mask: url("../img/logo.png") left top / contain no-repeat;
  mix-blend-mode: screen;
  transform: translateX(-50%);
  filter:
    brightness(1.8)
    drop-shadow(0 0 8px rgba(42, 180, 232, 0.95))
    drop-shadow(0 0 16px rgba(192, 160, 100, 0.55));
  animation: logoLineTrace 5s var(--ease) infinite;
}

.brand img {
  position: relative;
  z-index: 1;
  width: clamp(142px, 12vw, 210px);
  height: auto;
  filter:
    brightness(1.95)
    contrast(1.08)
    drop-shadow(0 0 18px rgba(192, 160, 100, 0.24));
  mix-blend-mode: screen;
}

.brand span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand .fx-ripple {
  display: none;
}

.brand.is-energy-ready::after {
  display: none;
}

.brand-energy-svg {
  position: absolute;
  left: 50%;
  top: 5px;
  z-index: 5;
  width: clamp(142px, 12vw, 210px);
  height: auto;
  overflow: visible;
  pointer-events: none;
  color: #fff;
  mix-blend-mode: screen;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.64))
    drop-shadow(0 0 15px rgba(42, 180, 232, 0.82))
    drop-shadow(0 0 24px rgba(192, 160, 100, 0.38));
}

.brand-energy-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  stroke-dasharray: var(--trace-segment, 140) var(--trace-length, 600);
  stroke-dashoffset: var(--trace-start, 600);
  animation: brandSvgLineTrace 5.8s linear infinite;
}

.brand-energy-path:nth-child(2) {
  stroke: #7edbff;
  stroke-width: 6;
}

.brand-energy-path:nth-child(3) {
  stroke: #ffd27a;
  stroke-width: 5;
}

@keyframes brandSvgLineTrace {
  0% {
    opacity: 0.94;
    stroke-dashoffset: var(--trace-start, 600);
  }

  13.79% {
    opacity: 0.94;
    stroke-dashoffset: var(--trace-end, -600);
  }

  14.1% {
    opacity: 0;
    stroke-dashoffset: var(--trace-end, -600);
  }

  14.2%,
  100% {
    opacity: 0;
    stroke-dashoffset: var(--trace-start, 600);
  }
}

@keyframes logoLineTrace {
  0%,
  42%,
  100% {
    opacity: 0;
    background-position: 130% 0;
  }

  48% {
    opacity: 1;
    background-position: 130% 0;
  }

  72% {
    opacity: 1;
    background-position: -130% 0;
  }

  80% {
    opacity: 0;
    background-position: -130% 0;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 28px);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 800;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-current="page"] {
  color: #fff;
  transform: translateY(-1px);
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown-toggle[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover svg,
.nav-dropdown:focus-within svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 80;
  display: grid;
  gap: 16px;
  width: min(236px, calc(100vw - 40px));
  padding: 24px;
  color: #061428;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-menu a {
  color: #061428;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  white-space: normal;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-actions {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: max-content;
}

.menu-toggle {
  display: none;
}

.search-button,
.language-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  cursor: pointer;
}

.search-button {
  width: 30px;
  height: 30px;
  padding: 0;
}

.search-button svg,
.language-pill svg,
.search-field svg,
.search-submit svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-button svg {
  width: 21px;
  height: 21px;
}

.language-pill {
  gap: 8px;
  min-width: 68px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.language-pill svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s ease;
}

.search-button:hover,
.language-pill:hover {
  transform: translateY(-1px);
}

.language-pill:hover,
.language-pill[aria-expanded="true"] {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.language-pill[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.search-panel {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: auto;
  z-index: 55;
  width: 100vw;
  max-width: 100vw;
  min-height: 72px;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  color: #061428;
  background: rgba(247, 249, 252, 0.98);
  border-bottom: 1px solid var(--paper-line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-field svg {
  width: 24px;
  height: 24px;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #061428;
  background: transparent;
  font-size: 20px;
}

.search-field:focus-within {
  color: var(--blue);
}

.search-submit {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #061428;
  background: transparent;
  color: #061428;
  cursor: pointer;
}

.language-popover {
  position: fixed;
  top: calc(var(--header-height) + 10px);
  right: clamp(18px, 5vw, 84px);
  z-index: 56;
  width: min(300px, calc(100vw - 36px));
  padding: 24px;
  color: #061428;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.language-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-form {
  display: grid;
  gap: 18px;
}

.language-title {
  color: #536176;
  font-size: 14px;
  font-weight: 800;
}

.language-form label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.language-form button {
  min-height: 46px;
  border: 1px solid #061428;
  color: #061428;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.hero-section,
.page-hero,
.sustainability-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #061428;
}

.hero-video,
.page-hero > img,
.sustainability-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--media-shift, 0px)) scale(1.06);
  transition: transform 1.2s var(--ease);
}

.hero-shade,
.sustainability-hero-shade,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 11, 22, 0.94), rgba(3, 11, 22, 0.54) 50%, rgba(3, 11, 22, 0.82)),
    linear-gradient(180deg, rgba(3, 11, 22, 0.2), rgba(3, 11, 22, 0.82));
}

.tech-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(42, 180, 232, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 180, 232, 0.12) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.hero-webgl-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(58vw, 920px);
  opacity: 0.56;
  pointer-events: none;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
}

.hero-webgl-layer::before,
.hero-webgl-layer::after {
  content: "";
  position: absolute;
  inset: 14% 8% 12% 16%;
  border: 1px solid rgba(42, 180, 232, 0.12);
  transform: skewY(-8deg);
}

.hero-webgl-layer::after {
  inset: 24% 16% 22% 28%;
  border-color: rgba(192, 160, 100, 0.16);
  transform: skewY(10deg);
}

.hero-webgl-layer canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-content,
.page-hero-content,
.sustainability-hero-content {
  position: relative;
  z-index: 3;
  width: min(920px, calc(100% - var(--page-pad) * 2));
  color: #fff;
}

.hero-content {
  padding-top: var(--header-height);
  margin-left: var(--page-pad);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
}

.hero-eyebrow {
  margin: 0 0 2px;
  padding-left: 46px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-identity {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.hero-content h1 {
  max-width: 880px;
  font-size: clamp(30px, 2.45vw, 38px);
  line-height: 1.58;
  text-wrap: balance;
}

.hero-title-mobile {
  display: none;
}

.hero-content .kicker,
.page-hero-content .section-label,
.section-label,
.sustainability-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content .kicker::before,
.page-hero-content .section-label::before,
.section-label::before,
.sustainability-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-lead {
  max-width: 720px;
  color: rgba(238, 246, 255, 0.84);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .text-link,
.hero-actions .contact-button {
  margin-top: 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin: clamp(30px, 5vh, 52px) 0 0;
  border: 1px solid rgba(124, 190, 232, 0.18);
  background: rgba(124, 190, 232, 0.18);
}

.hero-proof div {
  padding: 16px 18px;
  background: rgba(4, 19, 38, 0.52);
  backdrop-filter: blur(14px);
}

.hero-proof dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 900;
}

.hero-system-panel {
  position: absolute;
  right: var(--page-pad);
  bottom: clamp(88px, 13vh, 148px);
  z-index: 3;
  width: min(390px, 30vw);
  padding: 24px;
  border: 1px solid rgba(124, 190, 232, 0.22);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 18, 35, 0.42), rgba(5, 18, 35, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(42, 180, 232, 0.18), transparent 36%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-system-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-system-panel strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.25;
}

.hero-system-panel p {
  margin-top: 14px;
  color: rgba(226, 235, 245, 0.76);
  font-size: 15px;
  line-height: 1.68;
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 42px;
  z-index: 4;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  font-size: 0;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.scroll-cue:hover {
  border-color: var(--gold);
  transform: translateY(4px);
}

.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
}

.page-hero-content {
  margin: 0 0 clamp(76px, 10vh, 120px) var(--page-pad);
}

.page-hero-content p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.72;
}

.content-section,
.page-section {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 6.2vw, 88px) var(--page-pad);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.content-section::before,
.page-section::before {
  content: "";
  position: absolute;
  left: var(--page-pad);
  right: var(--page-pad);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent 42%, rgba(192, 160, 100, 0.42), transparent);
  opacity: 0.78;
}

.two-column,
.section-head,
.section-heading,
.enterprise-vision-body,
.capability-section,
.portal-intro-section,
.event-overview-section,
.event-operation-section,
.service-support-section,
.enablement-section,
.contact-page-section,
.methodology-section,
.action-plan-section,
.brand-communication-section {
  display: grid;
  grid-template-columns: minmax(440px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.two-column > *,
.section-head > *,
.section-heading > *,
.enterprise-vision-body > *,
.capability-section > *,
.portal-intro-section > *,
.event-overview-section > *,
.event-operation-section > *,
.service-support-section > *,
.enablement-section > *,
.contact-page-section > *,
.methodology-section > *,
.action-plan-section > *,
.brand-communication-section > * {
  min-width: 0;
}

.section-copy,
.portal-intro-copy,
.support-content,
.enablement-content,
.event-overview-copy,
.operation-panel,
.contact-panel,
.about-story-copy,
.action-plan-copy,
.action-plan-stage,
.brand-communication-copy {
  border: 0;
  border-left: 1px solid rgba(42, 180, 232, 0.38);
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(8, 30, 56, 0.42), rgba(5, 18, 35, 0));
  box-shadow: none;
}

.section-copy,
.portal-intro-copy,
.support-content,
.enablement-content,
.event-overview-copy,
.operation-panel,
.contact-panel,
.about-story-copy {
  padding: clamp(24px, 3vw, 40px) 0 clamp(24px, 3vw, 40px) clamp(22px, 3vw, 42px);
}

.portal-intro-copy h2,
.support-content h2,
.enablement-content h2,
.event-overview-copy h2,
.operation-panel h2,
.capability-copy h2,
.action-plan-copy h2,
.methodology-menu h2,
.about-story-head h2 {
  font-size: clamp(29px, 2.85vw, 40px);
  line-height: 1.16;
  text-wrap: balance;
}

.section-copy p,
.portal-intro-copy p,
.support-content p,
.enablement-content p,
.event-overview-copy p,
.operation-panel p,
.contact-panel p,
.about-story-copy p {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.78;
}

.text-link,
.outline-button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 22px;
  border: 1px solid rgba(192, 160, 100, 0.58);
  color: #fff;
  background: rgba(192, 160, 100, 0.1);
  font-weight: 900;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.text-link.dark {
  color: #061428;
  border-color: rgba(6, 20, 40, 0.28);
  background: rgba(255, 255, 255, 0.74);
}

.section-head .text-link,
.section-heading .text-link {
  justify-self: start;
  align-self: start;
  width: auto;
}

.text-link:hover,
.outline-button:hover,
.contact-button:hover {
  border-color: var(--gold);
  background: rgba(192, 160, 100, 0.24);
  transform: translateY(-2px);
}

.contact-right-stack {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 20px;
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(42, 180, 232, 0.3);
  background:
    linear-gradient(135deg, rgba(42, 180, 232, 0.1), rgba(5, 18, 35, 0.92) 44%),
    rgba(5, 18, 35, 0.78);
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(126, 219, 255, 0.2), transparent) 0 0 / 240px 1px no-repeat,
    radial-gradient(circle at 88% 12%, rgba(42, 180, 232, 0.18), transparent 28%);
}

.lead-form-head,
.lead-form-grid,
.lead-form-actions {
  position: relative;
  z-index: 1;
}

.lead-form-head h3 {
  margin: 6px 0 10px;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.18;
}

.lead-form-head p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(226, 235, 245, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.lead-form .wide {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid rgba(126, 196, 235, 0.26);
  border-radius: 0;
  padding: 0 14px;
  color: #fff;
  background: rgba(2, 12, 28, 0.58);
  font: inherit;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(198, 214, 232, 0.58);
}

.lead-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(226, 235, 245, 0.84) 50%) right 18px center / 8px 8px no-repeat,
    linear-gradient(135deg, rgba(42, 180, 232, 0.12), rgba(2, 12, 28, 0.58));
}

.lead-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(126, 219, 255, 0.78);
  background: rgba(2, 12, 28, 0.76);
  box-shadow: 0 0 0 3px rgba(42, 180, 232, 0.14);
}

.lead-form .lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  min-width: 0;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
}

.lead-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.lead-form .contact-button {
  margin-top: 0;
  cursor: pointer;
}

.lead-form .contact-button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.lead-form-message {
  min-height: 24px;
  margin: 0;
  color: rgba(226, 235, 245, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.lead-form-message.is-success {
  color: #80e6b2;
}

.lead-form-message.is-error {
  color: #ffb7bf;
}

.energy-join-button {
  --energy-x: 50%;
  --energy-y: 50%;
  --energy-size: clamp(152px, 10.2vw, 178px);
  --energy-field: clamp(78px, 7vw, 118px);
  --energy-stage: calc(var(--energy-size) + var(--energy-field) + var(--energy-field));
  position: relative;
  isolation: isolate;
  display: inline-grid;
  grid-template-areas:
    "label"
    "sub";
  place-content: center;
  width: var(--energy-size);
  min-width: var(--energy-size);
  height: var(--energy-size);
  min-height: var(--energy-size);
  aspect-ratio: 1;
  margin-top: 0;
  padding: 0;
  overflow: visible;
  border-radius: 50%;
  border: 1px solid rgba(126, 219, 255, 0.68);
  color: #fff;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at var(--energy-x) var(--energy-y), rgba(50, 200, 255, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(12, 45, 78, 0.98), rgba(3, 13, 28, 0.99) 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -22px 36px rgba(0, 0, 0, 0.34),
    inset 0 0 42px rgba(42, 180, 232, 0.2),
    0 18px 46px rgba(0, 0, 0, 0.3),
    0 0 0 10px rgba(42, 180, 232, 0.03);
  letter-spacing: 0.04em;
  transform: translateY(0);
}

.energy-join-button::before,
.energy-join-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.energy-join-button::before {
  z-index: 0;
  inset: calc(var(--energy-field) * -0.5);
  border-radius: 50%;
  opacity: 0.44;
  background:
    conic-gradient(from 210deg, transparent 0 8%, rgba(42, 180, 232, 0.82) 11%, transparent 16% 32%, rgba(192, 160, 100, 0.72) 36%, transparent 42% 64%, rgba(126, 219, 255, 0.72) 69%, transparent 75% 100%),
    radial-gradient(circle, transparent 57%, rgba(42, 180, 232, 0.25) 58%, transparent 66%);
  filter: drop-shadow(0 0 18px rgba(42, 180, 232, 0.22));
  mask: radial-gradient(circle, transparent 58%, #000 59% 68%, transparent 69%);
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 59% 68%, transparent 69%);
  transform: rotate(-18deg) scale(0.94);
}

.energy-join-button::after {
  z-index: 1;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(126, 219, 255, 0.36);
  background:
    linear-gradient(90deg, transparent 49%, rgba(126, 219, 255, 0.14) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(126, 219, 255, 0.1) 50%, transparent 51%);
  box-shadow:
    inset 0 0 20px rgba(42, 180, 232, 0.22),
    0 0 24px rgba(42, 180, 232, 0.18);
  opacity: 0.82;
}

.energy-button-canvas,
.energy-button-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: var(--energy-stage);
  max-width: none;
  height: var(--energy-stage);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.energy-button-canvas {
  z-index: 1;
  mix-blend-mode: screen;
}

.energy-button-svg {
  z-index: 2;
  overflow: visible;
}

.energy-button-frame {
  fill: none;
  stroke: rgba(126, 219, 255, 0.36);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.energy-button-orbit {
  fill: none;
  stroke: rgba(126, 219, 255, 0.22);
  stroke-width: 1;
  stroke-dasharray: 1.5 14;
  vector-effect: non-scaling-stroke;
}

.energy-button-orbit-b {
  stroke: rgba(192, 160, 100, 0.25);
  stroke-dasharray: 10 24;
}

.energy-button-flow {
  fill: none;
  stroke: url("#energyButtonGradient");
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 0 210;
  stroke-dashoffset: 0;
  opacity: 0;
  filter: url("#energyButtonGlow");
}

.energy-button-flow-b,
.energy-button-flow-d {
  stroke: rgba(192, 160, 100, 0.8);
}

.energy-button-spark {
  fill: #fff;
  opacity: 0.2;
  transform-box: fill-box;
  transform-origin: center;
  filter: url("#energyButtonGlow");
}

.energy-button-label,
.energy-button-sub {
  position: relative;
  z-index: 4;
  line-height: 1.05;
  text-align: center;
}

.energy-button-label {
  grid-area: label;
  max-width: 104px;
  margin: 0 auto;
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.2;
  text-shadow:
    0 0 14px rgba(126, 219, 255, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.12);
}

.energy-button-sub {
  grid-area: sub;
  margin-top: 9px;
  color: rgba(226, 235, 245, 0.7);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.energy-button-arrow {
  position: absolute;
  right: 21px;
  bottom: 20px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(126, 219, 255, 0.48);
  border-radius: 50%;
  color: rgba(226, 235, 245, 0.84);
  font-size: 13px;
  line-height: 1;
  background: rgba(4, 16, 34, 0.38);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.energy-join-button:hover,
.energy-join-button:focus-visible,
.energy-join-button.is-energy-active {
  border-color: rgba(126, 219, 255, 0.96);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at var(--energy-x) var(--energy-y), rgba(50, 200, 255, 0.38), transparent 36%),
    linear-gradient(145deg, rgba(13, 54, 94, 0.98), rgba(3, 13, 28, 0.99) 70%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 38px rgba(42, 180, 232, 0.26),
    0 0 34px rgba(42, 180, 232, 0.28),
    0 18px 46px rgba(0, 0, 0, 0.36);
}

.energy-join-button:hover::before,
.energy-join-button:focus-visible::before,
.energy-join-button.is-energy-active::before {
  opacity: 0.9;
  animation: energySweep 1.8s linear infinite;
}

.energy-join-button:hover .energy-button-arrow,
.energy-join-button:focus-visible .energy-button-arrow,
.energy-join-button.is-energy-active .energy-button-arrow {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(42, 180, 232, 0.16);
  transform: translate(3px, -3px);
}

.energy-join-button.is-energy-firing {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.22),
    0 0 58px rgba(42, 180, 232, 0.56),
    0 0 126px rgba(192, 160, 100, 0.28);
}

.energy-join-button.is-energy-firing::before {
  animation: energyBurst 0.68s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.energy-join-button.is-energy-firing::after {
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.18),
    0 0 42px rgba(42, 180, 232, 0.42),
    0 0 88px rgba(42, 180, 232, 0.24);
}

@keyframes energySweep {
  from {
    transform: rotate(-18deg) scale(0.94);
  }
  to {
    transform: rotate(342deg) scale(1.04);
  }
}

@keyframes energyBurst {
  0% {
    opacity: 0.92;
    transform: rotate(-18deg) scale(0.92);
  }
  42% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(140deg) scale(2.16);
  }
}

.about-section,
.services-section,
.insights-section,
.news-section {
  background: linear-gradient(180deg, #061428, #071d36);
}

.about-media,
.portal-intro-media,
.support-image,
.enablement-media,
.event-overview-media,
.brand-communication-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #061428;
}

.about-media {
  margin: clamp(34px, 5vw, 62px) 0 0;
}

.about-media img,
.portal-intro-media img,
.support-image img,
.enablement-media img,
.event-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.about-media:hover img,
.portal-intro-media:hover img,
.support-image:hover img,
.enablement-media:hover img,
.event-overview-media:hover img {
  transform: scale(1.045);
}

.strategy-console {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 480px;
  border: 1px solid var(--line);
  background: rgba(6, 20, 40, 0.64);
  box-shadow: var(--shadow);
}

.strategy-tabs,
.methodology-menu,
.action-plan-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: rgba(4, 15, 30, 0.72);
}

.action-plan-copy .action-plan-tabs {
  margin-top: 24px;
  padding: 0;
  border-right: 0;
  background: transparent;
}

.strategy-tabs button,
.methodology-menu button,
.action-plan-tabs button {
  min-height: 58px;
  border: 1px solid transparent;
  color: rgba(226, 235, 245, 0.74);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.strategy-tabs button:hover,
.strategy-tabs button.is-active,
.methodology-menu button:hover,
.methodology-menu button.is-active,
.action-plan-tabs button:hover,
.action-plan-tabs button.is-active {
  color: #fff;
  border-color: rgba(192, 160, 100, 0.42);
  background: rgba(42, 180, 232, 0.08);
  transform: translateX(4px);
}

.strategy-panels {
  position: relative;
  min-height: 420px;
  padding: clamp(30px, 5vw, 70px);
}

.strategy-panels .strategy-panel,
.action-plan-stage .strategy-panel {
  position: absolute;
  inset: clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.38s ease,
    transform 0.38s var(--ease);
}

.strategy-panels .strategy-panel.is-active,
.action-plan-stage .strategy-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.strategy-panel span,
.capability-card span,
.enterprise-vision-card span,
.page-card span,
.service-program-card span,
.sector-card span,
.process-step span,
.operation-card span,
.roadmap-node time,
.join-path-card span,
.mutual-loop-card span,
.calendar-item strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strategy-panel p {
  max-width: 760px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.compute-observation-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(42, 180, 232, 0.16), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(192, 160, 100, 0.13), transparent 28%),
    linear-gradient(180deg, #07182d 0%, #051123 100%);
}

.compute-observation-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(24px, 5vw, 86px);
  align-items: end;
  margin-bottom: 30px;
}

.compute-observation-head h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
}

.compute-observation-head p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px 0 0 22px;
  border-left: 1px solid rgba(42, 180, 232, 0.42);
  color: rgba(226, 235, 245, 0.72);
}

.compute-observation-head strong {
  color: #fff;
  font-size: 18px;
}

.compute-observation-head span {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: rgba(226, 235, 245, 0.58);
}

.compute-observation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(78, 160, 210, 0.34);
  background:
    linear-gradient(rgba(42, 180, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 180, 232, 0.07) 1px, transparent 1px),
    rgba(4, 14, 29, 0.68);
  background-size: 72px 72px;
  box-shadow: var(--shadow);
}

.compute-visual-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(78, 160, 210, 0.28);
}

.compute-visual-card:nth-child(4) {
  border-right: 0;
}

.compute-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 29, 0.08), rgba(4, 14, 29, 0.78)),
    radial-gradient(circle at 78% 14%, rgba(42, 180, 232, 0.18), transparent 30%);
  pointer-events: none;
}

.compute-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.compute-visual-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.08);
}

.compute-visual-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.compute-visual-card figcaption span {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

.compute-visual-card figcaption em {
  color: rgba(226, 235, 245, 0.68);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compute-copy-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(28px, 4vw, 52px);
  border-top: 1px solid rgba(78, 160, 210, 0.34);
  background:
    linear-gradient(135deg, rgba(7, 28, 53, 0.92), rgba(5, 18, 36, 0.78)),
    radial-gradient(circle at 95% 20%, rgba(42, 180, 232, 0.16), transparent 32%);
}

.compute-copy-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.16;
}

.compute-copy-panel > p {
  align-self: end;
  max-width: 720px;
  margin: 0;
  color: rgba(226, 235, 245, 0.72);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(17px, 1.25vw, 21px);
}

.compute-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(78, 160, 210, 0.28);
}

.compute-facts div {
  display: grid;
  gap: 8px;
  padding: 24px 24px 4px 0;
  border-right: 1px solid rgba(78, 160, 210, 0.24);
}

.compute-facts div:last-child {
  border-right: 0;
}

.compute-facts strong {
  color: var(--gold);
  font-size: clamp(20px, 2vw, 30px);
}

.compute-facts span {
  color: #fff;
  font-weight: 800;
}

.compute-facts em {
  color: rgba(226, 235, 245, 0.62);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-style: normal;
  line-height: 1.6;
}

.enterprise-vision-section {
  background:
    radial-gradient(circle at 88% 4%, rgba(42, 180, 232, 0.14), transparent 34%),
    linear-gradient(180deg, #061428, #071d36);
}

.enterprise-vision-head {
  max-width: 1080px;
}

.enterprise-vision-head h2 {
  max-width: 980px;
}

.enterprise-vision-head p,
.enterprise-vision-copy p,
.capability-copy p,
.section-heading p,
.section-head p {
  max-width: 840px;
  color: rgba(226, 235, 245, 0.78);
  font-size: clamp(18px, 1.55vw, 22px);
}

.enterprise-vision-body {
  margin-top: clamp(30px, 4vw, 54px);
}

.enterprise-vision-metric {
  display: grid;
  gap: 12px;
}

.enterprise-vision-metric span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(42, 180, 232, 0.08);
  color: #fff;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
}

.enterprise-vision-grid,
.capability-grid,
.page-grid,
.service-program-grid,
.sector-matrix,
.event-card-grid,
.operation-grid,
.process-rail,
.roadmap-timeline,
.join-path-grid,
.mutual-loop-grid,
.focus-grid,
.advisory-grid,
.csr-metrics,
.contact-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 34px);
  border: 0;
  background: transparent;
}

.enterprise-vision-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 68px);
}

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

.service-program-grid,
.sector-matrix,
.event-card-grid,
.advisory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-program-grid,
.sector-matrix,
.event-card-grid {
  gap: clamp(14px, 1.6vw, 22px);
  border: 0;
  background: transparent;
}

.service-program-grid,
.sector-matrix {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-program-card,
.sector-card {
  grid-column: span 2;
}

.service-program-card:nth-child(1),
.service-program-card:nth-child(6),
.sector-card:nth-child(2),
.sector-card:nth-child(3) {
  grid-column: span 3;
}

.capability-grid,
.join-path-grid,
.focus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.operation-grid,
.process-rail,
.roadmap-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-rail,
.roadmap-timeline {
  gap: clamp(12px, 1.4vw, 18px);
  border: 0;
  background: transparent;
}

.process-step,
.roadmap-node {
  min-height: 220px;
}

.page-grid,
.contact-grid,
.csr-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.enterprise-vision-card,
.capability-card,
.page-card,
.service-program-card,
.sector-card,
.operation-card,
.process-step,
.roadmap-node,
.join-path-card,
.mutual-loop-card,
.focus-card,
.advisory-card,
.calendar-item,
.award-card {
  position: relative;
  min-height: 0;
  padding: clamp(20px, 2.5vw, 34px) 0 clamp(20px, 2.5vw, 34px) clamp(18px, 2vw, 26px);
  overflow: visible;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
  background: transparent;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.enterprise-vision-card::after,
.capability-card::after,
.page-card::after,
.service-program-card::after,
.sector-card::after,
.operation-card::after,
.process-step::after,
.roadmap-node::after,
.join-path-card::after,
.mutual-loop-card::after,
.focus-card::after,
.advisory-card::after,
.calendar-item::after,
.award-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0.92;
}

.enterprise-vision-card:hover,
.capability-card:hover,
.page-card:hover,
.service-program-card:hover,
.sector-card:hover,
.operation-card:hover,
.process-step:hover,
.roadmap-node:hover,
.join-path-card:hover,
.mutual-loop-card:hover,
.focus-card:hover,
.advisory-card:hover,
.calendar-item:hover,
.award-card:hover {
  background: transparent;
  border-color: rgba(124, 190, 232, 0.42);
  transform: translateY(-2px);
}

.enterprise-vision-card h3,
.capability-card h3,
.page-card h3,
.service-program-card h3,
.sector-card h3,
.operation-card h3,
.process-step h3,
.roadmap-node h3,
.join-path-card h3,
.mutual-loop-card h3,
.focus-card h3,
.advisory-card h3,
.calendar-item h3,
.award-card h3 {
  margin-top: clamp(14px, 1.8vw, 24px);
}

.portal-focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(18px, 2.4vw, 30px);
  border: 0;
  background: transparent;
  align-items: stretch;
}

.insight-feature,
.insight-card,
.news-card,
.event-card-large {
  display: grid;
  gap: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #fff;
}

.insight-feature,
.insight-card {
  background:
    radial-gradient(circle at var(--spot-x, 100%) var(--spot-y, 0%), rgba(42, 180, 232, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.98), rgba(5, 18, 35, 0.98));
}

.insight-feature {
  grid-template-rows: minmax(310px, 0.72fr) auto;
  min-height: 0;
  box-shadow: var(--shadow);
}

.insight-side {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.insight-card {
  grid-template-rows: 220px auto;
}

.insight-signal-card {
  position: relative;
  grid-template-rows: 1fr;
  min-height: 0;
  overflow: hidden;
}

.insight-signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(42, 180, 232, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 86% 18%, rgba(192, 160, 100, 0.18), transparent 26%);
  background-size: 58px 58px, 58px 58px, auto;
}

.insight-signal-card .insight-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 0;
}

.insight-feature img,
.insight-card img,
.news-card img,
.event-card-large img,
.advisory-card img,
.sustainability-institute img,
.commitment-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-feature div,
.insight-card-body,
.news-card div,
.event-card-large div {
  padding: clamp(20px, 2.6vw, 34px) 0 0;
}

.event-card-large img {
  min-height: 0;
  border-left: 0;
  object-position: center 58%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.event-portal-page .event-card-large img {
  height: clamp(150px, 13vw, 210px);
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.event-portal-page .event-card-large div {
  padding: 0;
}

.insight-feature h3,
.insight-card h3 {
  color: #fff;
}

.news-card h3,
.event-card-large h3 {
  color: #fff;
}

.event-portal-page .event-card-large h3 {
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.14;
}

.insight-feature p,
.insight-card p {
  color: rgba(226, 235, 245, 0.78);
}

.news-card p,
.event-card-large p {
  color: rgba(226, 235, 245, 0.76);
}

.event-portal-page .event-card-large p {
  max-width: 720px;
}

.insight-feature span,
.insight-card span,
.news-card time,
.event-card-large time {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-feature time,
.insight-card time {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(226, 235, 245, 0.62);
  font-size: 14px;
}

.journey-section {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: clamp(80px, 10vw, 140px) var(--page-pad);
  overflow: hidden;
}

.journey-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(42, 180, 232, 0.2), transparent 30%),
    linear-gradient(120deg, rgba(3, 11, 22, 0.98), rgba(6, 32, 61, 0.84) 58%, rgba(3, 11, 22, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 88px);
  transform: scale(1.04);
}

.journey-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  border: 0;
  background: transparent;
}

.news-card {
  grid-template-rows: 220px auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.newsroom-page {
  background:
    radial-gradient(circle at var(--cursor-x, 18%) var(--cursor-y, 12%), rgba(42, 180, 232, 0.13), transparent 28%),
    radial-gradient(circle at 78% 46%, rgba(192, 160, 100, 0.1), transparent 30%),
    linear-gradient(180deg, #061428 0%, #071d36 52%, #061428 100%);
}

.newsroom-hero img {
  object-position: center 52%;
}

.newsroom-brief-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
  padding: clamp(54px, 7vw, 98px) var(--page-pad) clamp(42px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 20, 40, 0.98), rgba(7, 29, 54, 0.94)),
    radial-gradient(circle at 82% 20%, rgba(42, 180, 232, 0.14), transparent 34%);
}

.newsroom-brief-section::before {
  content: "";
  position: absolute;
  inset: 18px var(--page-pad) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 180, 232, 0.6), rgba(192, 160, 100, 0.46), transparent);
  opacity: 0.65;
}

.newsroom-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(0, 0.48fr);
  grid-template-rows: 1fr;
  min-height: clamp(390px, 36vw, 540px);
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 76% 26%, rgba(42, 180, 232, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(8, 30, 56, 0.96), rgba(4, 15, 31, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.newsroom-feature::before,
.newsroom-feature::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.newsroom-feature::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 12, 26, 0.82), rgba(3, 12, 26, 0.08) 54%, rgba(3, 12, 26, 0.64)),
    linear-gradient(180deg, rgba(3, 12, 26, 0.08), rgba(3, 12, 26, 0.78));
}

.newsroom-feature::after {
  top: 0;
  bottom: 0;
  left: -18%;
  z-index: 3;
  width: 16%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), rgba(42, 180, 232, 0.2), transparent);
  transform: skewX(-14deg);
  animation: newsroomSweep 7.2s var(--ease) infinite;
}

.newsroom-feature img {
  position: relative;
  z-index: 0;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(390px, 36vw, 540px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.8s var(--ease), filter 0.8s ease;
}

.newsroom-feature:hover img,
.newsroom-feature:focus-visible img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.08);
}

.newsroom-feature div {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 100%;
  margin-left: 0;
  padding: clamp(30px, 5vw, 72px);
  border-left: 1px solid rgba(124, 190, 232, 0.28);
  background:
    linear-gradient(135deg, rgba(5, 18, 35, 0.94), rgba(5, 18, 35, 0.78)),
    linear-gradient(90deg, rgba(42, 180, 232, 0.08), transparent);
  backdrop-filter: blur(12px);
}

.newsroom-feature-badge {
  width: fit-content;
  margin-bottom: clamp(18px, 2vw, 26px);
  padding: 9px 14px;
  border: 1px solid rgba(192, 160, 100, 0.42);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: rgba(5, 18, 35, 0.62);
}

.newsroom-feature h2 {
  max-width: 780px;
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-feature p {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.76;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-category-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  align-content: stretch;
  padding: 8px;
  border: 1px solid rgba(124, 190, 232, 0.18);
  background: rgba(4, 14, 29, 0.42);
}

.newsroom-category-strip::after {
  content: "";
  position: absolute;
  left: var(--channel-x, 8px);
  top: auto;
  bottom: 8px;
  width: var(--channel-width, 120px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(42, 180, 232, 0.5);
  transition:
    left 0.32s var(--ease),
    width 0.32s var(--ease);
}

.newsroom-category-strip a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 clamp(14px, 1.6vw, 22px);
  border: 1px solid rgba(124, 190, 232, 0.14);
  color: #fff;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 900;
  text-align: center;
  background: rgba(8, 30, 56, 0.44);
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s var(--ease);
}

.newsroom-category-strip a:last-child {
  border-bottom: 1px solid rgba(124, 190, 232, 0.14);
}

.newsroom-category-strip a:hover {
  color: var(--gold);
  background: rgba(42, 180, 232, 0.08);
  transform: translateY(-2px);
}

.newsroom-category-strip a.is-active {
  color: var(--gold);
  background:
    linear-gradient(90deg, rgba(192, 160, 100, 0.16), transparent),
    rgba(42, 180, 232, 0.08);
}

.newsroom-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 24px;
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 38px);
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(124, 190, 232, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 180, 232, 0.12), transparent 34%),
    rgba(8, 30, 56, 0.58);
}

.newsroom-toolbar p {
  margin: 0;
  color: rgba(226, 235, 245, 0.78);
  font-size: 15px;
  font-weight: 800;
}

.newsroom-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.newsroom-filter-form label {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
  color: rgba(226, 235, 245, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.newsroom-filter-form input {
  min-height: 48px;
  width: min(420px, 100%);
  border: 1px solid rgba(124, 190, 232, 0.26);
  border-radius: 0;
  padding: 0 16px;
  color: #fff;
  background: rgba(4, 14, 29, 0.64);
  outline: none;
}

.newsroom-filter-form input:focus {
  border-color: rgba(192, 160, 100, 0.7);
  box-shadow: 0 0 0 3px rgba(192, 160, 100, 0.12);
}

.newsroom-filter-form button,
.newsroom-pagination a {
  min-height: 48px;
  border: 1px solid rgba(192, 160, 100, 0.46);
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  background: rgba(192, 160, 100, 0.12);
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.newsroom-filter-form button:hover,
.newsroom-pagination a:hover,
.newsroom-pagination a.is-active {
  border-color: rgba(42, 180, 232, 0.72);
  background: rgba(42, 180, 232, 0.16);
  transform: translateY(-2px);
}

.newsroom-empty {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(124, 190, 232, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 180, 232, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.86), rgba(4, 14, 29, 0.94));
}

.newsroom-empty h2,
.newsroom-empty h3 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 3vw, 48px);
}

.newsroom-empty p {
  max-width: 680px;
  margin: 0;
  color: rgba(226, 235, 245, 0.78);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.72;
}

.newsroom-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 52px);
}

.newsroom-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  color: #fff;
  text-decoration: none;
}

.newsroom-feed .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(18px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.newsroom-feed .news-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 26px);
}

.newsroom-feed .news-card {
  position: relative;
  grid-column: span 4;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(124, 190, 232, 0.18);
  background:
    radial-gradient(circle at var(--spot-x, 100%) var(--spot-y, 0%), rgba(42, 180, 232, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.94), rgba(5, 18, 35, 0.98));
  isolation: isolate;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.newsroom-feed .news-card::before,
.newsroom-feed .news-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.newsroom-feed .news-card::before {
  inset: 0;
  z-index: 5;
  opacity: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 18%), rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(120deg, transparent 0 36%, rgba(42, 180, 232, 0.18), transparent 58%);
  transition: opacity 0.28s ease;
}

.newsroom-feed .news-card::after {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--ease);
}

.newsroom-feed .news-card:hover::before,
.newsroom-feed .news-card:focus-visible::before {
  opacity: 1;
}

.newsroom-feed .news-card:hover::after,
.newsroom-feed .news-card:focus-visible::after {
  transform: scaleX(1);
}

.newsroom-card-media {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(124, 190, 232, 0.24);
  background:
    linear-gradient(135deg, rgba(19, 57, 90, 0.9), rgba(6, 21, 40, 0.98));
}

.newsroom-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 29, 0), rgba(4, 14, 29, 0.16)),
    linear-gradient(110deg, transparent 0 44%, rgba(255, 255, 255, 0.22), transparent 56%);
  opacity: 0;
  transform: translateX(-36%);
  transition:
    opacity 0.34s ease,
    transform 0.54s var(--ease);
}

.newsroom-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) brightness(1.2) contrast(1.04);
  transform: scale(1.01);
  transition:
    transform 0.62s var(--ease),
    filter 0.62s ease;
}

.newsroom-link-card:hover .newsroom-card-media::after,
.newsroom-link-card:focus-visible .newsroom-card-media::after {
  opacity: 1;
  transform: translateX(38%);
}

.newsroom-link-card:hover .newsroom-card-media img,
.newsroom-link-card:focus-visible .newsroom-card-media img {
  filter: saturate(1.26) brightness(1.24) contrast(1.08);
  transform: scale(1.08);
}

.newsroom-feed .news-card div {
  display: grid;
  align-content: start;
  position: relative;
  z-index: 3;
  padding: clamp(22px, 2.6vw, 34px);
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.98), rgba(5, 18, 35, 0.98));
}

.newsroom-card-kicker {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(192, 160, 100, 0.34);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  background: rgba(192, 160, 100, 0.08);
}

.newsroom-feed .news-card h3 {
  margin: 12px 0 12px;
  font-size: clamp(23px, 1.8vw, 30px);
  line-height: 1.16;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-feed .news-card p {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsroom-feed .news-card:nth-child(1) {
  grid-column: span 7;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-height: 410px;
}

.newsroom-feed .news-card:nth-child(1) .newsroom-card-media {
  height: 100%;
  border-right: 1px solid rgba(124, 190, 232, 0.22);
  border-bottom: 0;
}

.newsroom-feed .news-card:nth-child(1) div {
  align-content: center;
  background:
    radial-gradient(circle at 100% 14%, rgba(192, 160, 100, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(7, 24, 45, 0.96), rgba(5, 18, 35, 0.98));
}

.newsroom-feed .news-card:nth-child(1) h3 {
  font-size: clamp(31px, 2.8vw, 48px);
  line-height: 1.08;
}

.newsroom-feed .news-card:nth-child(2) {
  grid-column: span 5;
  grid-template-rows: 1fr;
  min-height: 410px;
}

.newsroom-feed .news-card:nth-child(2) .newsroom-card-media,
.newsroom-feed .news-card:nth-child(2) div {
  grid-area: 1 / 1;
}

.newsroom-feed .news-card:nth-child(2) .newsroom-card-media {
  height: 100%;
  border-bottom: 0;
}

.newsroom-feed .news-card:nth-child(2) div {
  align-content: end;
  background:
    linear-gradient(180deg, rgba(4, 14, 29, 0.08), rgba(4, 14, 29, 0.52) 38%, rgba(4, 14, 29, 0.98));
}

.newsroom-feed .news-card:nth-child(3) {
  grid-column: span 4;
}

.newsroom-feed .news-card:nth-child(4) {
  grid-column: span 4;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(135deg, rgba(192, 160, 100, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.94), rgba(5, 18, 35, 0.98));
}

.newsroom-feed .news-card:nth-child(4) .newsroom-card-media {
  height: 154px;
}

.newsroom-feed .news-card:nth-child(5) {
  grid-column: span 4;
  border-color: rgba(192, 160, 100, 0.24);
}

.newsroom-feed .news-card:only-child {
  grid-column: 1 / span 7;
  max-width: 760px;
}

.newsroom-link-card {
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s ease,
    background-color 0.32s ease;
}

.newsroom-link-card:hover,
.newsroom-link-card:focus-visible {
  border-color: rgba(192, 160, 100, 0.58);
  transform: translateY(-4px);
}

.newsroom-link-card:hover h2,
.newsroom-link-card:hover h3,
.newsroom-link-card:focus-visible h2,
.newsroom-link-card:focus-visible h3 {
  color: var(--gold);
}

.newsroom-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.newsroom-card-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.newsroom-link-card:hover .newsroom-card-link::after,
.newsroom-link-card:focus-visible .newsroom-card-link::after {
  transform: scaleX(1.45);
}

@keyframes newsroomSweep {
  0%,
  68% {
    opacity: 0;
    transform: translateX(0) skewX(-14deg);
  }

  76% {
    opacity: 0.86;
  }

  100% {
    opacity: 0;
    transform: translateX(760%) skewX(-14deg);
  }
}

.news-detail-page {
  background:
    radial-gradient(circle at 84% 16%, rgba(42, 180, 232, 0.14), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(192, 160, 100, 0.1), transparent 30%),
    linear-gradient(180deg, #061428 0%, #071d36 48%, #061428 100%);
}

.article-reading-line {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 66;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgba(124, 190, 232, 0.14);
}

.article-reading-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(42, 180, 232, 0.42);
  transform: scaleX(var(--article-progress, 0));
  transform-origin: left;
}

.news-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  min-height: clamp(560px, 76svh, 780px);
  padding: calc(var(--header-height) + clamp(70px, 8vw, 120px)) var(--page-pad) clamp(64px, 8vw, 112px);
  overflow: hidden;
}

.news-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(42, 180, 232, 0.1) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: radial-gradient(circle at 68% 36%, #000, transparent 68%);
}

.news-detail-hero-copy,
.news-detail-visual,
.news-detail-body {
  position: relative;
  z-index: 1;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(28px, 4vw, 54px);
  color: var(--soft);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.news-detail-back::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.news-detail-hero h1 {
  max-width: 980px;
  margin: 18px 0 22px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.news-detail-hero p {
  max-width: 880px;
  margin: 0;
  color: rgba(226, 235, 245, 0.82);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.72;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
}

.news-detail-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(124, 190, 232, 0.24);
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: rgba(8, 30, 56, 0.5);
}

.news-detail-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid rgba(124, 190, 232, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(42, 180, 232, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.82), rgba(4, 14, 29, 0.94));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.news-detail-visual::before,
.news-detail-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news-detail-visual::before {
  inset: 12%;
  border: 1px solid rgba(42, 180, 232, 0.22);
  transform: rotate(12deg);
}

.news-detail-visual::after {
  top: 0;
  bottom: 0;
  left: -26%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), rgba(42, 180, 232, 0.2), transparent);
  transform: skewX(-14deg);
  animation: mediaSweep 4.8s var(--ease) infinite;
}

.detail-orbit {
  position: absolute;
  border: 1px solid rgba(42, 180, 232, 0.28);
  border-radius: 50%;
  animation: detailOrbit 14s linear infinite;
}

.detail-orbit-a {
  width: 280px;
  height: 280px;
}

.detail-orbit-b {
  width: 210px;
  height: 210px;
  border-color: rgba(192, 160, 100, 0.3);
  animation-duration: 10s;
  animation-direction: reverse;
}

.detail-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(192, 160, 100, 0.48);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle, rgba(42, 180, 232, 0.22), rgba(6, 20, 40, 0.92) 68%);
}

.detail-core span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.detail-core strong {
  font-size: 28px;
  letter-spacing: 0.1em;
}

.detail-signal-list {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.detail-signal-list span {
  min-width: 160px;
  padding: 8px 12px;
  border-left: 2px solid var(--cyan);
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(4, 14, 29, 0.68);
}

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

.news-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: clamp(28px, 5vw, 82px);
  padding: clamp(58px, 7vw, 110px) var(--page-pad);
}

.news-detail-article {
  max-width: 960px;
}

.news-detail-lead {
  margin-bottom: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid rgba(124, 190, 232, 0.18);
}

.news-detail-lead p {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.48;
  font-weight: 900;
}

.news-detail-section {
  padding: clamp(24px, 3vw, 42px) 0;
  border-bottom: 1px solid rgba(124, 190, 232, 0.14);
}

.news-detail-section h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
}

.news-detail-section p {
  margin: 0 0 18px;
  color: rgba(226, 235, 245, 0.8);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.88;
}

.news-detail-section p:last-child {
  margin-bottom: 0;
}

.news-detail-aside {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  gap: 18px;
}

.news-detail-aside-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(124, 190, 232, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(42, 180, 232, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.82), rgba(4, 14, 29, 0.92));
}

.news-detail-aside-panel h2 {
  margin: 8px 0 18px;
  font-size: 24px;
}

.news-detail-aside-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.news-detail-aside-panel a {
  color: rgba(226, 235, 245, 0.82);
  text-decoration: none;
}

.news-detail-aside-panel a:hover {
  color: var(--gold);
}

.news-detail-related {
  display: grid;
  gap: 12px;
}

.news-detail-related-link {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(124, 190, 232, 0.16);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.news-detail-related-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.news-detail-related-link span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-detail-related-link strong {
  font-size: 18px;
  line-height: 1.36;
}

.news-detail-related-link:hover::after,
.news-detail-related-link:focus-visible::after {
  transform: scaleX(1.8);
}

.news-detail-cover {
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
}

.news-detail-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.8s ease;
}

.news-detail-cover:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.06);
}

.news-detail-cover::before {
  inset: 0;
  z-index: 2;
  border: 0;
  background: linear-gradient(180deg, rgba(4, 14, 29, 0.04), rgba(4, 14, 29, 0.42));
  transform: none;
}

.news-detail-cover::after {
  z-index: 3;
}

.news-rich-content {
  color: rgba(226, 235, 245, 0.82);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.9;
}

.news-rich-content h2,
.news-rich-content h3,
.news-rich-content h4 {
  margin: clamp(34px, 4vw, 52px) 0 16px;
  color: #fff;
  line-height: 1.22;
}

.news-rich-content h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.news-rich-content h3 {
  font-size: clamp(24px, 2.3vw, 34px);
}

.news-rich-content p,
.news-rich-content ul,
.news-rich-content ol,
.news-rich-content blockquote {
  margin: 0 0 20px;
}

.news-rich-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-rich-content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 620px;
  margin: clamp(22px, 4vw, 44px) auto;
  object-fit: contain;
}

.news-rich-content figure {
  margin: clamp(26px, 4vw, 48px) 0;
}

.news-rich-content figure img {
  margin: 0 auto;
}

.news-rich-content figcaption {
  margin-top: 12px;
  color: rgba(226, 235, 245, 0.58);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.68;
  text-align: center;
}

.news-rich-content blockquote {
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  color: #fff;
  background: rgba(192, 160, 100, 0.08);
}

.news-compliance-note {
  margin-top: clamp(34px, 4vw, 56px);
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(192, 160, 100, 0.3);
  background:
    linear-gradient(90deg, rgba(192, 160, 100, 0.12), rgba(42, 180, 232, 0.06)),
    rgba(8, 30, 56, 0.6);
}

.news-compliance-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.news-compliance-note p {
  margin: 0;
  color: rgba(226, 235, 245, 0.82);
  font-size: 16px;
  line-height: 1.72;
}

.portal-events-section .section-head,
.portal-focus-section .section-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 40px;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.portal-events-section .section-head .section-label,
.portal-focus-section .section-head .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.portal-events-section .section-head h2,
.portal-focus-section .section-head h2 {
  grid-column: 1;
}

.portal-events-section .section-head .text-link,
.portal-focus-section .section-head .text-link {
  grid-column: 2;
  margin-top: 0;
}

.portal-event-grid .news-card {
  min-height: 0;
}

.portal-event-grid .news-card img {
  aspect-ratio: 16 / 9;
}

.portal-event-grid .news-card div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.portal-event-grid .news-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 34px);
}

.portal-event-grid .news-card p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}

.contact-section,
.site-footer {
  padding: clamp(64px, 8vw, 104px) var(--page-pad);
  background: #061428;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-section p {
  max-width: 760px;
  font-size: clamp(20px, 2vw, 28px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(226, 235, 245, 0.72);
  border-top: 1px solid var(--line);
}

.page-main {
  background: #061428;
}

.page-section {
  background: linear-gradient(180deg, #061428, #081b33);
}

.about-timeline-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 4.6vw, 68px);
  align-items: start;
  background:
    radial-gradient(circle at 88% 8%, rgba(42, 180, 232, 0.14), transparent 34%),
    linear-gradient(180deg, #061428, #071b33);
}

.about-timeline-head {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  max-width: 520px;
}

.about-timeline-head h2 {
  margin-bottom: 18px;
}

.about-timeline-head p {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.78;
}

.about-timeline-track {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: clamp(24px, 2.3vw, 32px);
}

.about-timeline-track::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(42, 180, 232, 0), rgba(42, 180, 232, 0.72), rgba(192, 160, 100, 0.62), rgba(42, 180, 232, 0));
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: clamp(18px, 2.3vw, 30px);
  align-items: start;
  min-height: 0;
  padding-bottom: clamp(22px, 2.6vw, 34px);
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 18px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(42, 180, 232, 0.08), 0 0 24px rgba(42, 180, 232, 0.42);
}

.about-timeline-item time {
  display: block;
  min-height: 0;
  padding-top: 10px;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
}

.about-timeline-item > div {
  padding: clamp(14px, 1.8vw, 22px) 0 0;
  border: 0;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
  background: transparent;
  box-shadow: none;
}

.about-timeline-item span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-timeline-item h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 1.8vw, 29px);
}

.about-timeline-item p {
  max-width: 920px;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.72;
}

.about-timeline-item p strong {
  color: var(--gold);
  font-weight: 900;
}

.about-timeline-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.about-timeline-item li {
  padding: 5px 9px;
  border: 1px solid rgba(42, 180, 232, 0.24);
  color: rgba(226, 235, 245, 0.82);
  background: rgba(42, 180, 232, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.about-story-head {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.portal-about-story .portal-position-grid {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(18px, 2vw, 28px);
}

.portal-position-grid {
  gap: clamp(14px, 1.6vw, 20px);
  border: 0;
  background: transparent;
}

.portal-position-card {
  min-height: 220px;
}

.org-system-section,
.join-path-section,
.mutual-loop-section,
.event-calendar-section,
.roadmap-section {
  padding: clamp(62px, 6.2vw, 88px) var(--page-pad);
}

.org-system-section {
  padding-top: clamp(46px, 4.8vw, 68px);
  padding-bottom: clamp(48px, 5vw, 70px);
}

.event-calendar-section {
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
}

.org-system-section,
.mutual-loop-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(42, 180, 232, 0.12), transparent 32%),
    linear-gradient(180deg, #061428, #071d36);
}

.org-system-copy,
.section-heading {
  max-width: 1080px;
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

.org-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 34px);
  border: 0;
  background: transparent;
}

.org-system-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 0;
  padding: clamp(20px, 2.1vw, 28px) 0 clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(124, 190, 232, 0.26);
  background: transparent;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.org-system-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 66px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), transparent 70%);
  opacity: 0.78;
}

.org-system-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(62px, 6vw, 92px);
  bottom: 28px;
  width: 1px;
  border: 0;
  background: linear-gradient(180deg, rgba(192, 160, 100, 0.45), rgba(42, 180, 232, 0));
}

.org-system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 190, 232, 0.42);
  background: transparent;
}

.org-system-card span {
  margin-bottom: clamp(18px, 2vw, 24px);
  color: var(--gold);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.org-system-card h3 {
  max-width: 460px;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.1vw, 34px);
}

.org-system-card p {
  max-width: 520px;
  color: rgba(226, 235, 245, 0.78);
  font-size: clamp(16px, 1.04vw, 18px);
  line-height: 1.76;
}

.methodology-section {
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 48px);
  padding: clamp(50px, 5vw, 74px) var(--page-pad) clamp(70px, 7vw, 96px);
  background: #061428;
}

.methodology-menu {
  align-self: start;
  border: 0;
  border-right: 0;
  border-left: 1px solid rgba(42, 180, 232, 0.38);
  background: linear-gradient(90deg, rgba(42, 180, 232, 0.08), transparent 54%);
}

.methodology-menu h2 {
  margin-bottom: 24px;
}

.methodology-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
}

.methodology-stage .strategy-panel {
  position: relative;
  inset: auto;
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(124, 190, 232, 0.22);
  background:
    radial-gradient(circle at 92% 10%, rgba(42, 180, 232, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(9, 33, 59, 0.84), rgba(5, 18, 35, 0.96));
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  transform: none;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    transform 0.28s var(--ease);
}

.methodology-stage .strategy-panel::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(192, 160, 100, 0.82), rgba(42, 180, 232, 0.48), transparent);
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.methodology-stage .strategy-panel.is-active {
  border-color: rgba(192, 160, 100, 0.58);
  background:
    radial-gradient(circle at 92% 10%, rgba(192, 160, 100, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(12, 42, 70, 0.92), rgba(5, 18, 35, 0.98));
  transform: translateY(-3px);
}

.methodology-stage .strategy-panel.is-active::after {
  transform: scaleX(1);
}

.methodology-stage .strategy-panel h3 {
  margin-top: 8px;
  font-size: clamp(24px, 2vw, 32px);
}

.methodology-stage .strategy-panel p {
  margin-top: 10px;
  color: rgba(226, 235, 245, 0.78);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.72;
}

.portal-intro-section,
.event-overview-section,
.service-support-section,
.enablement-section,
.event-operation-section {
  padding: clamp(62px, 6.2vw, 88px) var(--page-pad);
  background:
    radial-gradient(circle at 86% 10%, rgba(42, 180, 232, 0.16), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(192, 160, 100, 0.12), transparent 30%),
    linear-gradient(180deg, #061428, #071d36);
  color: #fff;
}

.portal-intro-copy,
.support-content,
.enablement-content,
.event-overview-copy,
.operation-panel {
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(8, 30, 56, 0.42), rgba(5, 18, 35, 0));
  border: 0;
  border-left: 1px solid rgba(42, 180, 232, 0.38);
  box-shadow: none;
}

.portal-intro-copy h2,
.support-content h2,
.enablement-content h2,
.event-overview-copy h2,
.operation-panel h2,
.portal-intro-copy h3,
.support-content h3,
.enablement-content h3,
.event-overview-copy h3,
.operation-panel h3 {
  color: #fff;
}

.portal-intro-copy p,
.support-content p,
.enablement-content p,
.event-overview-copy p,
.operation-panel p {
  color: rgba(226, 235, 245, 0.8);
}

.portal-intro-media,
.support-image,
.enablement-media,
.event-overview-media {
  min-height: 340px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.portal-intro-media::after,
.support-image::after,
.enablement-media::after,
.event-overview-media::after,
.brand-communication-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 11, 22, 0.42)),
    linear-gradient(90deg, rgba(42, 180, 232, 0.16), transparent 34%, rgba(192, 160, 100, 0.12));
}

.service-support-section {
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 1fr);
  align-items: center;
}

.service-support-section .support-image {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.service-support-section .support-content {
  border-left: 3px solid rgba(192, 160, 100, 0.78);
}

.enablement-section {
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
}

.enablement-media {
  min-height: 480px;
}

.event-overview-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 3.2vw, 46px);
  align-items: center;
}

.event-overview-media {
  aspect-ratio: 4 / 3;
  width: 100%;
  justify-self: end;
  min-height: 0;
}

.portal-service-suite,
.sector-section,
.event-matrix-section,
.event-calendar-section,
.service-process-section,
.roadmap-section {
  padding-top: clamp(46px, 5vw, 70px);
  padding-bottom: clamp(46px, 5vw, 70px);
  background:
    linear-gradient(180deg, #071d36, #061428);
  color: #fff;
}

.portal-service-suite h2,
.sector-section h2,
.event-matrix-section h2,
.event-calendar-section h2,
.service-process-section h2,
.roadmap-section h2,
.join-path-section h2 {
  color: #fff;
}

.portal-service-suite p,
.sector-section p,
.event-matrix-section p,
.event-calendar-section p,
.service-process-section p,
.roadmap-section p,
.join-path-section p {
  color: rgba(226, 235, 245, 0.78);
}

.service-program-card,
.sector-card,
.process-step,
.roadmap-node,
.join-path-card,
.calendar-item {
  background: transparent;
  border-color: rgba(124, 190, 232, 0.24);
}

.service-program-card h3,
.sector-card h3,
.process-step h3,
.roadmap-node h3,
.join-path-card h3,
.calendar-item h3 {
  color: #fff;
}

.service-program-card p,
.sector-card p,
.process-step p,
.roadmap-node p,
.join-path-card p,
.calendar-item span {
  color: rgba(226, 235, 245, 0.76);
}

.join-path-section {
  background:
    radial-gradient(circle at 78% 8%, rgba(42, 180, 232, 0.14), transparent 34%),
    linear-gradient(180deg, #061428, #071d36);
  color: #fff;
}

.join-path-section .section-heading h2 {
  color: #fff;
}

.join-path-section .section-heading p {
  color: rgba(226, 235, 245, 0.78);
}

.support-list,
.industry-signal-panel,
.enablement-list,
.brand-principles {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
}

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

.support-list div,
.industry-signal-panel div,
.enablement-list span,
.brand-principles span {
  padding: 14px 0 14px 18px;
  border: 0;
  border-left: 1px solid rgba(124, 190, 232, 0.28);
  background: linear-gradient(90deg, rgba(42, 180, 232, 0.06), transparent 72%);
  color: rgba(226, 235, 245, 0.78);
}

.brand-communication-copy {
  padding: clamp(28px, 3.2vw, 42px);
}

.enablement-section,
.action-plan-section,
.brand-communication-section {
  padding: clamp(62px, 6.2vw, 88px) var(--page-pad);
  background: linear-gradient(180deg, #061428, #071d36);
  color: #fff;
}

.enablement-content,
.action-plan-copy,
.action-plan-stage {
  padding: clamp(26px, 3.4vw, 44px);
}

.brand-communication-copy {
  padding: clamp(28px, 3.2vw, 42px);
}

.action-plan-stage {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.action-plan-stage .strategy-panel {
  position: static;
  inset: auto;
  display: none;
  min-height: 0;
  justify-content: flex-start;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.action-plan-stage .strategy-panel.is-active {
  display: grid;
  align-content: center;
}

.action-plan-stage .strategy-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.action-plan-stage .strategy-panel li {
  padding: 8px 12px;
  border: 1px solid rgba(124, 190, 232, 0.22);
  color: rgba(226, 235, 245, 0.82);
  background: rgba(42, 180, 232, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.action-plan-copy h2 {
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.16;
}

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

.event-card-large {
  grid-column: span 4;
  min-height: 0;
  grid-template-rows: clamp(180px, 18vw, 240px) 1fr;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.event-card-large:nth-child(1),
.event-card-large:nth-child(6) {
  grid-column: span 6;
}

.event-card-large:nth-child(2),
.event-card-large:nth-child(3) {
  grid-column: span 3;
}

.event-operation-section {
  background: linear-gradient(180deg, #061428, #071d36);
  color: #fff;
}

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

.event-calendar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  border: 0;
  background: transparent;
}

.event-calendar .calendar-item {
  min-height: 126px;
  padding: 22px 24px;
  display: grid;
  align-content: space-between;
}

.service-portal-page .section-heading,
.industry-portal-page .section-heading,
.event-portal-page .section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 38px);
  align-items: start;
  max-width: none;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.service-portal-page .section-heading .section-label,
.industry-portal-page .section-heading .section-label,
.event-portal-page .section-heading .section-label {
  grid-column: 1;
  align-self: start;
}

.service-portal-page .section-heading h2,
.industry-portal-page .section-heading h2,
.event-portal-page .section-heading h2,
.service-portal-page .section-heading p,
.industry-portal-page .section-heading p,
.event-portal-page .section-heading p {
  grid-column: 2;
  max-width: 860px;
}

.service-portal-page .section-heading h2,
.industry-portal-page .section-heading h2,
.event-portal-page .section-heading h2 {
  margin-bottom: 0;
  max-width: 880px;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.12;
}

.service-portal-page .section-heading p,
.industry-portal-page .section-heading p,
.event-portal-page .section-heading p {
  margin-top: 12px;
  max-width: 780px;
  font-size: clamp(17px, 1.25vw, 20px);
}

.service-portal-page .portal-intro-section,
.industry-portal-page .portal-intro-section,
.event-portal-page .event-overview-section {
  align-items: stretch;
}

.service-portal-page .portal-intro-copy,
.industry-portal-page .portal-intro-copy,
.event-portal-page .event-overview-copy {
  display: grid;
  align-content: start;
  min-height: 0;
  border-left: 3px solid rgba(192, 160, 100, 0.78);
}

.service-portal-page .portal-intro-media,
.event-portal-page .event-overview-media {
  min-height: 420px;
}

.service-portal-page .service-program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 46px) clamp(24px, 2.6vw, 38px);
}

.service-portal-page .service-program-card {
  grid-column: auto;
  min-height: 0;
  display: grid;
  align-content: start;
  padding: 0 0 clamp(20px, 2vw, 28px) clamp(16px, 1.6vw, 22px);
  border-top: 0;
  border-left: 1px solid rgba(124, 190, 232, 0.24);
}

.service-portal-page .service-program-card:nth-child(1),
.service-portal-page .service-program-card:nth-child(6) {
  grid-column: auto;
}

.service-portal-page .service-program-card:nth-child(2),
.service-portal-page .service-program-card:nth-child(5) {
  grid-column: auto;
}

.service-portal-page .service-program-card::after {
  left: 0;
  top: 0;
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, var(--gold), var(--cyan), transparent);
}

.service-portal-page .service-program-card h3,
.industry-portal-page .sector-card h3,
.event-portal-page .event-card-large h3 {
  margin-top: clamp(12px, 1.2vw, 18px);
}

.service-portal-page .service-support-section {
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 1fr);
}

.service-portal-page .service-support-section .support-image {
  aspect-ratio: 5 / 4;
}

.service-portal-page .support-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mutual-loop-section {
  padding: clamp(58px, 6vw, 86px) var(--page-pad);
  background:
    radial-gradient(circle at 12% 20%, rgba(42, 180, 232, 0.12), transparent 30%),
    linear-gradient(180deg, #071d36, #061428);
  color: #fff;
}

.service-portal-page .mutual-loop-grid {
  gap: clamp(18px, 2vw, 30px);
  border: 0;
  background: transparent;
}

.service-portal-page .mutual-loop-card {
  min-height: 0;
  padding: 0 clamp(14px, 1.4vw, 22px) clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
}

.service-portal-page .process-rail {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  border: 0;
  background: transparent;
}

.service-portal-page .process-step {
  min-height: 0;
  padding: 0 0 clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
  box-shadow: none;
}

.industry-portal-page .industry-intro {
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding-top: clamp(44px, 4.8vw, 68px);
  padding-bottom: clamp(44px, 4.8vw, 68px);
}

.industry-portal-page .industry-signal-panel {
  grid-template-columns: 1fr;
  align-self: center;
  gap: clamp(14px, 1.7vw, 22px);
}

.industry-portal-page .industry-signal-panel div {
  display: grid;
  grid-template-columns: minmax(92px, 0.24fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  min-height: 0;
  padding: 0 0 clamp(14px, 1.6vw, 20px);
  border: 0;
  border-bottom: 1px solid rgba(124, 190, 232, 0.24);
  background: transparent;
}

.industry-portal-page .industry-signal-panel strong {
  color: #fff;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.35;
}

.industry-portal-page .industry-signal-panel span {
  color: rgba(226, 235, 245, 0.76);
  font-size: clamp(16px, 1.06vw, 18px);
  line-height: 1.72;
}

.industry-portal-page .sector-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px) clamp(42px, 5vw, 88px);
}

.industry-portal-page .sector-card {
  grid-column: auto;
  min-height: 0;
  padding: 0 0 clamp(20px, 2.2vw, 30px);
  border-top: 1px solid rgba(124, 190, 232, 0.24);
}

.industry-portal-page .sector-card:nth-child(1),
.industry-portal-page .sector-card:nth-child(4) {
  grid-column: auto;
}

.industry-portal-page .sector-card:nth-child(2),
.industry-portal-page .sector-card:nth-child(5) {
  grid-column: auto;
}

.industry-portal-page .sector-card::after {
  width: 72px;
}

.industry-portal-page .sector-card h3 {
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.16;
}

.industry-portal-page .sector-card p {
  max-width: 680px;
}

.industry-tech-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0;
  min-height: 360px;
  padding: clamp(28px, 4vw, 52px);
  isolation: isolate;
  background:
    radial-gradient(circle at 30% 24%, rgba(42, 180, 232, 0.24), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(192, 160, 100, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(8, 30, 56, 0.96), rgba(4, 15, 31, 0.98));
}

.industry-tech-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(124, 190, 232, 0.24);
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(42, 180, 232, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 88%, transparent);
}

.industry-tech-panel span {
  width: max-content;
  margin-bottom: clamp(18px, 2vw, 26px);
  padding: 7px 12px;
  color: var(--gold);
  border: 1px solid rgba(192, 160, 100, 0.45);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.industry-tech-panel strong {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
  padding: 18px 0;
  border-top: 1px solid rgba(124, 190, 232, 0.22);
  color: #fff;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.18;
}

.industry-tech-panel strong::after {
  content: "";
  width: clamp(50px, 7vw, 96px);
  height: 1px;
  margin-left: 18px;
  background: linear-gradient(90deg, rgba(192, 160, 100, 0.84), rgba(42, 180, 232, 0.34), transparent);
}

.industry-portal-page .enablement-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-portal-page .roadmap-node {
  min-height: 180px;
}

.industry-portal-page .action-plan-section {
  grid-template-columns: minmax(360px, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.industry-portal-page .action-plan-stage {
  min-height: 220px;
}

.event-portal-page .event-card-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.event-portal-page .event-card-large {
  grid-column: auto;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  grid-template-rows: auto;
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 30px) 0;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
}

.event-portal-page .event-card-large:nth-child(1),
.event-portal-page .event-card-large:nth-child(4) {
  grid-column: auto;
}

.event-portal-page .event-card-large:nth-child(2),
.event-portal-page .event-card-large:nth-child(3) {
  grid-column: auto;
}

.event-portal-page .event-card-large:nth-child(6) {
  grid-column: auto;
}

.event-portal-page .event-operation-section {
  grid-template-columns: minmax(280px, 0.3fr) minmax(0, 1fr);
  align-items: stretch;
}

.event-portal-page .operation-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  border: 0;
  background: transparent;
}

.event-portal-page .operation-card {
  min-height: 0;
  padding: 0 clamp(10px, 1.4vw, 18px) clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
}

.event-portal-page .event-calendar-section {
  padding-top: clamp(46px, 4.5vw, 70px);
  padding-bottom: clamp(46px, 4.5vw, 70px);
}

.event-portal-page .event-calendar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-portal-page .event-calendar .calendar-item {
  min-height: 0;
  align-content: start;
  gap: 10px;
  padding: 0 0 18px;
  border-top: 1px solid rgba(124, 190, 232, 0.24);
}

.event-portal-page .brand-communication-section {
  grid-template-columns: minmax(320px, 0.4fr) minmax(0, 1fr);
  align-items: stretch;
}

.service-portal-page .service-program-card,
.industry-portal-page .sector-card,
.event-portal-page .event-card-large {
  border-color: rgba(124, 190, 232, 0.24);
}

.service-portal-page .service-program-card:nth-child(2n),
.industry-portal-page .sector-card:nth-child(2n) {
  background: transparent;
}

.service-portal-page .service-program-card:nth-child(3n),
.industry-portal-page .sector-card:nth-child(3n) {
  background: transparent;
}

.service-portal-page .process-step,
.event-portal-page .operation-card,
.industry-portal-page .roadmap-node {
  display: grid;
  align-content: start;
}

.sustainability-awards .award-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  min-height: 140px;
  padding: 22px 24px;
}

.sustainability-awards .award-card strong {
  grid-row: 1 / span 2;
}

.sustainability-awards .award-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.sustainability-awards .award-card p {
  grid-column: 2;
}

.brand-communication-media {
  min-height: 360px;
  height: 100%;
}

.brand-signal-visual {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(5, 18, 35, 0.2), rgba(5, 18, 35, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(42, 180, 232, 0.28), transparent 32%),
    radial-gradient(circle at 92% 6%, rgba(192, 160, 100, 0.22), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 78px),
    #061428;
}

.brand-signal-visual span {
  width: max-content;
  padding: 7px 12px;
  border: 1px solid rgba(192, 160, 100, 0.45);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.brand-signal-visual strong {
  max-width: 520px;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.08;
}

.brand-signal-visual small {
  color: rgba(226, 235, 245, 0.7);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-principle-banner {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(42px, 5vw, 64px) var(--page-pad);
  background:
    radial-gradient(circle at 88% 0, rgba(42, 180, 232, 0.16), transparent 32%),
    linear-gradient(135deg, #061428, #0b2747);
}

.portal-principle-banner strong {
  color: var(--gold);
  font-size: clamp(24px, 2.4vw, 34px);
}

.contact-page-section {
  align-items: start;
}

.contact-panel {
  min-height: 0;
}

.contact-panel .contact-button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-page-section .portal-principle-grid {
  align-content: start;
  gap: clamp(18px, 2vw, 28px);
}

.contact-page-section .portal-principle-card {
  padding-top: clamp(18px, 2vw, 26px);
  padding-bottom: clamp(18px, 2vw, 24px);
}

.contact-page-section .portal-principle-card h3 {
  margin-top: 16px;
}

.sustainability-main {
  --sustain-ink: #07172c;
  --sustain-copy: #24344c;
  --sustain-muted: #33455f;
  --sustain-accent: #8a6824;
  background: #fff;
  color: var(--sustain-ink);
}

.sustainability-hero {
  min-height: clamp(540px, 44vw, 580px);
  display: grid;
  align-items: center;
}

.sustainability-hero-content {
  margin-left: var(--page-pad);
}

.sustainability-breadcrumb {
  margin: 0 0 44px;
  color: #fff;
  font-size: clamp(17px, 1.2vw, 21px);
  font-weight: 900;
}

.sustainability-breadcrumb span {
  margin: 0 18px;
  color: var(--gold);
}

.sustainability-hero h1 {
  max-width: 860px;
  font-weight: 400;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.48);
}

.sustainability-hero-content > p:last-child {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.55;
  font-weight: 700;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.sustainability-tabs {
  position: relative;
  top: auto;
  z-index: 6;
  display: flex;
  gap: 24px;
  padding: 0 var(--page-pad);
  background: #fff;
  border-bottom: 1px solid var(--paper-line);
  overflow-x: auto;
  --tab-left: var(--page-pad);
  --tab-width: 128px;
}

.sustainability-tabs::after {
  content: "";
  position: absolute;
  left: var(--tab-left);
  bottom: -1px;
  width: var(--tab-width);
  height: 2px;
  background: var(--gold);
  transition:
    left 0.35s var(--ease),
    width 0.35s var(--ease);
}

.sustainability-tabs a {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  color: #23344d;
  font-size: clamp(18px, 1.05vw, 20px);
  font-weight: 800;
  white-space: nowrap;
}

.sustainability-tabs a.is-active,
.sustainability-tabs a:hover {
  color: var(--sustain-accent);
  font-weight: 900;
}

.sustainability-overview,
.sustainability-method,
.sustainability-advisory,
.sustainability-institute,
.sustainability-csr,
.sustainability-report,
.sustainability-contact {
  padding: clamp(42px, 4.8vw, 64px) var(--page-pad);
  scroll-margin-top: 52px;
  background: #fff;
}

.sustainability-eyebrow {
  justify-content: center;
  width: 100%;
}

.sustainability-eyebrow::before {
  display: none;
}

.sustainability-overview > h2,
.sustainability-advisory > h2,
.sustainability-section-head h2,
.method-copy h2,
.report-copy h2,
.institute-copy h2,
.csr-copy h2,
.sustainability-contact h2 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--sustain-ink);
  text-align: center;
}

.sustainability-lead,
.commitment-feature p,
.method-copy p,
.report-copy p,
.institute-copy p,
.csr-copy p,
.sustainability-contact p {
  max-width: 900px;
  margin: 22px auto 0;
  color: var(--sustain-copy);
  font-size: clamp(19px, 1.45vw, 23px);
  line-height: 1.78;
  text-align: center;
}

.commitment-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) 1fr;
  gap: 24px;
  margin-top: clamp(38px, 5vw, 68px);
}

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

.commitment-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 24px;
  border: 1px solid var(--paper-line);
  color: var(--sustain-ink);
  background: #f5f8fc;
  text-align: left;
  cursor: pointer;
  font-size: clamp(18px, 1.12vw, 21px);
  line-height: 1.42;
  font-weight: 900;
}

.commitment-item.is-active,
.commitment-item:hover {
  color: var(--sustain-accent);
  background: #fff;
  border-color: rgba(192, 160, 100, 0.42);
}

.commitment-icon {
  color: var(--sustain-accent);
  font-size: 18px;
}

.commitment-feature {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.commitment-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 11, 22, 0.82), rgba(3, 11, 22, 0.36));
}

.commitment-feature div {
  position: absolute;
  left: clamp(24px, 4vw, 52px);
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;
}

.commitment-feature p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.96);
  text-align: left;
  font-weight: 700;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.36);
}

.sustainability-main .focus-card h3,
.sustainability-main .advisory-card h3,
.sustainability-main .award-card h3 {
  color: var(--sustain-ink);
}

.sustainability-main .advisory-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  padding: 0 0 clamp(22px, 2vw, 30px);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 20, 40, 0.08);
}

.sustainability-main .advisory-card::after {
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.72;
}

.sustainability-main .advisory-card img {
  width: 100%;
  height: clamp(170px, 9.5vw, 180px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sustainability-main .advisory-card h3 {
  margin: clamp(20px, 2vw, 26px) clamp(20px, 2.1vw, 30px) 8px;
}

.sustainability-main .advisory-card p {
  margin: 0 clamp(20px, 2.1vw, 30px);
}

.sustainability-main .focus-card p,
.sustainability-main .advisory-card p,
.sustainability-main .award-card p {
  color: var(--sustain-copy);
  font-size: clamp(17px, 1.08vw, 19px);
  line-height: 1.7;
}

.sustainability-main .focus-card span,
.sustainability-main .award-card strong {
  color: var(--sustain-accent);
}

.award-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--paper-line);
  background: var(--paper-line);
}

.sustainability-awards {
  padding: clamp(44px, 5vw, 64px) var(--page-pad);
  background: #f5f8fc;
  color: #061428;
}

.sustainability-report {
  padding-top: clamp(36px, 4vw, 54px);
  padding-bottom: clamp(28px, 3vw, 42px);
}

.sustainability-report + .sustainability-advisory {
  padding-top: clamp(36px, 3.8vw, 48px);
}

.sustainability-report .report-copy {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.sustainability-report .outline-button {
  margin-top: 24px;
}

.sustainability-awards .outline-button,
.sustainability-report .outline-button,
.sustainability-institute .outline-button {
  color: #061428;
  background: rgba(255, 255, 255, 0.78);
}

.sustainability-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.award-arrows {
  display: flex;
  gap: 8px;
  color: var(--gold);
  font-size: 30px;
}

.portal-public-method {
  background: #f5f8fc;
}

.sustainability-institute {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: clamp(42px, 5vw, 70px);
}

.sustainability-institute img {
  min-height: 360px;
  object-fit: cover;
}

.sustainability-csr {
  padding-top: clamp(36px, 4vw, 54px);
  padding-bottom: clamp(36px, 4vw, 54px);
}

.csr-metrics article {
  min-height: 112px;
  padding: 22px;
  background: #f5f8fc;
  color: var(--sustain-ink);
}

.csr-metrics strong {
  display: block;
  color: var(--sustain-accent);
  font-size: 28px;
}

.csr-metrics span {
  color: var(--sustain-copy);
  font-size: 17px;
  font-weight: 800;
}

.region-gallery {
  background: #061428;
}

.region-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.region-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.55s ease,
    transform 0.75s var(--ease);
  background-position: center;
  background-size: cover;
}

.region-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 19, 38, 0.48);
  pointer-events: none;
}

.region-grid[data-slide="0"] .region-slide-0,
.region-grid[data-slide="1"] .region-slide-1,
.region-grid[data-slide="2"] .region-slide-2,
.region-grid[data-slide="3"] .region-slide-3,
.region-grid[data-slide="4"] .region-slide-4,
.region-grid[data-slide="5"] .region-slide-5,
.region-grid[data-slide="6"] .region-slide-6,
.region-grid[data-slide="7"] .region-slide-7,
.region-grid[data-slide="8"] .region-slide-8 {
  opacity: 1;
  transform: scale(1);
}

.region-slide-0 { background-image: url("../img/中国.jpg"); }
.region-slide-1 { background-image: url("../img/美国.jpg"); }
.region-slide-2 { background-image: url("../img/中国香港.jpg"); }
.region-slide-3 { background-image: url("../img/中国台湾.jpg"); }
.region-slide-4 { background-image: url("../img/中国澳门.jpg"); }
.region-slide-5 { background-image: url("../img/日本.jpg"); }
.region-slide-6 { background-image: url("../img/新加坡.jpg"); }
.region-slide-7 { background-image: url("../img/our_commitment_singapore_17b7e4c3e3.jpg"); }
.region-slide-8 { background-image: url("../img/our_commitment_malaysia_83e0b85356.jpg"); }

.region-tile {
  position: relative;
  z-index: 2;
  min-height: 172px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 28px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.44);
}

.region-tile i {
  font-style: normal;
  font-size: 34px;
  transform: translate(0, 0);
  transition: transform 0.25s ease;
}

.region-tile:hover i {
  transform: translate(5px, -5px);
}

.sustainability-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #061428;
  color: #fff;
}

.sustainability-contact h2,
.sustainability-contact p {
  margin-inline: 0;
  color: #fff;
  text-align: left;
}

.fx-section {
  position: relative;
  isolation: isolate;
}

.section-pulse {
  position: absolute;
  top: 0;
  left: var(--page-pad);
  z-index: 3;
  width: min(220px, 36vw);
  height: 1px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, rgba(42, 180, 232, 0), rgba(42, 180, 232, 0.96), rgba(255, 255, 255, 0.84), rgba(192, 160, 100, 0.82), rgba(42, 180, 232, 0));
  box-shadow:
    0 0 18px rgba(42, 180, 232, 0.46),
    0 0 26px rgba(192, 160, 100, 0.2);
  transform: scaleX(0.22);
  transform-origin: left center;
  transition:
    opacity 0.45s ease,
    transform 0.7s var(--ease);
}

.fx-section.is-section-active > .section-pulse {
  opacity: 0.86;
  transform: scaleX(1);
}

:where(.fx-surface) {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.34s var(--ease),
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    background-color 0.34s ease;
}

.fx-surface > :not(.fx-surface-glow):not(.fx-trace-line):not(.fx-corner-node):not(.fx-panel-rail):not(.fx-media-lens):not(.fx-media-scan):not(.fx-dialect-aura):not(.fx-dialect-spark) {
  position: relative;
  z-index: 1;
}

.page-motion-host {
  position: relative;
  isolation: isolate;
}

.page-motion-host > :not(.page-motion-field) {
  position: relative;
  z-index: 1;
}

.page-motion-field {
  --motion-a: 42, 180, 232;
  --motion-b: 192, 160, 100;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.44;
}

.page-motion-field span {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  mix-blend-mode: screen;
}

.page-motion-field span:nth-child(1) {
  top: clamp(160px, 22vw, 360px);
  left: -18vw;
  width: min(52vw, 760px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--motion-a), 0.62), rgba(255, 255, 255, 0.68), rgba(var(--motion-b), 0.46), transparent);
  box-shadow: 0 0 28px rgba(var(--motion-a), 0.28);
  animation: pageFieldDrift 13s ease-in-out infinite;
}

.page-motion-field span:nth-child(2) {
  top: 24%;
  right: -18vw;
  width: min(34vw, 480px);
  height: min(34vw, 480px);
  border: 1px solid rgba(var(--motion-a), 0.18);
  background: radial-gradient(circle, rgba(var(--motion-a), 0.12), transparent 64%);
  animation: pageFieldOrbit 19s linear infinite;
}

.page-motion-field span:nth-child(3) {
  left: 8vw;
  bottom: 10%;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background: radial-gradient(circle, rgba(var(--motion-b), 0.1), transparent 64%);
  animation: pageFieldPulse 7s ease-in-out infinite;
}

.motion-home .page-motion-field {
  --motion-a: 42, 180, 232;
  --motion-b: 192, 160, 100;
}

.motion-about .page-motion-field {
  --motion-a: 91, 194, 255;
  --motion-b: 192, 160, 100;
}

.motion-services .page-motion-field {
  --motion-a: 64, 210, 238;
  --motion-b: 191, 178, 122;
}

.motion-insights .page-motion-field {
  --motion-a: 93, 151, 255;
  --motion-b: 42, 180, 232;
}

.motion-events .page-motion-field {
  --motion-a: 255, 179, 92;
  --motion-b: 42, 180, 232;
}

.motion-sustainability .page-motion-field {
  --motion-a: 92, 202, 160;
  --motion-b: 192, 160, 100;
}

.motion-contact .page-motion-field {
  --motion-a: 192, 160, 100;
  --motion-b: 42, 180, 232;
}

.motion-newsroom .page-motion-field {
  --motion-a: 42, 180, 232;
  --motion-b: 222, 193, 125;
}

.fx-surface-glow {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 16%), rgba(42, 180, 232, 0.24), transparent 34%),
    linear-gradient(116deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, rgba(192, 160, 100, 0.08) 50%, transparent 60%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.fx-nav-link {
  position: relative;
}

.fx-nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: var(--cyan);
  box-shadow:
    0 0 14px rgba(42, 180, 232, 0.72),
    0 0 28px rgba(42, 180, 232, 0.28);
  transform: translateX(-50%) scale(0.36);
  transition:
    opacity 0.24s ease,
    transform 0.24s var(--ease);
}

.main-nav > a.fx-nav-link:hover::before,
.main-nav > a.fx-nav-link[aria-current="page"]::before,
.nav-dropdown:hover .nav-dropdown-toggle.fx-nav-link::before,
.nav-dropdown:focus-within .nav-dropdown-toggle.fx-nav-link::before,
.nav-dropdown-toggle.fx-nav-link[aria-current="page"]::before,
.nav-dropdown-menu a.fx-nav-link:hover::before {
  opacity: 0.95;
  transform: translateX(-50%) scale(1);
}

.fx-dialect-card {
  --dialect-rgb: 42, 180, 232;
  --dialect-alt-rgb: 192, 160, 100;
  --dialect-x: 50%;
  --dialect-y: 16%;
  position: relative;
  isolation: isolate;
}

.fx-dialect-aura,
.fx-dialect-spark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.fx-dialect-aura {
  inset: -1px;
  opacity: 0;
  background:
    radial-gradient(circle at var(--dialect-x) var(--dialect-y), rgba(var(--dialect-rgb), 0.22), transparent 34%),
    linear-gradient(128deg, transparent 18%, rgba(255, 255, 255, 0.08), transparent 44%, rgba(var(--dialect-alt-rgb), 0.08), transparent 72%);
  mix-blend-mode: screen;
  transition: opacity 0.28s ease;
}

.fx-dialect-spark {
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  opacity: 0;
  border: 1px solid rgba(var(--dialect-rgb), 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(var(--dialect-rgb), 0.24) 22%, transparent 56%);
  box-shadow:
    0 0 18px rgba(var(--dialect-rgb), 0.22),
    inset 0 0 18px rgba(var(--dialect-alt-rgb), 0.12);
  transform: translate3d(8px, 8px, 0) scale(0.74);
  transition:
    opacity 0.28s ease,
    transform 0.34s var(--ease);
}

.fx-dialect-card:hover .fx-dialect-aura,
.fx-dialect-card:focus-within .fx-dialect-aura,
.fx-dialect-card.is-dialect-active .fx-dialect-aura {
  opacity: 1;
}

.fx-dialect-card:hover .fx-dialect-spark,
.fx-dialect-card:focus-within .fx-dialect-spark,
.fx-dialect-card.is-dialect-active .fx-dialect-spark {
  opacity: 0.92;
  transform: translate3d(0, 0, 0) scale(1);
}

.fx-dialect-home {
  --dialect-rgb: 42, 180, 232;
  --dialect-alt-rgb: 192, 160, 100;
}

.fx-dialect-about {
  --dialect-rgb: 100, 190, 255;
  --dialect-alt-rgb: 192, 160, 100;
}

.fx-dialect-about .fx-dialect-spark {
  right: auto;
  left: 18px;
  border-radius: 4px;
  transform: translateX(-8px) rotate(45deg) scale(0.74);
}

.fx-dialect-about:hover .fx-dialect-spark,
.fx-dialect-about:focus-within .fx-dialect-spark,
.fx-dialect-about.is-dialect-active .fx-dialect-spark {
  transform: translateX(0) rotate(45deg) scale(1);
}

.fx-dialect-service {
  --dialect-rgb: 64, 210, 238;
  --dialect-alt-rgb: 191, 178, 122;
}

.fx-dialect-service .fx-dialect-spark {
  width: 64px;
  height: 2px;
  border-radius: 0;
  border: 0;
  background: linear-gradient(90deg, rgba(var(--dialect-rgb), 0), rgba(var(--dialect-rgb), 0.88), rgba(var(--dialect-alt-rgb), 0.76), rgba(var(--dialect-rgb), 0));
  transform: translateX(-18px) scaleX(0.45);
  transform-origin: right center;
}

.fx-dialect-service:hover .fx-dialect-spark,
.fx-dialect-service:focus-within .fx-dialect-spark,
.fx-dialect-service.is-dialect-active .fx-dialect-spark {
  transform: translateX(0) scaleX(1);
}

.fx-dialect-data {
  --dialect-rgb: 93, 151, 255;
  --dialect-alt-rgb: 42, 180, 232;
}

.fx-dialect-data .fx-dialect-aura {
  background:
    linear-gradient(90deg, rgba(var(--dialect-rgb), 0.12) 1px, transparent 1px),
    linear-gradient(rgba(var(--dialect-rgb), 0.1) 1px, transparent 1px),
    radial-gradient(circle at var(--dialect-x) var(--dialect-y), rgba(var(--dialect-alt-rgb), 0.2), transparent 34%);
  background-size: 42px 42px, 42px 42px, auto;
}

.fx-dialect-event {
  --dialect-rgb: 255, 179, 92;
  --dialect-alt-rgb: 42, 180, 232;
}

.fx-dialect-event .fx-dialect-spark {
  border-radius: 0;
  transform: translate3d(8px, 8px, 0) rotate(-12deg) scale(0.74);
}

.fx-dialect-event:hover .fx-dialect-spark,
.fx-dialect-event:focus-within .fx-dialect-spark,
.fx-dialect-event.is-dialect-active .fx-dialect-spark {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.fx-dialect-eco {
  --dialect-rgb: 92, 202, 160;
  --dialect-alt-rgb: 192, 160, 100;
}

.fx-dialect-eco .fx-dialect-spark {
  border-radius: 60% 40% 60% 40%;
  transform: translate3d(8px, 8px, 0) rotate(-24deg) scale(0.74);
}

.fx-dialect-eco:hover .fx-dialect-spark,
.fx-dialect-eco:focus-within .fx-dialect-spark,
.fx-dialect-eco.is-dialect-active .fx-dialect-spark {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.fx-dialect-contact {
  --dialect-rgb: 192, 160, 100;
  --dialect-alt-rgb: 42, 180, 232;
}

.fx-dialect-news {
  --dialect-rgb: 42, 180, 232;
  --dialect-alt-rgb: 222, 193, 125;
}

.fx-trace-card,
.fx-depth-card,
.fx-switch-panel {
  overflow: hidden;
}

.fx-trace-line,
.fx-corner-node,
.fx-panel-rail {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.fx-trace-line {
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.92), rgba(255, 255, 255, 0.52), rgba(192, 160, 100, 0.48), transparent 72%) top left / 0 1px no-repeat,
    linear-gradient(180deg, rgba(42, 180, 232, 0.66), transparent 76%) top right / 1px 0 no-repeat,
    linear-gradient(270deg, rgba(192, 160, 100, 0.72), rgba(42, 180, 232, 0.34), transparent 74%) bottom right / 0 1px no-repeat,
    linear-gradient(0deg, rgba(42, 180, 232, 0.58), transparent 70%) bottom left / 1px 0 no-repeat;
  filter: drop-shadow(0 0 12px rgba(42, 180, 232, 0.3));
  transition:
    opacity 0.24s ease,
    background-size 0.58s var(--ease);
}

.fx-trace-card:hover .fx-trace-line,
.fx-trace-card:focus-within .fx-trace-line {
  opacity: 1;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}

.fx-corner-node {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(42, 180, 232, 0.95), rgba(42, 180, 232, 0.05)) top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(192, 160, 100, 0.85), rgba(42, 180, 232, 0.05)) top right / 1px 100% no-repeat;
  transform: translate3d(8px, -8px, 0) rotate(-8deg);
  transition:
    opacity 0.28s ease,
    transform 0.38s var(--ease);
}

.fx-corner-node::before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 14px rgba(42, 180, 232, 0.82),
    0 0 24px rgba(192, 160, 100, 0.26);
}

.fx-depth-card:hover .fx-corner-node,
.fx-depth-card:focus-within .fx-corner-node {
  opacity: 0.92;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.fx-depth-card:hover,
.fx-depth-card:focus-within {
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fx-panel-rail {
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 2px;
  opacity: 0.72;
  background: linear-gradient(180deg, transparent, rgba(42, 180, 232, 0.95), rgba(255, 255, 255, 0.8), rgba(192, 160, 100, 0.7), transparent);
  box-shadow: 0 0 22px rgba(42, 180, 232, 0.32);
  transform: translateY(-36%);
  animation: panelRailFlow 4.8s ease-in-out infinite;
}

.fx-switch-panel:hover .fx-panel-rail,
.fx-switch-panel:focus-within .fx-panel-rail,
.fx-section.is-section-active .fx-panel-rail {
  opacity: 1;
}

.fx-timeline-node {
  transition:
    transform 0.3s var(--ease),
    filter 0.3s ease;
}

.fx-timeline-node::before {
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.fx-timeline-node > div {
  transition:
    border-color 0.28s ease,
    transform 0.28s var(--ease);
}

.fx-timeline-node:hover,
.fx-timeline-node:focus-within {
  filter: brightness(1.06);
  transform: translateX(8px);
}

.fx-timeline-node:hover::before,
.fx-timeline-node:focus-within::before {
  background: #fff;
  box-shadow:
    0 0 0 10px rgba(42, 180, 232, 0.16),
    0 0 34px rgba(42, 180, 232, 0.62),
    0 0 48px rgba(192, 160, 100, 0.24);
  transform: scale(1.12);
}

.fx-timeline-node:hover > div,
.fx-timeline-node:focus-within > div {
  border-color: rgba(192, 160, 100, 0.54);
  transform: translateY(-2px);
}

.fx-image-drift img {
  transform-origin: center;
}

.fx-image-drift:hover img,
.fx-image-drift:focus-within img {
  transform: scale(1.045) translate3d(0, -4px, 0);
  filter: saturate(1.1) contrast(1.06);
}

.fx-media-lens {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--lens-x, 50%) var(--lens-y, 50%), rgba(255, 255, 255, 0.24), rgba(42, 180, 232, 0.14) 12%, rgba(192, 160, 100, 0.1) 20%, transparent 34%),
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.06), transparent 58%);
  mix-blend-mode: screen;
  transition: opacity 0.28s ease;
}

.fx-image-drift.is-lens-active .fx-media-lens,
.fx-image-drift:hover .fx-media-lens,
.fx-image-drift:focus-within .fx-media-lens {
  opacity: 1;
}

.fx-label-signal {
  position: relative;
  isolation: isolate;
}

.fx-label-signal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 54px;
  height: 1px;
  pointer-events: none;
  opacity: 0.36;
  background: linear-gradient(90deg, rgba(42, 180, 232, 0), rgba(42, 180, 232, 0.95), rgba(192, 160, 100, 0.82), rgba(42, 180, 232, 0));
  box-shadow: 0 0 12px rgba(42, 180, 232, 0.34);
  transform: scaleX(0.42);
  transform-origin: left center;
  transition:
    opacity 0.32s ease,
    transform 0.42s var(--ease);
}

.fx-section.is-section-active .fx-label-signal::after,
.fx-label-signal:hover::after {
  opacity: 0.9;
  transform: scaleX(1.55);
}

.fx-heading-scan {
  position: relative;
  isolation: isolate;
}

.fx-heading-scan::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18em;
  width: min(190px, 44%);
  height: 2px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, rgba(42, 180, 232, 0), rgba(42, 180, 232, 0.96), rgba(255, 255, 255, 0.82), rgba(192, 160, 100, 0.78), rgba(42, 180, 232, 0));
  filter: drop-shadow(0 0 14px rgba(42, 180, 232, 0.34));
  transform: translateX(-18px) scaleX(0.22);
  transform-origin: left center;
  transition:
    opacity 0.34s ease,
    transform 0.62s var(--ease);
}

.fx-section.is-section-active .fx-heading-scan::after,
.fx-heading-scan:hover::after,
.fx-heading-scan:focus-within::after {
  opacity: 0.88;
  transform: translateX(0) scaleX(1);
}

.fx-tab-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fx-tab-button::after {
  content: "";
  position: absolute;
  left: var(--tab-burst-x, 50%);
  top: var(--tab-burst-y, 50%);
  z-index: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.56), rgba(42, 180, 232, 0.28) 38%, rgba(192, 160, 100, 0.16) 56%, transparent 72%);
  transform: translate(-50%, -50%) scale(0.2);
}

.fx-tab-button.is-tab-burst::after {
  animation: tabBurst 0.52s ease-out both;
}

.fx-magnetic {
  --magnet-x: 0px;
  --magnet-y: 0px;
  translate: var(--magnet-x) var(--magnet-y);
  transition:
    translate 0.18s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
  will-change: translate;
}

.fx-magnetic.is-magnetized {
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(42, 180, 232, 0.18),
    0 0 22px rgba(42, 180, 232, 0.16);
}

.fx-signal-row {
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s var(--ease);
}

.fx-signal-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(42, 180, 232, 0.96), rgba(192, 160, 100, 0.72), transparent);
  box-shadow: 0 0 16px rgba(42, 180, 232, 0.38);
  transform: translateY(-60%);
  transition:
    opacity 0.28s ease,
    transform 0.42s var(--ease);
}

.fx-signal-row:hover,
.fx-signal-row:focus-within {
  border-color: rgba(42, 180, 232, 0.48);
  background-color: rgba(42, 180, 232, 0.05);
  transform: translateX(5px);
}

.fx-signal-row:hover::after,
.fx-signal-row:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.fx-surface:hover,
.fx-surface:focus-within {
  border-color: rgba(124, 190, 232, 0.46);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(42, 180, 232, 0.08);
}

.fx-surface:hover .fx-surface-glow,
.fx-surface:focus-within .fx-surface-glow {
  opacity: 1;
}

.fx-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fx-media img,
.fx-media video {
  transition:
    transform 0.76s var(--ease),
    filter 0.76s ease;
}

.fx-media:not(.page-hero):not(.sustainability-hero):hover img,
.fx-media:not(.page-hero):not(.sustainability-hero):focus-within img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.06);
}

.fx-media.fx-image-drift:not(.page-hero):not(.sustainability-hero):hover img,
.fx-media.fx-image-drift:not(.page-hero):not(.sustainability-hero):focus-within img {
  transform: scale(1.045) translate3d(0, -4px, 0);
  filter: saturate(1.1) contrast(1.06);
}

.fx-media-scan {
  position: absolute;
  top: -22%;
  bottom: -22%;
  left: -32%;
  z-index: 4;
  width: 22%;
  min-width: 92px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(42, 180, 232, 0.22), rgba(255, 255, 255, 0.68), rgba(192, 160, 100, 0.28), transparent);
  filter: blur(0.2px) drop-shadow(0 0 18px rgba(42, 180, 232, 0.3));
  mix-blend-mode: screen;
  transform: skewX(-16deg) translateX(0);
}

.fx-media:hover .fx-media-scan,
.fx-media:focus-within .fx-media-scan,
.fx-section.is-section-active .fx-media-scan {
  animation: mediaSweep 1.18s var(--ease) both;
}

:where(.fx-interactive) {
  position: relative;
}

:where(.contact-button, .text-link, .outline-button, .search-button, .language-pill, .search-submit, .language-form button, .back-to-top).fx-interactive {
  overflow: hidden;
  isolation: isolate;
}

.fx-interactive.is-pressing {
  filter: brightness(1.08);
}

.fx-ripple {
  position: absolute;
  z-index: 8;
  width: var(--ripple-size, 96px);
  height: var(--ripple-size, 96px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(42, 180, 232, 0.28) 28%, rgba(192, 160, 100, 0.18) 44%, transparent 68%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.1);
  animation: fxRipple 0.68s ease-out forwards;
}

@keyframes mediaSweep {
  0% {
    opacity: 0;
    transform: skewX(-16deg) translateX(0);
  }

  18% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
    transform: skewX(-16deg) translateX(760%);
  }
}

@keyframes pageFieldDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scaleX(0.72);
  }

  48% {
    transform: translate3d(54vw, 18px, 0) scaleX(1);
  }
}

@keyframes pageFieldOrbit {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(360deg) translate3d(0, 0, 0);
  }
}

@keyframes pageFieldPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.86);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.06);
  }
}

@keyframes fxRipple {
  0% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(0.06);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes panelRailFlow {
  0%,
  100% {
    transform: translateY(-36%);
  }

  50% {
    transform: translateY(36%);
  }
}

@keyframes tabBurst {
  0% {
    opacity: 0.76;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease),
    filter 0.5s ease;
}

.reveal.is-visible,
.hero-content.reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.page-hero-content.reveal,
.sustainability-hero-content.reveal {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(42, 180, 232, 0.42);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 58;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  color: #fff;
  background: rgba(6, 20, 40, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .page-motion-field {
    opacity: 0.24;
  }

  .page-motion-field span:nth-child(1),
  .page-motion-field span:nth-child(3) {
    display: none;
  }

  .fx-dialect-spark {
    display: none;
  }

  .section-pulse {
    left: 28px;
    width: min(150px, 48vw);
  }

  .fx-section.is-section-active .fx-media-scan {
    animation: none;
  }

  .fx-media-scan {
    display: none;
  }

  .fx-nav-link::before,
  .fx-trace-line,
  .fx-corner-node,
  .fx-panel-rail,
  .fx-media-lens,
  .fx-tab-button::after {
    display: none;
  }

  .fx-surface:hover,
  .fx-surface:focus-within {
    box-shadow: none;
  }

  .fx-timeline-node:hover,
  .fx-timeline-node:focus-within,
  .fx-timeline-node:hover > div,
  .fx-timeline-node:focus-within > div {
    transform: none;
  }

  .fx-image-drift:hover img,
  .fx-image-drift:focus-within img,
  .fx-media.fx-image-drift:not(.page-hero):not(.sustainability-hero):hover img,
  .fx-media.fx-image-drift:not(.page-hero):not(.sustainability-hero):focus-within img {
    transform: none;
  }

  .fx-magnetic {
    translate: 0 0 !important;
  }

  .fx-signal-row:hover,
  .fx-signal-row:focus-within {
    transform: none;
  }

  .fx-label-signal::after,
  .fx-heading-scan::after {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
    font-size: 14px;
  }

  .enterprise-vision-grid,
  .capability-grid,
  .compute-observation-grid,
  .service-program-grid,
  .sector-matrix,
  .event-card-grid,
  .operation-grid,
  .process-rail,
  .roadmap-timeline,
  .join-path-grid,
  .mutual-loop-grid,
  .focus-grid,
  .advisory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-program-card,
  .service-program-card:nth-child(1),
  .service-program-card:nth-child(6),
  .sector-card,
  .sector-card:nth-child(2),
  .sector-card:nth-child(3),
  .event-card-large,
  .event-card-large:nth-child(1),
  .event-card-large:nth-child(2),
  .event-card-large:nth-child(3),
  .event-card-large:nth-child(6) {
    grid-column: auto;
  }

  .portal-focus-layout,
  .insight-feature,
  .commitment-showcase,
  .sustainability-institute {
    grid-template-columns: 1fr;
  }

  .compute-observation-head,
  .compute-copy-panel {
    grid-template-columns: 1fr;
  }

  .compute-copy-panel > p {
    align-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 104px;
    --page-pad: 28px;
  }

  .site-header {
    justify-content: center;
    min-height: var(--header-height);
    max-height: 112px;
    padding: 16px 18px;
  }

  .site-header::after {
    left: 20px;
    right: 20px;
  }

  .brand img {
    width: 148px;
  }

  .brand span {
    font-size: 10px;
  }

  .menu-toggle {
    position: absolute;
    top: 28px;
    left: 18px;
    z-index: 4;
    display: inline-grid;
    place-items: center;
    gap: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 20, 40, 0.28);
    cursor: pointer;
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .header-actions {
    position: absolute;
    top: 28px;
    right: 14px;
    gap: 8px;
  }

  .search-button {
    width: 24px;
    height: 24px;
  }

  .search-button svg {
    width: 18px;
    height: 18px;
  }

  .language-pill {
    gap: 4px;
    width: 54px;
    min-width: 54px;
    height: 30px;
    padding: 0 7px;
    font-size: 13px;
  }

  .language-pill svg {
    width: 10px;
    height: 10px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: rgba(4, 19, 38, 0.96);
    box-shadow: var(--shadow);
    transition:
      max-height 0.35s var(--ease),
      border-color 0.25s ease;
  }

  .main-nav.is-open {
    max-height: 560px;
    border-color: var(--line);
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-menu {
    position: static;
    width: auto;
    padding: 12px 18px 18px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: rgba(226, 235, 245, 0.9);
    background: rgba(7, 28, 54, 0.88);
  }

  .nav-dropdown-menu a {
    color: rgba(226, 235, 245, 0.92);
    padding: 10px 14px;
    border: 1px solid rgba(124, 190, 232, 0.18);
    background: rgba(42, 180, 232, 0.06);
  }

  .hero-section,
  .page-hero {
    min-height: 680px;
  }

  .hero-content,
  .page-hero-content {
    width: calc(100% - 56px);
    margin-left: 28px;
    margin-right: 28px;
  }

  .hero-content {
    min-height: 680px;
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero-webgl-layer,
  .hero-system-panel {
    display: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .energy-join-button {
    --energy-size: 138px;
    --energy-field: 54px;
    width: var(--energy-size);
    min-width: var(--energy-size);
    height: var(--energy-size);
    min-height: var(--energy-size);
    padding: 0;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .hero-content .hero-title-mobile br {
    display: initial;
  }

  .hero-content h1 {
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1.18;
  }

  .hero-eyebrow {
    padding-left: 0;
  }

  .scroll-cue {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .mobile-break {
    display: block;
  }

  .two-column,
  .section-head,
  .section-heading,
  .compute-observation-head,
  .enterprise-vision-body,
  .capability-section,
  .portal-intro-section,
  .event-overview-section,
  .event-operation-section,
  .service-support-section,
  .enablement-section,
  .contact-page-section,
  .methodology-section,
  .about-story,
  .action-plan-section,
  .brand-communication-section,
  .contact-section,
  .sustainability-contact,
  .portal-principle-banner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-story-head {
    position: static;
  }

  .about-story {
    gap: 24px;
  }

  .content-section,
  .page-section,
  .org-system-section,
  .join-path-section,
  .mutual-loop-section,
  .methodology-section,
  .action-plan-section,
  .brand-communication-section,
  .event-calendar-section,
  .roadmap-section {
    padding: 44px 28px;
  }

  .content-section::before,
  .page-section::before {
    left: 28px;
    right: 28px;
  }

  .compute-observation-head {
    gap: 18px;
  }

  .compute-observation-head h2 {
    font-size: clamp(32px, 8.4vw, 46px);
  }

  .compute-observation-head p {
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(42, 180, 232, 0.42);
  }

  .compute-observation-grid {
    grid-template-columns: 1fr;
  }

  .compute-visual-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(78, 160, 210, 0.28);
  }

  .compute-visual-card img {
    min-height: 230px;
  }

  .compute-copy-panel {
    padding: 24px;
  }

  .compute-copy-panel h3 {
    font-size: clamp(26px, 7.4vw, 34px);
  }

  .compute-copy-panel > p {
    font-size: 16px;
  }

  .compute-facts {
    grid-template-columns: 1fr;
  }

  .compute-facts div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(78, 160, 210, 0.24);
  }

  .compute-facts div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .strategy-console {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .strategy-tabs,
  .action-plan-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .action-plan-tabs {
    grid-template-columns: 1fr;
  }

  .methodology-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    align-content: start;
    padding: 22px;
  }

  .methodology-menu .section-label,
  .methodology-menu h2 {
    grid-column: 1 / -1;
  }

  .methodology-menu h2 {
    margin-bottom: 6px;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.12;
  }

  .strategy-tabs button,
  .methodology-menu button,
  .action-plan-tabs button {
    min-width: 0;
    min-height: 52px;
    padding: 0 10px;
    text-align: center;
    white-space: normal;
  }

  .strategy-tabs button:hover,
  .strategy-tabs button.is-active,
  .methodology-menu button:hover,
  .methodology-menu button.is-active,
  .action-plan-tabs button:hover,
  .action-plan-tabs button.is-active {
    transform: none;
  }

  .strategy-panels,
  .action-plan-stage {
    min-height: 0;
    padding: 22px;
  }

  .action-plan-copy h2 {
    font-size: clamp(34px, 8.6vw, 42px);
    line-height: 1.14;
  }

  .strategy-panels .strategy-panel,
  .action-plan-stage .strategy-panel {
    position: static;
    inset: auto;
    display: none;
    min-height: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .strategy-panels .strategy-panel.is-active,
  .action-plan-stage .strategy-panel.is-active {
    display: block;
  }

  .methodology-section {
    padding: 46px var(--page-pad) 58px;
  }

  .methodology-menu {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
    border-left: 1px solid rgba(42, 180, 232, 0.38);
    border-bottom: 0;
  }

  .methodology-menu button {
    min-height: 46px;
    padding: 0 14px;
    text-align: left;
  }

  .methodology-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .methodology-stage .strategy-panel,
  .methodology-stage .strategy-panel.is-active {
    display: grid;
    min-height: 0;
    padding: 20px;
    transform: none;
  }

  .enterprise-vision-grid,
  .capability-grid,
  .page-grid,
  .service-program-grid,
  .sector-matrix,
  .event-card-grid,
  .operation-grid,
  .process-rail,
  .roadmap-timeline,
  .join-path-grid,
  .mutual-loop-grid,
  .focus-grid,
  .advisory-grid,
  .csr-metrics,
  .contact-grid,
  .news-grid,
  .org-system-grid,
  .award-strip {
    grid-template-columns: 1fr;
  }

  .event-calendar {
    grid-template-columns: 1fr;
  }

  .org-system-grid {
    gap: 14px;
  }

  .org-system-card {
    min-height: 0;
    padding: 24px;
  }

  .org-system-card span {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .org-system-card h3 {
    margin-bottom: 10px;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.16;
  }

  .org-system-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .event-card-large {
    min-height: 0;
    grid-template-rows: 188px auto;
  }

  .event-card-large div,
  .insight-feature div,
  .insight-card-body,
  .news-card div {
    padding: 22px;
  }

  .portal-event-grid .news-card h3 {
    font-size: 27px;
    line-height: 1.16;
  }

  .portal-event-grid .news-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .newsroom-brief-section,
  .newsroom-feature {
    grid-template-columns: 1fr;
  }

  .newsroom-brief-section {
    padding: 44px 28px;
  }

  .newsroom-feature {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .newsroom-feature img {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    height: 230px;
    min-height: 0;
  }

  .newsroom-feature div,
  .newsroom-feed .news-card div {
    padding: 24px;
  }

  .newsroom-feature div {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 0;
    margin: 0;
    border-left: 0;
    align-content: start;
    background:
      linear-gradient(180deg, rgba(7, 24, 45, 0.96), rgba(5, 18, 35, 0.98));
  }

  .newsroom-feature h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.16;
  }

  .newsroom-feature p {
    font-size: 17px;
    line-height: 1.72;
  }

  .newsroom-category-strip {
    grid-template-columns: 1fr 1fr;
  }

  .newsroom-category-strip a {
    min-height: 62px;
    padding: 0 18px;
    border-right: 1px solid var(--line);
    font-size: 17px;
  }

  .newsroom-category-strip a:nth-child(2n) {
    border-right: 0;
  }

  .newsroom-toolbar,
  .newsroom-filter-form {
    grid-template-columns: 1fr;
  }

  .newsroom-toolbar {
    align-items: start;
    padding: 20px;
  }

  .newsroom-filter-form,
  .newsroom-filter-form label,
  .newsroom-filter-form input,
  .newsroom-filter-form button {
    width: 100%;
  }

  .newsroom-feed .news-grid {
    grid-template-columns: 1fr;
  }

  .newsroom-feed .section-heading {
    grid-template-columns: 1fr;
  }

  .newsroom-feed .news-card,
  .newsroom-feed .news-card:nth-child(1),
  .newsroom-feed .news-card:nth-child(2),
  .newsroom-feed .news-card:nth-child(3),
  .newsroom-feed .news-card:nth-child(4),
  .newsroom-feed .news-card:nth-child(5),
  .newsroom-feed .news-card:only-child {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    max-width: none;
  }

  .newsroom-feed .news-card:nth-child(2) .newsroom-card-media,
  .newsroom-feed .news-card:nth-child(2) div {
    grid-area: auto;
  }

  .newsroom-card-media {
    height: 198px;
  }

  .newsroom-feed .news-card:nth-child(1) .newsroom-card-media,
  .newsroom-feed .news-card:nth-child(2) .newsroom-card-media,
  .newsroom-feed .news-card:nth-child(4) .newsroom-card-media {
    height: 198px;
    border-right: 0;
    border-bottom: 1px solid rgba(124, 190, 232, 0.24);
  }

  .newsroom-feed .news-card:nth-child(2) div {
    background:
      linear-gradient(180deg, rgba(7, 24, 45, 0.98), rgba(5, 18, 35, 0.98));
  }

  .news-detail-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--header-height) + 54px) 28px 56px;
  }

  .news-detail-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
  }

  .news-detail-hero p {
    font-size: 18px;
    line-height: 1.72;
  }

  .news-detail-meta span {
    width: fit-content;
    max-width: 100%;
  }

  .news-detail-visual {
    min-height: 280px;
  }

  .news-detail-cover {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .detail-orbit-a {
    width: 210px;
    height: 210px;
  }

  .detail-orbit-b {
    width: 158px;
    height: 158px;
  }

  .detail-core {
    width: 116px;
    height: 116px;
  }

  .detail-core strong {
    font-size: 22px;
  }

  .detail-signal-list {
    right: 16px;
    bottom: 16px;
  }

  .detail-signal-list span {
    min-width: 132px;
    font-size: 11px;
  }

  .news-detail-body {
    grid-template-columns: 1fr;
    padding: 46px 28px 66px;
  }

  .news-detail-lead p {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  .news-detail-section h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .news-detail-section p {
    font-size: 17px;
    line-height: 1.82;
  }

  .news-rich-content {
    font-size: 17px;
    line-height: 1.82;
  }

  .news-rich-content img {
    max-height: 420px;
  }

  .news-detail-aside {
    position: static;
  }

  .operation-card,
  .event-calendar .calendar-item {
    min-height: 0;
  }

  .event-calendar .calendar-item {
    padding: 14px 18px;
  }

  .event-calendar-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .brand-principles {
    grid-template-columns: 1fr;
  }

  .portal-intro-section,
  .event-overview-section,
  .service-support-section,
  .enablement-section,
  .event-operation-section {
    padding: 44px 28px;
  }

  .section-heading,
  .section-head,
  .enterprise-vision-body {
    gap: 14px;
  }

  .portal-events-section .section-head,
  .portal-focus-section .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 22px;
  }

  .portal-events-section .section-head .section-label,
  .portal-focus-section .section-head .section-label,
  .portal-events-section .section-head h2,
  .portal-focus-section .section-head h2,
  .portal-events-section .section-head .text-link,
  .portal-focus-section .section-head .text-link {
    grid-column: 1;
  }

  .portal-events-section .section-head .text-link,
  .portal-focus-section .section-head .text-link {
    justify-self: start;
    margin-top: 0;
  }

  .two-column,
  .portal-intro-section,
  .event-overview-section,
  .event-operation-section,
  .service-support-section,
  .enablement-section,
  .contact-page-section,
  .methodology-section,
  .action-plan-section,
  .brand-communication-section,
  .contact-section,
  .sustainability-contact,
  .portal-principle-banner {
    gap: 20px;
  }

  .lead-form-grid,
  .lead-form-actions {
    grid-template-columns: 1fr;
  }

  .lead-form-actions {
    display: grid;
    align-items: stretch;
  }

  .lead-form .contact-button {
    width: 100%;
  }

  .contact-section {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    row-gap: 72px;
    overflow: hidden;
  }

  .contact-section .energy-join-button {
    justify-self: center;
    margin: 8px auto 24px;
  }

  .about-timeline-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-timeline-head {
    position: static;
    max-width: none;
  }

  .about-timeline-track {
    gap: 4px;
    padding-left: 18px;
  }

  .about-timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .about-timeline-item::before {
    left: -24px;
    top: 22px;
  }

  .about-timeline-item time {
    justify-content: start;
    min-height: 0;
    padding: 0 0 0 12px;
    border-bottom: 0;
    border-left: 1px solid rgba(192, 160, 100, 0.46);
  }

  .about-timeline-item > div {
    padding: 14px 0 20px 12px;
  }

  .section-heading,
  .org-system-copy,
  .enterprise-vision-head,
  .method-copy,
  .sustainability-section-head {
    margin-bottom: 22px;
  }

  .section-label {
    margin-bottom: 6px;
  }

  .section-heading p,
  .section-head p,
  .enterprise-vision-head p,
  .enterprise-vision-copy p,
  .capability-copy p {
    font-size: 17px;
    line-height: 1.68;
  }

  .portal-intro-media,
  .support-image,
  .enablement-media,
  .event-overview-media,
  .brand-communication-media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .page-hero-content p,
  .hero-lead,
  .section-copy p,
  .portal-intro-copy p,
  .support-content p,
  .enablement-content p,
  .event-overview-copy p,
  .operation-panel p,
  .contact-panel p,
  .about-story-copy p {
    font-size: 17px;
    line-height: 1.72;
  }

  .sustainability-hero {
    min-height: 560px;
  }

  .sustainability-hero-content {
    width: calc(100% - 56px);
    margin: 118px 28px 0;
  }

  .sustainability-hero h1 {
    font-size: 42px;
  }

  .sustainability-hero-content > p:last-child {
    font-size: 18px;
    line-height: 1.68;
  }

  .sustainability-tabs {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0 20px;
    overflow: hidden;
  }

  .sustainability-tabs::after {
    display: none;
  }

  .sustainability-tabs a {
    justify-content: center;
    min-height: 62px;
    padding: 0 10px;
    border-bottom: 1px solid var(--paper-line);
    font-size: 17px;
    line-height: 1.28;
    white-space: normal;
    text-align: center;
  }

  .sustainability-overview,
  .sustainability-method,
  .sustainability-advisory,
  .sustainability-institute,
  .sustainability-csr,
  .sustainability-report,
  .sustainability-contact {
    padding: 44px 28px;
    scroll-margin-top: 0;
  }

  .sustainability-awards {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .sustainability-method {
    padding-top: 28px;
  }

  .sustainability-report {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .sustainability-report + .sustainability-advisory {
    padding-top: 40px;
  }

  .sustainability-lead,
  .commitment-feature p,
  .method-copy p,
  .report-copy p,
  .institute-copy p,
  .csr-copy p,
  .sustainability-contact p {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.72;
  }

  .commitment-item {
    min-height: 82px;
    padding: 0 20px;
    font-size: 18px;
  }

  .commitment-showcase {
    margin-top: 28px;
  }

  .award-strip {
    margin-top: 22px;
  }

  .sustainability-awards .award-card,
  .csr-metrics article {
    min-height: 76px;
    padding: 14px 18px;
  }

  .sustainability-awards .outline-button {
    min-height: 42px;
    margin-top: 16px;
  }

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

  .csr-metrics article {
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 12px 8px;
    text-align: center;
  }

  .sustainability-awards .award-card h3,
  .csr-metrics strong {
    font-size: 22px;
  }

  .sustainability-awards .award-card p,
  .csr-metrics span {
    font-size: 17px;
    line-height: 1.66;
  }

  .sustainability-csr {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .methodology-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .enterprise-vision-card h3,
  .capability-card h3,
  .page-card h3,
  .service-program-card h3,
  .sector-card h3,
  .operation-card h3,
  .process-step h3,
  .roadmap-node h3,
  .join-path-card h3,
  .mutual-loop-card h3,
  .focus-card h3,
  .advisory-card h3,
  .calendar-item h3,
  .award-card h3 {
    margin-top: 18px;
  }

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

  .region-tile {
    min-height: 126px;
    padding: 16px;
    font-size: 16px;
  }

  .region-tile i {
    font-size: 22px;
  }

  .site-footer {
    display: grid;
    padding: 42px 28px;
  }

  .back-to-top {
    display: none;
  }
}

@media (max-width: 430px) {
  :root {
    --page-pad: 24px;
  }

  .brand img {
    width: 138px;
  }

  .brand span {
    font-size: 9px;
  }

  .hero-content,
  .page-hero-content,
  .sustainability-hero-content {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }

  .content-section,
  .page-section,
  .org-system-section,
  .join-path-section,
  .mutual-loop-section,
  .action-plan-section,
  .brand-communication-section,
  .event-calendar-section,
  .roadmap-section,
  .portal-intro-section,
  .event-overview-section,
  .service-support-section,
  .enablement-section,
  .event-operation-section,
  .sustainability-overview,
  .sustainability-method,
  .sustainability-advisory,
  .sustainability-institute,
  .sustainability-csr,
  .sustainability-report,
  .sustainability-contact {
    padding-right: 24px;
    padding-left: 24px;
  }

  .content-section::before,
  .page-section::before {
    left: 24px;
    right: 24px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero-content h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.14;
  }

  .sustainability-hero h1 {
    font-size: 38px;
  }

  .enterprise-vision-card,
  .capability-card,
  .page-card,
  .service-program-card,
  .sector-card,
  .operation-card,
  .process-step,
  .roadmap-node,
  .join-path-card,
  .mutual-loop-card,
  .focus-card,
  .advisory-card,
  .calendar-item,
  .award-card {
    min-height: 0;
    padding: 24px;
  }

  .lead-form {
    padding: 22px;
  }

  .lead-form-head h3 {
    font-size: 26px;
  }
}

@media (max-width: 1120px) {
  .service-portal-page .service-program-card,
  .service-portal-page .service-program-card:nth-child(1),
  .service-portal-page .service-program-card:nth-child(2),
  .service-portal-page .service-program-card:nth-child(5),
  .service-portal-page .service-program-card:nth-child(6),
  .industry-portal-page .sector-card,
  .industry-portal-page .sector-card:nth-child(1),
  .industry-portal-page .sector-card:nth-child(2),
  .industry-portal-page .sector-card:nth-child(4),
  .industry-portal-page .sector-card:nth-child(5),
  .event-portal-page .event-card-large,
  .event-portal-page .event-card-large:nth-child(1),
  .event-portal-page .event-card-large:nth-child(2),
  .event-portal-page .event-card-large:nth-child(3),
  .event-portal-page .event-card-large:nth-child(4),
  .event-portal-page .event-card-large:nth-child(6) {
    grid-column: auto;
  }

  .service-portal-page .service-program-grid,
  .industry-portal-page .sector-matrix,
  .event-portal-page .operation-grid,
  .service-portal-page .process-rail,
  .event-portal-page .event-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-portal-page .event-card-grid,
  .industry-portal-page .industry-signal-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-portal-page .section-heading,
  .industry-portal-page .section-heading,
  .event-portal-page .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-portal-page .section-heading .section-label,
  .industry-portal-page .section-heading .section-label,
  .event-portal-page .section-heading .section-label,
  .service-portal-page .section-heading h2,
  .industry-portal-page .section-heading h2,
  .event-portal-page .section-heading h2,
  .service-portal-page .section-heading p,
  .industry-portal-page .section-heading p,
  .event-portal-page .section-heading p {
    grid-column: 1;
  }

  .service-portal-page .section-heading h2,
  .industry-portal-page .section-heading h2,
  .event-portal-page .section-heading h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.16;
  }

  .service-portal-page .section-heading p,
  .industry-portal-page .section-heading p,
  .event-portal-page .section-heading p {
    font-size: 16px;
    line-height: 1.68;
  }

  .service-portal-page .service-program-grid,
  .industry-portal-page .sector-matrix,
  .event-portal-page .event-card-grid,
  .event-portal-page .operation-grid,
  .service-portal-page .process-rail,
  .industry-portal-page .industry-signal-panel,
  .event-portal-page .event-calendar,
  .service-portal-page .support-list,
  .industry-portal-page .enablement-list {
    grid-template-columns: 1fr;
  }

  .service-portal-page .service-support-section,
  .industry-portal-page .industry-intro,
  .industry-portal-page .action-plan-section,
  .event-portal-page .event-operation-section,
  .event-portal-page .brand-communication-section {
    grid-template-columns: 1fr;
  }

  .service-portal-page .support-content,
  .industry-portal-page .industry-signal-panel,
  .event-portal-page .brand-communication-copy,
  .event-portal-page .brand-communication-media {
    min-width: 0;
  }

  .service-portal-page .portal-intro-media img,
  .service-portal-page .support-image img,
  .event-portal-page .event-overview-media img {
    position: relative;
    z-index: 1;
  }

  .service-portal-page .portal-intro-media::after,
  .service-portal-page .support-image::after,
  .event-portal-page .event-overview-media::after {
    opacity: 0.34;
  }

  .service-portal-page .portal-intro-media,
  .event-portal-page .event-overview-media,
  .industry-tech-panel {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .industry-tech-panel {
    padding: 24px;
  }

  .industry-tech-panel::before {
    inset: 18px;
    background-size: 40px 40px;
  }

  .industry-tech-panel strong {
    font-size: clamp(24px, 7vw, 34px);
  }

  .service-portal-page .process-rail {
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .service-portal-page .service-program-card,
  .industry-portal-page .sector-card,
  .event-portal-page .operation-card,
  .service-portal-page .process-step,
  .industry-portal-page .roadmap-node {
    min-height: 0;
    padding: 0 0 20px;
  }

  .service-portal-page .service-program-card {
    padding-left: 16px;
  }

  .service-portal-page .service-program-card h3,
  .industry-portal-page .sector-card h3,
  .event-portal-page .operation-card h3,
  .service-portal-page .process-step h3,
  .industry-portal-page .roadmap-node h3 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.16;
  }

  .service-portal-page .service-program-card p,
  .industry-portal-page .sector-card p,
  .event-portal-page .operation-card p,
  .service-portal-page .process-step p,
  .industry-portal-page .roadmap-node p {
    font-size: 16px;
    line-height: 1.68;
  }

  .event-portal-page .event-card-large {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 20px 0;
  }

  .event-portal-page .event-card-large div {
    order: 1;
  }

  .event-portal-page .event-card-large img {
    order: 2;
    height: clamp(190px, 58vw, 240px);
    aspect-ratio: auto;
    object-position: center 76%;
  }

  .event-portal-page .brand-signal-visual {
    width: 100%;
    min-height: 260px;
  }

  .event-portal-page .brand-signal-visual strong,
  .event-portal-page .brand-signal-visual small {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .fx-media-scan,
  .fx-trace-line,
  .fx-corner-node,
  .fx-panel-rail,
  .fx-media-lens,
  .fx-tab-button::after,
  .fx-label-signal::after,
  .fx-heading-scan::after,
  .fx-signal-row::after,
  .fx-ripple,
  .fx-dialect-aura,
  .fx-dialect-spark,
  .page-motion-field,
  .section-pulse {
    display: none;
  }

  .fx-surface-glow {
    opacity: 0 !important;
  }
}

.preview-ribbon {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #f7fbff;
  background: rgba(3, 18, 34, 0.94);
  border-bottom: 1px solid rgba(188, 143, 63, 0.42);
  backdrop-filter: blur(18px);
}

.preview-ribbon strong,
.preview-ribbon span,
.preview-ribbon a {
  font-size: 14px;
  line-height: 1.4;
}

.preview-ribbon strong {
  margin-right: 12px;
  color: #e4b760;
}

.preview-ribbon span {
  color: rgba(247, 251, 255, 0.76);
}

.preview-ribbon nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-ribbon a {
  color: #f7fbff;
  text-decoration: none;
  border-bottom: 1px solid rgba(88, 196, 255, 0.58);
}

.preview-page {
  min-height: calc(100vh - 53px);
}

@media (max-width: 720px) {
  .preview-ribbon {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
