@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.page-con {
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
  padding: 0 20px;
  z-index: 4;
}

.page-section {
  width: 100%;
}

.page-section.subhero {
  margin-bottom: 0;
}

.page-tit {
  margin-bottom: 50px;
}

.page-tit>h5,
.page-tit .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #011e4e;
  font-weight: 800;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-tit>h5>span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #011E4E;
}

.page-tit>h3,
.page-tit h2 {
  font-size: 44px;
  color: #14202b;
  font-weight: 800;
  line-height: 1.2;
}

.page-tit>p,
.page-tit .lede {
  font-size: 16px;
  color: #5b6770;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1rem;
}

:root {
  --navy-950: #050E2B;
  --navy-900: #07192F;
  --navy-800: #0E2841;
  --paper: #FFFFFF;
  --paper-2: #F5F8F9;
  --teal: #011e4e;
  --teal-400: #4C7DBE;
  --teal-600: #01142f;
  --ink: #14202B;
  --stone: #5B6770;
  --stone-2: #8A949C;
  --mist: #BEC4C4;
  --line: #E4E8EB;
  --line-dk: rgba(255, 255, 255, .10);
  --serif: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap: 1440px;
  --wrap-wide: 1440px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t1: clamp(40px, 6vw, 80px);
  --t2: clamp(28px, 3.4vw, 44px);
  --t3: clamp(19px, 1.7vw, 24px);
  --t4: 16px;
  --t5: 13px;
  --t-sm: 14px;
  --t-xs: 11.5px;
  --sec-y: 120px;
  --tuck: 54px;
  --gap-head: 54px;
  --gap-lede: 20px;
  --gap-eyebrow: 14px;
  --gap-grid: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t5);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--gap-eyebrow);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.eyebrow.on-dark {
  color: #fff;
}

.eyebrow.on-dark::before {
  background: var(--teal-400);
}

.serif {
  font-family: var(--serif);
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px calc((100vw - min(100vw, 1440px))/2 + 40px);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}

.hd.solid {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: var(--t4);
  color: #fff;
  transition: color .4s var(--ease);
  white-space: nowrap;
}

.hd.solid .logo {
  color: var(--ink);
}

.logo .mark {
  display: inline-flex;
  align-items: center;
}

.logo .mark svg {
  height: 24px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  height: 42px;
}

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

.nav-item>a {
  font-size: var(--t4);
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  transition: color .25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hd.solid .nav-item>a {
  color: var(--stone);
}

.nav-item>a:hover {
  color: #fff;
}

.hd.solid .nav-item>a:hover {
  color: var(--teal);
}

.nav-item>a.active {
  color: #fff;
}

.hd.solid .nav-item>a.active {
  color: var(--ink);
}

.nav-item>a .caret {
  font-size: 9px;
  opacity: .65;
  transition: transform .3s;
}

.nav-item.has-sub:hover>a .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 178px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(7, 25, 47, .18);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 5;
}

.nav-item.has-sub:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--stone);
  padding: 10px 16px;
  border-radius: 9px;
  white-space: nowrap;
  transition: .2s;
}

.dropdown a:hover {
  background: var(--paper-2);
  color: var(--teal);
}

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

.lang {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 4px;
  font-size: var(--t-xs);
  font-weight: 700;
}

.hd.solid .lang {
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.lang button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
}

.hd.solid .lang button {
  color: var(--stone-2);
}

.lang button.on {
  background: var(--teal);
  color: #fff;
}

.hd.solid .lang button.on {
  background: var(--navy-900);
  color: #fff;
}

.burger {
  display: none;
  background: 0;
  border: 0;
  cursor: pointer;
  padding: 6px;
  font-size: 23px;
  color: #fff;
  line-height: 1;
}

.hd.solid .burger {
  color: var(--ink);
}

.m-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 92px 32px 48px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}

.m-nav.open {
  transform: none;
  visibility: visible;
}

.m-nav .m-link {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dk);
  font-family: var(--serif);
  display: block;
}

.m-nav .m-link span {
  font-size: var(--t-xs);
  font-family: var(--sans);
  color: var(--teal-400);
  display: block;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 2px;
}

.m-item {
  border-bottom: 1px solid var(--line-dk);
}

.m-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: 0;
  border: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  font-family: var(--serif);
  padding: 15px 0;
  cursor: pointer;
  text-align: left;
  line-height: 1.1;
}

.m-top .lbl span {
  font-size: var(--t-xs);
  font-family: var(--sans);
  color: var(--teal-400);
  display: block;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 2px;
}

.m-top .mc {
  font-size: var(--t4);
  color: var(--mist);
  margin-top: 18px;
  transition: transform .35s var(--ease);
}

.m-item.open .m-top .mc {
  transform: rotate(180deg);
}

.m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}

.m-item.open .m-sub {
  max-height: 360px;
}

.m-sub a {
  display: block;
  color: var(--mist);
  font-size: 16px;
  font-weight: 500;
  padding: 11px 0 11px 4px;
  font-family: var(--sans);
}

.m-sub a:first-child {
  padding-top: 4px;
}

.m-sub a:last-child {
  padding-bottom: 20px;
}

.m-sub a:hover {
  color: var(--teal-400);
}

.m-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: 0;
  border: 0;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
}

.hd.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("https://images.unsplash.com/photo-1756913453779-ea366264b54a?auto=format&fit=crop&w=2400&q=80") center/cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 25, 47, .36) 0%, rgba(7, 25, 47, .15) 40%, rgba(5, 14, 43, .55) 100%);
}

.hero .wrap {
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: var(--t1);
  line-height: 1.05;
  letter-spacing: -.025em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .35);
}

.hero .sub {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(14px, 1.7vw, 19px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  margin-top: 22px;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 42px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: var(--t4);
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: .3s var(--ease);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 30px rgba(1, 30, 78, .4);
}

.btn-primary:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}

.btn i {
  font-size: var(--t5);
  transition: transform .3s;
}

.btn:hover i {
  transform: translateX(4px);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: var(--t-xs);
  letter-spacing: .25em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(rgba(255, 255, 255, .6), transparent);
  animation: cue 2.2s var(--ease) infinite;
}

.fade {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.fade.in {
  opacity: 1;
  transform: none;
}

.hero .fade {
  transition-delay: .3s;
}

.hero .sub.fade {
  transition-delay: .5s;
}

.hero .cta-row.fade {
  transition-delay: .7s;
}

section {
  position: relative;
}

.sec {
  padding: var(--sec-y) 0;
}

.sec-head {
  max-width: 720px;
  margin-bottom: var(--gap-head);
}

.sec-head h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.sec-head h2 .en {
  font-family: var(--serif);
  font-weight: 800;
}

.sec-head .lede {
  font-size: var(--t4);
  color: var(--stone);
  margin-top: var(--gap-lede);
}

.sec-head .lede.sm {
  font-size: var(--t4);
  margin-top: 10px;
}

.obiz {
  padding: var(--sec-y) 0;
  overflow: hidden;
}

.obiz-inner {
  padding-left: calc((100vw - min(100vw, 1440px))/2 + 40px);
  padding-right: 0;
  box-sizing: border-box;
  width: 100%;
}

.obiz-grid {
  display: grid;
  grid-template-columns: clamp(280px, 27vw, 400px) 1fr;
  gap: 52px;
  align-items: start;
}

.obiz-left .eyebrow {
  margin-bottom: 14px;
}

.obiz-left h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.obiz-left .lede {
  font-size: var(--t4);
  color: var(--stone);
  margin-top: var(--gap-lede);
  line-height: 1.75;
}

.obiz-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.otab {
  display: inline-flex;
  align-items: center;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--stone);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  font-family: inherit;
  transition: .25s var(--ease);
}

.otab::before {
  content: "#";
  color: var(--teal);
  margin-right: 3px;
  font-weight: 800;
}

.otab:hover {
  border-color: var(--teal);
  color: var(--ink);
}

.otab.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.otab.on::before {
  color: var(--teal-400);
}

.obiz-slider {
  position: relative;
  min-width: 0;
}

.obiz-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-right: 40px;
}

.obiz-track::-webkit-scrollbar {
  display: none;
}

.obiz-track.drag {
  cursor: grabbing;
  scroll-snap-type: none;
}

.ocard {
  position: relative;
  flex: 0 0 960px;
  max-width: 90vw;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--navy-900);
}

.ocard-img {
  position: relative;
  width: 100%;
}

.ocard-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.ocard-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 25, 47, .12), rgba(7, 25, 47, .42));
}

.ocard-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  background: var(--teal);
  color: #fff;
  padding: 34px 0 0;
  display: flex;
  flex-direction: column;
}

.ocard-panel .pe,
.ocard-panel h3,
.ocard-panel p {
  padding: 0 36px;
}

.ocard-panel .pe {
  font-size: var(--t5);
  font-weight: 700;
  letter-spacing: .05em;
  opacity: .88;
  margin-bottom: 12px;
}

