:root {
  --page-bg: #080b0d;
  --page-surface: #111518;
  --page-surface-strong: #171c20;
  --page-text: #f4f5f2;
  --page-muted: rgba(244, 245, 242, 0.62);
  --page-line: rgba(244, 245, 242, 0.14);
  --page-blue: #48c8f4;
  --page-red: #ef493f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--page-text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body,
button,
a {
  letter-spacing: 0;
}

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

.global-site-header {
  position: fixed;
  z-index: 900;
  top: 20px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.global-site-header > * {
  pointer-events: auto;
}

.global-nav-shell,
.global-menu-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 16, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.global-nav-shell {
  display: flex;
  min-height: 54px;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  padding: 5px 8px 5px 10px;
}

.global-logo {
  position: relative;
  width: 156px;
  height: 42px;
  flex: none;
  overflow: hidden;
  border-radius: 0;
}

.global-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: 16px;
  width: 130px;
  max-width: none;
  transform: translateY(-50%);
}

.global-nav {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.global-nav a {
  position: relative;
  display: flex;
  height: 44px;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.global-nav a::after {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--page-blue);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translateX(-50%);
  transition: color 0.2s ease;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: #fff;
}

.global-nav a[aria-current="page"]::after {
  opacity: 1;
  animation: nav-indicator-expand 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes nav-indicator-expand {
  0% {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    bottom: 3px;
  }
  55% {
    width: 26px;
    height: 3px;
    border-radius: 99px;
    bottom: 5px;
  }
  100% {
    width: 22px;
    height: 3px;
    border-radius: 99px;
    bottom: 5px;
  }
}

.global-menu-button {
  display: none;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.global-menu-button svg {
  width: 20px;
  height: 20px;
}

.global-mobile-menu {
  position: fixed;
  z-index: 880;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: rgba(7, 10, 12, 0.96);
  padding: 92px 28px 32px;
}

.global-mobile-menu.is-open {
  display: flex;
}

.global-mobile-menu a {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--page-line);
  padding: 19px 0;
  font-size: 30px;
  font-weight: 620;
}

.global-mobile-menu small {
  color: var(--page-muted);
  font-size: 11px;
  font-weight: 500;
}

.site-header,
.mobile-menu {
  display: none !important;
}

.page-switcher {
  position: relative;
  display: grid;
  min-height: 292px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--page-line);
  background: #07090a;
}

.page-switcher-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 24px;
  padding: 42px 5vw;
  transition: background 0.25s ease;
}

.page-switcher-link + .page-switcher-link {
  justify-content: flex-end;
  border-left: 1px solid var(--page-line);
  text-align: right;
}

.page-switcher-link:hover {
  background: var(--page-surface);
}

.page-switcher-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  flex: none;
  place-items: center;
  border: 1px solid var(--page-line);
  border-radius: 50%;
  font-size: 21px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-switcher-link:hover .page-switcher-arrow {
  border-color: var(--page-blue);
  transform: translateX(-4px);
}

.page-switcher-link + .page-switcher-link:hover .page-switcher-arrow {
  transform: translateX(4px);
}

.page-switcher-copy {
  min-width: 0;
}

.page-switcher-copy span {
  display: block;
  margin-bottom: 13px;
  color: var(--page-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-switcher-copy strong {
  display: block;
  overflow: hidden;
  font-size: clamp(27px, 3vw, 48px);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-switcher-progress {
  position: absolute;
  bottom: 24px;
  right: 50%;
  display: flex;
  align-self: flex-end;
  gap: 7px;
  margin: 0;
  transform: translateX(50%);
}

.page-switcher-progress i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.23);
}

.page-switcher-progress i.is-active {
  width: 26px;
  border-radius: 99px;
  background: var(--page-blue);
}

.theme-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--page-bg);
}

.ip-section-heading,
.ip-definition-heading,
.theme-heading,
.section-heading,
.about-statement {
  position: relative;
  isolation: isolate;
}

.theme-particles {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -84px;
  left: 0;
  height: 180px;
  overflow: hidden;
  pointer-events: none;
}

.theme-particles span {
  position: absolute;
  bottom: -8px;
  left: var(--particle-left);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.22);
  opacity: 0;
  will-change: transform, opacity;
  animation: theme-particle-rise var(--particle-duration) ease-out var(--particle-delay) infinite;
}

@keyframes theme-particle-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.45);
  }

  14% {
    opacity: var(--particle-opacity);
  }

  82% {
    opacity: calc(var(--particle-opacity) * 0.62);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--particle-drift), calc(-1 * var(--particle-rise)), 0) scale(1);
  }
}

.theme-hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 92vh);
  overflow: hidden;
}

body[data-page="about"] .theme-hero {
  height: min(700px, calc(92vh - 200px));
  min-height: 560px;
}

.theme-hero > img,
.theme-hero > video,
.theme-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.theme-hero > img,
.theme-hero > video {
  object-fit: cover;
}

.ip-video-banner-media {
  animation: ip-video-banner-in 0.9s ease both;
  filter: saturate(0.92) contrast(1.03);
}

@keyframes ip-video-banner-in {
  0% {
    opacity: 0.35;
    transform: scale(1.015);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ip-video-banner-media + .theme-hero-shade {
  background: linear-gradient(90deg, rgba(5, 8, 10, 0.88) 0%, rgba(5, 8, 10, 0.4) 48%, rgba(5, 8, 10, 0.14) 100%), linear-gradient(0deg, #080b0d 0%, transparent 34%);
}

@media (prefers-reduced-motion: reduce) {
  .ip-video-banner-media {
    animation: none;
  }
}

/* MiaoWood product content below the Hero */
.miaowood-page {
  --mw-white: #f7f8fc;
  --mw-muted: rgba(247, 248, 252, 0.72);
  --mw-blue: #3b9dff;
  min-height: 100vh;
  overflow-x: hidden;
  background: #050607;
  color: var(--mw-white);
}

.miaowood-page .mw-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;
}

.mw-section {
  width: min(1240px, calc(100% - 120px));
  margin: 0 auto;
}

.mw-intro {
  position: relative;
  z-index: 1;
  padding: 76px 0 126px;
  background: #050607;
}

.mw-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(54px, 8vw, 140px);
}

.mw-intro-copy {
  align-self: start;
  padding-top: 30px;
}

.mw-intro-copy p {
  margin: 0;
  color: var(--mw-muted);
  font-family: "Inter Variable", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.01em;
}

.mw-site-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 18px;
  color: var(--mw-white);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 600;
}

.mw-site-link span {
  color: var(--mw-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mw-workspace {
  position: relative;
  justify-self: end;
  width: min(100%, 670px);
  box-sizing: border-box;
  padding: 14px;
}

.mw-workspace img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.mw-first-floor {
  position: relative;
  height: 50svh;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #020405 0%, #05080c 54%, #020405 100%);
  border-top: 1px solid rgba(176, 207, 255, 0.05);
  border-bottom: 1px solid rgba(176, 207, 255, 0.06);
}

.mw-floor-dots {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: auto;
  bottom: 0;
  left: 50%;
  width: min(2253px, calc(100% - 264px));
  opacity: 0.58;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px);
  background-size: 48px 48px;
  transform: translateX(-50%);
  animation: mw-floor-dots-drift 18s linear infinite;
  pointer-events: none;
}

@keyframes mw-floor-dots-drift {
  from { background-position: 0 0; }
  to { background-position: 0 64px; }
}

.mw-floor-gallery,
.mw-floor-composer {
  position: absolute;
}

.mw-floor-gallery {
  z-index: 1;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(2253px, calc(100% - 264px));
  height: min(905.5px, 75.5%);
  transform: translateX(-50%);
  pointer-events: none;
}

.mw-floor-card {
  position: absolute;
  top: var(--mw-card-top);
  left: var(--mw-card-x);
  width: var(--mw-card-width);
  aspect-ratio: var(--mw-card-ratio);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 239, 255, 0.22);
  border-radius: 9px;
  background: #13161c;
  box-shadow: 0 10.5px 28.5px rgba(0, 0, 0, 0.34);
  opacity: 0.86;
  transform: translateX(-50%);
  animation: mw-floor-card-float 9s ease-in-out var(--mw-card-delay) infinite;
}

.mw-floor-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(2, 5, 8, 0.23));
  content: "";
  pointer-events: none;
}

.mw-floor-card img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.mw-floor-card:not(.mw-floor-ready) img:first-child {
  opacity: 1;
  transform: scale(1);
}

.mw-floor-card img.is-visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes mw-floor-card-float {
  0%, 100% { transform: translate3d(-50%, 0, 0) scale(1); }
  50% { transform: translate3d(-50%, -8px, 0) scale(1.012); }
}

