:root {
  --black: #05070a;
  --black-2: #0c1118;
  --white: #ffffff;
  --mist: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #86868b;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: #d2d2d7;
  --blue: #2997ff;
  --gold: #c8a35d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

main {
  overflow-x: hidden;
}

main > section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: rgba(10, 12, 16, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(18px);
}

.brand {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

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

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

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: rgba(255, 255, 255, 0.9);
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
}

.primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  white-space: nowrap;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li:focus-within > a,
.primary-nav > ul > li > a.is-active {
  color: var(--white);
}

.subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  padding: 12px;
  background: rgba(28, 31, 37, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.primary-nav li:hover .subnav,
.primary-nav li:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.subnav a {
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  border-radius: 8px;
}

.subnav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  padding: 104px 5vw 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  justify-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 44%, rgba(49, 113, 140, 0.38), transparent 35%),
    radial-gradient(circle at 50% 76%, rgba(200, 163, 93, 0.18), transparent 30%),
    linear-gradient(180deg, #07090d 0%, #06080b 54%, #000 100%);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 18px;
}

.hero-actions a:hover {
  text-decoration: underline;
}

.product-stage {
  position: relative;
  z-index: 1;
  width: min(1160px, 118vw);
  max-width: 100%;
  margin: clamp(18px, 3vw, 34px) auto 0;
}

.product-stage::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2%;
  height: 18%;
  background: rgba(41, 151, 255, 0.22);
  filter: blur(46px);
}

.product-stage img {
  position: relative;
  width: 100%;
  margin: 0 auto;
  filter: saturate(1.06) contrast(1.03);
}

.statement {
  display: grid;
  place-items: center;
  min-height: 74vh;
  padding: 80px 6vw;
  color: var(--white);
  background: #000;
}

.statement p {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.feature {
  display: grid;
  align-items: center;
  gap: 52px;
  min-height: 100vh;
  padding: 92px 6vw;
}

.feature-dark {
  color: var(--white);
  background: linear-gradient(180deg, #000 0%, var(--black-2) 100%);
}

.feature-copy {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.feature-copy h2,
.tile h2,
.panel-head h2 {
  margin: 0;
  font-size: clamp(34px, 5.5vw, 78px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-copy p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2.2vw, 24px);
}

.feature-media {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.tile-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--mist);
}

.tile {
  min-height: 760px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 70px 38px 0;
  overflow: hidden;
  text-align: center;
}

.tile.light {
  color: var(--ink);
  background: var(--white);
}

.tile.dark {
  color: var(--white);
  background: #090c11;
}

.tile p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px auto 34px;
  color: var(--muted);
  font-size: 20px;
}

.tile.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.tile img {
  width: min(680px, 112%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-top: auto;
  border-radius: 18px 18px 0 0;
}

.quick-panel {
  padding: 96px 6vw 110px;
  color: var(--ink);
  background: var(--mist);
}

.ir-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  justify-items: center;
  gap: 42px;
  padding: 118px 6vw 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(41, 151, 255, 0.24), transparent 32%),
    linear-gradient(180deg, #07090d 0%, #000 100%);
}

.ir-hero-copy {
  width: min(960px, 100%);
  text-align: center;
}

.ir-hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 8.2vw, 112px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.ir-title-line {
  display: block;
}

.ir-hero-copy p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.4;
}

.ir-hero-visual {
  width: min(1040px, 100%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
}

.ir-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.ir-overview,
.ir-documents,
.ir-briefing,
.ir-contact {
  padding: 96px 6vw;
  background: var(--mist);
}

.ir-section-head {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.ir-section-head h2,
.ir-panel h2,
.ir-briefing h2,
.ir-contact h2 {
  margin: 0;
  font-size: clamp(36px, 5.8vw, 78px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.ir-metrics {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.ir-metrics article,
.ir-entry,
.ir-doc,
.ir-briefing-list a {
  border-radius: 8px;
}

.ir-metrics article {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.ir-metrics span,
.ir-entry span,
.ir-doc span,
.ir-briefing-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ir-metrics strong {
  display: block;
  margin-top: 32px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.ir-metrics small,
.ir-doc small,
.ir-briefing-list small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.ir-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: #000;
}

.ir-entry {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%),
    #0b0f15;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ir-entry h3 {
  margin: 18px 0 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.ir-entry p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.ir-documents {
  background: var(--white);
}

.ir-doc-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.ir-doc {
  min-height: 168px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line-dark);
}

.ir-doc strong,
.ir-briefing-list strong {
  display: block;
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.2;
}

.ir-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--mist);
}

.ir-panel {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
  color: var(--ink);
  background: var(--white);
}

.ir-panel.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 30%, rgba(41, 151, 255, 0.22), transparent 32%),
    #07090d;
}

.ir-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.ir-panel.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.ir-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 18px;
}

.ir-action-row a:hover,
.ir-briefing-list a:hover,
.ir-doc:hover,
.ir-entry:hover {
  text-decoration: underline;
}

.ir-briefing,
.ir-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.ir-briefing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ir-briefing-list a {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.ir-contact {
  color: var(--white);
  background: #000;
}

.ir-contact address {
  display: grid;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: clamp(18px, 2vw, 23px);
}

.ir-contact address strong {
  color: var(--white);
  font-size: 26px;
}

.ir-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--mist);
}

.ir-simple-hero {
  min-height: 58vh;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: 120px 6vw 72px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(41, 151, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #07090d 0%, #000 100%);
}

.ir-simple-hero.compact {
  min-height: 46vh;
  padding-bottom: 56px;
}

.ir-simple-hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.ir-simple-hero p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2.2vw, 24px);
}

.ir-link-cards {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -28px auto 96px;
}

.ir-link-cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.csr-link-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  padding: 0;
  background: transparent;
}

