.sub-page {
  padding-top: 90px;
  color: #1B1B1B;
  --text-sub-hero-title: clamp(64px,5.2vw,82px);
  --text-sub-hero-lead: 30px;
}

/* Recruit page */
.recruit-page {
  padding-top: 90px;
}

.recruit-hero {
  min-height: 820px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),
    #172536 url('../images/sub/recruit_hero.png') center/cover no-repeat;
}
.recruit-hero__content p {
  color: #4bc7ff;
  font-size: 16px;
  font-weight: 700;
}
.recruit-hero__content h1 {
  margin-top: 10px;
  font-size: 76px;
  line-height: 1.1;
}
.recruit-hero__content strong {
  display: block;
  margin-top: 28px;
  font-size: 23px;
  line-height: 1.55;
}
.recruit-section {
  padding: 180px 0 240px 0px;
}
.recruit-intro__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 100px;
}
.recruit-intro__copy h2 {
  font-size: 48px;
  line-height: 1.25;
}
.recruit-intro__copy > p:last-child {
  margin-top: 26px;
  color: #777e89;
  font-size: 16px;
  line-height: 1.7;
}
.recruit-intro__image {
  overflow: hidden;
  border-radius: 20px;
}
.recruit-intro__image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}
.recruit-values {
  padding-top: 0;
}
.recruit-values__grid {
  width: min(1440px, calc(100% - 80px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
}
.recruit-values__grid > * {
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1;
  border-right: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
}
.recruit-values__grid > *:nth-child(4n) {
  border-right: 0;
}
.recruit-values__grid > *:nth-child(n+5) {
  border-bottom: 0;
}
.recruit-values__image {
  margin: 0;
  overflow: hidden;
  background: #f1f3f6;
}
.recruit-values__image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.recruit-values__image img.is-missing {
  display: none;
}
.recruit-values__image:hover img {
  transform: scale(1.04);
}
.recruit-values__text {
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
}
.recruit-values__icon {
  width: 38px;
  height: 38px;
  color: #818894;
}
.recruit-values__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.recruit-values__text h3 {
  margin-top: 22px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
}
.recruit-values__text p {
  margin-top: 14px;
  color: #686f79;
  font-size: 16px;
  line-height: 1.6;
}
.recruit-process {
  background: #f6f7f9;
}
.recruit-process__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 70px;
}
.recruit-process h2 {
  color: #2448d8;
  font-size: 32px;
}
.recruit-process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.recruit-process__list::before {
  content: "";
  position: absolute;
  top: 56px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, #dce8ff 0%, #b8d0ff 100%);
}
.recruit-process__list li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.recruit-process__icon {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #747c88;
}
.recruit-process__icon::before,
.recruit-process__icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(36, 72, 216, .24);
  border-radius: 50%;
  background: rgba(72, 125, 235, .08);
  opacity: 0;
  animation: recruitProcessWave 7.2s ease-out infinite;
  animation-delay: var(--wave-delay, 0s);
}
.recruit-process__icon::after {
  animation-delay: calc(var(--wave-delay, 0s) + .65s);
}
.recruit-process__list li:nth-child(1) .recruit-process__icon {
  --wave-delay: 0s;
}
.recruit-process__list li:nth-child(2) .recruit-process__icon {
  --wave-delay: 1.4s;
}
.recruit-process__list li:nth-child(3) .recruit-process__icon {
  --wave-delay: 2.8s;
}
.recruit-process__list li:nth-child(4) .recruit-process__icon {
  --wave-delay: 4.2s;
}
@keyframes recruitProcessWave {
  0% {
    opacity: .55;
    transform: scale(1);
  }
  22% {
    opacity: 0;
    transform: scale(1.42);
  }
  23%, 100% {
    opacity: 0;
    transform: scale(1);
  }
}
.recruit-process__icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.recruit-process__check {
  color: #2448d8;
  stroke: currentColor;
  stroke-width: 2.4;
}
.recruit-process__list small {
  margin-top: 22px;
  color: #808793;
  font-size: 14px;
}
.recruit-process__list strong {
  margin-top: 4px;
  font-size: 20px;
}
.recruit-job {
  --glow-x: 50%;
  --glow-y: 50%;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #07337f url('../images/sub/recruit_job_banner.png') center/cover no-repeat;
}
.recruit-job::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 170px at var(--glow-x) var(--glow-y), rgba(112,211,255,.34), rgba(88,133,255,.12) 38%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .28s ease;
}
.recruit-job.is-glow-active::after { opacity: 1; }
.recruit-job__content {
  position: relative;
  z-index: 1;
}
.recruit-job__content h2 {
  font-size: 48px;
  line-height: 1.25;
}
.recruit-job__content p {
  margin-top: 28px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.recruit-job__content a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  transition: color .3s ease,background-color .3s ease;
}
.recruit-job__content a:hover,
.recruit-job__content a:focus-visible {
  color: #07337f;
  background: #fff;
}
@media(max-width:900px) {
  .recruit-job::after { display: none; }
  .recruit-page { padding-top: 68px; }
  .recruit-hero { min-height: 650px; }
  .recruit-section { padding: 90px 0; }
  .recruit-intro__grid { grid-template-columns: 1fr; gap: 55px; }
  .recruit-values__grid {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recruit-values__grid > *:nth-child(2n) { border-right: 0; }
  .recruit-values__grid > *:nth-child(n+5) { border-bottom: 1px solid #e0e3e8; }
  .recruit-values__grid > *:nth-child(n+7) { border-bottom: 0; }
  .recruit-process__inner { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .recruit-hero { min-height: 520px; }
  .recruit-hero__content h1 { font-size: 44px; }
  .recruit-hero__content strong { font-size: 17px; }
  .recruit-section { padding: 52px 0; }
  .recruit-intro__image {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }
  .recruit-values__grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    overflow: visible;
    border: 0;
    border-radius: 0;
  }
  .recruit-values__grid > * { min-height: 230px; border: 0; }
  .recruit-values__text {
    min-height: 0;
    aspect-ratio: auto;
    padding: 24px 4px 38px;
    background: transparent;
  }
  .recruit-values__text h3 { margin-top: 16px; }
  .recruit-values__text p { margin-top: 10px; }
  .recruit-values__grid > :nth-child(5) { order: 6; }
  .recruit-values__grid > :nth-child(6) { order: 5; }
  .recruit-values__grid > :nth-child(7) { order: 8; }
  .recruit-values__grid > :nth-child(8) { order: 7; }
  .recruit-process__list { grid-template-columns: repeat(2,1fr); gap: 45px 15px; }
  .recruit-process__list::before { display: none; }
  .recruit-job { min-height: 480px; }
}

.sub-page .sub-hero-title {
  font-size: var(--text-sub-hero-title);
  line-height: 1;
  font-weight: 700;
}

.sub-page .sub-hero-lead {
  margin-top: 24px;
  font-size: var(--text-sub-hero-lead);
  line-height: 1.3;
  font-weight: 600;
}

.sub-page .header {
  background: #fff;
  color: #1B1B1B;
}

.sub-page .header__logo img,
.sub-page .header.is-menu-open .header__logo img {
  filter: none;
}

.sub-page .gnb__list > li.is-current > a {
  color: var(--blue);
}

.solution-local-nav {
  display: none;
  position: sticky;
  top: 90px;
  z-index: 20;
  height: 72px;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid #e9edf3;
  transition: top .35s cubic-bezier(.22,1,.36,1);
}

.header.is-hidden + .solution-local-nav {
  top: 0;
}

.solution-local-nav .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.solution-local-nav a {
  min-width: 140px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8c939f;
  font-size: 17px;
  font-weight: 400;
  border-radius: 999px;
  transition: color .25s ease,background-color .25s ease;
}

.solution-local-nav a:hover,
.solution-local-nav a:focus-visible {
  color: #2447e5;
  background: #eef1ff;
}

.solution-local-nav a.is-active {
  color: #fff;
  font-weight: 600;
  background: #293fc1;
}

.sub-eyebrow {
  margin-bottom: 20px;
  color: #2ab8f4;
  font-size: var(--text-section-label);
  line-height: 1.3;
  font-weight: 700;
}

.sub-section {
  padding: 130px 0;
}

.sub-section h2 {
  font-size: var(--text-section-title);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-title);
}

.sub-section h2 span {
  font-weight: 200;
}

.sub-description {
  margin-top: 24px;
  color: #838b97;
  font-size: var(--text-body-large);
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-body);
}