.mw-floor-composer {
  z-index: 4;
  top: 43.5%;
  left: 50%;
  width: min(667.5px, 48vw);
  height: 145.5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10.5px 15px 12px;
  overflow: hidden;
  border: 1px solid rgba(226, 235, 255, 0.23);
  border-radius: 10.5px;
  background: #181a20;
  box-shadow: 0 13.5px 40.5px rgba(0, 0, 0, 0.38);
  color: rgba(245, 247, 253, 0.68);
  text-align: left;
  cursor: pointer;
  transform: translate(-50%, -115px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.mw-floor-composer:hover {
  border-color: rgba(143, 219, 255, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.58), 0 0 22px rgba(30, 123, 190, 0.12);
  transform: translate(-50%, -118px);
}

.mw-composer-topline,
.mw-composer-toolbar,
.mw-composer-settings,
.mw-composer-submit {
  display: flex;
  align-items: center;
}

.mw-composer-topline {
  min-width: 0;
  gap: 9px;
}

.mw-composer-add {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 232, 250, 0.22);
  border-radius: 10px;
  color: rgba(244, 248, 255, 0.82);
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.mw-composer-prompt {
  overflow: hidden;
  color: rgba(245, 247, 253, 0.42);
  font-size: 11.25px;
  line-height: 16.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mw-composer-expand {
  margin-left: auto;
  color: rgba(238, 244, 255, 0.62);
  font-size: 17px;
}

.mw-composer-toolbar {
  justify-content: space-between;
  gap: 12px;
  color: rgba(239, 245, 255, 0.62);
  font-size: 10.5px;
  line-height: 15px;
}

.mw-composer-settings,
.mw-composer-submit {
  min-width: 0;
  gap: 6px;
}

.mw-composer-settings > span:first-child {
  overflow: hidden;
  max-width: 190px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mw-composer-settings i {
  width: 1px;
  height: 14px;
  background: rgba(237, 244, 255, 0.18);
}

.mw-composer-assets {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(242, 246, 255, 0.76);
}

.mw-composer-submit strong {
  color: #f5cf43;
  font-weight: 700;
}

.mw-composer-send {
  width: 30px;
  height: 30px;
  margin-left: 3px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #353944;
  color: rgba(244, 248, 255, 0.7);
  font-size: 18px;
}

.mw-vision {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(74px, 11vw, 170px);
  padding: 70px 0 220px;
  background: #050607;
}

.mw-capabilities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 52px);
}

.mw-capabilities img {
  width: clamp(116px, 11vw, 160px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(255, 135, 190, 0.28));
}

.mw-capabilities ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--mw-muted);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.45;
  list-style: none;
}

.mw-vision-copy h2 {
  margin: 0;
  font-size: clamp(48px, 4.5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.15;
}

.mw-vision-copy p {
  max-width: 800px;
  margin: 25px 0 0;
  color: var(--mw-muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 2;
}

.mw-start-button {
  width: min(100%, 360px);
  height: 64px;
  margin-top: 34px;
  border: 1px solid rgba(89, 195, 255, 0.75);
  border-radius: 999px;
  background: rgba(10, 18, 28, 0.8);
  box-shadow: inset 0 0 14px rgba(65, 136, 255, 0.12), 0 0 18px rgba(65, 136, 255, 0.2);
  color: #fff;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mw-start-button:hover {
  transform: translateY(-2px);
  border-color: #8ceaff;
  box-shadow: inset 0 0 17px rgba(65, 136, 255, 0.18), 0 0 28px rgba(65, 136, 255, 0.32);
}

.mw-start-button span {
  margin-right: 5px;
  font-size: 1.2em;
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  .mw-floor-dots,
  .mw-floor-card {
    animation: none;
  }

  .mw-floor-card img {
    transition: none;
  }
}

@media (max-width: 960px) {
  .mw-section {
    width: min(100% - 48px, 720px);
  }

  .mw-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mw-intro-copy {
    padding-top: 0;
  }

  .mw-workspace {
    justify-self: stretch;
    width: 100%;
  }

  .mw-floor-dots,
  .mw-floor-gallery {
    width: calc(100% - 64px);
  }

  .mw-floor-gallery {
    height: 75.5%;
  }

  .mw-floor-composer {
    width: min(667.5px, calc(100% - 48px));
  }

  .mw-vision {
    grid-template-columns: 1fr;
    gap: 68px;
    padding-top: 54px;
  }

  .mw-capabilities {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .mw-floor-dots,
  .mw-floor-gallery {
    width: calc(100% - 36px);
  }

  .mw-floor-composer {
    width: calc(100% - 36px);
  }
}

@media (max-width: 560px) {
  .mw-section {
    width: min(100% - 36px, 500px);
  }

  .mw-intro {
    padding-bottom: 100px;
  }

  .mw-intro-copy p {
    font-size: 14px;
    line-height: 1.95;
  }

  .mw-floor-dots,
  .mw-floor-gallery {
    width: calc(100% - 24px);
  }

  .mw-floor-composer {
    width: calc(100% - 24px);
  }

  .mw-composer-toolbar {
    font-size: 9px;
  }

  .mw-composer-settings > span:first-child {
    max-width: 105px;
  }

  .mw-vision {
    gap: 52px;
    padding-bottom: 160px;
  }

  .mw-capabilities {
    gap: 22px;
  }

  .mw-capabilities img {
    width: 100px;
  }

  .mw-capabilities ul {
    gap: 7px;
    font-size: 14px;
  }

  .mw-vision-copy h2 {
    font-size: 45px;
  }

  .mw-vision-copy p {
    font-size: 15px;
    line-height: 1.9;
  }

  .mw-start-button {
    height: 58px;
    margin-top: 28px;
  }
}

/* News archive page */
.news-page {
  background: var(--page-bg);
}

.news-hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 92vh);
  overflow: hidden;
  background: linear-gradient(108deg, #080b0d 0%, #090c13 38%, #101735 62%, #253f88 82%, #5a7dd5 100%);
}

.news-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06) brightness(0.72);
  animation: news-video-banner-in 0.9s ease both;
}

@keyframes news-video-banner-in {
  0% {
    opacity: 0.35;
    transform: scale(1.015);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-hero-media {
    animation: none;
  }
}

.news-hero::before {
  position: absolute;
  inset: 20% -12% 18% 27%;
  background: linear-gradient(102deg, transparent 8%, rgba(90, 72, 170, 0.12) 36%, rgba(86, 127, 235, 0.68) 70%, rgba(176, 205, 255, 0.34) 88%, transparent 100%);
  content: "";
  filter: blur(44px);
  opacity: 0.92;
  transform: skewX(-13deg);
  pointer-events: none;
}

.news-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.12) 0%, rgba(8, 11, 13, 0.08) 42%, var(--page-bg) 100%);
  content: "";
  pointer-events: none;
}

.news-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1120px, calc(100% - 64px));
  height: 100%;
  align-items: stretch;
  flex-direction: column;
  margin: 0 auto;
  padding: 138px 0 98px;
  box-sizing: border-box;
}

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

.news-hero p {
  max-width: 480px;
  margin: 52px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.news-archive {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: var(--page-bg);
  padding: 54px 0 126px;
}

.news-archive-shell {
  width: min(1088px, calc(100% - 64px));
  margin: 0 auto;
}

.news-archive .news-list {
}

.news-archive .news-item {
  display: grid;
  grid-template-columns: 74px 238px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  border-bottom: 1px solid rgba(244, 245, 242, 0.14);
  padding: 32px 0;
  transition: background 0.35s ease;
}

.news-archive .news-item:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(72, 200, 244, 0.045) 50%, transparent 100%);
}

.news-archive .news-item time {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 1px;
  color: rgba(244, 245, 242, 0.72);
}

.news-archive .news-item time strong {
  color: var(--page-text);
  font-size: 39px;
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.news-archive .news-item time span {
  margin-top: 10px;
  color: var(--page-muted);
  font-size: 12px;
  line-height: 1;
}

.news-item-media {
  aspect-ratio: 16 / 9.9;
  overflow: hidden;
  border-radius: 8px;
  background: #11161b;
}

.news-item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.72);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-item:hover .news-item-media img {
  filter: saturate(0.95) brightness(0.86);
  transform: scale(1.035);
}

.news-item-copy {
  min-width: 0;
  padding-top: 1px;
}

.news-item-copy h3 {
  margin: 0;
  color: var(--page-text);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 570;
  line-height: 1.28;
}

.news-item-copy p {
  max-width: 680px;
  margin: 15px 0 0;
  color: rgba(244, 245, 242, 0.54);
  font-size: 13px;
  line-height: 1.75;
}

.news-item-copy a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: var(--page-blue);
  font-size: 12px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.news-item-copy a span {
  font-size: 19px;
  line-height: 0.6;
}

.news-item-copy a:hover {
  color: #fff;
  gap: 13px;
}

@media (max-width: 900px) {
  .news-hero {
    min-height: 680px;
  }

  .news-hero-inner {
    width: min(calc(100% - 40px), 720px);
    padding: 112px 0 72px;
  }

  .news-hero h1 {
    font-size: clamp(112px, 23vw, 190px);
  }

  .news-hero p {
    margin-top: 38px;
  }

  .news-archive {
    padding: 44px 0 92px;
  }

  .news-archive-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .news-archive .news-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 0;
  }

  .news-archive .news-item time strong {
    font-size: 32px;
  }

  .news-archive .news-item time span {
    margin-top: 8px;
    font-size: 10px;
  }

  .news-item-media {
    aspect-ratio: 16 / 10.5;
  }

  .news-item-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .news-item-copy h3 {
    font-size: 20px;
  }

  .news-item-copy p {
    margin-top: 11px;
    font-size: 12px;
    line-height: 1.72;
  }

  .news-item-copy a {
    margin-top: 13px;
    font-size: 11px;
  }
}

@media (max-width: 620px) {
  .news-hero {
    height: 88svh;
    min-height: 620px;
  }

  .news-hero-inner {
    width: calc(100% - 36px);
    padding-bottom: 66px;
  }

  .news-hero h1 {
    font-size: clamp(96px, 29vw, 142px);
  }

  .news-hero p {
    max-width: 290px;
    margin-top: 32px;
    font-size: 13px;
  }

  .news-archive {
    padding-top: 38px;
  }

  .news-archive-shell {
    width: calc(100% - 36px);
  }

  .news-archive .news-item {
    grid-template-columns: 47px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .news-archive .news-item time strong {
    font-size: 27px;
  }

  .news-archive .news-item time span {
    font-size: 9px;
  }

  .news-item-media {
    border-radius: 6px;
  }

  .news-item-copy h3 {
    font-size: 18px;
    line-height: 1.36;
  }

  .news-item-copy p {
    font-size: 11px;
  }
}

/* Keep the existing FAQ contact copy while using the reference archive layout. */
.news-faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--page-line);
}