.csr-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(41, 151, 255, 0.24), transparent 30%),
    radial-gradient(circle at 80% 24%, rgba(200, 163, 93, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 72%, var(--mist) 72%),
    linear-gradient(180deg, #07111d 0%, #000 100%);
}

.csr-page {
  background:
    linear-gradient(180deg, #000 0, #000 210px, var(--mist) 210px, var(--mist) 100%);
}

.csr-page .ir-simple-hero {
  min-height: 44vh;
}

.csr-card {
  min-height: 440px;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 22px 60px rgba(5, 10, 18, 0.16);
}

.csr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.csr-card img {
  opacity: 0.82;
  object-position: center;
}

.csr-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(5, 10, 18, 0.24);
}

.csr-detail-page {
  background: var(--mist);
}

.csr-detail-content {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.csr-detail-visual {
  position: relative;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(123, 220, 255, 0.18);
  border-radius: 8px;
  background: #07111d;
  box-shadow: 0 28px 70px rgba(5, 10, 18, 0.18);
}

.csr-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.csr-detail-visual img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  opacity: 0.94;
}

.csr-text-grid,
.csr-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.csr-text-grid article,
.csr-text-panel,
.csr-contact-grid article,
.csr-criteria,
.csr-contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.csr-text-grid article,
.csr-contact-grid article {
  min-height: 220px;
}

.csr-text-grid.compact article {
  min-height: 190px;
}

.csr-text-grid article,
.csr-text-panel,
.csr-contact-grid article,
.csr-criteria {
  box-shadow: 0 14px 34px rgba(5, 10, 18, 0.05);
}

.csr-text-panel,
.csr-criteria,
.csr-contact-card {
  margin-top: 24px;
}

.csr-detail-content h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.csr-detail-content p {
  margin: 16px 0 0;
  color: #4f5660;
  font-size: 17px;
}

.csr-section-title {
  margin: 42px 0 18px;
}

.csr-contact-grid p {
  margin-top: 8px;
}

.csr-contact-card {
  display: grid;
  gap: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(41, 151, 255, 0.22), transparent 34%),
    #07111d;
  border-color: rgba(123, 220, 255, 0.22);
}

.csr-contact-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.csr-contact-card a {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  font-weight: 800;
}

.csr-criteria ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  counter-reset: criteria;
}

.csr-criteria li {
  position: relative;
  min-height: 30px;
  padding-left: 44px;
  color: #4f5660;
  counter-increment: criteria;
}

.csr-criteria li::before {
  content: counter(criteria);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.ir-image-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  background: #0b0f15;
}

.ir-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72) 100%);
}

.ir-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.ir-image-card:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.ir-image-card span,
.ir-image-card strong {
  position: relative;
  z-index: 1;
}

.ir-image-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ir-image-card strong {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.15;
}

.ir-content {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.ir-content.narrow {
  width: min(860px, calc(100% - 44px));
}

.ir-back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.ir-content h2 {
  margin: 42px 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ir-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.ir-info-table th,
.ir-info-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.ir-info-table th {
  width: 25%;
  color: var(--muted);
  font-weight: 700;
}

.ir-info-table tr:last-child th,
.ir-info-table tr:last-child td {
  border-bottom: 0;
}

.ir-contact-grid,
.ir-three-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.ir-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ir-contact-grid article,
.ir-three-col article,
.ir-cta-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.ir-contact-grid h3,
.ir-three-col h2,
.ir-cta-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.ir-contact-grid p,
.ir-three-col p,
.ir-cta-panel p,
.ir-note {
  color: var(--muted);
  font-size: 17px;
}

.ir-button {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-weight: 800;
}

.ir-year-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.ir-year-grid a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-weight: 800;
}

.ir-year-grid a:hover,
.ir-back-link:hover,
.ir-three-col a:hover,
.ir-info-table a:hover {
  text-decoration: underline;
}

.about-page {
  color: var(--ink);
  background: var(--mist);
}

.about-hero {
  min-height: 58vh;
  display: grid;
  align-content: end;
  justify-items: center;
  padding: 120px 6vw 72px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.82) 80%),
    url("/assets/about-123.jpg") center 42% / cover no-repeat,
    #07090d;
}

.about-hero > div {
  width: min(980px, 100%);
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.about-hero p:last-child {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2.2vw, 24px);
}

.about-beliefs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--mist);
}

.about-beliefs article {
  min-width: 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 82px);
  background: var(--white);
}

.about-beliefs h2,
.about-section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

.about-beliefs p:not(.eyebrow) {
  width: 100%;
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  overflow-wrap: anywhere;
}

.about-quote {
  min-height: 42vh;
  display: grid;
  place-items: center;
  padding: 72px 6vw;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 30%, rgba(41, 151, 255, 0.18), transparent 35%),
    #000;
}

.about-quote p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(26px, 4.1vw, 48px);
  line-height: 1.18;
  font-weight: 800;
  text-align: center;
}

.about-values {
  width: min(980px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto;
  padding: 54px 0 72px;
  background: var(--mist);
}

.about-values article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
  text-align: center;
}

.value-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(41, 151, 255, 0.18));
}

.about-values strong {
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
}

.about-profile {
  padding: 96px 6vw 120px;
  background: var(--white);
}

.about-section-head {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.about-story {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line-dark);
}

.about-story.reverse {
  grid-template-columns: minmax(0, 1fr) 220px;
}

.about-story.reverse img {
  order: 2;
}

.about-story img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.about-story p {
  min-width: 0;
  margin: 0;
  color: #4f5660;
  font-size: clamp(17px, 2vw, 21px);
  overflow-wrap: anywhere;
}