.sub-reveal {
  opacity: 0;
  transition: opacity .8s ease;
}

.sub-reveal.is-visible {
  opacity: 1;
}

.wonder-hero {
  position: relative;
  min-height: 858px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 48%,rgba(51,91,243,.36),transparent 34%),
    linear-gradient(135deg,#020c2f 0%,#07184e 58%,#1233a3 100%);
  color: #fff;
}

.wonder-hero::after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  top: 65px;
  right: -60px;
  border: 1px solid rgba(91,132,255,.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 95px rgba(41,82,229,.06);
  animation: wonderCircleFloat 9s ease-in-out infinite;
}

.wonder-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 858px;
  padding-top: 105px;
}

.wonder-hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 18%;
  height: 600px;
  pointer-events: none;
}

.wonder-hero__visual img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
}

.wonder-hero__screen {
  right: 8%;
  bottom: -12%;
  width: min(1120px,72vw);
}

.wonder-hero__card {
  z-index: 2;
}

.wonder-hero__card--notice {
  left: -10%;
  bottom: 92px;
  width: min(500px,31vw);
  animation: wonderNoticeFloat 8.7s ease-in-out infinite;
}

.wonder-hero__card--source {
  right: 2%;
  bottom: -10%;
  width: min(320px,20vw);
  animation: wonderSourceFloat 11.3s ease-in-out -3.8s infinite;
}

@keyframes wonderNoticeFloat {
  0%, 100% {
    transform: translate3d(0,0,0);
  }

  24% {
    transform: translate3d(2px,-4px,0);
  }

  57% {
    transform: translate3d(-1px,-2px,0);
  }

  81% {
    transform: translate3d(1px,1px,0);
  }
}

@keyframes wonderSourceFloat {
  0%, 100% {
    transform: translate3d(0,0,0);
  }

  18% {
    transform: translate3d(-2px,1px,0);
  }

  43% {
    transform: translate3d(1px,-3px,0);
  }

  72% {
    transform: translate3d(3px,-1px,0);
  }

  89% {
    transform: translate3d(-1px,-2px,0);
  }
}

