:root {
  --ink: #071b4d;
  --ink-soft: #18366f;
  --muted: #66748f;
  --line: #dce7f8;
  --paper: #f7fbff;
  --white: #ffffff;
  --mist: #edf5ff;
  --blue: #1f6bff;
  --blue-deep: #082760;
  --blue-soft: #e8f1ff;
  --cyan: #20a8ff;
  --accent: #4b86ff;
  --graphite: #071b4d;
  --shadow: 0 18px 55px rgba(7, 27, 77, 0.12);
  --radius: 8px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.product-snap-page {
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(31, 107, 255, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(31, 107, 255, 0.1);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 38px rgba(7, 27, 77, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.brand:hover .brand-mark img {
  transform: scale(1.04);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--blue-deep);
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name-mobile {
  display: none;
}

.brand-copy small {
  overflow: hidden;
  max-width: 240px;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(31, 107, 255, 0.1);
  color: var(--blue-deep);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.button,
.icon-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button::after,
.icon-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button:hover::after,
.icon-button:hover::after {
  transform: translateX(130%);
}

.button span,
.button svg,
.icon-button span,
.icon-button svg {
  position: relative;
  z-index: 1;
}

.button {
  padding: 0 18px;
  font-weight: 700;
}

.button-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 13px;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(31, 107, 255, 0.26);
}

.button-primary:hover {
  background: #1557d8;
}

.button-dark {
  background: var(--blue-deep);
  color: var(--white);
}

.button-light,
.button-ghost {
  border-color: rgba(31, 107, 255, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue-deep);
}

.intro-band .button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.icon-button {
  min-width: 42px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.lang-button span {
  font-weight: 700;
  font-size: 13px;
}

.mobile-menu-button {
  display: none;
}

.mobile-panel {
  display: none;
}

.mobile-menu-backdrop {
  display: none;
}

.hero {
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  position: relative;
  overflow: hidden;
  min-height: 86svh;
  padding: 118px clamp(20px, 5.6vw, 78px) 36px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.96) 54%, rgba(219, 235, 255, 0.72)),
    linear-gradient(90deg, rgba(31, 107, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 107, 255, 0.045) 1px, transparent 1px),
    var(--white);
  background-position:
    center,
    calc(100% + var(--hero-pan-x)) calc(50% + var(--hero-pan-y)),
    center,
    center;
  background-size:
    cover,
    96px 96px,
    96px 96px,
    auto;
  color: var(--ink);
  transition: background-position 180ms ease-out;
}

.home-hero {
  min-height: 88svh;
  background: var(--blue-deep);
  color: var(--white);
}

.hero-background-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blue-deep);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.045);
  transition: opacity 920ms ease, transform 5200ms ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--hero-pan-x) * -0.12), calc(var(--hero-pan-y) * -0.12), 0) scale(1.02);
  transition: transform 180ms ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(237, 245, 255, 0.12)),
    linear-gradient(115deg, rgba(31, 107, 255, 0.08), rgba(32, 168, 255, 0.04) 54%, transparent);
  pointer-events: none;
}

.home-hero .hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 46, 0.84), rgba(5, 42, 94, 0.56) 44%, rgba(4, 18, 42, 0.16) 72%, rgba(3, 14, 34, 0.46)),
    linear-gradient(180deg, rgba(3, 15, 38, 0.22), rgba(4, 19, 44, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 720px;
  gap: 22px;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 58svh;
  margin: 0 auto;
}

.brand-hero-content {
  max-width: 570px;
  min-height: auto;
  align-content: center;
  gap: 16px;
}

body[data-lang="en"] .brand-hero-content {
  max-width: 780px;
}

body[data-lang="en"] .brand-hero h1 {
  font-size: clamp(52px, 5vw, 72px);
}

body[data-lang="en"] .hero-intro {
  max-width: 600px;
}

.hero-content > * {
  animation: hero-rise 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 160ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 220ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 300ms;
}

.hero-content > :nth-child(6) {
  animation-delay: 380ms;
}

.hero-motion {
  position: absolute;
  inset: 88px 0 0 auto;
  width: min(56vw, 720px);
  pointer-events: none;
  opacity: 0.54;
}

.hero-motion span {
  position: absolute;
  left: 14%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 107, 255, 0.46), transparent);
  transform: translateX(-18%);
  animation: data-rail 5.8s linear infinite;
}