.news-faq-contact div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-faq-contact span {
  color: var(--page-blue);
  font-family: "DM Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.news-faq-contact strong {
  color: var(--page-text);
  font-size: 22px;
  font-weight: 560;
}

.news-faq-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--page-blue);
  font-size: 12px;
  white-space: nowrap;
}

.news-faq-contact a span {
  color: inherit;
  font-family: inherit;
  font-size: 19px;
  line-height: 0.6;
  letter-spacing: 0;
}

@media (max-width: 620px) {
  .news-faq-contact {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }

  .news-faq-contact strong {
    font-size: 18px;
  }
}

.theme-hero-shade {
  background: linear-gradient(90deg, rgba(5, 8, 10, 0.92) 0%, rgba(5, 8, 10, 0.48) 47%, rgba(5, 8, 10, 0.16) 100%), linear-gradient(0deg, #080b0d 0%, transparent 35%);
}

.theme-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.ip-section-heading > :not(.theme-particles),
.ip-definition-heading > :not(.theme-particles),
.theme-heading > :not(.theme-particles),
.section-heading > :not(.theme-particles),
.about-statement > :not(.theme-particles) {
  position: relative;
  z-index: 1;
}

.theme-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.theme-kicker::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.theme-hero h1 {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: clamp(70px, 9vw, 144px);
  font-weight: 650;
  line-height: 0.95;
}

.theme-hero p {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.9;
}

.ip-reference-shell {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.ip-reference-products {
  background: #07090b;
  padding: 74px 0;
}

.ip-product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 48px;
  color: rgba(244, 245, 242, 0.34);
  font-size: 27px;
  font-weight: 650;
  text-align: center;
}

.ip-product-row span {
  transition: color 0.25s ease;
}

.ip-product-row span:hover {
  color: var(--page-text);
}

.ip-reference-history,
.ip-reference-vision,
.ip-reference-faq {
  padding: 138px 0;
  background: #080b0d;
}

.ip-reference-heading {
  max-width: 950px;
  margin: 0 auto 62px;
}

.ip-reference-heading-center {
  max-width: 980px;
  text-align: center;
}

.ip-reference-eyebrow {
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.ip-reference-heading h2 {
  margin: 20px 0 0;
  color: var(--page-text);
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 620;
  line-height: 1.05;
}

.ip-reference-heading p {
  max-width: 920px;
  margin: 26px 0 0;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.85;
}

.ip-reference-heading p + p {
  margin-top: 14px;
}

.ip-reference-heading-center p {
  margin-right: auto;
  margin-left: auto;
}

.ip-reference-history-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ip-reference-poster {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 8px;
  background: var(--page-surface);
}

.ip-reference-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 5, 7, 0.94) 100%);
  content: "";
}

.ip-reference-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.72);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.ip-reference-poster:hover img {
  filter: saturate(0.96) brightness(0.86);
  transform: scale(1.04);
}

.ip-reference-poster strong,
.ip-reference-poster small {
  position: absolute;
  z-index: 1;
  right: 18px;
  left: 18px;
}

.ip-reference-poster strong {
  bottom: 34px;
  font-size: 19px;
  font-weight: 600;
}

.ip-reference-poster small {
  bottom: 15px;
  color: var(--page-muted);
  font-size: 10px;
}

.ip-reference-vision {
  background: #06080b;
}

.ip-reference-vision .ip-reference-heading h2 {
  font-size: clamp(37px, 4.4vw, 62px);
  line-height: 1.18;
}

.ip-reference-slogan {
  color: var(--page-blue) !important;
  font-size: clamp(27px, 3.2vw, 46px) !important;
  font-weight: 650;
}

.ip-reference-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ip-reference-service {
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 8px;
  background: rgba(17, 21, 24, 0.76);
  padding: 12px;
}

.ip-reference-service-image {
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  border-radius: 5px;
  background: #12161b;
}

.ip-reference-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.76);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.ip-reference-service:hover .ip-reference-service-image img {
  filter: saturate(0.96) brightness(0.9);
  transform: scale(1.035);
}

.ip-reference-service h3 {
  margin: 24px 4px 0;
  font-size: 21px;
  font-weight: 580;
  line-height: 1.35;
}

.ip-reference-service p {
  margin: 15px 4px 8px;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.8;
}

.ip-reference-faq {
  background: #080b0d;
}

.ip-reference-faq .ip-reference-heading h2 em {
  color: var(--page-blue);
  font-style: normal;
}

.ip-reference-faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--page-line);
}

.ip-reference-faq-item {
  border-bottom: 1px solid var(--page-line);
}

.ip-reference-faq-toggle {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--page-text);
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.ip-reference-faq-toggle > span:last-child {
  color: var(--page-muted);
  font-size: 21px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.ip-reference-faq-item.is-open .ip-reference-faq-toggle > span:last-child {
  color: var(--page-blue);
  transform: rotate(180deg);
}

.ip-reference-faq-item p {
  max-width: 760px;
  margin: -3px 0 25px;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.8;
}

.ip-reference-faq-item:not(.is-open) p {
  display: none;
}

.ip-reference-faq-contact {
  display: flex;
  max-width: 920px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--page-line);
}

.ip-reference-faq-contact div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ip-reference-faq-contact span {
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.ip-reference-faq-contact strong {
  font-size: 21px;
  font-weight: 560;
}

.ip-reference-faq-contact a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--page-line);
  color: var(--page-text);
  font-size: 13px;
}

.ip-reference-faq-contact a:hover {
  border-color: var(--page-blue);
  color: var(--page-blue);
}

.ip-reference-contact {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.1), rgba(8, 11, 13, 0.9)), url("./earthwild/reference/hero-sky.jpg") center / cover;
  text-align: center;
}

.ip-reference-contact::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 7, 9, 0.24) 100%);
  content: "";
}

.ip-reference-contact-inner {
  position: relative;
  z-index: 1;
}

.ip-reference-contact h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 620;
  line-height: 1.05;
}

.ip-reference-footer {
  background: #07090b;
  padding: 72px max(32px, calc((100% - 1120px) / 2)) 28px;
}

.ip-reference-footer-slogan {
  margin: 0;
  color: var(--page-text);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 620;
  line-height: 1.1;
  text-align: center;
}

.ip-reference-footer-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(500px, 1fr);
  gap: 88px;
  isolation: isolate;
}

.ip-reference-footer-top > :not(.theme-particles) {
  position: relative;
  z-index: 1;
}

.ip-reference-footer-top > .theme-particles {
  bottom: -20px;
  height: 240px;
}

.ip-reference-footer-brand img {
  width: 150px;
  height: auto;
}

.ip-reference-footer-brand p {
  margin: 30px 0 0;
  font-size: 36px;
  font-weight: 620;
  line-height: 1.08;
}

.ip-reference-footer-brand em {
  color: var(--page-blue);
  font-style: normal;
}

.ip-reference-footer-message {
  align-self: start;
  margin: 0;
  color: var(--page-text);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 620;
  line-height: 1.1;
}

.ip-reference-footer-message span {
  color: var(--page-blue);
}

.ip-reference-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ip-reference-footer-links div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.ip-reference-footer-links span {
  margin-bottom: 6px;
  color: rgba(244, 245, 242, 0.4);
  font-size: 10px;
}

.ip-reference-footer-links a {
  color: rgba(244, 245, 242, 0.7);
  font-size: 12px;
}

.ip-reference-footer-links a:hover {
  color: var(--page-blue);
}

.ip-reference-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  margin-top: 68px;
  padding-top: 18px;
  border-top: 1px solid var(--page-line);
  color: rgba(244, 245, 242, 0.35);
  font-size: 9px;
}

.ip-definition {
  --page-line: rgba(255, 255, 255, 0.1);
  --page-line-horizontal: linear-gradient(90deg, transparent 0%, var(--page-line) 18%, var(--page-line) 82%, transparent 100%);
  --page-line-vertical: linear-gradient(180deg, transparent 0%, var(--page-line) 18%, var(--page-line) 82%, transparent 100%);
  border-bottom: 0;
  background: linear-gradient(180deg, #000000 0%, #020305 52%, #080a0d 100%);
}

.ip-definition-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 124px 0 0;
}

.ip-definition h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 610;
  line-height: 1;
  text-align: center;
}

.ip-definition-heading {
  margin-bottom: 50px;
  text-align: center;
}

.ip-definition h2 span {
  color: var(--page-blue);
}

.ip-definition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ip-definition-item {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  isolation: isolate;
  padding: 48px 32px 54px;
  text-align: center;
  transition: background 0.45s ease;
}

.ip-definition-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.34) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-definition-item:hover::before {
  opacity: 0.6;
}

.ip-definition-item > * {
  position: relative;
  z-index: 1;
}

.ip-definition-item + .ip-definition-item {
  background-image: var(--page-line-vertical);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}

.ip-definition-item:not(:last-child) {
  z-index: 2;
}

.ip-definition-item:not(:last-child)::after {
  position: absolute;
  z-index: 8;
  top: 50%;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: transparent;
  color: var(--page-blue);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transform: translate(50%, -50%);
}