.about-sub-hero {
  background:
    radial-gradient(circle at 50% 8%, rgba(41, 151, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #07090d 0%, #000 100%);
}

.org-section {
  padding: 86px 6vw;
  color: var(--ink);
  background: var(--mist);
}

.org-section-light {
  background: var(--white);
}

.org-section-head {
  width: min(920px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.org-section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

.org-section-head p:last-child {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.org-chart-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 32px 28px 40px;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.org-chart-wrap-original {
  padding: 34px 28px 42px;
  background:
    radial-gradient(circle at 50% 18%, rgba(41, 151, 255, 0.26), transparent 34%),
    linear-gradient(180deg, #08111f 0%, #03060b 100%);
  border-color: rgba(122, 220, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 28px 70px rgba(5, 10, 18, 0.18);
}

.org-original-chart {
  position: relative;
  width: 820px;
  height: 390px;
  margin: 0 auto;
}

.org-box {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 11px 22px;
  color: #eef8ff;
  background: linear-gradient(180deg, rgba(22, 38, 62, 0.94) 0%, rgba(10, 18, 32, 0.96) 100%);
  border: 1px solid rgba(123, 220, 255, 0.58);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 26px rgba(41, 151, 255, 0.13);
}

.org-box::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  pointer-events: none;
}

.org-box-board {
  left: 350px;
  top: 32px;
  width: 126px;
}

.org-box-compensation,
.org-box-audit-committee {
  left: 570px;
  width: 158px;
}

.org-box-compensation {
  top: 0;
}

.org-box-audit-committee {
  top: 68px;
}

.org-box-chairman {
  left: 350px;
  top: 104px;
  width: 126px;
}

.org-box-audit-office {
  left: 162px;
  top: 144px;
  width: 126px;
}

.org-box-manager {
  left: 335px;
  top: 184px;
  width: 156px;
}

.org-box-dept {
  top: 302px;
  width: 156px;
}

.org-box-dept-1 {
  left: 30px;
}

.org-box-dept-2 {
  left: 248px;
}

.org-box-dept-3 {
  left: 466px;
}

.org-box-dept-4 {
  left: 684px;
}

.org-line {
  position: absolute;
  z-index: 1;
  display: block;
  background: linear-gradient(90deg, rgba(123, 220, 255, 0.8), rgba(41, 151, 255, 0.92));
  box-shadow: 0 0 16px rgba(41, 151, 255, 0.24);
}

.org-line-board-comm {
  left: 476px;
  top: 61px;
  width: 94px;
  height: 2px;
}

.org-line-comm-stack {
  left: 570px;
  top: 29px;
  width: 2px;
  height: 70px;
}

.org-line-board-chair {
  left: 412px;
  top: 88px;
  width: 2px;
  height: 16px;
}

.org-line-chair-manager {
  left: 412px;
  top: 160px;
  width: 2px;
  height: 24px;
}

.org-line-audit {
  left: 288px;
  top: 172px;
  width: 124px;
  height: 2px;
}

.org-line-manager-down {
  left: 412px;
  top: 240px;
  width: 2px;
  height: 58px;
}

.org-line-dept-main {
  left: 108px;
  top: 298px;
  width: 654px;
  height: 2px;
}

.org-line-dept {
  top: 298px;
  width: 2px;
  height: 24px;
}

.org-line-dept-1 {
  left: 108px;
}

.org-line-dept-2 {
  left: 326px;
}

.org-line-dept-3 {
  left: 544px;
}

.org-line-dept-4 {
  left: 762px;
}

.org-chart,
.org-branch {
  padding: 0;
  margin: 0;
  list-style: none;
}

.org-chart {
  display: flex;
  justify-content: center;
  min-width: 760px;
}

.org-chart li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 10px 0;
}

.org-chart > li {
  padding-top: 0;
}

.org-chart li::before,
.org-chart li::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 22px;
  border-top: 1px solid #b8c0cc;
}

.org-chart li::before {
  right: 50%;
}

.org-chart li::after {
  left: 50%;
  border-left: 1px solid #b8c0cc;
}

.org-chart li:only-child::before,
.org-chart li:only-child::after,
.org-chart > li::before,
.org-chart > li::after {
  display: none;
}

.org-chart li:first-child::before,
.org-chart li:last-child::after {
  border-top: 0;
}

.org-chart li:first-child::after {
  border-radius: 8px 0 0 0;
}

.org-chart li:last-child::before {
  border-right: 1px solid #b8c0cc;
  border-radius: 0 8px 0 0;
}

.org-node {
  min-width: 128px;
  padding: 13px 18px;
  color: var(--white);
  background: linear-gradient(180deg, #152238 0%, #0b1220 100%);
  border: 1px solid rgba(41, 151, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(8, 16, 30, 0.16);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.org-node-support {
  color: var(--ink);
  background: #f5f9ff;
  border-color: #b7d8ff;
  box-shadow: none;
}

.org-branch {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.org-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 24px;
  border-left: 1px solid #b8c0cc;
}

.department-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.department-card {
  padding: 34px;
  background: var(--mist);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.department-card h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

.department-card ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: department;
}

.department-card li {
  position: relative;
  padding-left: 44px;
  counter-increment: department;
}

.department-card li::before {
  content: counter(department);
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.department-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.department-card span {
  display: block;
  color: #4f5660;
  font-size: 16px;
}

.history-page {
  background: var(--mist);
}

.history-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 14px;
  padding: 14px;
  background: var(--mist);
}

.history-founded,
.recognition-grid article {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.history-founded {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
}

.history-founded span,
.recognition-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.history-founded h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

.history-founded strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
}

.history-founded p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

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

.recognition-grid article {
  min-height: 260px;
  padding: 28px;
}

.recognition-grid h3 {
  margin: 28px 0 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
}

.recognition-grid p {
  margin: 16px 0 0;
  color: #4f5660;
  font-size: 16px;
}

.history-section {
  padding: 86px 6vw 110px;
  background: var(--white);
}

.history-timeline {
  width: min(980px, 100%);
  display: grid;
  gap: 0;
  margin: 0 auto;
}

.history-entry {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0 28px 34px;
  border-top: 1px solid var(--line-dark);
}

.history-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(41, 151, 255, 0.12);
}

.history-entry h3 {
  margin: 0;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.history-entry ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: #4f5660;
  font-size: 16px;
  list-style: none;
}

.history-entry li {
  position: relative;
  padding-left: 18px;
}

.history-entry li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: #9aa4b2;
  border-radius: 50%;
}

.panel-head {
  max-width: 960px;
  margin: 0 auto 34px;
  text-align: center;
}

.link-row {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.link-row a {
  min-height: 178px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
}

.link-row span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.link-row strong,
.link-row small {
  display: block;
}

.link-row strong {
  margin-top: 22px;
  font-size: 24px;
}

.link-row small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 6vw;
  color: rgba(255, 255, 255, 0.62);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer img {
  width: 132px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-meta a {
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-meta a:hover {
  color: #0071e3;
}

/* Apple-inspired visual tuning for content pages. */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  min-height: 48px;
  background: rgba(18, 18, 20, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.primary-nav > ul > li > a {
  min-height: 48px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 500;
}

.subnav {
  min-width: 236px;
  padding: 10px;
  background: rgba(30, 31, 34, 0.9);
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  backdrop-filter: saturate(180%) blur(18px);
}

.subnav a {
  padding: 9px 10px;
  font-size: 13px;
}

.ir-page,
.about-page,
.history-page {
  background: #f5f5f7;
}

.ir-simple-hero {
  min-height: 48vh;
  padding: 112px 6vw 58px;
  background:
    radial-gradient(circle at 50% 12%, rgba(41, 151, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #111318 0%, #05070a 100%);
}

.ir-simple-hero.compact {
  min-height: 38vh;
  padding-bottom: 48px;
}

.ir-simple-hero h1,
.about-hero h1 {
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.02;
  font-weight: 800;
}

.ir-simple-hero p:last-child,
.about-hero p:last-child {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
}

.ir-content,
.csr-detail-content {
  width: min(1040px, calc(100% - 56px));
  padding: 64px 0 104px;
}

.ir-content.narrow {
  width: min(880px, calc(100% - 56px));
}

.ir-back-link {
  margin-bottom: 28px;
  color: #0066cc;
  font-size: 14px;
}

.ir-content h2,
.csr-detail-content h2,
.org-section-head h2,
.about-section-head h2,
.history-founded h2,
.panel-head h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
}

.ir-content p,
.csr-detail-content p,
.department-card span,
.history-entry ul,
.recognition-grid p,
.about-story p,
.org-section-head p:last-child {
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.62;
}

.ir-info-table,
.ir-contact-grid article,
.ir-three-col article,
.ir-cta-panel,
.ir-doc,
.ir-briefing-list a,
.ir-metrics article,
.csr-text-grid article,
.csr-text-panel,
.csr-contact-grid article,
.csr-criteria,
.department-card,
.recognition-grid article,
.history-founded {
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
}

.ir-info-table {
  border-collapse: separate;
  border-spacing: 0;
}

.ir-info-table th,
.ir-info-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #e5e5ea;
  font-size: 17px;
}

.ir-info-table th {
  width: 28%;
  color: #6e6e73;
  font-weight: 700;
}

.ir-info-table td {
  color: #1d1d1f;
}

.ir-contact-grid,
.ir-three-col,
.csr-text-grid,
.csr-contact-grid,
.department-grid,
.recognition-grid {
  gap: 18px;
}

.ir-contact-grid article,
.ir-three-col article,
.ir-cta-panel,
.csr-text-grid article,
.csr-text-panel,
.csr-contact-grid article,
.csr-criteria,
.department-card {
  padding: 34px;
}

.ir-contact-grid h3,
.ir-three-col h2,
.ir-cta-panel h2,
.department-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.14;
}

.ir-year-grid {
  gap: 12px;
  margin-top: 24px;
}

.ir-year-grid a {
  min-height: 68px;
  padding: 18px 20px;
  color: #1d1d1f;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.042);
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.ir-year-grid a:hover,
.ir-three-col a:hover,
.ir-info-table a:hover,
.ir-doc:hover,
.ir-briefing-list a:hover {
  color: #0066cc;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.075);
}

.ir-link-cards {
  width: min(1200px, calc(100% - 56px));
  gap: 18px;
  margin: -24px auto 104px;
}

.ir-image-card {
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.ir-image-card strong {
  font-size: clamp(26px, 2.6vw, 36px);
}

.csr-detail-visual,
.ir-hero-visual,
.feature-media {
  border-radius: 8px;
}

.csr-section-title {
  margin: 52px 0 20px;
}

.department-card {
  background: #ffffff;
}

.department-card li {
  padding-left: 42px;
}

.department-card li::before,
.csr-criteria li::before {
  background: #0071e3;
  box-shadow: 0 5px 14px rgba(0, 113, 227, 0.22);
}

.history-section,
.about-profile,
.org-section-light {
  background: #ffffff;
}

.history-entry {
  padding: 32px 0 32px 34px;
  border-top-color: #e5e5ea;
}

.history-entry h3 {
  color: #0066cc;
  font-size: 24px;
}

.site-footer {
  background: #f5f5f7;
  border-top: 1px solid #d2d2d7;
  color: #6e6e73;
}

.product-page {
  background: #f5f5f7;
}

.product-hero {
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 113, 227, 0.16), transparent 32%),
    radial-gradient(circle at 82% 26%, rgba(200, 163, 93, 0.13), transparent 28%),
    linear-gradient(180deg, #111318 0%, #05070a 100%);
}

.product-entry-grid {
  width: min(1180px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: -24px auto 82px;
}

.product-entry-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  color: #ffffff;
  background: #111318;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.product-entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.product-entry-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.product-entry-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.product-entry-card span {
  color: #f5c56f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-entry-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.product-entry-card p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.product-content {
  width: min(1040px, calc(100% - 56px));
  margin: 0 auto;
  padding: 56px 0 0;
}

.product-showcase {
  width: min(1180px, calc(100% - 56px));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 0 0 72px;
}

.product-content + .product-showcase {
  padding-top: 28px;
}

.product-item {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.055);
}

.product-item.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.product-item.reverse .product-media {
  order: 2;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 113, 227, 0.14), transparent 36%),
    linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.product-game-page .product-media {
  background: #0f1218;
}

.product-media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  border-radius: 8px;
}

.product-game-page .product-media img {
  max-height: none;
  height: 100%;
  object-fit: cover;
}

.product-placeholder {
  width: min(280px, 76%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 113, 227, 0.42), transparent 34%),
    linear-gradient(180deg, #1c2736 0%, #07111d 100%);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.2);
}

.product-placeholder span {
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: 0;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 74px);
}

.product-copy h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

.product-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #6e6e73;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 18px;
  color: #ffffff;
  background: #0071e3;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.product-actions a:hover {
  background: #0066cc;
  text-decoration: none;
}

.product-cta {
  padding: 0 0 110px;
  background: #f5f5f7;
}

.product-cta a {
  width: min(1180px, calc(100% - 56px));
  min-height: 220px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 42px;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #8a7444 0%, #c8a35d 100%);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.product-cta span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-cta strong {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.16;
}

.product-detail-content {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 64px 0 38px;
}

.product-detail-panel {
  padding: clamp(34px, 5vw, 64px);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.055);
}

.product-detail-panel h2 {
  margin: 42px 0 0;
  color: #1d1d1f;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.product-detail-panel h2:first-child {
  margin-top: 0;
}

.product-detail-panel p,
.product-detail-list {
  color: #6e6e73;
  font-size: 18px;
  line-height: 1.68;
}

.product-detail-panel p {
  margin: 18px 0 0;
}

.product-detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.product-detail-list li {
  position: relative;
  padding-left: 28px;
}

.product-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  background: #0071e3;
  border-radius: 50%;
}

.product-detail-image,
.product-detail-images figure {
  margin: 28px 0 0;
  overflow: hidden;
  background: #f5f5f7;
  border-radius: 8px;
}

.product-detail-image img,
.product-detail-images img {
  width: 100%;
  object-fit: cover;
}

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

.product-detail-images figure {
  margin: 0;
}

.contact-page {
  background: #f5f5f7;
}

.contact-content {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0 112px;
}

.contact-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.contact-location-copy,
.contact-form-section {
  padding: clamp(30px, 4vw, 54px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.06);
}

.contact-location-copy span,
.contact-form-heading span,
.contact-form-intro span,
.contact-tab span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-location-copy h2,
.contact-form-heading h2 {
  margin: 16px 0 0;
  color: #1d1d1f;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
}

.contact-location-copy p,
.contact-form-heading p,
.contact-form-intro p {
  margin: 18px 0 0;
  color: #6e6e73;
  font-size: 18px;
  line-height: 1.65;
}

.contact-location-copy address {
  margin-top: 24px;
  color: #1d1d1f;
  font-size: 20px;
  font-style: normal;
  line-height: 1.9;
}

.contact-location-copy a {
  color: #0071e3;
  text-decoration: none;
}

.contact-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.contact-map a {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(3, 7, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.contact-map span,
.contact-map strong {
  display: block;
}

.contact-map span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.contact-map strong {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
}

.contact-form-section {
  margin-top: 18px;
}

.contact-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding: 6px;
  background: #f5f5f7;
  border-radius: 8px;
}

.contact-tab {
  min-height: 94px;
  padding: 18px;
  color: #1d1d1f;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-tab span {
  margin-bottom: 9px;
  font-size: 11px;
}

.contact-tab.is-active {
  color: #ffffff;
  background: #1d1d1f;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.contact-tab.is-active span {
  color: #58a6ff;
}

.contact-form-panel {
  display: none;
  grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-panel.is-active {
  display: grid;
}

.contact-form-intro h3 {
  margin: 14px 0 0;
  color: #1d1d1f;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.contact-form-intro p {
  font-size: 17px;
}

.contact-form {
  min-width: 0;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field-full,
.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-field span {
  color: #6e6e73;
  font-size: 13px;
  font-weight: 800;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: #1d1d1f;
  font: inherit;
  font-size: 16px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  outline: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  background: #ffffff;
  border-color: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.13);
}

.contact-form-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.contact-captcha {
  display: grid;
  grid-template-columns: auto minmax(180px, 220px);
  align-items: end;
  width: auto;
}

.contact-captcha span {
  grid-column: 1 / -1;
}

.contact-captcha strong {
  display: inline-flex;
  min-height: 48px;
  min-width: 104px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #111827, #173f74);
  border-radius: 8px;
  user-select: none;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: auto;
  margin-top: 0;
  padding: 10px 18px;
  color: #ffffff;
  background: #0071e3;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.contact-submit:hover {
  background: #0066cc;
  text-decoration: none;
  transform: translateY(-1px);
}

.contact-alert {
  margin-top: 28px;
  padding: 16px 18px;
  color: #1d1d1f;
  font-weight: 800;
  line-height: 1.6;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.contact-alert-success {
  color: #0f5132;
  background: #eaf7ef;
  border-color: rgba(15, 81, 50, 0.18);
}

.contact-alert-error {
  color: #842029;
  background: #fff1f2;
  border-color: rgba(132, 32, 41, 0.2);
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.hr-page {
  color: var(--ink);
  background: #f5f5f7;
}

.hr-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.78) 100%),
    url("/assets/hrm-570x321.jpg") center 42% / cover no-repeat,
    #111827;
}

.hr-intro,
.hr-section,
.hr-two-column,
.hr-activity,
.hr-hiring {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.hr-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 18px;
  padding: 72px 0 18px;
}

.hr-intro-copy,
.hr-section,
.hr-two-column article,
.hr-activity,
.hr-hiring {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.06);
}

.hr-intro-copy {
  padding: clamp(34px, 4vw, 62px);
}

.hr-intro-copy span,
.hr-section-head span,
.hr-two-column span,
.hr-activity span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hr-intro-copy h2,
.hr-section-head h2,
.hr-two-column h2,
.hr-activity h2,
.hr-hiring h2 {
  margin: 14px 0 0;
  color: #1d1d1f;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hr-intro-copy p,
.hr-activity p,
.hr-hiring h2 {
  color: #6e6e73;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hr-intro-copy p {
  margin: 22px 0 0;
}

.hr-intro-media {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  background: #111827;
  border-radius: 8px;
}

.hr-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.hr-section {
  padding: clamp(34px, 4vw, 58px);
}

.hr-section-head {
  max-width: 760px;
}

.hr-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hr-benefit-grid article {
  min-height: 210px;
  padding: 24px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.hr-benefit-grid h3,
.hr-detail-item h3 {
  margin: 0;
  color: #1d1d1f;
  font-size: 22px;
  line-height: 1.22;
}

.hr-benefit-grid p,
.hr-detail-item p {
  margin: 12px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.65;
}

.hr-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.hr-two-column article {
  padding: clamp(30px, 4vw, 52px);
}

.hr-two-column h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}

.hr-detail-item {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hr-activity {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: clamp(30px, 4vw, 54px);
}

.hr-activity p {
  max-width: 760px;
  margin: 18px 0 0;
}

.hr-activity a,
.hr-hiring a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  color: #ffffff;
  background: #0071e3;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hr-activity a:hover,
.hr-hiring a:hover {
  background: #0066cc;
}

.hr-hiring {
  margin-top: 18px;
  margin-bottom: 112px;
  padding: clamp(44px, 6vw, 86px);
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 113, 227, 0.44), transparent 32%),
    linear-gradient(135deg, #101826 0%, #05070b 100%);
}

.hr-hiring p {
  margin: 0;
  color: #58a6ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hr-hiring h2 {
  max-width: 820px;
  margin: 16px auto 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 56px);
}

.hr-hiring a {
  margin-top: 28px;
}

.news-page {
  color: var(--ink);
  background: #f5f5f7;
}

.news-hero {
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 113, 227, 0.32), transparent 30%),
    linear-gradient(135deg, #111827 0%, #05070b 100%);
}

.news-content {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0 112px;
}

.news-mops-card,
.news-steps {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.06);
}