.ocard-panel h3 {
  font-size: var(--t3);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.ocard-panel p {
  font-size: var(--t5);
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
}

.ocard-more {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.ocard-more .lbl {
  font-size: var(--t4);
  font-weight: 700;
  padding: 0 0 0 36px;
  display: flex;
  align-items: center;
}

.ocard-more .arr {
  flex: none;
  width: 66px;
  align-self: stretch;
  min-height: 64px;
  background: rgba(255, 255, 255, .15);
  display: grid;
  place-items: center;
  font-size: var(--t4);
  transition: .3s;
}

.ocard-more:hover .arr {
  background: rgba(255, 255, 255, .3);
}

.exp {
  padding: var(--sec-y) 0 calc(var(--sec-y) + var(--tuck));
  background: var(--navy-900);
  color: #fff;
}

.exp .wrap {
  max-width: var(--wrap-wide);
}

.hl-stage {
  position: relative;
  overflow: hidden;
}

.hl-word {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  margin-bottom: -2.6%;
  user-select: none;
}

.hl-word text {
  font-family: var(--serif);
  font-weight: 800;
  fill: rgba(255, 255, 255, .07);
}

.hl-image {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  height: clamp(380px, 40vw, 540px);
}

.hl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hl-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(8deg, rgba(5, 14, 43, .9) 0%, rgba(5, 14, 43, .5) 32%, rgba(5, 14, 43, .05) 60%, transparent 100%);
}

.hl-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 46px 56px;
  max-width: 680px;
}

.hl-otitle {
  font-size: var(--t3);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.hl-odesc {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, .9);
  margin-top: 16px;
  line-height: 1.75;
}

.hl-image .hl-arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  margin: 0;
}

.hl-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  align-items: start;
}

.hl-stat {
  padding: 0 28px;
  text-align: center;
}

.hl-stat+.hl-stat {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.hl-num {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: clamp(32px, 3.6vw, 50px);
  color: var(--teal-400);
  line-height: 1;
}

.hl-num .u {
  font-size: .42em;
  font-weight: 700;
  margin-left: 2px;
  letter-spacing: 0;
  color: #fff;
}

.hl-lab {
  font-size: var(--t-sm);
  font-weight: 700;
  margin-top: 18px;
  color: #fff;
}

.hl-sub {
  font-size: var(--t-xs);
  color: var(--stone-2);
  margin-top: 8px;
  line-height: 1.5;
}

.hl-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  font-size: var(--t4);
  cursor: pointer;
  margin-top: 20px;
  transition: .3s var(--ease);
}

.hl-arrow:hover {
  background: var(--teal-600);
  transform: translateY(-3px);
}

.biz2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #0F2452;
  color: #fff;
  padding: var(--sec-y) 0;
  border-radius: 54px 54px 0 0;
  margin-top: -54px;
}

.biz2::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -7%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #2C4EA8, #16357E 72%);
  opacity: .6;
  z-index: 0;
}

.biz2::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -34%;
  width: 700px;
  height: 700px;
  border-radius: 46% 54% 60% 40%/52% 48% 52% 48%;
  background: rgba(255, 255, 255, .05);
  transform: rotate(18deg);
  z-index: 0;
}

.biz2 .wrap {
  position: relative;
  z-index: 1;
}

.biz2-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.biz2-head h2 {
  font-size: var(--t2);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -.02em;
}

.biz2-lede {
  font-size: var(--t4);
  color: rgba(255, 255, 255, .78);
  margin-top: var(--gap-lede);
  line-height: 1.75;
  max-width: 440px;
}

.biz2-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  font-weight: 700;
  color: var(--teal-400);
  font-size: var(--t4);
}

.biz2-cta i {
  transition: transform .3s;
}

.biz2-cta:hover i {
  transform: translateX(5px);
}

.biz2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-grid);
}

.bz-card {
  position: relative;
  background: rgba(7, 18, 46, .55);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 32px 30px 92px;
  min-height: 282px;
  overflow: hidden;
  display: block;
  transition: .4s var(--ease);
}

.bz-card:hover {
  background: rgba(11, 26, 64, .82);
  border-color: rgba(95, 180, 194, .45);
  transform: translateY(-5px);
}

.bz-card h3 {
  font-size: var(--t3);
  font-weight: 800;
  letter-spacing: -.01em;
}

.bz-card p {
  font-size: var(--t5);
  color: rgba(255, 255, 255, .6);
  margin-top: 13px;
  line-height: 1.65;
  max-width: 88%;
}

.bz-icon {
  position: absolute;
  right: 26px;
  bottom: 26px;
  line-height: 1;
}

.bz-icon i {
  font-size: 46px;
  background: linear-gradient(135deg, #4C7DBE, #011e4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bz-arrow {
  position: absolute;
  left: 30px;
  bottom: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  font-size: var(--t-sm);
  color: #fff;
  transition: .3s var(--ease);
}

.bz-card:hover .bz-arrow {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
}

.sus {
  padding: var(--sec-y) 0;
  background: var(--paper-2);
}

.sus-top {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 54px;
  align-items: end;
  margin-bottom: var(--gap-head);
}

.sus-intro h2 {
  font-size: var(--t2);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-top: 0;
}

.sus-aside p {
  font-size: var(--t4);
  color: var(--stone);
  line-height: 1.75;
}

.sus-aside .txt-link {
  margin-top: 20px;
  color: var(--teal);
}

.sus-main {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: stretch;
}

.sus-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
}

.sus-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sus-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(5, 14, 43, .35));
}

.esg-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 8px 36px;
}

.esg-row {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.esg-row:last-child {
  border-bottom: none;
}

.esg-ic {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: #f7f7f7;
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 21px;
}

.esg-tag {
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .09em;
  color: var(--teal);
  text-transform: uppercase;
}

.esg-row h3 {
  font-size: var(--t3);
  font-weight: 800;
  margin: 7px 0 9px;
  letter-spacing: -.01em;
}

.esg-row p {
  font-size: var(--t5);
  color: var(--stone);
  line-height: 1.65;
}

.port {
  background: var(--navy-900);
  padding: var(--sec-y) 0;
}

.port .sec-head h2 {
  color: #fff;
}

.port-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: var(--gap-head);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.proj {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .4s var(--ease);
}

.proj::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1.5px dotted rgba(20, 32, 43, .18);
  border-radius: 13px;
  pointer-events: none;
  z-index: 3;
}

.proj:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .32);
}

.proj-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.proj-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.proj:hover .proj-media img {
  transform: scale(1.06);
}

.proj-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-600);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .05em;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.proj-badge i {
  color: var(--teal);
}

.proj-body {
  padding: 26px 28px 30px;
}

.proj-body h3 {
  font-size: var(--t3);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.proj-div {
  border-top: 1.5px dashed var(--line);
  margin: 18px 0 6px;
}

.proj-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.proj-spec .l {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: var(--t-sm);
  color: var(--stone);
  font-weight: 600;
}

.proj-spec .l i {
  color: var(--teal);
  font-size: var(--t-sm);
  width: 18px;
  text-align: center;
}

.proj-spec .v {
  font-size: var(--t4);
  font-weight: 800;
  color: var(--ink);
}

.news {
  padding: var(--sec-y) 0 calc(var(--sec-y) + var(--tuck));
  background: var(--paper);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.nrow {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  transition: .35s var(--ease);
}

.nrow:hover {
  border-color: var(--teal);
}

.nmeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.nmeta .date {
  font-size: var(--t5);
  color: var(--stone-2);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.nmeta .cat-t {
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--teal-600);
  background: rgba(1, 30, 78, .1);
  padding: 5px 11px;
  border-radius: 999px;
}

.nrow h3 {
  font-size: var(--t3);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 22px;
  flex: 1;
  transition: color .3s;
}

.nrow:hover h3 {
  color: var(--teal);
}

.nrow .arrow {
  font-size: var(--t5);
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
}

.nrow .arrow i {
  transition: transform .3s;
}

.nrow:hover .arrow i {
  transform: translateX(5px);
}

.cta-band {
  position: relative;
  color: #fff;
  padding: var(--sec-y) 0;
  isolation: isolate;
  text-align: center;
  border-radius: 54px 54px 0 0;
  margin-top: -54px;
  overflow: hidden;
  z-index: 2;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("https://images.unsplash.com/photo-1680355065203-43ad84bb6e69?auto=format&fit=crop&w=2400&q=80") center/cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(7, 25, 47, .82), rgba(5, 14, 43, .9));
}

.cta-band h2 {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: var(--t2);
  line-height: 1.15;
}

.cta-band p {
  font-size: var(--t4);
  color: rgba(255, 255, 255, .85);
  margin: 20px auto 38px;
  max-width: 560px;
}

.ft {
  background: var(--navy-950);
  color: var(--mist);
  padding: 80px 0 36px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dk);
}

.ft .logo {
  color: #fff;
  margin-bottom: 20px;
}

.ft-about p {
  font-size: var(--t5);
  line-height: 1.7;
  color: var(--stone-2);
  max-width: 300px;
}

.ft h5 {
  color: #fff;
  font-size: var(--t5);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ft ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ft ul a {
  font-size: var(--t-sm);
  color: var(--mist);
  transition: .25s;
}

.ft ul a:hover {
  color: var(--teal-400);
}

.ft-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}

.ft-bottom small {
  font-size: var(--t-xs);
  color: var(--stone-2);
}

.contact {
  padding: var(--sec-y) 0;
  background: var(--paper-2);
}

.contact-head {
  text-align: center;
  margin: 0 auto var(--gap-head);
}

.contact-head .eyebrow {
  margin-bottom: 14px;
}

.contact-head h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.16;
  white-space: nowrap;
}

.contact-head .lede {
  font-size: var(--t4);
  color: var(--stone);
  margin: var(--gap-lede) auto 0;
  max-width: 620px;
  line-height: 1.7;
}

.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 24px;
  align-items: stretch;
}

.contact-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 560px;
  background: var(--navy-800);
  border: 1px solid var(--line);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-addr {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(20, 32, 43, .2);
}

.contact-addr i {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--navy-900);
  color: var(--teal-400);
  display: grid;
  place-items: center;
  font-size: var(--t4);
}