@keyframes wonderCircleFloat {
  0%,
  100% {
    transform: translate3d(0,0,0);
  }

  50% {
    transform: translate3d(-18px,14px,0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wonder-hero__card--notice,
  .wonder-hero__card--source,
  .wonder-action__panel,
  .wonder-action__image--citizen::after,
  .wonder-action__image--office::after,
  .wonder-action__image--insight::after,
  .wonder-character-bubble {
    animation: none;
  }

  .wonder-character-bubble {
    opacity: 1;
    transform: none;
  }

  .wonder-workflow .workflow-core,
  .wonder-workflow .workflow-card {
    transition: none;
  }
}

.wonder-workflow {
  background: #f4f7fb;
}

.wonder-workflow__cards {
  display: grid;
  grid-template-columns: 1fr repeat(3,1.05fr);
  gap: 22px;
  margin-top: 80px;
}

.wonder-workflow__cards article {
  min-height: 355px;
  border-radius: 18px;
  overflow: hidden;
}

@media (min-width: 1101px) {
  .wonder-workflow__cards {
    isolation: isolate;
    perspective: 1400px;
  }

  .wonder-workflow__cards article {
    will-change: transform,opacity;
  }

  .wonder-workflow .workflow-core {
    position: relative;
    z-index: 4;
    transform: translateY(18px) scale(.96);
    opacity: 0;
    transition:
      transform .8s cubic-bezier(.16,1,.3,1),
      opacity .45s ease;
  }

  .wonder-workflow .workflow-card {
    transform-origin: left center;
    opacity: 0;
    transition:
      transform 1.05s cubic-bezier(.16,1,.3,1),
      opacity .5s ease;
  }

  .wonder-workflow .workflow-card:nth-child(2) {
    z-index: 3;
    transform: translate3d(calc(-100% - 22px),12px,-30px) rotateY(-5deg) scale(.97);
    transition-delay: .18s;
  }

  .wonder-workflow .workflow-card:nth-child(3) {
    z-index: 2;
    transform: translate3d(calc(-200% - 44px),18px,-60px) rotateY(-7deg) scale(.94);
    transition-delay: .31s;
  }

  .wonder-workflow .workflow-card:nth-child(4) {
    z-index: 1;
    transform: translate3d(calc(-300% - 66px),24px,-90px) rotateY(-9deg) scale(.91);
    transition-delay: .44s;
  }

  .wonder-workflow.is-visible .workflow-core,
  .wonder-workflow.is-visible .workflow-card {
    transform: translate3d(0,0,0) rotateY(0) scale(1);
    opacity: 1;
  }
}

.workflow-core {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background: linear-gradient(145deg,#3150eb,#213bc7);
  color: #fff;
  box-shadow: 0 14px 28px rgba(34,62,185,.18);
}

.workflow-core i {
  margin-bottom: auto;
  font-size: 36px;
  font-style: normal;
}

.workflow-core h3 {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
}

.workflow-core p {
  margin-top: 18px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.4;
}

.workflow-card {
  position: relative;
  padding: 32px 28px 0;
  background: #fff;
  box-shadow: 0 12px 25px rgba(13,42,88,.08);
}

.workflow-card > span {
  color: #35b8f2;
  font-size: 13px;
  font-weight: 500;
}

.workflow-card h3 {
  margin-top: 4px;
  font-size: 30px;
  line-height: 1.3;
}

.workflow-card p {
  margin-top: 10px;
  color: #8b929d;
  font-size: 15px;
  line-height: 1.4;
}

.workflow-card__image {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 150px;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}

.workflow-card__image.image-citizen {
  background-image: url('../images/sub/wonder_work_citizen.png');
}

.workflow-card__image.image-office {
  background-image: url('../images/sub/wonder_work_office.png');
}

.workflow-card__image.image-insight {
  background-image: url('../images/sub/wonder_work_insight.png');
}

.wonder-before-after {
  position: relative;
  padding: 125px 0 110px;
  background: #1238c4 url('../images/sub/wonder_before_after_bg.png') center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.wonder-before-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4,20,76,.5);
  pointer-events: none;
}

.wonder-before-after > .inner {
  position: relative;
  z-index: 1;
}

.wonder-before-after .sub-eyebrow {
  color: #59cfff;
}

.wonder-before-after h2 {
  font-size: var(--text-section-title);
  line-height: 1.25;
  font-weight: 200;
}

.wonder-before-after h2 strong {
  font-weight: 700;
}

.before-after-visual {
  position: relative;
  width: min(1210px,100%);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  text-align: left;
}

.comparison-card {
  min-height: 452px;
  padding: 45px 39px 47px;
  border-radius: 20px;
}

.comparison-card--before {
  background: rgba(14,18,42,.76);
}

.comparison-card--after {
  background: rgba(45,104,241,.64);
}

.comparison-card h3 {
  margin-left: 170px;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.035em;
}

.comparison-card h3 span {
  margin-left: 7px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.comparison-card ul {
  display: grid;
  gap: 9px;
  margin-top: 43px;
}

.comparison-card li {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 24px 14px 60px;
  border-radius: 15px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  font-weight: 400;
}

.comparison-card--before li {
  background: rgba(10,10,20,.58);
}

.comparison-card--after li {
  background: rgba(12,63,183,.7);
  color: rgba(255,255,255,.84);
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 28px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.comparison-card li::after {
  content: "";
  position: absolute;
  left: 34px;
  width: 6px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.comparison-card li strong {
  margin-left: .25em;
  color: #fff;
  font-weight: 700;
}

.comparison-card--after li::before {
  color: #fff;
  background: #fff;
}

.comparison-card--after li::after {
  color: #2460d6;
}

.comparison-vs {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dotted rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgba(95,119,204,.5);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transform: translate(-50%,-50%);
}

.wonder-action {
  background: #fff;
}

.wonder-action .sub-description {
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.55;
}

.wonder-action__tabs {
  display: flex;
  gap: 36px;
  margin-top: 86px;
}

.wonder-action__tabs button {
  min-width: 126px;
  padding: 0 14px 15px;
  color: #9aa1ad;
  font-size: 19px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
}

.wonder-action__tabs button.is-active {
  color: #1B1B1B;
  font-weight: 700;
  border-color: #1B1B1B;
}

.wonder-action__panel {
  display: grid;
  grid-template-columns: 31.5% 68.5%;
  min-height: 680px;
  margin-top: 33px;
  border-radius: 22px;
  overflow: hidden;
  background: #eef4fb;
  animation: wonderPanelIn .45s ease both;
}

.wonder-action__panel[hidden] {
  display: none;
}

.wonder-action__copy {
  padding: 48px 46px 42px;
  background: #f7f8fc;
}

.panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 12px;
  color: #4773e7;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: #e4e9fa;
}

.panel-label::before {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-flex;
  margin: -3px 8px -3px -10px;
  border-radius: 50%;
  background: url('../images/sub/wonder_action_label_icon.png') center / contain no-repeat;
  flex: 0 0 25px;
}

.wonder-action__copy h3 {
  margin-top: 5px;
  font-size: 38px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -.04em;
}

.panel-lead {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 300;
}

.panel-lead strong {
  color: #111;
  font-weight: 700;
}

.wonder-action__copy ul {
  margin-top: 68px;
}

.wonder-action__copy li + li {
  margin-top: 20px;
}

.wonder-action__copy li b,
.wonder-action__copy li span {
  display: block;
}

.wonder-action__copy li b {
  position: relative;
  padding-left: 8px;
  color: #1b1b1b;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}

.wonder-action__copy li b::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.wonder-action__copy li b em {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin-left: 4px;
  padding: 3px 12px;
  border-radius: 8px;
  background: #dff2ff;
  color: #0876f9;
  font-size: 14px;
  line-height: 1;
  font-style: normal;
  font-weight: 400;
  vertical-align: middle;
}

.wonder-action__copy li span {
  margin-top: 2px;
  padding-left: 8px;
  color: #7d838c;
  font-size: 15px;
  line-height: 1.55;
}

.rag-flow {
  display: grid;
  grid-template-columns: 82px 1fr 82px 1fr 82px;
  align-items: center;
  gap: 7px;
  margin: 25px 0 0 12px;
}

.rag-flow i {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #969da9;
  border-radius: 50%;
  color: #343943;
  font-size: 14px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.rag-flow i:last-child {
  border-color: #2465f5;
  background: #2465f5;
  color: #fff;
  font-weight: 600;
}

.rag-flow small {
  position: relative;
  width: 100%;
  height: 12px;
  display: block;
  align-self: center;
  justify-self: stretch;
  overflow: visible;
  color: transparent;
}

.rag-flow small::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  left: 0;
  height: 1px;
  background: #b8bdc6;
  transform: translateY(-50%);
}

.rag-flow small::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid #b8bdc6;
  border-right: 1px solid #b8bdc6;
  transform: translateY(-50%) rotate(45deg);
}

.wonder-action__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom,#8fd4ff 0%,#f8f8f8 100%);
}

.wonder-action__image--citizen::before,
.wonder-action__image--citizen::after {
  content: "";
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.wonder-action__image--citizen::before {
  inset: 13% 5% 0 3%;
  background-image: url('../images/sub/wonder_action_citizen_phone.png');
  transform: scale(.9);
  transform-origin: center bottom;
}

.wonder-action__image--citizen::after {
  right: 2.5%;
  bottom: 0;
  z-index: 1;
  width: 25%;
  aspect-ratio: 386 / 368;
  background-image: url('../images/sub/wonder_action_character.png');
  animation: wonderCharacterFloat 4.5s ease-in-out infinite;
}

.wonder-character-bubble {
  position: absolute;
  right: 5%;
  bottom: 36%;
  z-index: 2;
  padding: 13px 18px;
  border: 1px solid rgba(39,91,220,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  color: #253148;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(36,75,155,.14);
  opacity: 0;
  transform: scale(.2);
  transform-origin: right bottom;
  animation: wonderBubbleShow 6s cubic-bezier(.34,1.56,.64,1) infinite;
}

.wonder-character-bubble::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: -7px;
  width: 13px;
  height: 13px;
  border-top: 0;
  border-right: 1px solid rgba(39,91,220,.15);
  border-bottom: 1px solid rgba(39,91,220,.15);
  background: #fff;
  transform: rotate(45deg);
}

@keyframes wonderCharacterFloat {
  0%, 100% {
    transform: translate3d(0,0,0);
  }

  38% {
    transform: translate3d(-2px,-4px,0);
  }

  72% {
    transform: translate3d(2px,-2px,0);
  }
}

@keyframes wonderBubbleShow {
  0%, 4%, 82%, 100% {
    opacity: 0;
    transform: translate3d(0,3px,0) scale(.2);
  }

  10% {
    opacity: 1;
    transform: translate3d(0,0,0) scale(1.08);
  }

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

  47% {
    opacity: 1;
    transform: translate3d(0,-4px,0) scale(1);
  }

  68% {
    opacity: 1;
    transform: translate3d(0,1px,0) scale(1);
  }

  76% {
    opacity: 0;
    transform: translate3d(0,-2px,0) scale(.75);
  }
}

.wonder-action__image--office {
  --image-x: 2%;
  --image-y: 2%;
  background-color: #eaf7ff;
  background-image: linear-gradient(145deg,#83d1ff 0%,#d9f2ff 48%,#f7f9ff 100%); 
}

.wonder-action__image--insight {
  --image-x: 7%;
  --image-y: 10%;
  background-color: #edf2ff;
  background-image: linear-gradient(155deg,#91cfff 0%,#dceaff 52%,#f4f0ff 100%);
}

.wonder-action__image--office::before,
.wonder-action__image--insight::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(var(--image-x),var(--image-y));
} 

.wonder-action__image--office::before {
  background-image: url('../images/sub/wonder_action_work.png');
  background-position: left center;
  background-size: auto 90%;
}

.wonder-action__image--insight::before {
  background-image: url('../images/sub/wonder_action_insight.png');
  background-position: center top;
  background-size: 100%;
}

.wonder-action__image--office::after,
.wonder-action__image--insight::after {
  content: "";
  position: absolute;
  right: 2.5%;
  bottom: 0;
  z-index: 1;
  width: 25%;
  aspect-ratio: 1 / 1;
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  animation: wonderCharacterFloat 4.5s ease-in-out infinite;
}

.wonder-action__image--office::after {
  background-image: url('../images/wonder_02.png');
}

.wonder-action__image--insight::after {
  background-image: url('../images/wonder_03.png');
}

@keyframes wonderPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wonder-results {
  background: #f4f7fb;
}

.wonder-results__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 75px;
  border-top: 1px solid #d9e0ea;
  border-bottom: 1px solid #d9e0ea;
}

.wonder-results__grid div {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 45px;
  border-right: 1px solid #d9e0ea;
}

.wonder-results__grid div:last-child {
  border-right: 0;
}

.wonder-results__grid strong {
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
}

.wonder-results__grid small {
  font-size: .65em;
}

.wonder-results__grid div > span {
  margin-top: 18px;
  color: #858d99;
  font-size: 14px;
}

.wonder-results__grid .result-counter {
  color: inherit;
  font: inherit;
}

.wonder-cta .contact-cta__content {
  align-items: center;
  padding-left: 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .wonder-workflow__cards {
    grid-template-columns: repeat(2,1fr);
  }

  .wonder-action__panel {
    grid-template-columns: 38% 62%;
  }
}

@media (max-width: 900px) {
  .sub-page {
    padding-top: 68px;
  }

  .solution-local-nav {
    top: 68px;
    height: 70px;
  }

  .solution-local-nav .inner {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
  }

  .wonder-hero,
  .wonder-hero__inner {
    min-height: 748px;
  }

  .wonder-hero__visual {
    right: 0;
    left: 0;
    height: 473px;
  }

  .wonder-hero__screen {
    right: 2%;
    width: 88vw;
  }

  .wonder-hero__card--notice {
    bottom: 60px;
    width: min(390px,42vw);
  }

  .wonder-hero__card--source {
    right: 1%;
    width: min(250px,28vw);
  }

  .wonder-action__panel {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding-right: 24px;
    padding-left: 24px;
  }

  .comparison-card h3 {
    margin-left: 0;
    text-align: center;
  }

  .comparison-card li {
    padding-right: 16px;
    padding-left: 48px;
    font-size: 14px;
  }

  .comparison-card li::before {
    left: 20px;
  }

  .comparison-card li::after {
    left: 25px;
  }

  .wonder-action__image {
    min-height: 470px;
  }

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

  .wonder-results__grid div:nth-child(2) {
    border-right: 0;
  }

  .wonder-results__grid div:nth-child(-n+2) {
    border-bottom: 1px solid #d9e0ea;
  }
}

@media (max-width: 600px) {
  .sub-page {
    --text-sub-hero-title: 48px;
    --text-sub-hero-lead: 22px;
  }

  .sub-section {
    padding: 85px 0;
  }

  .solution-local-nav a {
    min-width: 100px;
    height: 42px;
    font-size: 13px;
  }

  .wonder-hero,
  .wonder-hero__inner {
    min-height: 638px;
  }

  .wonder-hero__inner {
    padding-top: 70px;
  }

  .wonder-hero__visual {
    height: 300px;
    right: 0;
    left: 0;
  }

  .wonder-hero__screen {
    right: auto;
    bottom: 0;
    left: 16px;
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .wonder-hero__card--notice,
  .wonder-hero__card--source {
    display: none;
  }

  .wonder-workflow__cards {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .wonder-before-after {
    padding: 85px 0;
  }

  .before-after-visual {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .comparison-card {
    min-height: auto;
    padding: 34px 20px 26px;
  }

  .comparison-card h3 {
    font-size: 30px;
  }

  .comparison-card ul {
    margin-top: 28px;
  }

  .comparison-card li {
    min-height: 58px;
  }

  .comparison-vs {
    top: 50%;
    width: 54px;
    height: 54px;
    font-size: 15px;
  }

  .wonder-action__tabs {
    gap: 8px;
    margin-top: 50px;
    overflow-x: auto;
  }

  .wonder-action .sub-description {
    font-size: 16px;
  }

  .wonder-action__tabs button {
    min-width: 100px;
  }

  .wonder-action__copy {
    padding: 42px 28px;
  }

  .wonder-action__copy h3 {
    font-size: 28px !important;
  }

  .panel-lead {
    font-size: 24px;
  }

  .wonder-action__copy li b em {
    margin: 7px 0 0;
  }

  .rag-flow {
    grid-template-columns: 68px 1fr 68px 1fr 68px;
    gap: 4px;
    margin-left: 0;
  }

  .rag-flow i {
    width: 68px;
    height: 68px;
    font-size: 12px;
  }

  .wonder-action__image {
    min-height: 300px;
  }

  .wonder-results__grid div {
    min-height: 130px;
    padding-left: 22px;
  }

  .wonder-results__grid strong {
    font-size: 28px;
  }
}
/* Technology page */
.technology-page {
  padding-top: 90px;
}
.tech-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #08051c url('../images/sub/technology_hero.png') center / cover no-repeat;
}
.tech-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(5,3,24,.92) 0%,rgba(5,3,24,.36) 54%,rgba(5,3,24,.1) 100%);
}
.tech-hero::after {
  content: "";
  position: absolute;
  inset: 4% 1% 5% 38%;
  pointer-events: none;
  background: radial-gradient(circle at 14% 65%,#fff 0 2px,rgba(78,205,255,.55) 3px,transparent 7px),radial-gradient(circle at 33% 30%,#7ee6ff 0 2.5px,rgba(39,165,255,.45) 4px,transparent 9px),radial-gradient(circle at 49% 78%,#fff 0 2px,rgba(103,170,255,.5) 3px,transparent 7px),radial-gradient(circle at 68% 20%,#8edfff 0 2.5px,rgba(62,142,255,.5) 4px,transparent 9px),radial-gradient(circle at 87% 55%,#fff 0 2px,rgba(46,195,255,.55) 3px,transparent 8px),radial-gradient(circle at 58% 45%,rgba(28,166,255,.42),transparent 14%);
  animation: techSparkleField 5.4s ease-in-out infinite;
}
.tech-hero__inner {
  position: relative;
  min-height: 760px;
  padding-top: 95px;
}
.tech-hero__inner::before,
.tech-hero__inner::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle,#fff 0 15%,#77ddff 28%,rgba(38,167,255,.35) 52%,transparent 72%);
  filter: drop-shadow(0 0 10px rgba(44,190,255,.8));
}
.tech-hero__inner::before {
  top: 27%;
  right: 29%;
  animation: techSparklePoint 4.6s ease-in-out infinite;
}
.tech-hero__inner::after {
  top: 48%;
  right: 9%;
  width: 13px;
  height: 13px;
  animation: techSparklePoint 5.2s ease-in-out 1.7s infinite;
}
.tech-hero__cursor-glow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle,rgba(112,224,255,.16) 0%,rgba(37,148,255,.08) 35%,transparent 70%);
  transform: translate3d(calc(var(--glow-x,50vw) - 50%),calc(var(--glow-y,50%) - 50%),0);
  transition: opacity .55s ease;
}
.tech-hero:hover .tech-hero__cursor-glow {
  opacity: 1;
}
.tech-hero__keywords {
  position: absolute;
  right: 40px;
  bottom: 45px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 720px;
}
.tech-hero__keywords a {
  text-align: center;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,.28);
}
.tech-hero__keywords a:first-child {
  padding-left: 0;
  border-left: 0;
}
.tech-hero__keywords b,
.tech-hero__keywords span {
  display: block;
}
.tech-hero__keywords b {
  font-size: 20px;
}
.tech-hero__keywords span {
  margin-top: 2px;
  color: rgba(255,255,255,.55);
  font-size: 15px;
}
@keyframes techSparkleField {
  0%, 100% {
    opacity: .55;
    transform: translate3d(0,0,0);
  }
  38% {
    opacity: 1;
    transform: translate3d(4px,-3px,0);
  }
  68% {
    opacity: .68;
    transform: translate3d(-3px,3px,0);
  }
}
@keyframes techSparklePoint {
  0%, 100% {
    opacity: .22;
    transform: scale(.55);
  }
  48% {
    opacity: .95;
    transform: scale(1.3);
  }
  72% {
    opacity: .5;
    transform: scale(.82);
  }
}
.tech-capability {
  padding: 140px 0;
  background: #fff;
}
.tech-capability--agent {
  background: #f7f8fc;
}
.tech-capability__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.tech-capability--agent .tech-capability__visual {
  order: 2;
}
.tech-capability__visual {
  min-height: 410px;
  border-radius: 26px;
  background-color: #0b1540;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 22px 50px rgba(19,39,92,.12);
}
.tech-capability--model .tech-capability__visual {
  background-image: url('../images/sub/technology_model.png'),linear-gradient(145deg,#09133d,#2b0b5d);
}
.tech-capability--agent .tech-capability__visual {
  background-image: url('../images/sub/technology_agent.png'),linear-gradient(145deg,#07172d,#1d1d66);
}
.tech-capability--spatial .tech-capability__visual {
  background-image: url('../images/sub/technology_spatial.png'),linear-gradient(145deg,#082c56,#080d34);
}
.tech-capability__copy .sub-eyebrow {
  margin-bottom: 12px;
  font-size: 13px;
}
.tech-capability__copy h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}
.tech-capability__copy > p:not(.sub-eyebrow) {
  margin-top: 8px;
  color: #272727;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
}
.tech-capability__copy ul {
  margin-top: 38px;
}
.tech-capability__copy li {
  position: relative;
  padding-left: 27px;
  color: #555;
  font-size: 20px;
  line-height: 1.95;
  font-weight: 300;
}
.tech-capability__copy li::before {
  content: "";
  position: absolute;
  top: .9em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #555;
}
.tech-architecture {
  padding: 140px 0;
  color: #fff;
  background: #080819;
}
.tech-architecture__heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-architecture h2 {
  font-size: 46px;
  line-height: 1.35;
  font-weight: 700;
}
.tech-architecture__description p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.55;
}
.tech-architecture__description a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 25px;
  padding-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.tech-architecture__description a::before,
.tech-architecture__description a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
}
.tech-architecture__description a::before {
  background: rgba(255,255,255,.45);
}
.tech-architecture__description a::after {
  background: #4ebcff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.tech-architecture__description a span {
  transition: transform .35s ease;
}
.tech-architecture__description a:hover::after,
.tech-architecture__description a:focus-visible::after {
  transform: scaleX(1);
}
.tech-architecture__description a:hover span,
.tech-architecture__description a:focus-visible span {
  transform: translateX(4px);
}
.tech-architecture__visual {
  min-height: 680px;
  margin-top: 50px;
  background: url('../images/sub/technology_architecture.png') center / contain no-repeat;
  -webkit-mask-image: radial-gradient(ellipse 94% 92% at center,#000 78%,transparent 100%);
  mask-image: radial-gradient(ellipse 94% 92% at center,#000 78%,transparent 100%);
}
.tech-principles {
  padding: 140px 0;
  background: #f4f6fa;
}
.tech-principles h2 {
  font-size: 46px;
  line-height: 1.25;
  font-weight: 700;
}
.tech-principles > .inner > .sub-description {
  margin-top: 14px;
  color: #5f6470;
  font-size: 16px;
  line-height: 1.55;
}
.tech-principles__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 52px;
}
.tech-principles article {
  position: relative;
  min-height: 300px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 0 0 1000px rgba(3,10,28,.24),
    inset 0 -150px 110px rgba(4,14,45,.58);
}
.tech-principles article:nth-child(1) {
  background-image: url('../images/sub/technology_principle_01.png'),linear-gradient(145deg,#3873ba,#172751);
}
.tech-principles article:nth-child(2) {
  background-image: url('../images/sub/technology_principle_02.png'),linear-gradient(145deg,#5c77bd,#122044);
}
.tech-principles article:nth-child(3) {
  background-image: url('../images/sub/technology_principle_03.png'),linear-gradient(145deg,#3970a7,#131f43);
}
.tech-principles__item:nth-child(1) article {
  background-image: url('../images/sub/technology_principle_01.png'),linear-gradient(145deg,#3873ba,#172751);
}
.tech-principles__item:nth-child(2) article {
  background-image: url('../images/sub/technology_principle_02.png'),linear-gradient(145deg,#5c77bd,#122044);
}
.tech-principles__item:nth-child(3) article {
  background-image: url('../images/sub/technology_principle_03.png'),linear-gradient(145deg,#3970a7,#131f43);
}
.tech-principles__level {
  display: inline-flex;
  min-width: 76px;
  height: 30px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(36,72,216,.4);
  font-size: 14px;
  font-weight: 600;
}
.tech-principles__item:nth-child(2) .tech-principles__level {
  background: rgba(36,72,216,.6);
}
.tech-principles__item:nth-child(3) .tech-principles__level {
  background: #2448D8;
}
.tech-principles article h3 {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.25;
}
.tech-principles article strong {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 300;
}
.tech-principles article p {
  margin-top: auto;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.5;
}
.tech-principles__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tech-principles__tags span {
  padding: 7px 20px;
  border-radius: 999px;
  color: #282b31;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
}
.tech-action {
  padding: 140px 0;
  background: #fff;
}
.tech-action__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 110px;
}
.tech-action__visual {
  position: relative;
  min-height: 500px;
  background: url('../images/sub/technology_action.png') center / contain no-repeat;
}
.tech-action__bar {
  position: absolute;
  left: 60%;
  z-index: 1;
  width: 260px;
  height: 70px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 14px 28px rgba(16,25,58,.12);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .45s ease,transform .45s ease,box-shadow .25s ease;
}
.tech-action__bar--civil {
  top: 38%;
  background: rgba(61,91,219,.9);
}
.tech-action__bar--analysis {
  top: 55%;
  background: rgba(48,46,46,.9);
  transition-delay: .08s;
}
.tech-action__bar img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform .3s ease;
}
.tech-action__bar strong {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
.tech-action.is-visible .tech-action__bar {
  opacity: 1;
  transform: translateX(0);
}
.tech-action.is-visible .tech-action__bar:hover {
  transform: translateX(3px);
  box-shadow: 0 16px 30px rgba(16,25,58,.18);
  transition-delay: 0s;
}
.tech-action__bar:hover img {
  transform: scale(1.04);
}
.tech-action__copy .sub-eyebrow {
  margin-bottom: 22px;
  font-size: 16px;
}
.tech-action h2 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
}
.tech-action .sub-description {
  margin-top: 22px;
  color: #555b65;
  font-size: 18px;
  line-height: 1.55;
}
.tech-action a {
  margin-top: 42px;
  border: 1px solid #555;
  transition: color .3s ease,background-color .3s ease,border-color .3s ease;
}
.tech-action a span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #2448d8;
  transition: transform .3s ease;
}
.tech-action a:hover,
.tech-action a:focus-visible {
  color: #fff;
  border-color: #2448d8;
  background: #2448d8;
}
.tech-action a:hover span,
.tech-action a:focus-visible span {
  transform: translateX(4px);
}
.tech-cta {
  background: #031344 url('../images/main_cta_img.png') center / cover no-repeat;
}
@media (max-width: 900px) {
  .technology-page {
    padding-top: 68px;
  }
  .tech-hero,.tech-hero__inner {
    min-height: 680px;
  }
  .tech-capability,
  .tech-architecture,
  .tech-principles,
  .tech-action {
    padding: 90px 0;
  }
  .tech-capability__grid,.tech-action__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .tech-capability--agent .tech-capability__visual {
    order: 0;
  }
  .tech-capability__copy h2 {
    font-size: 42px;
  }
  .tech-capability__copy > p:not(.sub-eyebrow) {
    font-size: 24px;
  }
  .tech-capability__copy li {
    font-size: 19px;
  }
  .tech-architecture__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tech-principles__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .tech-hero,
  .tech-hero__inner {
    min-height: 600px;
  }

  .tech-hero {
    background-position: 60% center;
  }

  .tech-hero__keywords {
    right: -20px;
    bottom: 24px;
    left: 20px;
    display: flex;
    gap: 0;
    max-width: none;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
  }

  .tech-hero__keywords.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .tech-hero__keywords::-webkit-scrollbar {
    display: none;
  }

  .tech-hero__keywords a {
    flex: 0 0 220px;
    min-height: 74px;
    padding: 5px 22px;
    border-left: 1px solid rgba(255,255,255,.28);
    text-align: left;
    scroll-snap-align: start;
    -webkit-user-drag: none;
  }

  .tech-hero__keywords a:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .tech-capability {
    padding: 70px 0;
  }
  .tech-capability--model,
  .tech-capability--agent {
    padding-bottom: 35px;
  }
  .tech-architecture,
  .tech-principles,
  .tech-action {
    padding: 70px 0;
  }
  .tech-architecture {
    padding-bottom: 45px;
  }
  .tech-capability__visual {
    min-height: 280px;
  }
  .tech-capability__copy .sub-eyebrow {
    font-size: 14px;
  }
  .tech-capability__copy h2 {
    font-size: 30px;
  }
  .tech-capability__copy > p:not(.sub-eyebrow) {
    font-size: 18px;
  }
  .tech-capability__copy ul {
    margin-top: 28px;
  }
  .tech-capability__copy li {
    padding-left: 18px;
    font-size: 16px;
  }
  .tech-architecture__visual {
    min-height: 200px;
    margin-top: 24px;
  }
  .tech-architecture__description br {
    display: none;
  }
  .tech-action__visual {
    min-height: 300px;
  }
  .tech-action__bar {
    right: 12px;
    left: auto;
    width: min(240px,calc(100% - 24px));
    height: 54px;
    padding: 0 18px;
    gap: 10px;
  }
  .tech-action__bar--civil {
    top: 35%;
  }
  .tech-action__bar--analysis {
    top: 56%;
  }
  .tech-action__bar strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tech-hero::after,.tech-hero__inner::before,.tech-hero__inner::after {
    animation: none;
  }
  .tech-hero__cursor-glow {
    display: none;
  }
  .tech-action__bar {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Company page */
.company-page {
  padding-top: 90px;
}
.company-local-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e7e9ef;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.company-local-nav .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 55px;
}
.company-local-nav a {
  position: relative;
  padding: 18px 5px;
  color: #8a909c;
  font-size: 17px;
  font-weight: 500;
}
.company-local-nav a.is-current {
  color: #2448d8;
}
.company-local-nav a.is-current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: #2448d8;
}
.company-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #07152c url('../images/sub/company_hero.png') center/cover no-repeat;
}
.company-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(3,10,28,.6);
}
.company-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.company-hero__content {
  position: relative;
  z-index: 2;
}
.company-hero .sub-eyebrow {
  color: #52c8ff;
}
.company-hero h1 {
  font-size: 72px;
  line-height: 1.1;
}
.company-hero p:last-child {
  margin-top: 22px;
  font-size: 22px;
}
.company-section {
  padding: 140px 0;
}
.company-heading {
  text-align: center;
}
.company-heading h2 {
  font-size: 46px;
  line-height: 1.25;
}
.company-heading .sub-description {
  margin-top: 18px;
  color: #737986;
}
.company-intro__images {
  position: relative;
  width: 960px;
  max-width: 100%;
  height: 300px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
}
.company-intro__images span {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  opacity: .92;
  transform: scale(.96);
  transition: left 1.15s cubic-bezier(.22,1,.36,1),opacity .65s ease,transform 1.15s cubic-bezier(.22,1,.36,1);
}
.company-intro__images span:nth-child(1) {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
  background-image: url('../images/sub/company_intro_01.png'),linear-gradient(145deg,#38a3ec,#164f91);
}
.company-intro__images span:nth-child(2) {
  z-index: 2;
  transition-delay: .15s;
  background-image: url('../images/sub/company_intro_02.png'),linear-gradient(145deg,#d8e0eb,#78869b);
}
.company-intro__images span:nth-child(3) {
  z-index: 1;
  transition-delay: .35s;
  background-image: url('../images/sub/company_intro_03.png'),linear-gradient(145deg,#16495f,#071a2d);
}
.company-intro.is-visible .company-intro__images span:nth-child(2) {
  left: 330px;
  opacity: 1;
  transform: scale(1);
}
.company-intro.is-visible .company-intro__images span:nth-child(3) {
  left: 660px;
  opacity: 1;
  transform: scale(1);
}
.company-balance {
  position: relative;
  min-height: 688px;
  padding: 100px 0 125px;
  color: #fff;
  background: #050714 url('../images/sub/company_balance_bg.png') center/cover no-repeat;
}
.company-balance .inner {
  position: relative;
  z-index: 1;
}
.company-balance .company-heading .sub-eyebrow {
  margin-bottom: 20px;
  color: #4bc7ff;
  font-size: 16px;
}
.company-balance .company-heading h2 {
  font-size: 44px;
  line-height: 1.42;
  font-weight: 700;
}
.company-balance__stats {
  max-width: 1035px;
  margin: 60px auto 0;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-radius: 30px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.company-balance__stats div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.company-balance__stats div:last-child {
  border: 0;
  border-radius: 22px;
  background: #2454d9;
}
.company-balance__stats small {
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 500;
}
.company-balance__stats strong {
  margin-top: 18px;
  font-size: 62px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.04em;
}
.company-balance__stats strong sup {
  margin-left: 3px;
  font-size: 28px;
  vertical-align: top;
}
.company-balance__stats div:last-child strong {
  font-size: 58px;
}
.company-history {
  background: #f4f7fb;
}
.company-history__grid,.company-awards__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.company-location__grid {
  display: grid;
  grid-template-columns: minmax(0,7fr) minmax(300px,3fr);
  gap: 70px;
}
.company-history .company-side-heading {
  position: sticky;
  top: 150px;
}
.company-side-heading h2 {
  font-size: 42px;
  line-height: 1.3;
}
.company-side-heading p:not(.sub-eyebrow) {
  margin-top: 20px;
  color: #777e8b;
}
.company-history__timeline {
  position: relative;
}
.company-history__timeline article {
  --line-progress: 0%;
  position: relative;
  min-height: 260px;
  padding: 0 0 80px 100px;
}
.company-history__timeline article:last-child {
  min-height: 0;
  padding-bottom: 0;
}
.company-history__line {
  position: absolute;
  top: .7em;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #d8dde8;
}
.company-history__timeline article:last-child .company-history__line {
  height: 1px;
  bottom: auto;
}
.company-history__line i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--line-progress);
  background: #2448d8;
}
.company-history__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd4df;
  transform: translate(-50%,-35%);
  transition: background-color .25s ease,box-shadow .3s ease;
}
.company-history__timeline article.is-active .company-history__line::before {
  background: #2448d8;
  box-shadow: 0 0 0 10px rgba(36,72,216,.1);
}
.company-history__timeline h3 {
  font-size: 30px;
}
.company-history__timeline strong {
  display: block;
  margin-top: 15px;
  font-size: 18px;
}
.company-history__timeline p {
  color: #737986;
}
.company-history__entry {
  margin-top: 24px;
}
.company-history__entry + .company-history__entry {
  margin-top: 44px;
}
.company-history__entry > strong {
  margin-top: 0;
}
.company-history__entry > p {
  margin-top: 5px;
}
.company-history__visual {
  width: 50%;
  min-height: 230px;
  margin-top: 25px;
  border-radius: 18px;
  border: 1px solid #edf0f5;
  background: #fff url('../images/sub/company_history_wonder_logo.png') center/65% auto no-repeat;
  box-shadow: 0 16px 34px rgba(20,35,70,.06);
}
.company-history__visual--certificate {
  background: #fff url('../images/sub/company_history_certificate.png') center/auto 88% no-repeat;
}
.company-awards__visual {
  min-height: 360px;
  border-radius: 18px;
  background: #f1f4f9 url('../images/sub/company_award_2025.png') center/cover no-repeat;
}
.company-awards__list {
  margin-top: 25px;
}
.company-awards__list li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  border-bottom: 1px solid #dde1e8;
}
.company-awards__grid {
  grid-template-columns: 260px minmax(0,1fr);
  gap: 200px;
}
.company-awards__filters {
  display: flex;
  gap: 20px;
  margin-top: 70px;
}
.company-awards__filters button {
  position: relative;
  padding: 0 6px 14px;
  color: #7c828c;
  font-size: 15px;
  font-weight: 600;
}
.company-awards__filters button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #2448d8;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.company-awards__filters button.is-active {
  color: #2448d8;
}
.company-awards__filters button.is-active::after {
  transform: scaleX(1);
}
.company-awards__accordion {
  min-width: 0;
}
.company-awards__item {
  border-bottom: 1px solid #d7d9de;
}
.company-awards__item[hidden] {
  display: none;
}
.company-awards__item:last-child.is-open {
  border-bottom-color: transparent;
}
.company-awards__summary {
  width: 100%;
  height: 64px;
  display: grid;
  grid-template-columns: 95px 125px minmax(0,1fr) 30px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  text-align: left;
  opacity: 1;
  transition: height .4s ease,opacity .25s ease;
}
.company-awards__item.is-open .company-awards__summary {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.company-awards__year {
  height: 32px;
  padding-left: 18px;
  display: flex;
  align-items: center;
  border-right: 1px solid #dfe1e5;
  font-size: 20px;
  font-weight: 600;
}
.company-awards__type {
  color: #2457ff;
  font-size: 12px;
  font-weight: 700;
}
.company-awards__summary strong {
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-awards__arrow {
  color: #666c76;
  font-size: 20px;
  transition: transform .25s ease;
}
.company-awards__thumb {
  display: none;
}
.company-awards__thumb--2019 {
  background-image: url('../images/sub/company_award_2019.png');
}
.company-awards__thumb--2022 {
  background-image: url('../images/sub/company_award_2022.png');
}
.company-awards__thumb--family-2024 {
  background-image: url('../images/sub/company_award_family_2024.png');
}
.company-awards__summary:hover .company-awards__arrow,
.company-awards__summary:focus-visible .company-awards__arrow {
  transform: translateX(4px);
}
.company-awards__panel {
  max-height: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 6px;
  opacity: 0;
  transition: max-height .55s cubic-bezier(.22,1,.36,1),opacity .35s ease,margin .55s ease,border-color .35s ease;
}
.company-awards__item.is-open .company-awards__panel {
  max-height: 330px;
  margin-top: 32px;
  margin-bottom: 32px;
  border-color: #d9dce2;
  opacity: 1;
}
.company-awards__image {
  min-height: 310px;
  background-color: #eef1f6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.company-awards__image--2025 { background-image: url('../images/sub/company_award_2025.png'); }
.company-awards__image--anyang-2025 { background-image: url('../images/sub/company_award_anyang_2025.png'); }
.company-awards__image--2019 { background-image: url('../images/sub/company_award_2019.png'); }
.company-awards__image--2023 { background-image: url('../images/sub/company_award_2023.png'); }
.company-awards__image--2022 { background-image: url('../images/sub/company_award_2022.png'); }
.company-awards__image--2021 { background-image: url('../images/sub/company_award_2021.png'); }
.company-awards__image--family-2024 { background-image: url('../images/sub/company_award_family_2024.png'); }
.company-awards__copy {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
}
.company-awards__copy > span {
  color: #2457ff;
  font-size: 12px;
  font-weight: 700;
}
.company-awards__copy > b {
  margin-top: 7px;
  font-size: 54px;
  line-height: 1;
  font-weight: 500;
}
.company-awards__copy > i {
  width: 22px;
  height: 2px;
  margin: 25px 0 17px;
  background: #2457ff;
}
.company-awards__copy > strong {
  font-size: 15px;
}
.company-awards__organization--ministry,
.company-awards__organization--mafra {
  width: 150px;
  height: 25px;
  flex: none;
  display: block;
}
.company-awards__organization--ministry {
  background: url('../images/sub/company_award_ministry_logo.png') left center/contain no-repeat;
}
.company-awards__organization--mafra {
  background: url('../images/sub/company_award_mafra_logo.png') left center/contain no-repeat;
}
.company-awards__copy h3 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.35;
}
.company-awards__copy p {
  margin-top: 5px;
  color: #777e89;
  font-size: 14px;
}
.company-partners {
  overflow: hidden;
  background: #f4f7fb;
}
.company-partners .company-heading {
  text-align: left;
}
.company-partners__logos {
  margin-top: 65px;
  display: flex;
  gap: 55px;
  align-items: center;
  opacity: .55;
}
.company-partners__logos img {
  width: 120px;
  max-height: 45px;
  object-fit: contain;
}
.main-contact_mapBox {
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  background: #eef1f5;
}
.main-contact_mapBox iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
}
.company-location__info h1 {
  font-size: 56px;
  line-height: 1;
}
.company-location__info dl {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 90px 1fr;
  row-gap: 20px;
}
.company-location__info dt {
  color: #959ba6;
}
.company-location__info dd {
  color: #333943;
}
@media(max-width:900px) {
  .company-page {
    padding-top:68px
  }
  .company-local-nav {
    top: 0;
  }
  .company-section {
    padding:90px 0
  }
  .company-hero {
    min-height:560px
  }
  .company-hero h1 {
    font-size:52px
  }
  .company-intro__images {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
  }
  .company-intro__images span,
  .company-intro.is-visible .company-intro__images span:nth-child(2),
  .company-intro.is-visible .company-intro__images span:nth-child(3) {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .company-history__grid,.company-awards__grid,.company-location__grid {
    grid-template-columns: 1fr;
    gap:50px
  }
  .company-awards__filters {
    margin-top: 35px;
  }
  .company-history .company-side-heading {
    position:static
  }
  .company-history__timeline article {
    padding-left:60px
  }
  .company-balance__stats {
    grid-template-columns:repeat(2,1fr)
  }
  .company-balance__stats div:nth-child(2) {
    border-right:0
  }
}
@media(max-width:600px) {
  .company-local-nav {
    height:62px;
    border-bottom:0
  }
  .company-local-nav a.is-current::after {
    display:none
  }
  .company-section {
    padding:70px 0
  }
  .company-hero {
    min-height:460px
  }
  .company-hero h1 {
    font-size:38px
  }
  .company-hero p:last-child {
    font-size:17px
  }
  .company-heading h2,.company-side-heading h2 {
    font-size:30px
  }
  .company-intro__images {
    gap:12px
  }
  .company-balance__stats {
    grid-template-columns:1fr
  }
  .company-balance__stats div {
    border-right: 0;
    border-bottom:1px solid rgba(255,255,255,.12)
  }
  .company-history__visual {
    width:100%
  }
  .company-awards__summary {
    grid-template-columns: 60px 88px minmax(0,1fr) 24px;
    gap: 8px;
  }
  .company-awards__thumb {
    display: none;
  }
  .company-awards__year {
    padding-left: 8px;
    font-size: 16px;
  }
  .company-awards__panel {
    grid-template-columns: 1fr;
  }
  .company-awards__item.is-open .company-awards__panel {
    max-height: 680px;
  }
  .company-awards__image {
    min-height: 240px;
  }
  .company-awards__copy {
    padding: 28px 24px;
  }
  .main-contact_mapBox {
    min-height:360px
  }
  .main-contact_mapBox iframe {
    height:360px
  }
  .company-location__info h1 {
    font-size:40px
  }
}

/* Shared mobile sub-page hero height */
@media(max-width:600px) {
  .wonder-hero,
  .wonder-hero__inner,
  .tech-hero,
  .tech-hero__inner,
  .company-hero,
  .recruit-hero {
    height: 500px;
    min-height: 500px;
  }
}