.news-mops-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 68px);
}

.news-mops-card span,
.news-step-heading span,
.news-steps li span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-mops-card h2,
.news-step-heading h2 {
  margin: 14px 0 0;
  color: #1d1d1f;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
}

.news-mops-card p {
  max-width: 740px;
  margin: 22px 0 0;
  color: #6e6e73;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.news-mops-card a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  color: #ffffff;
  background: #0071e3;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.news-mops-card a:hover {
  background: #0066cc;
}

.news-steps {
  margin-top: 18px;
  padding: clamp(34px, 5vw, 58px);
}

.news-steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.news-steps li {
  min-height: 230px;
  padding: 24px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.news-steps li span {
  color: #86868b;
  font-size: 12px;
}

.news-steps strong {
  display: block;
  margin-top: 22px;
  color: #1d1d1f;
  font-size: 22px;
  line-height: 1.25;
}

.news-steps p {
  margin: 12px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.65;
}

.news-steps b {
  color: #1d1d1f;
}

.case-page {
  background: #f5f5f7;
}

.case-category-strip {
  width: min(1180px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
}

.case-category-strip a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(16px);
}

.case-category-strip a:hover,
.case-category-strip a.is-active {
  color: #ffffff;
  text-decoration: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 113, 227, 0.86), transparent 36%),
    linear-gradient(145deg, #111827, #020817);
}