.contact-addr span {
  display: block;
  font-size: var(--t-xs);
  color: var(--stone-2);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-addr b {
  font-size: var(--t5);
  font-weight: 700;
  color: var(--ink);
}

.contact-right {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
}

.cinfo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.cinfo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.cinfo i {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f7f7f7;
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.cinfo span {
  display: block;
  font-size: var(--t-xs);
  color: var(--stone-2);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.cinfo b {
  font-size: var(--t5);
  font-weight: 700;
  color: var(--ink);
}

.contact-form {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
}

.contact-note {
  text-align: center;
  font-size: var(--t5);
  color: var(--stone-2);
  margin: 26px auto 0;
  max-width: 680px;
  line-height: 1.6;
}

.contact-note a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: var(--t5);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.field label span {
  color: var(--teal);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: var(--t-sm);
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  transition: .25s;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--stone-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 30, 78, .13);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
}

.select-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-2);
  font-size: var(--t-xs);
  pointer-events: none;
}

.field.check {
  margin-top: 2px;
}

.cb {
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
  font-size: var(--t5);
  color: var(--stone);
  font-weight: 500;
  cursor: pointer;
  display: flex;
}

.cb input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--teal);
}

.cb a {
  color: var(--teal);
  text-decoration: underline;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.form-foot .cb {
  flex: 1;
  margin: 0;
}

.form-submit {
  width: auto;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 15px 30px;
  font-size: var(--t4);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: .3s var(--ease);
  box-shadow: 0 10px 26px rgba(84, 140, 206, .34);
}

.form-submit:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(1, 30, 78, .44);
}

.form-submit .fs-ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: var(--t4);
  transition: .3s var(--ease);
}

.form-submit:hover .fs-ic {
  background: var(--teal-400);
  transform: rotate(-10deg);
}

.form-msg {
  font-size: var(--t5);
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  min-height: 18px;
}

.form-msg.ok {
  color: var(--teal-600);
}

.form-msg.err {
  color: #c0392b;
}

.subhero-banner {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  min-height: 520px;
}

.sb-box {
  width: 110%;
  height: 110%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-color: #ddd;
  position: absolute;
  bottom: -5%;
  left: 0;
  will-change: transform;
  z-index: 1;
  animation: atani 15s linear infinite alternate;
  display: flex;
}

.sb-box img {
  display: block;
  width: 100%;
}

.subhero-copy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(5, 14, 43, 0.35) 0%, rgba(5, 14, 43, 0.66) 100%);
  color: #fff;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--t5);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 18px;
}

.sub-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-400);
}

.subhero-copy h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.2;
}

.subhero-copy p {
  font-size: var(--t4);
  color: rgba(255, 255, 255, .85);
  margin-top: 18px;
}

.psec {
  padding: var(--sec-y) 0;
}

.psec.tight {
  padding-top: 96px;
}

.phead h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.phead .lede {
  font-size: var(--t4);
  color: var(--stone);
  margin-top: 18px;
  line-height: 1.8;
}

.phead.on-dark h2 {
  color: #fff;
}

.phead.on-dark .lede {
  color: rgba(255, 255, 255, .78);
}

.gcards {
  display: grid;
  gap: var(--gap-grid);
}

.gcards.c3 {
  grid-template-columns: repeat(3, 1fr);
}

.gcards.c4 {
  grid-template-columns: repeat(4, 1fr);
}

.gcards.c3 .gcard {
  border-right: 1px solid var(--line);
}

.gcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 30px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.gcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(20, 32, 43, .10);
}

.gcard>* {
  position: relative;
  z-index: 2;
}

.gnum {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.gnum .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--navy-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.gnum .no {
  font-size: var(--t5);
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--stone-2);
}

.gnum .no b {
  color: var(--teal);
  font-weight: 800;
}

.gcard h3 {
  font-size: var(--t3);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.35;
  margin-bottom: 13px;
}

.gcard p {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.72;
}

.statband {
  background: var(--navy-900);
  color: #fff;
  border-radius: 24px;
  padding: 60px;
  margin-top: 0;
}

.statband .eyebrow {
  margin-bottom: 14px;
}

.statband h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.statband .lede {
  font-size: var(--t4);
  color: rgba(255, 255, 255, .78);
  margin-top: 16px;
  line-height: 1.8;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 46px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.stat-cell {
  padding: 0 30px;
}

.stat-cell+.stat-cell {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.stat-num {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--teal-400);
  line-height: 1;
}

.stat-lab {
  font-size: var(--t-sm);
  font-weight: 700;
  margin-top: 16px;
  color: #fff;
}

.stat-sub {
  font-size: var(--t-xs);
  color: var(--stone-2);
  margin-top: 6px;
  line-height: 1.5;
}

.actis {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 54px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: start;
  margin-top: 50px;
}

.actis-l h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 6px 0 14px;
}

.actis-l p {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.7;
}

.actis-r {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.actis-r p {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.85;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}

.tmember {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 14px 16px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.tmember:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(20, 32, 43, .10);
  border-color: var(--teal);
}

.tphoto {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #0E2841 0%, #7A2C25 58%, #01142f 100%);
}

.tphoto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.tphoto .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--stone-2);
  font-size: 46px;
  opacity: .55;
}

.tinfo {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 15px 6px 2px;
}

.tinfo h3 {
  font-size: var(--t4);
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}

.tinfo h3::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  margin-left: 9px;
  background: var(--line);
  vertical-align: -1px;
}

.tinfo .role {
  font-size: var(--t5);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.4;
}

.team-groups {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.tgroup-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tgroup-tag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: var(--t3);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
  white-space: nowrap;
}

.tgroup-tag::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
}

.tgroup-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.tmember.clickable {
  cursor: pointer;
}

.tmore {
  position: absolute;
  right: 11px;
  bottom: 11px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(1, 30, 78, .42);
  transition: transform .3s var(--ease);
}

.tmember.clickable:hover .tmore {
  transform: scale(1.12);
}

.tmember.clickable:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.profile-modal.open {
  display: flex;
}

.pm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 43, .62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.pm-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 44px 110px rgba(5, 14, 43, .42);
  max-height: 88vh;
  overflow: auto;
  animation: pmIn .42s var(--ease);
}

.pm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--stone);
  font-size: 17px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s var(--ease);
}

.pm-close:hover {
  background: var(--line);
  color: var(--ink);
}

.pm-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 26px;
}

.pm-photo {
  position: relative;
  width: 215px;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #EEF2F4, #E1E7EB);
}

.pm-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.pm-photo .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--stone-2);
  font-size: 48px;
  opacity: .55;
}

.pm-id h3 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  line-height: 1.1;
}

.pm-id .pm-title {
  display: inline-block;
  font-size: var(--t4);
  color: var(--teal);
  font-weight: 700;
}

.pm-bio {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.85;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.pm-career {
  margin-top: 26px;
}

.pm-career h4 {
  font-size: var(--t5);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.pm-career h4::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
}

.pm-career ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pm-career li {
  position: relative;
  padding-left: 18px;
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.6;
}

.pm-career li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mist);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.pbox {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .82);
  border-radius: 14px;
  height: 78px;
  display: grid;
  place-items: center;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: .02em;
  transition: .3s var(--ease);
}

.pbox:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-3px);
}

.csplit {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.csplit.rev .csplit-tx {
  order: 2;
}

.csplit-tx h2 {
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.22;
}

.csplit-tx .lede {
  font-size: var(--t4);
  color: var(--stone);
  margin-top: 20px;
  line-height: 1.85;
}

.csplit-tx .lede+.lede {
  margin-top: 14px;
}

.csplit-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.csplit-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esgwrap {
  position: relative;
  margin-top: 80px;
}

.esg-water {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(120px, 18vw, 240px);
  color: rgba(1, 30, 78, .07);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  letter-spacing: .05em;
}

.esg-head {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.esg-head h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.12;
}

.esg-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.esgc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.esgc::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.4px;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), var(--teal), transparent 62%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s;
  z-index: 1;
}

.esgc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(1, 30, 78, .12), transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}

.esgc:hover::before,
.esgc:hover::after {
  opacity: 1;
}

.esgc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(20, 32, 43, .10);
}

.esgc>* {
  position: relative;
  z-index: 2;
}

.esgc .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--navy-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 8px;
}

.esgc .L {
  font-size: var(--t5);
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--teal-600);
  margin: 14px 0 4px;
}

.esgc h3 {
  font-family: var(--serif);
  font-size: var(--t3);
  font-weight: 800;
  margin-bottom: 12px;
}

.esgc p {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.72;
}

.docgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.docrow {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  transition: .3s var(--ease);
}

.docrow:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(20, 32, 43, .08);
  transform: translateY(-3px);
}

.docrow .dic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.docrow .dtx {
  flex: 1;
  min-width: 0;
}

.docrow .dtx h3 {
  font-family: var(--serif);
  font-size: var(--t4);
  font-weight: 800;
  letter-spacing: -.01em;
}

.docrow .dtx span {
  font-size: var(--t-xs);
  color: var(--stone-2);
  font-weight: 600;
}

.docrow .dl {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--stone);
  font-size: var(--t-sm);
  transition: .3s var(--ease);
}

.docrow:hover .dl {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.ctabox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 54px;
  margin-top: 54px;
}

.ctabox .eyebrow {
  margin-bottom: 12px;
}

.ctabox h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.ctabox p {
  font-size: var(--t4);
  color: var(--stone);
  margin-top: 12px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--navy-900);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 700;
  font-size: var(--t4);
  font-family: inherit;
  cursor: pointer;
  transition: .3s var(--ease);
}