.ip-definition-index {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(72, 200, 244, 0.58);
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 700;
  transition: background 0.45s ease, border-color 0.45s ease, color 0.45s ease, transform 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-definition-item h3 {
  margin: 34px 0 0;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 540;
  line-height: 1.25;
  transition: color 0.45s ease, transform 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-definition-item:hover .ip-definition-index {
  border-color: var(--page-blue);
  background: rgba(72, 200, 244, 0.1);
  color: #f4f5f2;
  transform: translateY(-3px);
}

.ip-definition-item:hover h3 {
  color: #ffffff;
  transform: translateY(-3px);
}

.ip-content-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.ip-process,
.ip-output {
  padding: 138px 0;
}

.ip-section-heading {
  max-width: 850px;
  margin: 0 auto 76px;
  text-align: center;
}

.ip-section-heading > span,
.ip-conversion-label {
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.ip-section-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  line-height: 1.08;
}

.ip-section-heading p {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 1.85;
}

.ip-process {
  --page-line: rgba(255, 255, 255, 0.1);
  --page-line-horizontal: linear-gradient(90deg, transparent 0%, var(--page-line) 18%, var(--page-line) 82%, transparent 100%);
  --page-line-vertical: linear-gradient(180deg, transparent 0%, var(--page-line) 18%, var(--page-line) 82%, transparent 100%);
  background: var(--page-bg);
}

.ip-process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ip-process-item {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  box-sizing: border-box;
  grid-column: span 2;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  padding: 46px 42px 54px;
  text-align: center;
  transition: background 0.45s ease;
}

.ip-process-item::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-process-item:hover::before {
  opacity: 0.6;
}

.ip-process-item > * {
  position: relative;
  z-index: 1;
}

.ip-process-item:nth-child(2),
.ip-process-item:nth-child(3),
.ip-process-item:nth-child(5) {
  background-image: var(--page-line-vertical);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}

.ip-process-item:nth-child(n + 4) {
  background-image: var(--page-line-horizontal);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.ip-process-item:nth-child(5) {
  background-image: var(--page-line-horizontal), var(--page-line-vertical);
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%;
}

.ip-process-item:nth-child(4),
.ip-process-item:nth-child(5) {
  grid-column: span 3;
}

.ip-process-item:hover,
.ip-output-grid article:hover {
  background-color: transparent;
}

.ip-process-item > img,
.ip-output-grid img,
.ip-conversion-icon {
  display: block;
  width: 34px;
  height: 34px;
  opacity: 0.82;
  filter: brightness(0) invert(1);
}

.ip-process-item > img {
  width: 40px;
  height: 40px;
  margin: 0 0 24px;
  transition: transform 0.45s cubic-bezier(0.6, 0.6, 0, 1), opacity 0.45s ease;
}

.ip-process-item small {
  display: block;
  margin-top: 0;
  color: var(--page-blue);
  font-size: 9px;
  font-weight: 750;
  transition: color 0.45s ease;
}

.ip-process-item h3 {
  margin: 14px 0 0;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 540;
  line-height: 1.25;
  min-height: 2.5em;
  transition: color 0.45s ease, transform 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-process-item p {
  max-width: 330px;
  margin: 18px auto 0;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.7;
  transition: color 0.45s ease;
}

.ip-process-item:hover > img,
.ip-process-item:hover h3 {
  transform: translateY(-3px);
}

.ip-process-item:hover > img {
  opacity: 1;
}

.ip-process-item:hover h3 {
  color: #ffffff;
}

.ip-process-item:hover p {
  color: rgba(244, 245, 242, 0.82);
}

.ip-output {
  --page-line: rgba(255, 255, 255, 0.075);
  --page-line-horizontal: linear-gradient(90deg, transparent 0%, var(--page-line) 18%, var(--page-line) 82%, transparent 100%);
  --page-line-vertical: linear-gradient(180deg, transparent 0%, var(--page-line) 18%, var(--page-line) 82%, transparent 100%);
  background: #0a0c11;
}

.ip-output-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.ip-output-grid article {
  position: relative;
  display: flex;
  min-height: 178px;
  align-items: center;
  box-sizing: border-box;
  grid-column: span 3;
  flex-direction: column;
  justify-content: center;
  padding: 34px 22px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.45s ease;
}

.ip-output-grid article::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.34) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-output-grid article:hover::before {
  opacity: 0.6;
}

.ip-output-grid article > * {
  position: relative;
  z-index: 1;
  transition: color 0.45s ease, opacity 0.45s ease, transform 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.ip-output-grid article:hover > img,
.ip-output-grid article:hover > h3 {
  transform: translateY(-3px);
}

.ip-output-grid article:hover > img {
  opacity: 1;
}

.ip-output-grid article:hover > h3 {
  color: #ffffff;
}

.ip-output-grid article:nth-child(2),
.ip-output-grid article:nth-child(3),
.ip-output-grid article:nth-child(4),
.ip-output-grid article:nth-child(6),
.ip-output-grid article:nth-child(7) {
  background-image: var(--page-line-vertical);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}

.ip-output-grid article:nth-child(n + 5) {
  grid-column: span 4;
  background-image: var(--page-line-horizontal);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.ip-output-grid article:nth-child(6),
.ip-output-grid article:nth-child(7) {
  background-image: var(--page-line-horizontal), var(--page-line-vertical);
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%;
}

.ip-output-grid h3 {
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 520;
}

.ip-conversion {
  position: relative;
  overflow: hidden;
  background: #080b0d;
  padding: 150px 0;
}

.ip-conversion-banner {
  background: #e6b36f;
  line-height: 0;
  padding: 0;
}

.ip-conversion-banner-media {
  display: block;
  width: 100%;
  height: auto;
}

.ip-conversion-inner {
  width: min(1000px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.ip-conversion-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 32px;
}

.ip-conversion h2 {
  margin: 28px 0 0;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 600;
  line-height: 1.02;
}

.ip-conversion > .ip-conversion-inner > p {
  max-width: 660px;
  margin: 36px auto 0;
  color: var(--page-muted);
  font-size: 17px;
  line-height: 1.8;
}

.ip-conversion-flow {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  margin: 76px auto 0;
  border-top: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
}

.ip-conversion-flow span {
  display: flex;
  min-height: 104px;
  align-items: center;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ip-conversion-flow span + span {
  border-left: 1px solid var(--page-line);
}

.ip-conversion-flow small {
  color: var(--page-blue);
  font-size: 9px;
  font-weight: 750;
}

.ip-conversion-flow strong {
  font-size: 20px;
  font-weight: 540;
}

.theme-section {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 132px 0;
}

.theme-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

.theme-heading h2 {
  margin: 0;
  font-size: clamp(45px, 6vw, 82px);
  font-weight: 620;
  line-height: 1.08;
}

.theme-heading p {
  margin: 0;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.85;
}

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

.theme-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 6px;
  background: var(--page-surface);
}

.theme-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-card:hover > img {
  transform: scale(1.04);
}

.theme-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 4, 5, 0.98) 0%, rgba(2, 4, 5, 0.05) 65%);
}

.theme-card-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.theme-card-copy small {
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 700;
}

.theme-card-copy h3 {
  margin: 12px 0 0;
  font-size: 27px;
  font-weight: 600;
}

.theme-card-copy p {
  margin: 12px 0 0;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* About page step cards use the same immersive single-banner treatment as the reference. */
.about-step-grid {
  gap: 14px;
}

.about-step-card {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 0;
  border-radius: 10px;
  background: #11161a;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-step-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 44%, rgba(18, 110, 164, 0.2) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.about-step-card > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.7);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-step-card:nth-child(2) > img {
  object-position: center 42%;
}

.about-step-card:nth-child(3) > img {
  object-position: center 38%;
}

.about-step-card:hover {
  transform: translateY(-4px);
}

.about-step-card:hover::after {
  opacity: 0.6;
}

.about-step-card:hover > img {
  filter: saturate(0.92) brightness(0.8);
  transform: scale(1.04);
}

.about-step-card .theme-card-shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 6, 7, 0.12) 0%, rgba(3, 6, 7, 0.2) 38%, rgba(3, 6, 7, 0.97) 100%);
}

.about-step-meta {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 2.1vw, 38px);
  right: clamp(20px, 2.1vw, 38px);
  left: clamp(20px, 2.1vw, 38px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about-step-meta img {
  width: clamp(34px, 3vw, 50px);
  height: clamp(34px, 3vw, 50px);
  filter: brightness(0) saturate(100%) invert(39%) sepia(93%) saturate(2567%) hue-rotate(337deg) brightness(104%) contrast(100%);
}

.about-step-meta span {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.55vw, 24px);
  font-weight: 450;
  line-height: 1;
}

.about-step-card > .theme-card-copy {
  z-index: 2;
  right: clamp(86px, 8vw, 148px);
  bottom: clamp(24px, 2.8vw, 50px);
  left: clamp(24px, 2.8vw, 50px);
}

.about-step-card .theme-card-copy small {
  display: block;
  color: var(--page-blue);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 750;
  letter-spacing: 0.02em;
}

.about-step-card .theme-card-copy h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(27px, 2.6vw, 48px);
  font-weight: 560;
  line-height: 1.12;
}

.about-step-card .theme-card-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 1.15vw, 18px);
  line-height: 1.6;
}

.about-step-arrow {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 2.8vw, 50px);
  bottom: clamp(22px, 2.8vw, 50px);
  display: grid;
  width: clamp(48px, 5vw, 82px);
  height: clamp(48px, 5vw, 82px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: #fff;
  font-size: clamp(25px, 2.25vw, 38px);
  line-height: 1;
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.about-step-card:hover .about-step-arrow {
  border-color: var(--page-blue);
  color: var(--page-blue);
  transform: translateX(4px);
}

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--page-line);
  padding: 34px 0;
}

.news-item time,
.news-item small {
  color: var(--page-muted);
  font-size: 11px;
}

.news-item h3 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 560;
}

.about-statement {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
}

.about-statement strong {
  color: var(--page-blue);
  font-size: 11px;
}

.about-statement p {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 65px);
  font-weight: 550;
  line-height: 1.25;
}