.case-category-strip span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-category-strip a:hover span,
.case-category-strip a.is-active span {
  color: #f5c56f;
}

.case-category-strip strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.16;
}

.case-category-strip em {
  align-self: flex-start;
  margin-top: 18px;
  color: #6e6e73;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
}

.case-category-strip a:hover em,
.case-category-strip a.is-active em {
  color: rgba(255, 255, 255, 0.72);
}

.case-grid {
  width: min(1180px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  padding: 72px 0 112px;
}

.case-card {
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.055);
}

.case-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

.case-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.case-card:hover .case-card-media img {
  transform: scale(1.04);
}

.case-card-copy {
  padding: 28px;
}

.case-card-copy span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.case-card-copy h2 {
  margin: 10px 0 0;
  color: #1d1d1f;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.12;
}

.case-card-copy h2 a {
  color: inherit;
}

.case-card-copy dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  margin: 22px 0 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.42;
}

.case-card-copy dt {
  color: #1d1d1f;
  font-weight: 800;
}

.case-card-copy dd {
  margin: 0;
}

.case-card-copy p {
  margin: 20px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.62;
}

.case-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 24px;
  padding: 10px 18px;
  color: #ffffff;
  background: #0071e3;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.case-more:hover {
  color: #ffffff;
  background: #0066cc;
  text-decoration: none;
}