.btn-dark:hover {
  background: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 25, 47, .28);
}

.btn-dark i {
  transition: transform .3s;
}

.btn-dark:hover i {
  transform: translateX(4px);
}

.pwgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.pwcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px 30px;
  transition: .4s var(--ease);
}

.pwcard:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(20, 32, 43, .08);
  transform: translateY(-5px);
}

.pwcard .gnum {
  margin-bottom: 20px;
}

.pwcard h3 {
  font-size: var(--t3);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.pwcard .sub {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 14px;
}

.pwcard p {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.72;
}

.nboard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px 0;
}

.nbtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 0 22px;
}

.nbtabs {
  display: flex;
  gap: 10px;
}

.nbtab {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--stone);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  font-family: inherit;
  transition: .25s;
}

.nbtab.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.nbsearch {
  position: relative;
  flex: 1;
  max-width: 320px;
  min-width: 220px;
}

.nbsearch input {
  width: 100%;
  font-family: inherit;
  font-size: var(--t-sm);
  padding: 11px 42px 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
}

.nbsearch i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-2);
  font-size: var(--t-sm);
}

.ntable {
  width: 100%;
  border-collapse: collapse;
}

.ntable thead th {
  font-size: var(--t4);
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.ntable thead th.c {
  width: 110px;
  text-align: center;
}

.ntable thead th.a,
.ntable thead th.d {
  width: 130px;
}

.ntable td {
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  font-size: var(--t4);
  vertical-align: middle;
}

.ntable tr:last-child td {
  border-bottom: none;
}

.ntable tr:hover td {
  background: var(--paper-2);
}

.ntable .c {
  text-align: center;
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ntable .pin {
  color: var(--teal);
  font-size: var(--t4);
}

.ntag {
  display: inline-flex;
  align-items: center;
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .03em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 12px;
}

.ntag.notice {
  background: var(--navy-900);
  color: #fff;
}

.ntag.press {
  background: rgba(1, 30, 78, .14);
  color: var(--teal-600);
}

.ntitle {
  font-weight: 600;
  color: var(--ink);
  transition: color .3s;
}

.ntable tr:hover .ntitle {
  color: var(--teal);
}

.nwriter,
.ndate {
  color: var(--stone-2);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.npager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 44px 0 8px;
}

.npager button {
  width: 38px;
  height: 42px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--stone);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t4);
}

.npager button.on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--teal);
  font-weight: 800;
}

.contact2 {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-l {
  background: var(--navy-900);
  color: #fff;
  padding: 46px 40px;
  display: flex;
  flex-direction: column;
}

.contact-l .eyebrow {
  color: var(--teal-400);
}

.contact-l .eyebrow::before {
  background: var(--teal-400);
}

.contact-l h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}

.contact-l>p {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  max-width: 300px;
}

.cl-info {
  margin-top: 28px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: row;
  gap: 14px 28px;
  flex-wrap: wrap;
}

.cl-row span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 4px;
}

.cl-row b {
  font-size: var(--t-xs);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.contact-r {
  background: #fff;
  padding: 44px 50px;
}

.contact-r h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 30px;
}

.speakup {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.speakup h3 {
  font-size: var(--t4);
  font-weight: 800;
  margin-bottom: 8px;
}

.speakup p {
  font-size: var(--t5);
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 16px;
}

.speakup p a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

.speakup-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.su-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--t5);
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: .25s;
}

.su-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.su-btn.mail {
  background: var(--paper-2);
}

.tphoto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 14, 43, .35));
}

.tphoto i {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-size: 46px;
  color: rgba(255, 255, 255, .16);
}

.tmember h3 {
  font-size: var(--t4);
  font-weight: 800;
  margin: 16px 0 4px;
}

.tmember span {
  font-size: var(--t5);
  color: var(--stone-2);
  font-weight: 600;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.pj {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: .4s var(--ease);
}

.pj:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(20, 32, 43, .14);
}

.pj-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.pj-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.pj:hover .pj-media img {
  transform: scale(1.06);
}

.pj-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-600);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .05em;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
}

.pj-badge i {
  color: var(--teal);
}

.pj-body {
  padding: 26px 28px 28px;
}

.pj-body h3 {
  font-size: var(--t3);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.pj-div {
  border-top: 1.5px dashed var(--line);
  margin: 18px 0 4px;
}

.pj-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.pj-spec .l {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: var(--t-sm);
  color: var(--stone);
  font-weight: 600;
}

.pj-spec .l i {
  color: var(--teal);
  width: 18px;
  text-align: center;
}

.pj-spec .v {
  font-size: var(--t4);
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.ntable thead th.d {
  width: 170px;
}

.ntable tbody tr:hover td {
  background: var(--paper-2);
}

.ntable .d {
  text-align: center;
  color: var(--stone);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ntable td a {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.ncat {
  font-weight: 700;
  color: var(--teal);
  flex: none;
}

.ntable tbody tr:hover .ntitle {
  color: var(--teal);
}

.npager button:hover {
  color: var(--teal);
}

.npager .nav {
  color: var(--stone-2);
  font-size: var(--t-sm);
}

.npager .nav:hover {
  color: var(--teal);
}

.form-submit i {
  font-size: var(--t5);
  transition: transform .35s var(--ease);
}

.form-submit:hover i {
  transform: translateX(4px) rotate(8deg);
}

.phero {
  position: relative;
  height: clamp(300px, 34vw, 440px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  margin-top: 0;
}

.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--bg) center/cover no-repeat;
}

.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 25, 47, .42) 0%, rgba(5, 14, 43, .30) 45%, rgba(5, 14, 43, .74) 100%);
}

.phero .wrap {
  width: 100%;
  padding-bottom: 42px;
}

.phero .ptag {
  font-size: var(--t5);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}

.phero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-top: 14px;
}

.phero p {
  font-size: var(--t4);
  color: rgba(255, 255, 255, .85);
  margin-top: 14px;
  max-width: 640px;
}