.about-aip-section {
  position: relative;
  overflow: hidden;
  padding: clamp(128px, 15vw, 220px) 0 0;
  --aip-line: rgba(255, 255, 255, 0.1);
  --aip-line-horizontal: linear-gradient(90deg, transparent 0%, var(--aip-line) 18%, var(--aip-line) 82%, transparent 100%);
  --aip-line-vertical: linear-gradient(180deg, transparent 0%, var(--aip-line) 18%, var(--aip-line) 82%, transparent 100%);
  background: linear-gradient(180deg, #06090c 0%, #080b0d 62%, #05080c 100%);
  border-top: 1px solid rgba(244, 245, 242, 0.1);
}

.about-aip-section::after {
  position: absolute;
  right: -12%;
  bottom: -36%;
  left: -12%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(31, 133, 211, 0.18), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-aip-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.about-aip-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  margin-bottom: clamp(66px, 8vw, 108px);
}

.about-aip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.about-aip-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.about-aip-heading h2 {
  margin: 24px 0 0;
  background: linear-gradient(108deg, #48c8f4 0%, #718cff 44%, #c879e8 74%, #48c8f4 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 620;
  line-height: 1.03;
  animation: about-aip-title-flow 10s ease-in-out infinite alternate;
}

@keyframes about-aip-title-flow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.about-aip-heading > p {
  max-width: 390px;
  margin: 0;
  color: rgba(244, 245, 242, 0.76);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.9;
}

.about-aip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--aip-line);
}

.about-aip-principle {
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  box-sizing: border-box;
  grid-column: span 2;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  padding: 46px 42px 54px;
  text-align: center;
  transition: background 0.45s ease;
}

.about-aip-principle::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.about-aip-principle:hover::before {
  opacity: 0.6;
}

.about-aip-section .about-aip-principle::before {
  background: linear-gradient(90deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
}

.about-aip-section .about-aip-principle:nth-child(-n + 3)::before {
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
}

.about-aip-section .about-aip-principle:nth-child(n + 4)::before {
  background: linear-gradient(0deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
}

.about-aip-principle:nth-child(4) {
  grid-column: 2 / span 2;
}

.about-aip-principle:nth-child(5) {
  grid-column: 4 / span 2;
}

.about-aip-principle > * {
  position: relative;
  z-index: 1;
  transition: color 0.45s ease, opacity 0.45s ease, transform 0.45s cubic-bezier(0.6, 0.6, 0, 1);
}

.about-aip-principle > img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 0 24px;
  opacity: 0.82;
  filter: brightness(0) invert(1);
  transition: transform 0.45s cubic-bezier(0.6, 0.6, 0, 1), opacity 0.45s ease;
}

.about-aip-principle:nth-child(2),
.about-aip-principle:nth-child(3),
.about-aip-principle:nth-child(5) {
  background-image: var(--aip-line-vertical);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 1px 100%;
}

.about-aip-principle:nth-child(n + 4) {
  background-image: var(--aip-line-horizontal);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.about-aip-principle:nth-child(5) {
  background-image: var(--aip-line-horizontal), var(--aip-line-vertical);
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%;
}

.about-aip-principle:hover > img,
.about-aip-principle:hover h3 {
  transform: translateY(-3px);
}

.about-aip-principle:hover > img {
  opacity: 1;
}

.about-aip-principle:hover h3 {
  color: #ffffff;
}

.about-aip-principle:hover p {
  color: rgba(244, 245, 242, 0.82);
}

.about-aip-index {
  display: block;
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.about-aip-principle h3 {
  min-height: 1.25em;
  margin: 14px 0 0;
  color: var(--page-text);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 540;
  line-height: 1.25;
}

.about-aip-principle p {
  max-width: 330px;
  margin: 18px auto 0;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.7;
}

.about-aip-definition {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: baseline;
  gap: 8vw;
  height: 140px;
  margin-top: 42px;
  padding-top: 28px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(72, 200, 244, 0.55);
}

.about-aip-definition > span {
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.about-aip-definition p {
  margin: 20px 0 0;
  color: var(--page-text);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 560;
  line-height: 1.3;
}

.about-careers {
  position: relative;
  overflow: hidden;
  padding: clamp(128px, 15vw, 220px) 0 clamp(128px, 15vw, 210px);
  background: linear-gradient(180deg, #07090d 0%, #05070a 100%);
  border-top: 1px solid rgba(244, 245, 242, 0.1);
}

.about-careers::after {
  position: absolute;
  right: -15%;
  bottom: -28%;
  left: 30%;
  height: 54%;
  background: radial-gradient(ellipse at center, rgba(42, 135, 209, 0.15), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-careers-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.about-careers-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  margin-bottom: clamp(64px, 8vw, 102px);
}

.about-careers-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.about-careers-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.about-careers-heading h2 {
  margin: 24px 0 0;
  color: var(--page-text);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 620;
  line-height: 1.03;
}

.about-careers-heading > p {
  max-width: 390px;
  margin: 0;
  color: rgba(244, 245, 242, 0.72);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.9;
}

.about-careers-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
}

.about-careers-filter {
  position: sticky;
  top: 104px;
  color: rgba(244, 245, 242, 0.78);
}

.about-careers-filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--page-text);
  font-size: 12px;
}

.about-careers-filter-top button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--page-blue);
  font: inherit;
  cursor: pointer;
}

.about-careers-rule {
  height: 1px;
  margin: 17px 0 30px;
  background: linear-gradient(90deg, rgba(72, 200, 244, 0.5), rgba(244, 245, 242, 0.12), transparent);
}

.about-careers-filter fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.about-careers-filter fieldset + fieldset {
  margin-top: 34px;
}

.about-careers-filter legend {
  margin-bottom: 18px;
  color: rgba(244, 245, 242, 0.42);
  font-size: 11px;
}

.about-careers-filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: rgba(244, 245, 242, 0.75);
  font-size: 12px;
  line-height: 1.3;
  cursor: pointer;
}

.about-careers-filter input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--page-blue);
}

.about-careers-contact {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 245, 242, 0.1);
}

.about-careers-contact p,
.about-careers-contact small {
  display: block;
  margin: 0;
  color: rgba(244, 245, 242, 0.48);
  font-size: 11px;
  line-height: 1.7;
}

.about-careers-contact a {
  display: inline-block;
  margin-top: 6px;
  color: var(--page-blue);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.about-careers-contact small {
  margin-top: 8px;
  font-size: 10px;
}

.about-careers-list {
  min-width: 0;
}

.about-careers-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(244, 245, 242, 0.16);
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.about-careers-list-head span:last-child {
  color: rgba(244, 245, 242, 0.4);
  font-weight: 500;
  letter-spacing: 0;
}

.about-careers-job {
  border-bottom: 1px solid rgba(244, 245, 242, 0.12);
}

.about-careers-job[hidden] {
  display: none;
}

.about-careers-job summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 20px;
  min-height: 108px;
  list-style: none;
  cursor: pointer;
}

.about-careers-job summary::-webkit-details-marker {
  display: none;
}

.about-careers-number {
  color: var(--page-blue);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.about-careers-job-name small {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 245, 242, 0.44);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.about-careers-job-name strong {
  display: block;
  color: var(--page-text);
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 560;
  line-height: 1.18;
}

.about-careers-plus {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid rgba(244, 245, 242, 0.25);
  border-radius: 50%;
  color: var(--page-blue);
  font-size: 0;
  line-height: 1;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.about-careers-plus::before,
.about-careers-plus::after {
  position: absolute;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.about-careers-plus::before {
  width: 14px;
  height: 1px;
}

.about-careers-plus::after {
  width: 1px;
  height: 14px;
}

.about-careers-job summary:hover .about-careers-plus,
.about-careers-job[open] .about-careers-plus {
  border-color: var(--page-blue);
  background: rgba(72, 200, 244, 0.1);
}

.about-careers-job[open] .about-careers-plus {
  color: var(--page-blue);
}

.about-careers-job[open] .about-careers-plus::after {
  transform: scaleY(0);
}

.about-careers-job-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 0 48px 34px 0;
  color: rgba(244, 245, 242, 0.62);
}

.about-careers-job-body h3 {
  margin: 0 0 14px;
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.about-careers-job-body ul {
  margin: 0;
  padding-left: 16px;
}

.about-careers-job-body li {
  margin: 0 0 9px;
  font-size: 12px;
  line-height: 1.75;
}

.about-origin-section {
  position: relative;
  overflow: hidden;
  --origin-line-horizontal: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.14) 82%, transparent 100%);
  --origin-line-vertical: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.14) 82%, transparent 100%);
  padding: clamp(112px, 13vw, 190px) 0 clamp(128px, 15vw, 220px);
  background: linear-gradient(180deg, #06090c 0%, #0a1118 100%);
}

.about-origin-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.about-origin-heading {
  grid-template-columns: 1fr;
  align-items: end;
  gap: 72px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.about-origin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.about-origin-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.about-origin-heading h2 {
  margin: 24px 0 0;
  color: var(--page-text);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 620;
  line-height: 1.03;
}

.about-origin-heading > p {
  max-width: 390px;
  margin: 0;
  color: rgba(244, 245, 242, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.about-origin-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(54px, 8vw, 132px);
}

.about-origin-year {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: clamp(230px, 20vw, 310px);
  line-height: 0.76;
  user-select: none;
}

.about-origin-year span,
.about-origin-year strong {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.07em;
}

.about-origin-year i {
  display: block;
  font-style: normal;
}

.about-origin-year span {
  color: rgba(181, 212, 233, 0.12);
  font-size: clamp(110px, 15vw, 218px);
  font-weight: 650;
}

.about-origin-year strong {
  margin-top: -0.02em;
  color: var(--page-blue);
  font-size: clamp(132px, 17vw, 248px);
  font-weight: 560;
}

.about-origin-record {
  position: relative;
}

.about-origin-record::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--origin-line-horizontal);
  content: "";
}

.about-origin-event {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 30px;
  align-items: baseline;
  padding: 28px 0 30px;
}