.case-detail {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
  padding: 64px 0 112px;
}

.case-detail-panel {
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
}

.case-detail-visual {
  margin: 0;
  background: #111827;
}

.case-detail-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.case-detail-body {
  padding: clamp(34px, 5vw, 68px);
}

.case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.case-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: #0071e3;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.case-detail-body h2 {
  max-width: 880px;
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.1;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.case-facts div {
  padding: 22px;
  background: #f5f5f7;
  border-radius: 8px;
}

.case-facts dt {
  color: #6e6e73;
  font-size: 13px;
  font-weight: 800;
}

.case-facts dd {
  margin: 8px 0 0;
  color: #1d1d1f;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.case-detail-body p {
  max-width: 840px;
  margin: 28px 0 0;
  color: #6e6e73;
  font-size: 18px;
  line-height: 1.72;
}

.case-related {
  margin-top: 56px;
}

.case-related > h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.case-related .case-grid {
  width: 100%;
  padding: 28px 0 0;
}

.solution-page {
  background: #f5f5f7;
}

.solution-showcase {
  width: min(1180px, calc(100% - 56px));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 72px 0;
}

.solution-item {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: 440px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 4%, rgba(0, 113, 227, 0.34), transparent 32%),
    linear-gradient(145deg, #111827, #020817);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
}