.cl-map {
  flex: 1;
  min-height: 220px;
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.cl-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero.kl2::before {
  background: radial-gradient(900px 520px at 78% 12%, rgba(84, 140, 206, .30), transparent 60%), radial-gradient(760px 620px at 12% 88%, rgba(46, 86, 140, .55), transparent 62%), linear-gradient(160deg, var(--navy-950), var(--navy-900) 55%, #06213c);
}

.hero.kl2::after {
  background: linear-gradient(180deg, rgba(5, 14, 43, .15), rgba(5, 14, 43, .55));
}

.hero-glint {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  pointer-events: none;
  background: repeating-linear-gradient(115deg, transparent 0 38px, rgba(255, 255, 255, .02) 38px 39px);
}

.hero .kl2-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.kl2-badges span {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 15px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.subhero-banner.grad {
  background: radial-gradient(680px 420px at 82% 18%, rgba(84, 140, 206, .34), transparent 62%), radial-gradient(560px 520px at 8% 92%, rgba(46, 86, 140, .5), transparent 60%), linear-gradient(155deg, var(--navy-950), var(--navy-900) 60%, #0a2136);
  background-color: var(--navy-900);
}

.subhero-banner.grad::after {
  background: linear-gradient(180deg, rgba(5, 14, 43, .2), rgba(5, 14, 43, .42));
}

.subhero-banner .glint {
  position: absolute;
  inset: 0;
  opacity: .5;
  background: repeating-linear-gradient(115deg, transparent 0 40px, rgba(255, 255, 255, .02) 40px 41px);
}

.leadtext {
  width: 100%;
}

.leadtext p {
  font-size: var(--t4);
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 16px;
}

.leadtext p strong {
  color: var(--ink);
  font-weight: 700;
}

.leadtext p b {
  color: var(--teal-600);
  font-weight: 800;
}

.kpills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.kpill {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--teal-600);
  background: rgba(1, 30, 78, .09);
  border: 1px solid rgba(1, 30, 78, .22);
  padding: 9px 17px;
  border-radius: 999px;
}

.kpill.solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.swatch-grid {
  display: grid;
  gap: var(--gap-grid);
}

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

.sg3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.swatch {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20, 20, 20, .06), 0 8px 24px rgba(20, 20, 20, .06);
  transition: box-shadow .35s ease, transform .35s ease;
}

.swatch:hover {
  box-shadow: 0 2px 4px rgba(20, 20, 20, .08), 0 16px 40px rgba(20, 20, 20, .12);
  transform: translateY(-3px);
}

.swatch .tile {
  display: flex;
  width: 100%;
}

.swatch .tile img {
  width: 100%;
}

.swatch.tall .tile {
  aspect-ratio: 3/4;
}

.swatch .cap {
  padding: 18px 18px 20px;
  text-align: center;
}

.swatch .cap b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}

.tile.h-navy {
  background: linear-gradient(150deg, #0E2841, #07192F);
}

.tile.h-teal {
  background: linear-gradient(150deg, #4C7DBE, #01142f);
}

.tile.h-slate {
  background: linear-gradient(150deg, #5B6770, #2c3844);
}

.tile.h-sage {
  background: linear-gradient(150deg, #7d9b40, #4f6a24);
}

.tile.h-sky {
  background: linear-gradient(150deg, #5B93B8, #2b5d80);
}

.tile.h-sand {
  background: linear-gradient(150deg, #C9A87C, #8a6f47);
}

.tile.h-plum {
  background: linear-gradient(150deg, #8a6b9c, #4f3a5e);
}

.tile.h-rose {
  background: linear-gradient(150deg, #c58aa0, #7e4d61);
}

.tile.h-mint {
  background: linear-gradient(150deg, #6fae9b, #3a6d5c);
}

.tline {
  position: relative;
  margin-top: 10px;
  padding-left: 34px;
}

.tline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--teal), var(--line));
}

.tl-item {
  position: relative;
  padding: 0 0 34px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 0 0 4px rgba(1, 30, 78, .12);
}

.tl-year {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}

.tl-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tl-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.6;
}

.tl-list li i {
  color: var(--teal);
  font-size: 12px;
  margin-top: 5px;
  flex: none;
}

.psec.mode-lite {
  background: #fff;
}

.psec.mode-dark {
  background: #fff;
  position: relative;
  isolation: isolate;
  color: #dfe6ee;
  --fill: 1;
}

.psec.mode-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(135% 120% at 50% 0%, #0c1826 0%, #05090f 50%, #000000 100%);
  clip-path: inset(0 0 calc((1 - var(--fill, 1)) * 100%) 0);
}

.psec.mode-dark .wrap {
  position: relative;
  z-index: 4;
}

.psec.mode-dark .phead h2 {
  color: #fff;
}

.psec.mode-dark .phead .lede {
  color: rgba(255, 255, 255, .72);
}

.psec.mode-dark .eyebrow {
  color: var(--teal-400);
}

.psec.mode-dark .eyebrow::before {
  background: var(--teal-400);
}

.psec.mode-dark .pnote {
  color: rgba(255, 255, 255, .6);
}

.psec.mode-dark .pnote i {
  color: var(--teal-400);
}

.psec.mode-dark .statband {
  background: var(--navy-800);
}

.psec.mode-dark .org-top {
  background: var(--teal-400);
  color: #04193a;
}

.psec.mode-dark .org-bar,
.psec.mode-dark .org-stem,
.psec.mode-dark .org-drop {
  background: rgba(255, 255, 255, .22);
}

.vcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vcard {
  background: var(--paper-2);
  border: 1px solid var(--line);

  border-radius: 18px;
  padding: 34px 28px 30px;
  text-align: left;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(1, 30, 78, .09);
  border-color: var(--teal);
}

.vcard-art {
  height: 140px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.vcard-art svg {
  height: 132px;
  width: auto;
  overflow: visible;
}

.vcard-art .ln {
  stroke: #74828e;
  fill: none;
}

.vcard-art .dl {
  stroke: #b3bcc3;
  fill: none;
  stroke-dasharray: 3 4;
}

.vcard-art .dot {
  fill: var(--teal);
  animation: vdot 2.8s ease-in-out infinite;
}

.vcard:hover .vcard-art .dot {
  fill: var(--teal-600);
}

.vcard-ey {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 9px;
}

.vcard h3 {
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.35;
}

.vcard h3 .ac {
  color: var(--teal);
}

.vcard-div {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.vcard p {
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.7;
}

.vcard-art [class*="spin"],
.vcard-art .breathe,
.vcard-art .dot {
  transform-box: fill-box;
  transform-origin: center;
}

.vcard-art .spin {
  animation: vspin 22s linear infinite;
}

.vcard-art .spinr {
  animation: vspin 30s linear infinite reverse;
}

.vcard-art .breathe {
  animation: vbreathe 4.5s ease-in-out infinite;
}

.vcard-art .flow {
  animation: vflow 1.5s linear infinite;
}

.vcard:hover .vcard-art .spin {
  animation-duration: 9s;
}

.vcard:hover .vcard-art .spinr {
  animation-duration: 12s;
}

.collab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ccard {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #ddd;
}

.ccard:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(1, 30, 78, .3);
}

/* .ccard:hover::before {
  transform: scale(1.05);
}

.ccard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 1.1s var(--ease);
  background: repeating-linear-gradient(98deg, rgba(255, 255, 255, .045) 0 2px, transparent 2px 11px), radial-gradient(132% 62% at 50% 43%, rgba(206, 228, 247, .62), rgba(206, 228, 247, 0) 46%), linear-gradient(180deg, #7ba6ce 0%, #4C7DBE 30%, #235d95 52%, #0d3a68 76%, #062a4e 100%);
}

.ccard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(165deg, rgba(2, 16, 42, .5), rgba(2, 16, 42, .05) 46%, rgba(2, 16, 42, .52));
} */

.ccard .cc-ey {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.ccard h3 {
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-top: 8px;
  line-height: 1.2;
}

.ccard .cc-desc {
  margin-top: auto;
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, .92);
  line-height: 1.6;
  padding-top: 16px;
}

/* .ccard.center::before {
  background: radial-gradient(120% 60% at 50% 38%, rgba(120, 170, 215, .4), transparent 48%), linear-gradient(180deg, #123a63 0%, #0a2a50 45%, #04193a 100%);
}

.ccard.center {
  box-shadow: 0 0 0 2px var(--teal) inset;
}

.ccard.center:hover {
  box-shadow: 0 0 0 2px var(--teal) inset, 0 26px 60px rgba(1, 30, 78, .34);
} */

.ccard .cc-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  background: #fff;
  color: var(--teal);
  padding: 6px 12px;
  border-radius: 999px;
}

.hist-scroll {
  margin: 8px -4px 0;
  padding: 4px 4px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.hist-scroll::-webkit-scrollbar {
  height: 6px;
}

.hist-scroll::-webkit-scrollbar-thumb {
  background: var(--mist);
  border-radius: 6px;
}

.hist-cols {
  display: flex;
  min-width: 900px;
}

.hcol {
  flex: 1 0 180px;
  min-width: 180px;
  padding: 8px 22px;
  border-left: 1px solid var(--line);
}

.hcol:first-child {
  border-left: 0;
  padding-left: 4px;
}

.hcol-year {
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--teal);
}

.hcol-lab {
  display: block;
  margin: 12px 0 18px;
  font-size: var(--t-sm);
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--teal-400);
}

.hcol-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hcol-list li {
  list-style: none;
  position: relative;
  padding-left: 16px;
  font-size: var(--t-sm);
  color: var(--stone);
  line-height: 1.6;
}

.hcol-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
}

.org {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.org-top {
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: var(--t3);
  letter-spacing: -.01em;
  padding: 16px 40px;
  border-radius: 14px;
}

.org-stem {
  width: 2px;
  height: 30px;
  background: var(--line);
}

.org-bar {
  height: 2px;
  background: var(--line);
  width: min(84%, 1095px);
}

.org-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  margin-top: 0;
  position: relative;
}

.org-cols::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
}

.org-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-drop {
  width: 2px;
  height: 30px;
  background: var(--line);
}

.org-node {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);

  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(20, 32, 43, .05);
  transition: .35s var(--ease);
}

.org-node:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 32, 43, .09);
}

.org-node .oi {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(1, 30, 78, .1);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin: 0 auto 12px;
}

.org-node b {
  display: block;
  font-size: var(--t4);
  font-weight: 800;
  color: var(--ink);
}

.org-node span {
  display: block;
  font-size: var(--t-xs);
  color: var(--stone-2);
  margin-top: 5px;
  line-height: 1.5;
}

.cmp-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);

  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(20, 32, 43, .05);
}

table.cmp {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
  font-size: var(--t-sm);
}

table.cmp th,
table.cmp td {
  padding: 15px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

table.cmp thead th {
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: var(--t-sm);
  letter-spacing: -.01em;
  position: sticky;
  top: 0;
}

table.cmp thead th.hl {
  background: var(--teal);
}

table.cmp tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper-2);
  white-space: nowrap;
}

table.cmp td.kl2 {
  background: rgba(1, 30, 78, .06);
  font-weight: 700;
  color: var(--teal-600);
}

table.cmp tbody tr:last-child th,
table.cmp tbody tr:last-child td {
  border-bottom: none;
}

table.cmp tbody tr:hover td,
table.cmp tbody tr:hover th {
  background: rgba(1, 30, 78, .04);
}

table.cmp td.kl2:hover,
table.cmp tbody tr:hover td.kl2 {
  background: rgba(1, 30, 78, .11);
}

.rate {
  font-weight: 800;
}

.r-best {
  color: #1f8a4c;
}

.r-good {
  color: #5a8a3c;
}

.r-mid {
  color: #c08a1e;
}

.r-low {
  color: #c15a3a;
}

.barcard {
  background: #fff;
  border: 1px solid var(--line);

  border-radius: 22px;
  padding: 38px 40px 28px;
  box-shadow: 0 1px 3px rgba(20, 32, 43, .05);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: min(9vw, 90px);
  height: 230px;
  padding: 0 20px;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.bar-val {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--ink);
  font-size: var(--t3);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.bar {
  width: min(120px, 60%);
  border-radius: 10px 10px 0 0;
  position: relative;
  overflow: hidden;
}

.bar.a {
  height: 40%;
  background: linear-gradient(var(--stone-2), var(--stone));
}

.bar.b {
  height: 100%;
  background: linear-gradient(var(--teal-400), var(--teal));
}

.bar-yr {
  margin-top: 12px;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--stone);
}