.hero-motion span:nth-child(1) {
  top: 24%;
}

.hero-motion span:nth-child(2) {
  top: 46%;
  animation-delay: 1.4s;
  animation-duration: 6.6s;
}

.hero-motion span:nth-child(3) {
  top: 68%;
  animation-delay: 2.7s;
  animation-duration: 7.4s;
}

.home-hero .hero-motion span {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

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

.hero .eyebrow {
  color: var(--blue);
}

.home-hero .eyebrow,
.home-hero .hero-brand-line {
  color: rgba(255, 255, 255, 0.88);
}

.home-hero .hero-subtitle {
  color: var(--white);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.home-hero .hero-intro {
  color: rgba(255, 255, 255, 0.78);
}

.home-hero .button-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(31, 107, 255, 0.14);
}

.hero-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.95;
  font-weight: 850;
}

.brand-hero h1 {
  font-size: clamp(52px, 6.4vw, 84px);
  line-height: 0.98;
}

.hero-brand-line {
  margin: 0;
  color: var(--blue);
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(23px, 2.7vw, 34px);
  line-height: 1.12;
  font-weight: 800;
}

.hero-intro {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

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

.hero-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-self: stretch;
  min-height: 420px;
  border: 1px solid rgba(31, 107, 255, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(7, 27, 77, 0.16);
}

.hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7, 27, 77, 0.78)),
    linear-gradient(115deg, rgba(31, 107, 255, 0.12), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero-media::before {
  z-index: 1;
}

.hero-media-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.hero-media-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-media-caption strong {
  max-width: 280px;
  text-align: right;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.12;
}

.hero-carousel-controls {
  position: relative;
  z-index: 3;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.carousel-pause {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.carousel-pause:hover {
  color: rgba(255, 255, 255, 0.72);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease;
}

.hero-dot.is-active {
  width: 28px;
  border-color: var(--white);
  background: var(--white);
}

.hero-anchor-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--container));
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.hero-anchor {
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 18px 22px;
  border-right: 1px solid rgba(31, 107, 255, 0.12);
  transition: background 180ms ease, color 180ms ease;
}

.hero-anchor:last-child {
  border-right: 0;
}

.hero-anchor:hover {
  background: rgba(31, 107, 255, 0.08);
  color: var(--blue-deep);
}

.hero-anchor strong {
  color: var(--blue-deep);
  font-size: 16px;
}

.hero-anchor span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.hero-stat {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-stat strong {
  font-size: 20px;
}

.hero-stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-next {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 64px);
  bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.home-hero .hero-next {
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(440px, 60svh, 620px);
  align-items: end;
  overflow: hidden;
  padding: 156px 0 clamp(58px, 7vw, 88px);
  background: var(--blue-deep);
  color: var(--white);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  z-index: -2;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: page-hero-settle 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.page-hero-about .page-hero-media img {
  object-position: center 42%;
}

.page-hero-contact .page-hero-media img {
  object-position: center 36%;
}

.page-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 19, 55, 0.88) 0%, rgba(4, 24, 67, 0.58) 48%, rgba(4, 19, 55, 0.14) 78%),
    linear-gradient(180deg, rgba(4, 19, 55, 0.18), rgba(4, 19, 55, 0.66));
}

.page-hero-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  margin: 12px 0 18px;
  max-width: 920px;
  color: var(--white);
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 1.02;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.68;
}