.about-origin-event time {
  color: var(--page-blue);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.about-origin-event span {
  color: rgba(244, 245, 242, 0.48);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.about-origin-event h3 {
  margin: 13px 0 0;
  color: var(--page-text);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 560;
  line-height: 1.25;
}

.about-origin-rule {
  height: 1px;
  background: var(--origin-line-horizontal);
}

.about-origin-lead {
  margin: 30px 0 0;
  color: rgba(244, 245, 242, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.about-origin-meanings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  background-image: var(--origin-line-horizontal);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.about-origin-meanings article {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 172px;
  padding: 38px 22px 42px;
}

.about-origin-meanings article + article {
  background-image: var(--origin-line-vertical);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 1px 100%;
  padding-left: 22px;
}

.about-origin-letter {
  display: block;
  color: rgba(72, 200, 244, 0.22);
  font-size: 76px;
  font-weight: 650;
  line-height: 0.85;
}

.about-origin-meanings h3 {
  margin: 18px 0 0;
  color: var(--page-text);
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 620;
  line-height: 1.1;
}

.about-origin-meaning-index {
  display: block;
  margin-top: 22px;
  color: var(--page-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.about-origin-meanings p {
  max-width: 250px;
  margin: 16px auto 0;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Life film page */
.film-hero {
  min-height: 780px;
  height: min(920px, 94vh);
  background: #050708;
}

.film-hero > video {
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

.film-hero .theme-hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.9) 0%, rgba(3, 5, 7, 0.45) 52%, rgba(3, 5, 7, 0.18) 100%),
    linear-gradient(0deg, #080b0d 0%, rgba(8, 11, 13, 0.08) 42%, rgba(8, 11, 13, 0.08) 100%);
}

.film-hero .theme-hero-content {
  padding-bottom: 92px;
}

.film-hero h1 {
  max-width: 900px;
  margin-top: 30px;
  font-size: clamp(70px, 8.2vw, 132px);
  letter-spacing: -0.02em;
}

.film-hero p {
  max-width: 630px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.film-content-shell {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.film-story-intro {
  background: #000000;
  padding: 146px 0 156px;
}

.film-intro-heading {
  align-items: start;
  gap: clamp(48px, 8vw, 132px);
  margin-bottom: 72px;
}

.film-intro-copy {
  padding-top: 41px;
}

.film-eyebrow {
  display: inline-block;
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-intro-heading h2,
.film-section-heading h2 {
  margin-top: 21px;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 600;
  line-height: 1.04;
}

.film-lead {
  color: var(--page-text) !important;
  font-size: 20px !important;
  line-height: 1.65 !important;
}

.film-intro-heading p + p {
  margin-top: 20px;
}

.film-story-media {
  position: relative;
  aspect-ratio: 16 / 7.5;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #11161a;
}

.film-story-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 7, 0.9) 0%, rgba(3, 5, 7, 0.06) 52%);
  content: "";
  pointer-events: none;
}

.film-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.7) brightness(0.76);
  transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.film-story-media:hover img {
  filter: saturate(0.92) brightness(0.88);
  transform: scale(1.025);
}

.film-story-media figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 25px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.film-story-media figcaption span {
  color: var(--page-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.film-story-media figcaption strong {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 560;
}

.film-custom-section {
  background: #080b0d;
  padding: 148px 0 162px;
}

.film-section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 74px;
  text-align: center;
}

.film-section-heading > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.film-section-heading > p {
  max-width: 820px;
  margin: 0;
  padding-bottom: 0;
}

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

.film-custom-card {
  position: relative;
  aspect-ratio: 1.33 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #11161a;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.film-custom-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 44%, rgba(18, 110, 164, 0.18) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.film-custom-card:hover {
  transform: translateY(-4px);
}

.film-custom-card:hover::after {
  opacity: 1;
}

.film-custom-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #151b20;
}

.film-custom-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.68);
  transition: filter 0.5s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.film-custom-card:nth-child(2) .film-custom-image img {
  object-position: center 42%;
}

.film-custom-card:nth-child(3) .film-custom-image img {
  object-position: center 35%;
}

.film-custom-card:hover .film-custom-image img {
  filter: saturate(0.9) brightness(0.78);
  transform: scale(1.04);
}

.film-custom-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 7, 0.16) 0%, rgba(3, 6, 7, 0.2) 38%, rgba(3, 6, 7, 0.96) 100%);
  pointer-events: none;
}

.film-custom-meta {
  position: absolute;
  z-index: 2;
  top: clamp(21px, 2.1vw, 40px);
  right: clamp(21px, 2.1vw, 40px);
  left: clamp(21px, 2.1vw, 40px);
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.film-custom-meta img {
  width: clamp(34px, 3vw, 52px);
  height: clamp(34px, 3vw, 52px);
  filter: brightness(0) saturate(100%) invert(76%) sepia(69%) saturate(1122%) hue-rotate(157deg) brightness(102%) contrast(97%);
}

.film-custom-meta span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.55vw, 25px);
  font-weight: 450;
  line-height: 1;
}

.film-custom-copy {
  position: relative;
  z-index: 2;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.film-custom-copy > span {
  display: none;
}

.film-custom-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 2.7vw, 51px);
  font-weight: 560;
  line-height: 1.12;
}

.film-custom-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(13px, 1.25vw, 20px);
  line-height: 1.6;
}

.film-custom-card > .film-custom-copy {
  position: absolute;
  right: clamp(92px, 9vw, 165px);
  bottom: clamp(25px, 2.8vw, 54px);
  left: clamp(25px, 2.8vw, 54px);
}

.film-custom-arrow {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 2.8vw, 54px);
  bottom: clamp(22px, 2.8vw, 54px);
  display: grid;
  width: clamp(48px, 5vw, 92px);
  height: clamp(48px, 5vw, 92px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  font-size: clamp(25px, 2.25vw, 40px);
  line-height: 1;
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.film-custom-card:hover .film-custom-arrow {
  border-color: var(--page-blue);
  color: var(--page-blue);
  transform: translateX(4px);
}

.film-legacy-banner {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.film-legacy-banner > img,
.film-legacy-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film-legacy-banner > img {
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.74) brightness(0.6);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.film-legacy-banner:hover > img {
  transform: scale(1.025);
}

.film-legacy-shade {
  background: linear-gradient(180deg, rgba(3, 5, 7, 0.2) 0%, rgba(3, 5, 7, 0.86) 100%);
}

.film-legacy-inner {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 48px));
}

.film-legacy-inner h2 {
  margin: 22px 0 0;
  font-size: clamp(50px, 7vw, 98px);
  font-weight: 600;
  line-height: 1.04;
}

.film-legacy-inner p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