.solution-item.reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.solution-item.reverse .solution-copy {
  order: 2;
}

.solution-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.solution-copy span {
  color: #f5c56f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
}

.solution-copy p {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.68;
}

.solution-copy .case-more {
  align-self: flex-start;
}

.solution-item figure {
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: #0f1218;
}

.solution-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
  padding: 64px 0 112px;
}

.solution-detail h3 {
  margin: 36px 0 0;
  color: #1d1d1f;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.solution-detail .case-detail-visual {
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 46px);
  background: #ffffff;
}

.solution-detail .case-detail-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.solution-inline-image {
  display: grid;
  place-items: center;
  margin: 28px 0 8px;
  padding: clamp(18px, 3vw, 34px);
  background: #f5f5f7;
  border-radius: 8px;
}

.solution-inline-image img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.solution-cta {
  padding-top: 0;
}

.terms-page {
  background: #f5f5f7;
}

.terms-content {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0 112px;
}

.terms-panel {
  padding: clamp(34px, 5vw, 68px);
  color: #1d1d1f;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
}

.terms-panel h2,
.terms-panel h3 {
  margin: 0;
  line-height: 1.18;
}

.terms-panel h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.terms-panel h3 {
  margin-top: 42px;
  font-size: clamp(22px, 2.5vw, 32px);
}

.terms-panel p,
.terms-panel li {
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.78;
}

.terms-panel p {
  margin: 20px 0 0;
}

.terms-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 1.25em;
}

.detail-actions {
  margin-top: 30px;
}

@media (max-width: 1160px) {
  .site-header {
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 52px);
    overflow: auto;
    background: rgba(10, 12, 16, 0.98);
    transform: translateY(-120%);
    transition: transform 0.22s ease;
  }

  body.nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav > ul {
    display: block;
    padding: 12px 24px 28px;
  }

  .primary-nav > ul > li > a {
    min-height: 44px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .subnav {
    position: static;
    min-width: 0;
    padding: 4px 0 12px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav li:hover .subnav,
  .primary-nav li:focus-within .subnav {
    transform: none;
  }

  .subnav a {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.64);
  }
}