.intro-band {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.intro-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-muted {
  background: var(--mist);
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 12px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.callout h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.14;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.service-card,
.industry-card,
.contact-card,
.step-card,
.phase-card,
.value-list article,
.solution-row,
.business-tile,
.scene-card,
.culture-card,
.culture-hero-card,
.philosophy-list article,
.company-panel,
.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.industry-card::before,
.contact-card::before,
.step-card::before,
.phase-card::before,
.value-list article::before,
.solution-row::before,
.industry-strip article::before,
.business-tile::before,
.scene-card::before,
.culture-card::before,
.culture-hero-card::before,
.philosophy-list article::before,
.company-panel::before,
.hero-media::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(31, 107, 255, 0.16), transparent 42%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.service-card:hover,
.industry-card:hover,
.contact-card:hover,
.step-card:hover,
.phase-card:hover,
.value-list article:hover,
.solution-row:hover,
.industry-strip article:hover,
.business-tile:hover,
.scene-card:hover,
.culture-card:hover,
.culture-hero-card:hover,
.philosophy-list article:hover,
.company-panel:hover,
.hero-media:hover {
  border-color: rgba(31, 107, 255, 0.34);
  box-shadow: 0 22px 60px rgba(31, 107, 255, 0.13);
  transform: translateY(-4px);
}

.service-card:hover::before,
.industry-card:hover::before,
.contact-card:hover::before,
.step-card:hover::before,
.phase-card:hover::before,
.value-list article:hover::before,
.solution-row:hover::before,
.industry-strip article:hover::before,
.business-tile:hover::before,
.scene-card:hover::before,
.culture-card:hover::before,
.culture-hero-card:hover::before,
.philosophy-list article:hover::before,
.company-panel:hover::before,
.hero-media:hover::before {
  opacity: 1;
}

.hero-media:hover {
  box-shadow: 0 32px 90px rgba(7, 27, 77, 0.18);
}

.enterprise-section {
  background: var(--paper);
}

.section[id],
.culture-section[id],
.philosophy-section[id] {
  scroll-margin-top: 86px;
}

.company-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.company-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.company-copy h2,
.philosophy-layout h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
}

.company-copy p:not(.eyebrow),
.philosophy-layout p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.company-panel {
  display: grid;
  gap: 1px;
  min-height: 520px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.company-image {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--blue-deep);
}

.company-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 240ms ease;
}

.company-panel:hover .company-image img {
  filter: saturate(1.05);
  transform: scale(1.04);
}

.company-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 27, 77, 0.78)),
    linear-gradient(120deg, rgba(7, 27, 77, 0.18), transparent 56%);
  content: "";
}

.company-image figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.company-image figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-image figcaption strong {
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.14;
}

.company-panel article {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.88);
}

.company-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-panel strong {
  color: var(--blue-deep);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.company-bottom-visual {
  position: relative;
  min-height: 360px;
  margin-top: clamp(34px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(31, 107, 255, 0.18);
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.company-bottom-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 640ms ease, filter 260ms ease;
}

.company-bottom-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 27, 77, 0.04) 0%, rgba(7, 27, 77, 0.18) 46%, rgba(7, 27, 77, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 27, 77, 0.62), rgba(7, 27, 77, 0.08) 58%),
    radial-gradient(circle at 20% 72%, rgba(31, 107, 255, 0.26), transparent 36%);
  content: "";
  pointer-events: none;
}

.company-bottom-visual:hover img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.company-bottom-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 46px);
  left: clamp(24px, 4vw, 54px);
  display: grid;
  max-width: 560px;
  gap: 10px;
  margin: 0;
  color: var(--white);
}

.company-bottom-visual figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-bottom-visual figcaption strong {
  color: var(--white);
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 1.12;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.business-tile {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 316px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 255, 0.7)),
    var(--white);
}

.business-tile > span {
  color: rgba(31, 107, 255, 0.22);
  font-size: 54px;
  font-weight: 850;
  line-height: 0.9;
}

.business-tile h3,
.scene-card h3,
.philosophy-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
}

.business-tile p,
.scene-card p,
.philosophy-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.scene-card p {
  color: rgba(255, 255, 255, 0.78);
}

.scene-card h3 {
  color: var(--white);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 18px;
}

.scene-card {
  display: grid;
  grid-column: span 2;
  align-content: end;
  gap: 14px;
  min-height: 0;
  padding: 0;
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(7, 27, 77, 0.08);
}