@media (max-width: 1120px) {
  .global-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 900px) {
  .global-site-header {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .global-nav {
    display: none;
  }

  .global-nav-shell {
    min-height: 50px;
    padding: 4px 7px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .global-menu-button {
    display: grid;
  }

  .theme-hero {
    min-height: 680px;
  }

  .theme-hero-content,
  .theme-section,
  .ip-content-shell,
  .ip-reference-shell {
    width: min(100% - 40px, 720px);
  }

  .ip-reference-history,
  .ip-reference-vision,
  .ip-reference-faq {
    padding: 108px 0;
  }

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

  .ip-reference-service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ip-reference-service {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 22px;
    padding: 14px;
  }

  .ip-reference-service h3 {
    margin-top: 0;
  }

  .ip-reference-service p {
    margin-top: 12px;
  }

  .ip-reference-footer-top {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .ip-process-item,
  .ip-process-item:nth-child(4),
  .ip-process-item:nth-child(5),
  .ip-output-grid article,
  .ip-output-grid article:nth-child(n + 5) {
    grid-column: span 1;
  }

  .ip-process-item,
  .ip-process-item:nth-child(2),
  .ip-process-item:nth-child(3),
  .ip-process-item:nth-child(5),
  .ip-output-grid article,
  .ip-output-grid article:nth-child(2),
  .ip-output-grid article:nth-child(3),
  .ip-output-grid article:nth-child(4),
  .ip-output-grid article:nth-child(6),
  .ip-output-grid article:nth-child(7) {
    border-left: 0;
  }

  .ip-process-item:nth-child(even),
  .ip-output-grid article:nth-child(even) {
    border-left: 1px solid var(--page-line);
  }

  .ip-process-item,
  .ip-output-grid article {
    border-top: 0;
    border-left: 0;
    background-image: none;
  }

  .ip-process-item:nth-child(n + 3),
  .ip-output-grid article:nth-child(n + 3) {
    background-image: var(--page-line-horizontal);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 1px;
  }

  .ip-process-item:nth-child(even),
  .ip-output-grid article:nth-child(even) {
    background-image: var(--page-line-vertical);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 1px 100%;
  }

  .ip-process-item:nth-child(n + 3):nth-child(even),
  .ip-output-grid article:nth-child(n + 3):nth-child(even) {
    background-image: var(--page-line-horizontal), var(--page-line-vertical);
    background-position: left top, left top;
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%;
  }

  .ip-process-item:last-child,
  .ip-output-grid article:last-child {
    grid-column: 1 / -1;
  }

  .theme-heading,
  .about-statement {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .theme-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .global-logo {
    width: 136px;
    height: 42px;
  }

  .global-logo img {
    width: 120px;
  }

  .theme-hero {
    height: 88svh;
    min-height: 620px;
  }

  body[data-page="about"] .theme-hero {
    height: calc(88svh - 200px);
    min-height: 480px;
  }

  .theme-hero-content {
    padding-bottom: 70px;
  }

  .theme-hero h1 {
    font-size: 64px;
  }

  .theme-hero p {
    font-size: 14px;
  }

  .ip-reference-shell {
    width: calc(100% - 36px);
  }

  .ip-reference-products {
    padding: 52px 0;
  }

  .ip-product-row {
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 23px;
  }

  .ip-reference-history,
  .ip-reference-vision,
  .ip-reference-faq {
    padding: 84px 0;
  }

  .ip-reference-heading {
    margin-bottom: 42px;
  }

  .ip-reference-heading h2,
  .ip-reference-vision .ip-reference-heading h2 {
    font-size: 42px;
  }

  .ip-reference-heading p {
    margin-top: 21px;
    font-size: 13px;
    line-height: 1.8;
  }

  .ip-reference-history-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ip-reference-poster {
    min-height: 248px;
    border-radius: 5px;
  }

  .ip-reference-poster strong,
  .ip-reference-poster small {
    right: 10px;
    left: 10px;
  }

  .ip-reference-poster strong {
    bottom: 26px;
    font-size: 14px;
  }

  .ip-reference-poster small {
    bottom: 11px;
    font-size: 8px;
  }

  .ip-reference-service {
    display: block;
    padding: 10px;
  }

  .ip-reference-service-image {
    aspect-ratio: 16 / 8.8;
  }

  .ip-reference-service h3 {
    margin: 19px 3px 0;
    font-size: 19px;
  }

  .ip-reference-service p {
    margin: 11px 3px 6px;
    font-size: 12px;
    line-height: 1.75;
  }

  .ip-reference-faq .ip-reference-heading h2 em {
    display: inline-block;
    margin-top: 4px;
  }

  .ip-reference-faq-toggle {
    min-height: 58px;
    gap: 14px;
    font-size: 14px;
  }

  .ip-reference-faq-toggle > span:last-child {
    font-size: 18px;
  }

  .ip-reference-faq-item p {
    margin: -1px 0 21px;
    font-size: 12px;
    line-height: 1.75;
  }

  .ip-reference-faq-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 36px;
  }

  .ip-reference-faq-contact strong {
    font-size: 18px;
  }

  .ip-reference-contact {
    min-height: 390px;
  }

  .ip-reference-contact h2 {
    max-width: 300px;
    font-size: 47px;
  }

  .ip-reference-footer {
    padding: 56px 18px 24px;
  }

  .ip-reference-footer-brand img {
    width: 130px;
  }

  .ip-reference-footer-brand p {
    margin-top: 24px;
    font-size: 30px;
  }

  .ip-reference-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .ip-reference-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 48px;
    font-size: 8px;
  }

  .ip-definition-inner {
    width: calc(100% - 36px);
    padding-top: 86px;
  }

  .ip-definition-heading {
    margin-bottom: 32px;
  }

  .ip-definition h2 {
    font-size: 52px;
  }

  .ip-definition-grid {
    grid-template-columns: 1fr;
  }

  .ip-definition-item {
    min-height: 190px;
    padding: 38px 24px;
  }

  .ip-definition-item + .ip-definition-item {
    border-top: 0;
    border-left: 0;
    background-image: var(--page-line-horizontal);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 1px;
  }

  .ip-definition-item:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translate(50%, 50%);
  }

  .ip-definition-item h3 {
    margin-top: 22px;
    font-size: 29px;
  }

  .ip-content-shell {
    width: calc(100% - 36px);
  }

  .ip-process,
  .ip-output {
    padding: 96px 0;
  }

  .ip-section-heading {
    margin-bottom: 54px;
  }

  .ip-section-heading h2 {
    margin-top: 18px;
    font-size: 43px;
  }

  .ip-section-heading p {
    margin-top: 22px;
    font-size: 14px;
  }

  .ip-process-item {
    min-height: 260px;
    padding: 34px 24px 44px;
  }

  .ip-process-grid {
    grid-template-columns: 1fr;
  }

  .ip-process-item,
  .ip-process-item:nth-child(even),
  .ip-process-item:last-child {
    grid-column: 1;
    border-left: 0;
    background-image: none;
  }

  .ip-process-item:nth-child(n):nth-child(n),
  .ip-output-grid article:nth-child(n):nth-child(n) {
    background-image: none;
  }

  .ip-process-item:nth-child(n):not(:first-child),
  .ip-output-grid article:nth-child(n):not(:first-child) {
    background-image: var(--page-line-horizontal);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 1px;
  }

  .ip-output-grid article,
  .ip-output-grid article:nth-child(even) {
    border-left: 0;
  }

  .ip-process-item h3 {
    font-size: 25px;
    min-height: 0;
  }

  .ip-process-item > img {
    margin-bottom: 20px;
  }

  .ip-output-grid article {
    min-height: 148px;
    padding: 28px 12px;
  }

  .ip-output-grid img {
    width: 30px;
    height: 30px;
  }

  .ip-output-grid h3 {
    margin-top: 20px;
    font-size: 17px;
  }

  .ip-conversion {
    padding: 110px 0;
  }

  .ip-conversion-inner {
    width: calc(100% - 36px);
  }

  .ip-conversion h2 {
    font-size: 52px;
  }

  .ip-conversion > .ip-conversion-inner > p {
    margin-top: 26px;
    font-size: 15px;
  }

  .ip-conversion-flow {
    margin-top: 54px;
  }

  .ip-conversion-flow span {
    min-height: 92px;
  }

  .ip-conversion-flow strong {
    font-size: 17px;
  }

  .theme-section {
    width: calc(100% - 36px);
    padding: 90px 0;
  }

  .theme-grid {
    display: flex;
    width: calc(100% + 18px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .theme-card,
  .theme-card:last-child {
    width: 82vw;
    min-height: 430px;
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .about-step-card,
  .about-step-card:last-child {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-step-card > .theme-card-copy {
    right: 74px;
    bottom: 21px;
    left: 20px;
  }

  .about-step-card .theme-card-copy h3 {
    margin-top: 8px;
    font-size: 27px;
  }

  .about-step-card .theme-card-copy p {
    margin-top: 9px;
    font-size: 12px;
  }

  .about-step-meta {
    top: 20px;
    right: 20px;
    left: 20px;
  }

  .about-step-meta img {
    width: 34px;
    height: 34px;
  }

  .about-step-arrow {
    right: 20px;
    bottom: 19px;
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .news-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .news-item h3 {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .page-switcher {
    min-height: 238px;
  }

  .page-switcher-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 36px 18px 62px;
  }

  .page-switcher-link + .page-switcher-link {
    align-items: flex-end;
  }

  .page-switcher-arrow {
    width: 42px;
    height: 42px;
  }

  .page-switcher-copy strong {
    font-size: 23px;
  }
}

@media (max-width: 900px) {
  .film-content-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .film-hero {
    min-height: 680px;
  }

  .film-hero .theme-hero-content {
    padding-bottom: 74px;
  }

  .film-story-intro {
    padding: 112px 0 120px;
  }

  .film-intro-heading,
  .film-section-heading {
    gap: 28px;
    margin-bottom: 54px;
  }

  .film-intro-copy {
    padding-top: 0;
  }

  .film-story-media {
    aspect-ratio: 16 / 9;
  }

  .film-custom-section {
    padding: 112px 0 124px;
  }

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

  .film-custom-card:last-child {
    grid-column: 1 / -1;
  }

  .film-custom-card:last-child .film-custom-image {
    aspect-ratio: 2.1 / 1;
  }

  .film-legacy-banner {
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .film-content-shell {
    width: calc(100% - 36px);
  }

  .film-hero {
    height: 88svh;
    min-height: 620px;
  }

  .film-hero h1 {
    margin-top: 24px;
    font-size: 59px;
  }

  .film-hero p {
    margin-top: 25px;
    font-size: 14px;
  }

  .film-story-intro {
    padding: 90px 0 98px;
  }

  .film-intro-heading,
  .film-section-heading {
    margin-bottom: 44px;
  }

  .film-intro-heading h2,
  .film-section-heading h2 {
    margin-top: 17px;
    font-size: 43px;
  }

  .film-lead {
    font-size: 17px !important;
  }

  .film-story-media {
    aspect-ratio: 1 / 0.86;
  }

  .film-story-media figcaption {
    right: 17px;
    bottom: 18px;
    left: 17px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .film-story-media figcaption strong {
    font-size: 18px;
  }

  .film-custom-section {
    padding: 90px 0 100px;
  }

  .film-custom-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .film-custom-card:last-child {
    grid-column: auto;
  }

  .film-custom-card:last-child .film-custom-image {
    aspect-ratio: 1.28 / 1;
  }

  .film-custom-copy {
    min-height: 0;
    right: 82px;
    bottom: 21px;
    left: 20px;
    padding: 0;
  }

  .film-custom-copy h3 {
    margin-top: 0;
    font-size: 27px;
  }

  .film-custom-copy p {
    margin-top: 0;
    font-size: 12px;
  }

  .film-custom-meta {
    top: 20px;
    right: 20px;
    left: 20px;
  }

  .film-custom-meta img {
    width: 34px;
    height: 34px;
  }

  .film-custom-arrow {
    right: 20px;
    bottom: 19px;
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .film-legacy-banner {
    min-height: 500px;
  }

  .film-legacy-inner {
    width: calc(100% - 36px);
  }

  .film-legacy-inner h2 {
    margin-top: 17px;
    font-size: 47px;
  }

  .film-legacy-inner p {
    margin-top: 21px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .about-aip-section {
    padding: 108px 0 0;
  }

  .about-careers {
    padding: 108px 0 132px;
  }

  .about-careers-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .about-careers-heading {
    gap: 30px;
    margin-bottom: 68px;
  }

  .about-careers-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 30px;
  }

  .about-careers-filter {
    top: 88px;
  }

  .about-careers-job-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 68px;
  }

  .about-aip-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .about-aip-heading {
    gap: 30px;
    margin-bottom: 68px;
  }

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

  .about-aip-principle,
  .about-aip-principle:nth-child(4),
  .about-aip-principle:nth-child(5) {
    grid-column: span 1;
    min-height: 280px;
    border-left: 0;
    background-image: none;
  }

  .about-aip-principle:nth-child(even) {
    border-left: 0;
    background-image: var(--aip-line-vertical);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 1px 100%;
  }

  .about-aip-principle:nth-child(n + 3) {
    background-image: var(--aip-line-horizontal);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 1px;
  }

  .about-aip-principle:nth-child(n + 3):nth-child(even) {
    background-image: var(--aip-line-horizontal), var(--aip-line-vertical);
    background-position: left top, left top;
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%;
  }

  .about-aip-principle:last-child {
    grid-column: 1 / -1;
  }

  .about-origin-section {
    padding: 108px 0 132px;
  }

  .about-origin-shell {
    width: min(calc(100% - 40px), 720px);
  }

  .about-origin-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 68px;
  }

  .about-origin-heading > p {
    max-width: 620px;
  }

  .about-origin-stage {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-origin-year {
    align-items: flex-end;
    flex-direction: row;
    gap: 18px;
    width: auto;
  }

  .about-origin-year span,
  .about-origin-year strong {
    display: block;
    width: auto;
  }

  .about-origin-year i {
    display: inline;
  }

  .about-origin-year span {
    font-size: clamp(92px, 19vw, 150px);
  }

  .about-origin-year strong {
    font-size: clamp(112px, 22vw, 174px);
  }
}

@media (max-width: 620px) {
  .about-aip-section {
    padding: 92px 0 0;
  }

  .about-careers {
    padding: 92px 0 108px;
  }

  .about-careers-shell {
    width: calc(100% - 36px);
  }

  .about-careers-heading {
    gap: 24px;
    margin-bottom: 54px;
  }

  .about-careers-heading h2 {
    font-size: 48px;
  }

  .about-careers-heading > p {
    font-size: 14px;
  }

  .about-careers-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-careers-filter {
    position: static;
  }

  .about-careers-filter fieldset {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0 16px;
    width: 100%;
  }

  .about-careers-filter fieldset + fieldset {
    margin-top: 24px;
  }

  .about-careers-filter label {
    margin-top: 12px;
  }

  .about-careers-contact {
    margin-top: 28px;
  }

  .about-careers-job summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 92px;
  }

  .about-careers-job-name small {
    margin-bottom: 7px;
    font-size: 9px;
  }

  .about-careers-job-name strong {
    font-size: 23px;
  }

  .about-careers-job-body {
    display: block;
    padding: 0 10px 26px 0;
  }

  .about-careers-job-body section + section {
    margin-top: 24px;
  }

  .about-careers-job-body li {
    font-size: 11px;
    line-height: 1.7;
  }

  .about-aip-shell {
    width: calc(100% - 36px);
  }

  .about-aip-heading {
    gap: 24px;
    margin-bottom: 54px;
  }

  .about-aip-heading h2 {
    font-size: 48px;
  }

  .about-aip-heading > p {
    font-size: 14px;
  }

  .about-aip-grid {
    grid-template-columns: 1fr;
  }

  .about-aip-principle,
  .about-aip-principle:nth-child(4),
  .about-aip-principle:nth-child(5) {
    min-height: 0;
    padding: 28px 0 30px;
    border-left: 0;
    background-image: none;
  }

  .about-aip-principle:nth-child(even) {
    border-left: 0;
  }

  .about-aip-principle + .about-aip-principle,
  .about-aip-principle:nth-child(n + 3) {
    border-top: 0;
    background-image: var(--aip-line-horizontal);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 1px;
  }

  .about-aip-principle:last-child {
    grid-column: 1;
  }

  .about-aip-principle h3 {
    margin-top: 22px;
    font-size: 28px;
  }

  .about-aip-definition {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 34px;
  }

  .about-aip-definition p {
    font-size: 28px;
  }

  .about-origin-section {
    padding: 92px 0 108px;
  }

  .about-origin-shell {
    width: calc(100% - 36px);
  }

  .about-origin-heading {
    gap: 24px;
    margin-bottom: 54px;
  }

  .about-origin-heading h2 {
    font-size: 48px;
  }

  .about-origin-heading > p {
    font-size: 14px;
  }

  .about-origin-stage {
    gap: 34px;
  }

  .about-origin-year {
    gap: 12px;
  }

  .about-origin-year span {
    font-size: 82px;
  }

  .about-origin-year strong {
    font-size: 106px;
  }

  .about-origin-event {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0 24px;
  }

  .about-origin-event h3 {
    margin-top: 10px;
    font-size: 21px;
  }

  .about-origin-lead {
    margin-top: 24px;
    font-size: 13px;
  }

  .about-origin-meanings {
    grid-template-columns: 1fr;
  }

  .about-origin-meanings article,
  .about-origin-meanings article + article {
    min-height: 0;
    padding: 20px 0 22px;
    border-left: 0;
    border-top: 0;
    background-image: none;
  }

  .about-origin-meanings article + article {
    background-image: var(--origin-line-horizontal);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 1px;
  }

  .about-origin-letter {
    font-size: 48px;
  }

  .about-origin-meanings h3 {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .theme-particles span {
    animation: none;
    opacity: 0.2;
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .global-nav a[aria-current="page"]::after {
    width: 22px;
    height: 3px;
    border-radius: 99px;
    animation: none;
  }

  .about-aip-heading h2 {
    animation: none;
  }
}

/* Keep the homepage hero unchanged; compact the banners on all interior pages. */
body.theme-page .theme-hero,
body.news-page .news-hero {
  height: min(720px, 73.6vh);
  min-height: 608px;
}

body[data-page="about"] .theme-hero {
  height: min(560px, calc(73.6vh - 160px));
  min-height: 448px;
}

body[data-page="about"] .theme-hero > video {
  object-position: center 35%;
}

body.news-page .news-hero {
  height: min(630px, 64.4vh);
  min-height: 532px;
}

body.news-page .news-archive {
  margin-top: -150px;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0) 0, var(--page-bg) 150px);
}

@media (max-width: 620px) {
  body.theme-page .theme-hero,
  body.news-page .news-hero {
    height: 70.4svh;
    min-height: 496px;
  }

  body[data-page="about"] .theme-hero {
    height: calc(70.4svh - 160px);
    min-height: 384px;
  }

  body.news-page .news-hero {
    height: 61.6svh;
    min-height: 434px;
  }
}

@media (min-width: 621px) {
  body[data-page="about"] .about-origin-section {
    padding-top: max(0px, calc(clamp(112px, 13vw, 190px) - 150px));
  }
}

/* The IP path is supplied as a single long-form character sheet. */
.ip-process {
  padding: 0;
  background: #000;
}

.ip-process-poster {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.ip-process-poster img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 620px) {
  .ip-process-poster {
    width: 100%;
  }
}

.ip-story-poster {
  background: #000;
}

.ip-story-poster-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.ip-story-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.ip-growth-poster {
  background: #000;
}

.ip-growth-poster-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.ip-growth-poster img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 620px) {
  .ip-story-poster-inner {
    width: 100%;
  }

  .ip-growth-poster-inner {
    width: 100%;
  }
}

.ip-daily-banner {
  --ip-daily-banner-gap: clamp(12px, 1.8vw, 24px);
  overflow: hidden;
  border-top: 0;
  background: #000;
  padding: clamp(24px, 4vw, 56px) 0;
}

.ip-daily-banner-viewport {
  width: 100%;
  overflow: hidden;
}

.ip-daily-banner-track {
  display: flex;
  width: max-content;
  animation: ip-daily-banner-scroll 48s linear infinite;
  will-change: transform;
}

.ip-daily-banner-group {
  display: flex;
  flex: none;
  gap: var(--ip-daily-banner-gap);
  padding-right: var(--ip-daily-banner-gap);
}

.ip-daily-banner-card {
  width: clamp(210px, 25vw, 340px);
  aspect-ratio: 1;
  flex: none;
  margin: 0;
  overflow: hidden;
  background: #17120d;
}

.ip-daily-banner-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-daily-banner:hover .ip-daily-banner-track {
  animation-play-state: paused;
}

@keyframes ip-daily-banner-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ip-daily-banner-track {
    animation: none;
  }
}

/* Keep footer link labels and rows aligned across every column. */
.ip-reference-footer-links > div {
  display: grid;
  align-content: start;
  justify-items: start;
  grid-auto-rows: minmax(17px, auto);
  row-gap: 12px;
}

.ip-reference-footer-links span {
  margin-bottom: 0;
}

.ip-reference-footer-links a {
  display: block;
  text-align: left;
}

.ip-reference-footer-bottom {
  align-items: baseline;
}

@media (max-width: 620px) {
  .ip-reference-footer-bottom {
    align-items: flex-start;
  }
}

.ip-category-section {
  --aip-line: rgba(255, 255, 255, 0.1);
  --aip-line-horizontal: linear-gradient(90deg, transparent 0%, var(--aip-line) 18%, var(--aip-line) 82%, transparent 100%);
  --aip-line-vertical: linear-gradient(180deg, transparent 0%, var(--aip-line) 18%, var(--aip-line) 82%, transparent 100%);
  background: #080b0d;
  padding: 90px 0;
  border-top: 1px solid rgba(244, 245, 242, 0.1);
}

.ip-category-heading {
  margin-bottom: clamp(66px, 8vw, 108px);
}

.ip-category-banner {
  width: 100%;
  margin: 0 auto clamp(66px, 8vw, 108px);
  overflow: hidden;
  aspect-ratio: 3136 / 1344;
  background: #14110f;
}

.ip-category-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ip-category-grid {
  margin: 0 auto;
  border-top: 0;
}

.ip-category-section .about-aip-principle::before {
  background: linear-gradient(0deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
}

.ip-category-section:not(.ip-category-section-copy) .about-aip-principle:nth-child(-n + 3)::before {
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
}

.ip-category-section-copy .about-aip-principle:nth-child(-n + 3)::before {
  background: linear-gradient(180deg, rgba(72, 200, 244, 0) 0%, rgba(18, 110, 164, 0.38) 100%);
}

@media (max-width: 620px) {
  .ip-category-section {
    padding: 90px 0;
  }

  .ip-category-grid {
    width: 100%;
  }

  .ip-category-banner {
    margin-bottom: 54px;
  }
}