@media (max-width: 860px) {
  .hero {
    width: 100vw;
    min-height: 820px;
    padding: 92px 22px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 328px;
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.02;
  }

  .lead {
    font-size: clamp(17px, 5vw, 20px);
    max-width: 328px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 17px;
  }

  .product-stage {
    width: calc(100vw - 44px);
    max-width: none;
    margin-top: 28px;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .product-stage img {
    width: 150vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .feature {
    padding: 72px 22px;
  }

  .statement p,
  .feature-copy,
  .panel-head {
    width: 100%;
    max-width: 328px;
  }

  .feature-media {
    border-radius: 12px;
  }

  .feature-media img {
    aspect-ratio: 4 / 3;
  }

  .tile-section,
  .link-row {
    grid-template-columns: 1fr;
  }

  .tile-section {
    padding: 10px;
  }

  .tile {
    min-height: 640px;
    padding: 54px 22px 0;
  }

  .quick-panel {
    padding: 72px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .ir-hero {
    min-height: 780px;
    padding: 104px 22px 56px;
  }

  .ir-hero-copy {
    max-width: 306px;
  }

  .ir-hero-copy h1 {
    font-size: clamp(38px, 10.2vw, 48px);
  }

  .ir-hero-copy p:last-child {
    max-width: 300px;
    font-size: 16px;
  }

  .ir-hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .ir-overview,
  .ir-documents,
  .ir-briefing,
  .ir-contact {
    padding: 72px 22px;
  }

  .ir-section-head {
    max-width: 306px;
  }

  .ir-metrics,
  .ir-directory,
  .ir-doc-grid,
  .ir-split,
  .ir-briefing,
  .ir-contact,
  .ir-briefing-list,
  .product-entry-grid,
  .product-item,
  .product-item.reverse {
    grid-template-columns: 1fr;
  }

  .product-item.reverse .product-media {
    order: 0;
  }

  .ir-directory,
  .ir-split {
    padding: 10px;
  }

  .ir-entry {
    min-height: 360px;
  }

  .ir-panel {
    min-height: 520px;
    padding: 54px 24px;
  }

  .ir-briefing,
  .ir-contact {
    gap: 28px;
  }

  .ir-simple-hero {
    min-height: 420px;
    padding: 104px 22px 48px;
  }

  .ir-simple-hero h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .ir-simple-hero p:last-child {
    max-width: 310px;
    font-size: 17px;
  }

  .ir-link-cards,
  .ir-link-cards.four,
  .csr-link-cards,
  .ir-contact-grid,
  .ir-three-col,
  .ir-year-grid {
    grid-template-columns: 1fr;
  }

  .ir-link-cards {
    width: calc(100% - 44px);
    margin-bottom: 72px;
  }

  .product-entry-grid,
  .product-showcase,
  .product-content,
  .product-detail-content {
    width: calc(100% - 44px);
  }

  .product-entry-grid {
    margin-bottom: 72px;
  }

  .product-entry-card {
    min-height: 300px;
  }

  .product-copy {
    padding: 34px 24px;
  }

  .product-media {
    min-height: 280px;
    padding: 24px;
  }

  .product-detail-panel {
    padding: 28px 22px;
  }

  .product-detail-images {
    grid-template-columns: 1fr;
  }

  .contact-content {
    width: calc(100% - 44px);
    padding: 52px 0 86px;
  }

  .contact-location,
  .contact-tabs,
  .contact-form-panel,
  .contact-form-grid,
  .contact-form-actions {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 280px;
  }

  .contact-tab {
    min-height: auto;
  }

  .contact-captcha {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    width: 100%;
  }

  .contact-captcha span {
    grid-column: 1 / -1;
  }

  .contact-captcha strong {
    width: auto;
  }

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

  .contact-submit {
    justify-self: start;
  }

  .hr-intro,
  .hr-section,
  .hr-two-column,
  .hr-activity,
  .hr-hiring {
    width: calc(100% - 44px);
  }

  .hr-intro {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hr-intro-media,
  .hr-intro-media img {
    min-height: 260px;
  }

  .hr-benefit-grid,
  .hr-two-column {
    grid-template-columns: 1fr;
  }

  .hr-activity {
    flex-direction: column;
    align-items: flex-start;
  }

  .hr-hiring {
    margin-bottom: 86px;
  }

  .news-content {
    width: calc(100% - 44px);
    padding: 52px 0 86px;
  }

  .news-mops-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-steps ol {
    grid-template-columns: 1fr;
  }

  .news-steps li {
    min-height: auto;
  }

  .case-category-strip,
  .case-grid {
    width: calc(100% - 44px);
  }

  .case-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .case-grid,
  .case-related .case-grid {
    grid-template-columns: 1fr;
    padding: 42px 0 86px;
  }

  .case-detail {
    width: calc(100% - 44px);
    padding: 52px 0 86px;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .solution-showcase,
  .solution-detail,
  .terms-content {
    width: calc(100% - 44px);
  }

  .solution-showcase {
    padding: 52px 0 86px;
  }

  .solution-item,
  .solution-item.reverse {
    grid-template-columns: 1fr;
  }

  .solution-item.reverse .solution-copy {
    order: 0;
  }

  .footer-meta {
    justify-items: start;
  }

  .ir-image-card {
    min-height: 260px;
  }

  .csr-detail-content {
    width: calc(100% - 44px);
    padding: 64px 0 88px;
  }

  .csr-text-grid,
  .csr-contact-grid {
    grid-template-columns: 1fr;
  }

  .csr-text-grid article,
  .csr-contact-grid article {
    min-height: 0;
  }

  .csr-text-grid article,
  .csr-text-panel,
  .csr-contact-grid article,
  .csr-criteria,
  .csr-contact-card {
    padding: 24px;
  }

  .csr-contact-card a {
    font-size: clamp(25px, 7vw, 34px);
    overflow-wrap: anywhere;
  }

  .ir-info-table,
  .ir-info-table tbody,
  .ir-info-table tr,
  .ir-info-table th,
  .ir-info-table td {
    display: block;
    width: 100%;
  }

  .ir-info-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .ir-info-table td {
    padding-top: 0;
  }

  .about-hero {
    min-height: 420px;
    padding: 104px 22px 48px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .about-hero p:last-child {
    max-width: 310px;
    font-size: 17px;
  }

  .about-beliefs {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .about-values {
    width: min(420px, calc(100% - 44px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 42px 0 56px;
  }

  .about-beliefs article {
    min-height: 390px;
    padding: 54px 24px;
  }

  .about-beliefs article > * {
    max-width: 310px;
  }

  .about-beliefs p:not(.eyebrow) {
    font-size: 17px;
  }

  .about-quote {
    min-height: 360px;
    padding: 64px 22px;
  }

  .about-quote p {
    max-width: 328px;
    font-size: clamp(25px, 7.4vw, 32px);
  }

  .about-profile {
    padding: 72px 22px;
  }

  .about-story,
  .about-story.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-story.reverse img {
    order: 0;
  }

  .about-story img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .org-section {
    padding: 72px 22px;
  }

  .org-section-head {
    max-width: 310px;
  }

  .org-chart-wrap {
    padding: 22px;
    overflow-x: visible;
  }

  .org-chart-wrap-original {
    overflow-x: auto;
    padding: 22px;
  }

  .org-original-chart {
    width: 820px;
    height: 390px;
  }

  .org-chart,
  .org-branch {
    min-width: 0;
    display: grid;
    justify-content: stretch;
    gap: 12px;
    padding-top: 12px;
  }

  .org-chart li,
  .org-chart > li {
    display: grid;
    align-items: stretch;
    padding: 0 0 0 18px;
  }

  .org-chart li::before,
  .org-chart li::after,
  .org-branch::before {
    display: none;
  }

  .org-chart li {
    border-left: 1px solid #b8c0cc;
  }

  .org-chart > li {
    border-left: 0;
    padding-left: 0;
  }

  .org-node {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .department-card {
    padding: 26px 22px;
  }

  .history-overview,
  .recognition-grid,
  .history-entry {
    grid-template-columns: 1fr;
  }

  .history-overview {
    padding: 10px;
  }

  .history-founded {
    min-height: 340px;
    padding: 42px 24px;
  }

  .recognition-grid article {
    min-height: 210px;
    padding: 24px;
  }

  .history-section {
    padding: 72px 22px;
  }

  .history-entry {
    gap: 12px;
    padding: 24px 0 24px 24px;
  }

  .history-entry::before {
    top: 31px;
  }
}

@media (max-width: 520px) {
  .brand {
    left: 18px;
  }

  .brand img {
    width: 104px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.2vw, 40px);
  }

  .lead {
    font-size: 17px;
  }

  .statement {
    min-height: 62vh;
  }

  .statement p {
    font-size: clamp(30px, 8.4vw, 34px);
  }

  .tile h2,
  .feature-copy h2,
  .panel-head h2,
  .ir-section-head h2,
  .ir-panel h2,
  .ir-briefing h2,
  .ir-contact h2 {
    font-size: 34px;
  }

  .ir-metrics article,
  .ir-doc,
  .ir-briefing-list a {
    min-height: 154px;
  }

  .about-beliefs h2,
  .about-section-head h2 {
    font-size: 34px;
  }
}