.scene-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 77, 0.18) 0%, rgba(7, 27, 77, 0.44) 52%, rgba(7, 27, 77, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 27, 77, 0.42), rgba(7, 27, 77, 0.08) 58%),
    radial-gradient(circle at 22% 82%, rgba(31, 107, 255, 0.26), transparent 38%);
  content: "";
  pointer-events: none;
}

.scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 220ms ease;
}

.scene-card:hover .scene-image {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.scene-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 28px;
}

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

.culture-section {
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.culture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.culture-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.culture-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
}

.culture-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.78;
}

.culture-copy strong {
  display: block;
  max-width: 600px;
  padding-left: 18px;
  border-left: 3px solid var(--blue);
  color: var(--blue-deep);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
}

.culture-hero-card {
  margin: 0;
  min-height: 438px;
  background: var(--blue-deep);
  box-shadow: 0 28px 80px rgba(7, 27, 77, 0.14);
}

.culture-hero-card img,
.culture-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 240ms ease;
}

.culture-hero-card img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.culture-hero-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 27, 77, 0.82)),
    linear-gradient(110deg, rgba(7, 27, 77, 0.28), transparent 56%);
  content: "";
}

.culture-hero-card:hover img,
.culture-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.045);
}

.culture-hero-card figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.culture-hero-card figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.culture-hero-card figcaption strong {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
}

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

.culture-card {
  display: grid;
  min-height: 430px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(7, 27, 77, 0.08);
}

.culture-card img {
  height: 184px;
}

.culture-card > div {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
}

.culture-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(31, 107, 255, 0.1);
  color: var(--blue);
}

.culture-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
}

.culture-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.scene-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.philosophy-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(106px, 10vw, 148px) 0 clamp(70px, 8vw, 112px);
  background: var(--blue-deep);
  color: var(--white);
  isolation: isolate;
}

.philosophy-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 17, 47, 0.82) 0%, rgba(7, 27, 77, 0.56) 42%, rgba(7, 27, 77, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 17, 47, 0.24) 0%, rgba(4, 17, 47, 0.3) 56%, rgba(4, 17, 47, 0.82) 100%);
  content: "";
  pointer-events: none;
}

.philosophy-bg-carousel,
.philosophy-bg-slide {
  position: absolute;
  inset: 0;
}

.philosophy-bg-carousel {
  z-index: 0;
}

.philosophy-bg-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 780ms ease, transform 4600ms ease;
}

.philosophy-bg-slide.is-active {
  opacity: 1;
  transform: scale(1.005);
}

.philosophy-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-time-seam {
  position: absolute;
  inset: -10%;
  z-index: 2;
  background:
    linear-gradient(108deg, transparent 46%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.06) 51%, transparent 54%);
  opacity: 0.56;
  pointer-events: none;
}

.philosophy-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: min(720px, calc(100svh - 210px));
}

.philosophy-copy {
  display: grid;
  max-width: 680px;
  gap: 20px;
}

.philosophy-copy h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.04;
}

.philosophy-copy h2 span {
  display: block;
}

.philosophy-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.72;
}

.philosophy-layout .eyebrow,
.philosophy-layout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.philosophy-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.philosophy-controls .carousel-pause {
  margin-left: 4px;
}

.philosophy-dot {
  width: 36px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.philosophy-dot.is-active {
  width: 58px;
  background: var(--white);
}

.philosophy-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.philosophy-list article {
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.philosophy-list h3 {
  color: var(--white);
}

.philosophy-list p {
  color: rgba(255, 255, 255, 0.78);
}

.talent-development-link {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 270px;
  margin-top: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  color: var(--white);
}

.talent-development-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 240ms ease;
}

.talent-development-link:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.talent-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 77, 0.82), rgba(7, 27, 77, 0.26) 62%, rgba(7, 27, 77, 0.52)),
    linear-gradient(180deg, transparent 38%, rgba(7, 27, 77, 0.7));
}

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

.talent-copy {
  display: grid;
  max-width: 600px;
  gap: 10px;
  padding: clamp(26px, 4vw, 48px);
}