.bar-note {
  text-align: center;
  font-size: var(--t5);
  color: var(--stone-2);
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.bar-note b {
  color: var(--teal-600);
  font-weight: 800;
}

.coat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coat-l {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.coat-l .n {
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .85;
}

.coat-l b {
  font-size: var(--t4);
  font-weight: 800;
  display: block;
  letter-spacing: -.01em;
}

.coat-l span {
  font-size: var(--t-xs);
  opacity: .9;
}

.coat-l.skin {
  background: linear-gradient(120deg, #5B93B8, #2b5d80);
}

.coat-l.glue {
  background: linear-gradient(120deg, #7d9b40, #4f6a24);
}

.coat-l.base {
  background: linear-gradient(120deg, #5B6770, #39434c);
}

.coat-l .idx {
  margin-left: auto;
  font-size: 26px;
  font-weight: 800;
  opacity: .35;
  font-family: var(--serif);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}

.featc {
  background: #fff;
  border: 1px solid var(--line);

  border-radius: 18px;
  padding: 24px 22px;
  transition: .35s var(--ease);
}

.featc:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 32, 43, .08);
}

.featc .fic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(1, 30, 78, .1);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.featc h3 {
  font-size: var(--t4);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.featc p {
  font-size: var(--t5);
  color: var(--stone);
  line-height: 1.65;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.doccard {
  position: relative;
  border: 1px solid var(--line);

  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: .35s var(--ease);
}

.doccard:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(20, 32, 43, .1);
}

.doccard .dtile {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--paper-2), #e7edf0);
  display: grid;
  place-items: center;
  position: relative;
}

.doccard .dtile i {
  font-size: 40px;
  color: var(--stone-2);
  opacity: .6;
}

.doccard .dtile::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1.5px dashed var(--mist);
  border-radius: 8px;
}

.doccard .dcap {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.doccard .dcap b {
  font-size: var(--t-sm);
  font-weight: 800;
  color: var(--ink);
}

.doccard .dcap span {
  display: block;
  font-size: var(--t-xs);
  color: var(--stone-2);
  margin-top: 3px;
}

.pnote {
  font-size: var(--t5);
  color: var(--stone-2);
  margin-top: 16px;
  line-height: 1.6;
}

.pnote i {
  color: var(--teal);
  margin-right: 6px;
}

.gmedia {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gmedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, rgba(255, 255, 255, .045) 0 16px, transparent 16px 32px);
}

.ocard-img .gmedia {
  position: relative;
  aspect-ratio: 16/10;
}

.g-navy {
  background: linear-gradient(150deg, #0E2841, #07192F 70%, #050E2B);
}

.g-teal {
  background: linear-gradient(140deg, #4C7DBE, #01142f 70%, #8a2417);
}

.g-steel {
  background: linear-gradient(155deg, #5B93B8, #274d69 70%, #12324a);
}

.g-sage {
  background: linear-gradient(150deg, #7d9b40, #4f6a24 72%, #2c3d13);
}

.g-slate {
  background: linear-gradient(150deg, #5B6770, #333d45 72%, #1c242b);
}

.g-plum {
  background: linear-gradient(150deg, #8a6b9c, #4f3a5e 72%, #2c2138);
}

.g-sky {
  background: linear-gradient(150deg, #5B93B8, #2b5d80 72%, #12324a);
}

.g-sand {
  background: linear-gradient(150deg, #C9A87C, #8a6f47 72%, #5a4a2e);
}

.g-mint {
  background: linear-gradient(150deg, #6fae9b, #3a6d5c 72%, #224238);
}

.g-rose {
  background: linear-gradient(150deg, #c58aa0, #7e4d61 72%, #4a2c38);
}

.appslider {
  position: relative;
  margin-top: 8px;
}

.app-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 8px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.app-track::-webkit-scrollbar {
  display: none;
}

.app-track.drag {
  cursor: grabbing;
  scroll-snap-type: none;
}

.appcard {
  position: relative;
  flex: 0 0 358px;
  max-width: 82vw;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.appcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(5, 14, 43, .4);
}

.appcard .am {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.appcard .am .gmedia {
  transition: transform 1s var(--ease);
}

.appcard:hover .am .gmedia {
  transform: scale(1.07);
}

.app-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--teal-600);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: .05em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}

.app-badge i {
  color: var(--teal);
}

.app-body {
  padding: 20px 22px 24px;
}

.app-body h3 {
  font-size: var(--t3);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.app-body .aspec {
  border-top: 1.5px dashed var(--line);
  margin-top: 15px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-sm);
  color: var(--stone);
}

.app-body .aspec i {
  color: var(--teal);
  font-size: 12px;
}

.app-nav {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.app-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  cursor: pointer;
  transition: .3s var(--ease);
}

.app-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.app-edge {
  position: absolute;
  top: 4px;
  bottom: 12px;
  width: 64px;
  pointer-events: none;
  z-index: 2;
}

.app-edge.r {
  right: -2px;
  background: linear-gradient(90deg, transparent, var(--navy-950));
}

.hl-image.grad {
  background: linear-gradient(150deg, #0E2841, #07192F 62%, #06213c);
}

.sus-img.grad {
  background: linear-gradient(155deg, #274d69, #0E2841);
}

.cta-band.grad::before {
  background: radial-gradient(700px 460px at 80% 15%, rgba(84, 140, 206, .32), transparent 60%), linear-gradient(160deg, var(--navy-950), var(--navy-900) 60%, #0a2136) !important;
}

.split2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.split2.center {
  align-items: center;
}

.cmp-title {
  font-size: var(--t3);
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
  margin: 46px 0 16px;
}

.phead+.cmp-title {
  margin-top: 0;
}

.cmp-legend {
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, .55);
  margin-top: 12px;
  letter-spacing: .02em;
}

.cmp-sym td .rate {
  font-size: 19px;
  line-height: 1;
}

.cmp-sym td,
.cmp-sym th {
  padding-top: 13px;
  padding-bottom: 13px;
}

.cmp-spec {
  min-width: 880px;
}

.cmp-spec tbody th {
  white-space: normal;
  min-width: 104px;
  line-height: 1.4;
}

.cmp-spec td {
  line-height: 1.5;
  font-size: var(--t-sm);
  vertical-align: middle;
}

.mchart {
  width: 100%;
  display: block;
  height: auto;
}

.mchart .grid {
  stroke: var(--line);
  stroke-width: 1;
}

.mchart .gridd {
  stroke: var(--line);
  stroke-dasharray: 3 6;
  stroke-width: 1;
}

.mchart .drop {
  stroke: var(--mist);
  stroke-dasharray: 2 5;
  stroke-width: 1;
}

.mchart .area {
  fill: url(#mgrad);
  opacity: 0;
  transition: opacity 1s var(--ease) .3s;
}

.mchart .ln {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  transition: stroke-dashoffset 1.5s var(--ease);
}

.mchart .dot {
  opacity: 0;
  transition: opacity .5s var(--ease) 1s;
}

.mchart .dot-a {
  fill: var(--stone);
}

.mchart .dot-b {
  fill: var(--teal);
}

.mchart .ring {
  fill: none;
  stroke: var(--teal-400);
  stroke-width: 2;
  opacity: 0;
  transition: opacity .5s var(--ease) 1.1s;
}

.mchart .v {
  font-family: var(--serif);
  font-weight: 800;
  fill: var(--ink);
  font-size: 29px;
}

.mchart .v.old {
  fill: var(--stone);
  font-size: 24px;
}

.mchart .yr {
  font-family: var(--sans);
  font-weight: 700;
  fill: var(--stone);
  font-size: 18px;
}

.barcard.in .mchart .area {
  opacity: 1;
}

.barcard.in .mchart .ln {
  stroke-dashoffset: 0;
}

.barcard.in .mchart .dot,
.barcard.in .mchart .ring {
  opacity: 1;
}

.coat3d {
  width: 100%;
}

.coat3d svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.coat3d .cl-name {
  font-family: var(--sans);
  font-weight: 800;
  fill: #fff;
  font-size: 16px;
}

.coat3d .cl-spec {
  font-family: var(--sans);
  font-weight: 600;
  fill: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.coat3d .cl-lead {
  stroke: rgba(255, 255, 255, .42);
  stroke-width: 1.5;
}

.coat3d .cl-dot {
  fill: #fff;
}

.coat3d .sheet {
  transition: transform .45s var(--ease);
}

.coat3d .sheet:hover {
  transform: translateY(-7px);
}

.coat-sec {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.coat-sec .coat-copy {
  max-width: none;
  margin-bottom: 0;
}

.coat-sec .coat-copy .leadtext {
  margin-top: 28px;
}

.coat-fig {
  position: relative;
}

.coat-fig::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 52% at 56% 46%, rgba(76, 125, 190, .16), transparent 70%);
}

.coat-fig .coat3d {
  position: relative;
  z-index: 1;
}

.psec.mode-dark .leadtext p {
  color: rgba(255, 255, 255, .74);
}

.psec.mode-dark .leadtext p strong {
  color: #fff;
}

.psec.mode-dark .leadtext p b {
  color: var(--teal-400);
}

.psec.mode-dark .cmp-wrap {
  background: rgba(255, 255, 255, .02);
  border-color: rgba(255, 255, 255, .1);
}

.psec.mode-dark table.cmp th,
.psec.mode-dark table.cmp td {
  border-bottom-color: rgba(255, 255, 255, .09);
}

.psec.mode-dark table.cmp tbody th {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.psec.mode-dark table.cmp td.kl2 {
  background: rgba(76, 125, 190, .2);
  color: #cfe0f4;
}

.psec.mode-dark table.cmp td {
  color: rgba(255, 255, 255, .82);
}

.psec.mode-dark table.cmp tbody tr:hover td,
.psec.mode-dark table.cmp tbody tr:hover th {
  background: rgba(255, 255, 255, .06);
}

.psec.mode-dark table.cmp td.kl2:hover,
.psec.mode-dark table.cmp tbody tr:hover td.kl2 {
  background: rgba(76, 125, 190, .3);
}

.psec.mode-dark .r-best {
  color: #3fbf76;
}

.psec.mode-dark .r-good {
  color: #8fc457;
}

.psec.mode-dark .r-mid {
  color: #e3ab34;
}

.psec.mode-dark .r-low {
  color: #e37f5f;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.sc09-wrap {
  width: 100%;
  display: flex;
  border-radius: 24px;
  border: 1px solid #E4E8EB;
  overflow: hidden;
}

.sc09-lt {
  width: 45%;
  padding: 46px 40px;
  background: #07192F;
}

.sc09-rt {
  width: 55%;
  background: #fff;
  padding: 44px 50px;
}

.sc09-map {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.sc09-caption {
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sc09-caption>ul {
  width: 100%;
  display: flex;
  gap: 24px;
}

.sc09-caption>ul>li>h5 {
  font-size: 10px;
  font-weight: 800;
  color: #4C7DBE;
  letter-spacing: .9px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sc09-caption>ul>li>p {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.root_daum_roughmap {
  width: 100% !important;
}

.root_daum_roughmap .cont {
  display: none;
}

.root_daum_roughmap .wrap_controllers {
  display: none;
}

.form-tp {
  width: 100%;
  margin-bottom: 40px;
}

.form-tp>h3 {
  color: #14202B;
  font-size: 44px;
  font-weight: 800;
}

.form-wrap {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-bottom: 18px;
}

.form-box {
  width: calc((100% - 1rem) / 2);
}

.form-box>h5 {
  font-size: 13px;
  color: #14202B;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-box>h5>span {
  color: #011e4e;
}

.form-wrap.whole .form-box {
  width: 100%;
}

.form-box input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #E4E8EB;
  background: #F5F8F9;
  font-size: 14px;
  font-weight: 400;
  transition: .3s;
  outline: none;
  color: #14202B;
}

.form-box input::placeholder {
  color: #8A949C;
}

.form-box input:focus,
.form-textarea textarea:focus {
  border-color: #011e4e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 97, 77, .13);
}

.form-select {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #E4E8EB;
  background: #F5F8F9;
  font-size: 14px;
  font-weight: 400;
  transition: .3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #14202B;
}

.form-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 14px;
  color: #14202B;
  font-weight: 400;
}

.form-select>span {
  font-size: 13px;
  color: #14202B;
}

.form-textarea {
  width: 100%;
}

.form-textarea textarea {
  width: 100%;
  height: 120px;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #E4E8EB;
  background: #F5F8F9;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  resize: none;
  font-size: 14px;
  font-weight: 400;
  transition: .3s;
  color: #14202B;
}

.form-textarea textarea::placeholder {
  color: #8A949C;
  line-height: 1.6;
}

.form-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-btn>label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-btn>label>p {
  font-size: 13px;
  color: #333;
  font-weight: 400;
}

.form-btn>label>p>a {
  display: inline-block;
  color: #011e4e;
  position: relative;
  font-weight: 400;
}

.form-btn>label>p>a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #011e4e;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.form-btn>button {
  display: inline-flex;
  padding: 15px 30px;
  border-radius: 12px;
  background: #011E4E;
  border: 0;
  gap: 11px;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.form-btn>button>span {
  font-size: 13px;
  display: inline-block;
  transition: .2s;
}

.form-btn>button:hover {
  background: #01142f;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(1, 30, 78, .44);
}

.form-btn>button:hover>span {
  transform: translateX(4px) rotate(8deg);
}

.sc09-wrap .page-tit {
  margin-bottom: 35px;
}

.sc09-wrap .page-tit>h5 {
  color: #4C7DBE;
}

.sc09-wrap .page-tit>h5>span {
  background: #4C7DBE;
}

.sc09-wrap .page-tit>h3 {
  color: #fff;
}

.sc09-wrap .page-tit>p {
  color: rgba(255, 255, 255, .8);
}

/* animation */

.ani.up {
  transform: translateY(100px);
  opacity: 0;
  transition: 1s;
}

.ani.up.act {
  transform: translateY(0);
  opacity: 1;
}

@keyframes atani {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-5%);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1)
  }
}

@keyframes cue {
  0% {
    transform: scaleY(.2);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  50.1% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(.2);
    transform-origin: bottom
  }
}

@keyframes pmIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

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

@keyframes vbreathe {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.06)
  }
}

@keyframes vflow {
  to {
    stroke-dashoffset: -14
  }
}

@keyframes vdot {

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

  50% {
    transform: scale(1.18);
    opacity: .82
  }
}

@media(min-width:1200px) {
  .d-lg-block {
    display: block;
  }

  .d-lg-none {
    display: none;
  }

  .ani.up.delay {
    transition: 1s opacity .2s, 1s transform .2s;
  }

  .ani.up.delay2 {
    transition: 1s opacity .5s, 1s transform .5s;
  }

  .ani.up.delay3 {
    transition: 1s opacity .8s, 1s transform .8s;
  }

  .ani.up.delay4 {
    transition: 1s opacity 1.1s, 1s transform 1.1s;
  }
}


/* page.css merge: rules used by legacy page_Business/page_Certification */
.page-tit>h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #011e4e;
  font-weight: 800;
  letter-spacing: 1.56px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-tit>h5>span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #011E4E;
}

.page-tit>h3 {
  font-size: 44px;
  color: #14202b;
  font-weight: 800;
  line-height: 1.2;
}

.page-tit>p {
  font-size: 16px;
  color: #5b6770;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1rem;
}

.cfc-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cfc-list>li {
  padding: 13px 18px;
  border-radius: 30px;
  border: 1px solid rgba(1, 30, 78, 0.22);
  background: rgba(1, 30, 78, 0.09);
  font-size: 14px;
  color: #01142f;
  font-weight: 700;
  transition: .2s;
}

.cfc-list>li:hover {
  color: #fff;
  border: 1px solid #14202B;
  background: #14202B;
}

.cfg-bg {
  width: 100%;
  padding: 60px;
  border-radius: 24px;
  background: #07192F;
}

.cfg-bg .page-tit {
  margin-bottom: 45px;
}

.cfg-bg .page-tit>h5 {
  color: #fff;
}

.cfg-bg .page-tit>h5>span {
  background: #4C7DBE;
}

.cfg-bg .page-tit>h3 {
  color: #fff;
}

.cfg-wrap {
  width: 100%;
  padding-top: 45px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cfg-box {
  width: 25%;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 30px;
}

.cfg-box:last-child {
  border-right: 0;
}

.cfg-box>h3 {
  font-size: 46px;
  color: #4C7DBE;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cfg-box>h5 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.cfg-box>p {
  color: #8A949C;
  font-size: 12px;
  font-weight: 400;
}

.cfd-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cfd-box {
  width: calc((100% - 48px) / 3);
  border-radius: 18px;
  border: 1px solid #E4E8EB;
  background: #FFF;
  overflow: hidden;
  transition: .2s;
}

.cfd-img {
  width: 100%;
  display: flex;
}

.cfd-img img {
  width: 100%;
}

.cfd-caption {
  width: 100%;
  padding: 20px;
}

.cfd-caption>h5 {
  font-size: 14px;
  color: #14202B;
  font-weight: 800;
  margin-bottom: 10px;
}

.cfd-caption>p {
  font-size: 12px;
  color: #8a949c;
  font-weight: 400;
  line-height: 1.6;
}

.cfd-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(20, 32, 43, .1);
  border-color: #011e4e;
}

.bf-wrap {
  width: 100%;
  display: flex;
  gap: 22px;
}

.bf-box {
  width: calc((100% - 66px) / 4);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #E4E8EB;
  background: #FFF;
  transition: .2s;
}

.bf-box>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #07192F;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.bf-box>h5 {
  font-size: 24px;
  color: #14202B;
  font-weight: 800;
  margin-bottom: 1rem;
}

.bf-box>p {
  font-size: 14px;
  color: #5b6770;
  font-weight: 400;
  line-height: 1.6;
}

.bf-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(20, 32, 43, .10);
}

.bc-wrap {
  width: 100%;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.bc-box {
  width: calc((100% - 66px) / 4);
  border-radius: 18px;
  border: 1px solid #E4E8EB;
  background: #FFF;
  overflow: hidden;
  transition: .2s;
}

.bc-img {
  width: 100%;
  display: flex;
}

.bc-img img {
  width: 100%;
}

.bc-caption {
  width: 100%;
  padding: 20px;
}

.bc-caption>h5 {
  font-size: 14px;
  color: #14202B;
  font-weight: 800;
}

.bc-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(20, 32, 43, .10);
  border-color: #011e4e;
}

.bfc-con {
  width: 100%;
  margin-bottom: 50px;
}

.bfc-con>h5 {
  display: flex;
  margin-bottom: 24px;
  gap: 10px;
  align-items: center;
  font-size: 24px;
  color: #14202B;
  font-weight: 800;
}

.bfc-con>h5>span {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #011E4E;
}

.bfc-wrap {
  width: 100%;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.bfc-box {
  width: calc((100% - 44px) / 3);
  border-radius: 18px;
  border: 1px solid #E4E8EB;
  background: #FFF;
  overflow: hidden;
  transition: .2s;
}

.bfc-img {
  width: 100%;
  display: flex;
}

.bfc-img img {
  width: 100%;
}

.bfc-caption {
  width: 100%;
  padding: 20px;
}

.bfc-caption>h5 {
  font-size: 14px;
  color: #14202B;
  font-weight: 800;
}

.bfc-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(20, 32, 43, .10);
  border-color: #011e4e;
}

/* product swatch zoom + image modal */
.swatch .tile {
  position: relative;
  overflow: hidden;
}

.swatch .tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform .4s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}

.swatch .tile.has-photo {
  cursor: zoom-in;
}

.swatch .tile.zooming img {
  transform: scale(3.4);
  transition: transform .18s ease-out;
}

.imodal {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(5, 14, 43, .84);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.imodal.open {
  display: flex;
  opacity: 1;
}

.imodal-box {
  position: relative;
  max-width: min(1120px, 94vw);
  text-align: center;
  transform: scale(.95);
  transition: transform .35s var(--ease);
}

.imodal.open .imodal-box {
  transform: scale(1);
}

.imodal-box img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

.imodal-cap {
  margin-top: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.imodal-close {
  position: fixed;
  top: clamp(14px, 3vw, 26px);
  right: clamp(14px, 3vw, 26px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ink);
  font-size: 19px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: .25s var(--ease);
}

.imodal-close:hover {
  background: var(--teal);
  color: #fff;
  transform: rotate(90deg);
}

@media(max-width:1440px) {
  .page-con {
    max-width: 1320px;
  }

  .subhero .page-con {
    max-width: 100%;
  }

  .subhero-copy h1 {
    font-size: 60px;
  }
}

@media(max-width:1199px) {
  .sc09-lt {
    width: 100%;
    padding: 30px 20px;
  }

  .sc09-rt {
    width: 100%;
    padding: 30px 20px;
  }

  .sc09-wrap {
    flex-direction: column;
  }

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

  .subhero-copy h1 {
    font-size: 40px;
  }

  .sus-top {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .sus-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sus-img {
    min-height: 340px;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .obiz-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .biz2-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .biz2-lede {
    max-width: none;
  }

  .hl-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
    padding-top: 40px;
  }

  .hl-stat {
    padding: 0 24px;
  }

  .hl-stat:nth-child(odd) {
    border-left: none;
  }

  .hl-overlay {
    padding: 38px 40px;
    max-width: 90%;
  }

  .hd {
    padding-block: 38px;
    padding: 26px 28px;
  }

  :root {
    --sec-y: 84px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hd.solid {
    padding: 14px 28px;
  }

  .obiz-inner {
    padding-left: 28px;
  }

  .contact-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-map {
    min-height: 360px;
    order: 2;
  }

  .contact-right {
    order: 1;
    padding: 36px 30px;
  }

  .gcards.c4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .stat-cell:nth-child(odd) {
    border-left: none;
  }

  .actis {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }

  .csplit {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .csplit.rev .csplit-tx {
    order: 0;
  }

  .csplit-img {
    min-height: 300px;
  }

  .esg-cards {
    grid-template-columns: 1fr;
  }

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

  .gcards.c3,
  .pwgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .swatch-grid {
    gap: 1rem;
  }

  .feat-grid,
  .sg2,
  .sg3,
  .sg4,
  .docs-grid,
  .swatch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statband {
    padding: 40px 28px;
  }

  .docgrid {
    grid-template-columns: 1fr;
  }

  .contact2 {
    grid-template-columns: 1fr;
  }

  .contact-l {
    padding: 40px 32px;
  }

  .contact-r {
    padding: 36px 30px;
  }

  .nbtop {
    padding: 0 0 18px;
  }

  .ntable thead th,
  .ntable td {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ntable .a {
    display: none;
  }

  .ntable thead th.a {
    display: none;
  }

  .ctabox {
    padding: 36px 30px;
  }

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

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

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

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

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

  .org-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .split2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coat-sec {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .coat-fig .coat3d {
    max-width: 560px;
    margin-inline: auto;
  }

  .d-block {
    display: block;
  }

  .d-none {
    display: none;
  }

  .bf-wrap {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .bc-wrap {
    gap: 1rem;
  }

  .bfc-wrap {
    gap: 1rem;
  }

  .bc-box {
    width: calc((100% - 2rem) / 3);
  }

  .bf-box {
    width: calc((100% - 3rem) / 4);
  }

  .bfc-box {
    width: calc((100% - 2rem) / 3);
  }

  .cfg-bg {
    padding: 40px 20px;
  }

  .cfg-bg .page-tit {
    margin-bottom: 30px;
  }

  .cfg-wrap {
    padding-top: 30px;
  }

  .cfd-wrap {
    gap: 1rem;
  }

  .cfd-box {
    width: calc((100% - 2rem) / 3);
  }
}

@media(max-width:700px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }

  .biz2-cards {
    grid-template-columns: 1fr;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nrow {
    padding: 24px 0;
  }

  .ft-top {
    grid-template-columns: 1fr;
  }

  .port-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .frow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .form-submit {
    width: 100%;
    justify-content: space-between;
  }

  .contact-head h2 {
    white-space: normal;
  }

  .cinfo-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-right {
    padding: 28px 22px;
  }

  .ocard {
    flex: 0 0 84vw;
    max-width: 84vw;
  }

  .ocard-img img {
    aspect-ratio: 3/4;
  }

  .ocard-panel {
    width: 100%;
  }

  .ocard-panel h3 {
    font-size: 22px;
  }

  .ocard-panel .pe,
  .ocard-panel h3,
  .ocard-panel p {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ocard-more .lbl {
    padding-left: 24px;
  }

  .hl-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .hl-overlay {
    padding: 28px 24px;
  }

  .hl-otitle {
    font-size: 20px;
  }

  .hl-image .hl-arrow {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 60px);
  }

  .sec-head h2 {
    font-size: clamp(26px, 7vw, 40px);
  }

  .obiz-inner {
    padding-left: 18px;
  }

  .hd {
    padding: 20px 18px;
  }

  .hd.solid {
    padding: 12px 18px;
  }

  .logo {
    font-size: var(--t4);
  }

  .btn {
    padding: 13px 20px;
    font-size: var(--t-sm);
  }

  .hl-num {
    font-size: 30px;
  }

  .sus .panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .pm-panel {
    padding: 30px 22px;
  }

  .pm-photo {
    width: 180px;
  }

  .gcards.c4,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 20px;
    margin-top: 30px;
  }

  .stat-cell+.stat-cell {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 20px;
    margin-top: 20px;
  }

  .ntable .d {
    display: none;
  }

  .ntable thead th.d {
    display: none;
    width: 110px;
  }

  .port-grid {
    grid-template-columns: 1fr;
  }

  .ntable .c,
  .ntable thead th.c {
    display: none;
  }

  .ntable thead th,
  .ntable td {
    padding: 18px 14px;
    font-size: var(--t-sm);
  }

  .vcards {
    grid-template-columns: 1fr;
  }

  .collab {
    grid-template-columns: 1fr;
  }

  .ccard {
    aspect-ratio: 16/9;
  }

  .appcard {
    flex: 0 0 82vw;
  }

  .app-edge {
    display: none;
  }

  .feat-grid,
  .sg2,
  .sg3,
  .sg4,
  .docs-grid,
  .swatch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-cols {
    grid-template-columns: 1fr;
  }

  .bars {
    gap: 40px;
  }

  .barcard {
    padding: 28px 22px;
  }

  .page-con {
    padding: 0 18px;
  }

  .page-tit {
    margin-bottom: 32px;
  }

  .page-tit>h3,
  .page-tit h2 {
    font-size: 30px;
  }

  .form-tp>h3 {
    font-size: 30px;
  }

  .subhero-banner {
    min-height: 420px;
  }

  .bf-box {
    width: calc((100% - 1rem) / 2);
  }

  .bc-box {
    width: calc((100% - 1rem) / 2);
  }

  .bfc-box {
    width: calc((100% - 1rem) / 2);
  }

  .cfg-wrap {
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .cfg-box {
    width: 50%;
    padding: 1rem 10px;
    border-right: 0;
  }

  .cfg-box>h3 {
    font-size: 34px;
  }

  .cfd-box {
    width: calc((100% - 1rem) / 2);
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition-duration: .001ms !important;
  }

  .fade {
    opacity: 1;
    transform: none;
  }

  .subhero-banner img,
  .subhero-banner:hover img {
    transition: none;
    transform: none;
  }

  .psec.mode-dark {
    --fill: 1;
  }

  .vcard-art * {
    animation: none !important;
  }

  .mchart .area,
  .mchart .dot,
  .mchart .ring {
    opacity: 1;
  }

  .mchart .ln {
    stroke-dashoffset: 0;
  }

  .coat3d .sheet {
    transition: none;
  }
}

@media(max-width:587px) {
  .swatch .tile.zooming img {
    transform: none;
  }

  .imodal-cap {
    font-size: 16px;
  }

  .subhero-banner {
    min-height: 320px;
  }

  .subhero-copy h1 {
    font-size: 32px;
  }

  .feat-grid,
  .sg2,
  .sg3,
  .sg4,
  .docs-grid,
  .swatch-grid {
    grid-template-columns: 1fr;
  }

  .gcards.c3,
  .pwgrid {
    grid-template-columns: 1fr;
  }

  .bf-box {
    padding: 24px 20px;
    width: 100%;
  }

  .bc-box {
    width: 100%;
  }

  .bfc-box {
    width: 100%;
  }

  .cfd-box {
    width: 100%;
  }

  .sc09-wrap {
    border-radius: 20px;
  }

  .sc09-lt {
    padding: 60px 20px 30px;
  }

  .sc09-caption>ul {
    flex-direction: column;
    gap: 20px;
  }

  .sc09-rt {
    padding: 30px 20px 60px;
  }

  .form-wrap {
    flex-wrap: wrap;
    gap: 18px;
  }

  .form-box {
    width: 100%;
  }

  .form-btn {
    flex-direction: column;
    gap: 1rem;
  }

  .form-btn>button {
    width: 100%;
    justify-content: center;
  }
}