.talent-copy strong {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.talent-copy > span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.talent-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 clamp(24px, 4vw, 48px) clamp(26px, 4vw, 48px) 0;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.service-card,
.industry-card,
.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
}

.card-icon,
.solution-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.product-app-rail {
  position: fixed;
  top: 50%;
  right: clamp(18px, 2.5vw, 42px);
  z-index: 80;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.product-app-link {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(31, 107, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(7, 27, 77, 0.12);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-app-link:hover {
  border-color: rgba(31, 107, 255, 0.32);
  box-shadow: 0 22px 64px rgba(7, 27, 77, 0.16);
  transform: translateX(-3px);
}

.product-app-link.is-active {
  border-color: rgba(31, 107, 255, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(31, 107, 255, 0.18);
}

.product-app-link strong {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(31, 107, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 13px;
  box-shadow: 0 14px 36px rgba(7, 27, 77, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-app-link:hover strong,
.product-app-link:focus-visible strong {
  opacity: 1;
  transform: translate(0, -50%);
}

.product-app-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #0a3478, #1f6bff);
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.product-app-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.product-app-icon-green {
  background: linear-gradient(145deg, #066d68, #13a879);
}

.product-app-icon-cyan {
  background: linear-gradient(145deg, #075f9f, #18b7d8);
}

.product-category {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-showcase-list {
  background: var(--white);
}

.product-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(106px, 8vw, 138px) 0 clamp(78px, 6vw, 104px);
  overflow: hidden;
  scroll-margin-top: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-top: 1px solid rgba(31, 107, 255, 0.12);
}

.product-showcase:first-child {
  border-top: 0;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(31, 107, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 107, 255, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
  opacity: 0.65;
}

.product-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(242, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(232, 241, 255, 0.82) 100%);
}

.product-showcase.is-reversed .product-showcase-bg {
  background:
    linear-gradient(248deg, rgba(242, 247, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 48%, rgba(229, 240, 255, 0.84) 100%);
}

.product-showcase-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(610px, 1.35fr);
  gap: clamp(34px, 5.2vw, 78px);
  align-items: center;
}

.product-showcase.is-reversed .product-showcase-layout {
  grid-template-columns: minmax(610px, 1.35fr) minmax(340px, 0.82fr);
}

.product-showcase.is-reversed .product-showcase-copy {
  order: 2;
}

.product-showcase.is-reversed .product-stage {
  order: 1;
}

.product-showcase-copy {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.product-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 520px;
}

.product-number {
  color: rgba(9, 34, 88, 0.26);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-title-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 100%;
}

.product-title-icon {
  display: grid;
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(145deg, #0a3478, #1f6bff);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(31, 107, 255, 0.2);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
}

.product-title-icon-green {
  background: linear-gradient(145deg, #066d68, #13a879);
}

.product-title-icon-cyan {
  background: linear-gradient(145deg, #075f9f, #18b7d8);
}

.product-title-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.product-showcase-copy h2 {
  overflow: hidden;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.04;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-showcase-copy strong {
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
}

.product-showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.product-summary {
  max-width: 560px;
  color: var(--ink-soft) !important;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  line-height: 1.68 !important;
}

.product-description-panel {
  display: grid;
  gap: 8px;
  max-width: 590px;
  padding: 18px 20px;
  border: 1px solid rgba(31, 107, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(7, 27, 77, 0.06);
}

.product-description-panel span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description-panel p {
  font-size: 15px;
  line-height: 1.68;
}

.product-showcase-tags {
  margin-top: 4px;
  gap: 10px;
}

.product-showcase-copy .button {
  width: fit-content;
  margin-top: 8px;
}

.product-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(31, 107, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 240, 255, 0.72)),
    var(--white);
  box-shadow: 0 34px 90px rgba(7, 27, 77, 0.16);
  transform: translateZ(0);
}

.product-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 0 12px 10px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.product-stage-top small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.8;
  object-fit: contain;
  object-position: top left;
  border-radius: 6px;
  border: 1px solid rgba(7, 27, 77, 0.08);
  background: var(--white);
  transition: transform 420ms ease;
}

.product-stage:hover img {
  transform: scale(1.018);
}

.product-scroll-link {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(9, 34, 88, 0.58);
  font-size: 13px;
  font-weight: 850;
  transform: translateX(-50%);
}

.product-scroll-link svg {
  animation: product-bounce 1600ms ease-in-out infinite;
}

.service-card h3,
.industry-card h2,
.contact-card strong,
.step-card h3,
.value-list h3 {
  margin: 0;
  font-size: 20px;
}

.service-card p,
.industry-card p,
.step-card p,
.value-list p,
.solution-row p,
.phase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.industry-strip article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.industry-strip h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.industry-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.step-card {
  min-height: 240px;
  padding: 24px;
}

.step-card span,
.phase-number {
  color: var(--blue);
  font-weight: 800;
}

.solution-list {
  display: grid;
  gap: 16px;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) 64px minmax(0, 1fr) minmax(240px, 0.56fr);
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.solution-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 27, 77, 0.1);
  transition: transform 320ms ease, filter 220ms ease;
}

.solution-row:hover .solution-image {
  filter: saturate(1.04);
  transform: scale(1.015);
}

.solution-row h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.solution-row ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-row li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.solution-row li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

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

.industry-card {
  min-height: 320px;
  gap: 0;
  padding: 0;
}

.industry-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 360ms ease, filter 220ms ease;
}

.industry-card:hover .industry-card-image {
  filter: saturate(1.04);
  transform: scale(1.015);
}

.industry-card-body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 0;
}

.industry-card .tag-list {
  padding: 0 24px 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(31, 107, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(31, 107, 255, 0.08);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
}

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

.method-visual-section {
  padding-bottom: 0;
}

.method-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.method-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.method-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(7, 27, 77, 0.76)),
    linear-gradient(90deg, rgba(7, 27, 77, 0.26), transparent 56%);
  content: "";
  pointer-events: none;
}

.method-visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 42px);
  bottom: clamp(20px, 4vw, 38px);
  left: clamp(20px, 4vw, 42px);
  display: grid;
  gap: 8px;
  color: var(--white);
}

.method-visual figcaption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.method-visual figcaption strong {
  max-width: 720px;
  font-size: clamp(24px, 3.5vw, 46px);
  line-height: 1.12;
}

.phase-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
}

.phase-card h2 {
  margin: 0 0 8px;
}

.phase-card strong {
  color: var(--ink-soft);
  line-height: 1.6;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.profile-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.profile-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: var(--white);
}

.profile-list dt {
  color: var(--muted);
  font-weight: 700;
}

.profile-list dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

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

.value-list article {
  padding: 26px;
}

.note {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #eef5ff;
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

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

.contact-card {
  min-height: 192px;
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
}

.contact-card span {
  color: var(--muted);
  font-weight: 700;
}

.contact-card strong {
  overflow-wrap: anywhere;
  line-height: 1.45;
}

.contact-card[href^="mailto:"] strong {
  font-size: 16px;
}

.contact-card small {
  color: var(--blue);
  font-weight: 700;
}

.contact-card-action {
  cursor: pointer;
}

.contact-card-action > svg,
.contact-copy-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--blue);
}

.contact-card-action:hover {
  color: var(--ink);
}

.contact-start-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-start-panel h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
}

.contact-start-panel > p:not(.eyebrow, .contact-start-note) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.contact-start-steps {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.contact-start-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  border-top: 1px solid var(--line);
}

.contact-start-steps span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.contact-start-steps strong {
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-start-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-start-note svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.contact-start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.callout-band {
  padding: 42px 0;
  background:
    linear-gradient(120deg, var(--blue-deep), #134fd1 58%, #20a8ff);
  color: var(--white);
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.callout h2 {
  max-width: 900px;
  text-wrap: balance;
}

.callout h2 span {
  display: block;
}

.callout .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: #f3f8ff;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  padding: 56px 0 34px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-columns h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.footer-columns a,
.footer-bottom {
  color: var(--muted);
  font-size: 14px;
}

.footer-columns a {
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-columns a:hover {
  color: var(--blue-deep);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 1360px) and (min-width: 1181px) {
  .site-header {
    gap: 14px;
    padding-inline: 24px;
  }

  .brand-copy small {
    max-width: 160px;
  }

  .desktop-nav {
    gap: 2px;
  }

  .nav-link {
    padding-inline: 9px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: block;
    border: 0;
    background: rgba(4, 19, 55, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 230ms ease;
  }

  .menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel {
    position: fixed;
    inset: 0 0 auto auto;
    z-index: 2;
    display: grid;
    width: min(420px, 100vw);
    min-height: 100svh;
    padding: 22px;
    background: var(--white);
    box-shadow: -18px 0 60px rgba(7, 27, 77, 0.2);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(102%);
    transition: transform 230ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 230ms;
  }

  .menu-open .mobile-panel {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .mobile-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
  }

  .mobile-nav {
    display: grid;
    align-content: start;
    gap: 8px;
    padding-top: 18px;
  }

  .mobile-nav .nav-link {
    justify-content: space-between;
    min-height: 50px;
    padding: 0 12px;
  }

  .card-grid,
  .industry-strip,
  .step-line,
  .business-grid,
  .scene-grid,
  .culture-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-row,
  .product-showcase-layout,
  .product-showcase.is-reversed .product-showcase-layout,
  .phase-card,
  .about-layout,
  .contact-layout,
  .footer-grid,
  .company-feature,
  .philosophy-layout,
  .culture-layout,
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 28px;
  }

  .hero-media {
    min-height: 360px;
  }

  .scene-grid {
    grid-auto-rows: 280px;
  }

  .scene-card,
  .scene-card:nth-child(1),
  .scene-card:nth-child(2),
  .scene-card:nth-child(5) {
    grid-column: auto;
    min-height: 260px;
  }

  .culture-hero-card {
    min-height: 360px;
  }

  .company-bottom-visual {
    min-height: 320px;
  }

  .philosophy-section {
    min-height: auto;
    padding: 108px 0 64px;
  }

  .philosophy-layout {
    min-height: auto;
    gap: 28px;
  }

  .philosophy-list {
    max-width: 720px;
  }

  .talent-development-link {
    grid-template-columns: 1fr;
    min-height: 320px;
  }

  .talent-cta {
    justify-self: start;
    margin-left: clamp(26px, 4vw, 48px);
  }

  .solution-row {
    gap: 18px;
  }

  .product-showcase.is-reversed .product-showcase-copy,
  .product-showcase.is-reversed .product-stage {
    order: initial;
  }

  .product-showcase-layout {
    gap: 30px;
  }

  .product-app-rail {
    right: 14px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-copy small,
  .header-actions .button-dark {
    display: none;
  }

  .site-header .brand-name-full {
    display: none;
  }

  .site-header .brand-name-mobile {
    display: inline;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 14px 30px;
  }

  .brand-hero-content {
    min-height: auto;
  }

  h1 {
    font-size: clamp(46px, 17vw, 74px);
  }

  .brand-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  body[data-lang="en"] .brand-hero h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .hero-brand-line {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-stats,
  .card-grid,
  .industry-strip,
  .step-line,
  .business-grid,
  .scene-grid,
  .culture-card-grid,
  .intro-grid,
  .contact-cards,
  .footer-columns,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    width: 48px;
    height: 48px;
  }

  .hero-mark img {
    width: 38px;
    height: 38px;
  }

  .hero-media {
    min-height: 220px;
  }

  .hero-carousel-controls {
    top: auto;
    right: auto;
    margin-top: 4px;
  }

  .hero-media-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: grid;
  }

  .hero-media-caption strong {
    max-width: none;
    text-align: left;
  }

  .hero-anchor-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .hero-anchor:nth-child(2n) {
    border-right: 0;
  }

  .scene-grid {
    grid-auto-rows: 250px;
    gap: 14px;
  }

  .hero-anchor {
    min-height: 74px;
    padding: 14px 10px;
  }

  .culture-hero-card {
    min-height: 260px;
  }

  .culture-card {
    min-height: auto;
  }

  .culture-card img {
    height: 180px;
  }

  .culture-card > div {
    padding: 20px;
  }

  .company-bottom-visual {
    min-height: 290px;
    margin-top: 28px;
  }

  .company-bottom-visual figcaption {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .company-bottom-visual figcaption strong {
    font-size: 26px;
  }

  .philosophy-section {
    padding: 92px 0 54px;
  }

  .philosophy-copy {
    gap: 14px;
  }

  .philosophy-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.08;
  }

  .philosophy-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .philosophy-controls {
    margin-top: 6px;
  }

  .philosophy-dot {
    width: 28px;
  }

  .philosophy-dot.is-active {
    width: 46px;
  }

  .philosophy-list article {
    padding: 22px;
  }

  .talent-development-link {
    min-height: 330px;
    margin-top: 32px;
  }

  .talent-copy {
    padding: 24px;
  }

  .talent-copy strong {
    font-size: 34px;
  }

  .talent-copy > span:last-child {
    font-size: 15px;
  }

  .talent-cta {
    justify-self: stretch;
    justify-content: center;
    margin: 0 24px 24px;
  }

  .product-app-rail {
    top: auto;
    right: 50%;
    bottom: 16px;
    display: flex;
    padding: 6px;
    border: 1px solid rgba(31, 107, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 48px rgba(7, 27, 77, 0.14);
    backdrop-filter: blur(16px);
    transform: translateX(50%);
  }

  .product-app-link {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
  }

  .product-app-link:hover {
    box-shadow: none;
    transform: none;
  }

  .product-app-link.is-active {
    background: rgba(31, 107, 255, 0.08);
    box-shadow: none;
  }

  .product-app-link strong {
    display: none;
  }

  .product-app-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 16px;
  }

  .product-title-lockup {
    gap: 12px;
  }

  .product-title-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .product-title-icon img {
    border-radius: 14px;
  }

  .product-showcase-copy h2 {
    font-size: clamp(30px, 9.2vw, 42px);
  }

  .product-showcase {
    padding-top: 92px;
    padding-bottom: 66px;
  }

  .product-showcase-layout {
    gap: 18px;
  }

  .product-showcase-copy {
    gap: 12px;
  }

  .product-description-panel {
    padding: 14px 16px;
  }

  .product-showcase-copy .button {
    width: 100%;
  }

  .product-stage {
    padding: 6px;
  }

  .product-stage img {
    aspect-ratio: 16 / 9;
  }

  .product-stage-top {
    min-height: 34px;
    padding-bottom: 6px;
  }

  .product-scroll-link {
    display: none;
  }

  .hero-anchor strong {
    font-size: 12px;
  }

  .hero-anchor span {
    font-size: 12px;
  }

  .hero-stat {
    min-height: 74px;
  }

  .hero-next {
    display: none;
  }

  .page-hero {
    min-height: 480px;
    padding: 118px 0 54px;
  }

  .page-hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .page-hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 19, 55, 0.86), rgba(4, 24, 67, 0.42)),
      linear-gradient(180deg, rgba(4, 19, 55, 0.16), rgba(4, 19, 55, 0.76));
  }

  .section {
    padding: 62px 0;
  }

  .service-card,
  .industry-card,
  .contact-card {
    min-height: auto;
    padding: 22px;
  }

  .industry-strip article {
    min-height: auto;
  }

  .phase-card,
  .profile-list div {
    grid-template-columns: 1fr;
  }

  .contact-start-panel {
    padding: 24px;
  }

  .contact-start-actions,
  .contact-start-actions .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes page-hero-settle {
  from {
    opacity: 0.72;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes data-rail {
  0% {
    opacity: 0;
    transform: translateX(-24%) scaleX(0.42);
  }
  18% {
    opacity: 1;
  }
  70% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateX(24%) scaleX(1);
  }
}

@keyframes send-pulse {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(3px) rotate(-8deg);
  }
}

@keyframes form-confirm {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
