:root {
  --color-deep-blue: #12385b;
  --color-blue-black: #082640;
  --color-bright-blue: #2f7fa3;
  --color-accent: #d8b66a;
  --color-surface: #f3f6f8;
  --color-white: #ffffff;
  --color-mist: #dce8f0;
  --color-muted: #6d8293;
  --content-max: 1240px;
  --page-gutter: clamp(32px, 5vw, 88px);
  --radius-card: 8px;
  --radius-control: 999px;
  --motion-duration: 700ms;
  --fullpage-motion-duration: 1800ms;
  --motion-easing: cubic-bezier(0.22, 1, 0.36, 1);
  --fullpage-offset: 0dvh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: var(--color-deep-blue);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-deep-blue);
  background: var(--color-surface);
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    "Source Han Sans SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.home-page--single {
  min-height: 100dvh;
  overflow: hidden;
  background: var(--color-deep-blue);
}

button {
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  color: transparent;
  background: #7890a4;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--color-deep-blue);
  background: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.fullpage {
  position: relative;
  width: 100%;
  background: var(--color-deep-blue);
}

body.home-page--single .fullpage,
body.home-page--single .fullpage-section {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
}

.fullpage.is-enhanced {
  transform: none;
  transition: none;
  will-change: auto;
}

html.fullpage-enabled {
  overflow: hidden;
}

html.fullpage-enabled body {
  overflow: hidden;
}

html.fullpage-enabled .fullpage {
  position: fixed;
  inset: 0;
  width: 100%;
}

html.fullpage-enabled.scroll-world-video-enabled .fullpage,
html.scroll-world-video-enabled .fullpage {
  background: transparent;
}

html.fullpage-enabled .fullpage-section,
html.fullpage-enabled .screen {
  position: absolute;
  inset: 0;
  min-height: 100dvh;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 360ms ease;
}

html.fullpage-enabled .fullpage-section.is-active,
html.fullpage-enabled .screen.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.fullpage-section,
.screen {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-deep-blue);
}

.screen-art,
.section-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.fullpage-enabled.scroll-world-video-enabled .fullpage-section,
html.fullpage-enabled.scroll-world-video-enabled .screen,
html.scroll-world-video-enabled .fullpage-section,
html.scroll-world-video-enabled .screen {
  background: transparent;
}

html.fullpage-enabled.scroll-world-video-enabled .section-background,
html.fullpage-enabled.scroll-world-video-enabled .screen-art,
html.fullpage-enabled.scroll-world-video-enabled .project-background,
html.scroll-world-video-enabled .section-background,
html.scroll-world-video-enabled .screen-art,
html.scroll-world-video-enabled .project-background {
  opacity: 0;
}

.hero-content,
.home-visual-content,
.about-content,
.technology-content,
.projects-content,
.research-content,
.contact-content,
.module-content,
.screen-content {
  position: relative;
  z-index: 2;
  width: min(
    calc(100% - var(--page-gutter) - var(--page-gutter)),
    var(--content-max)
  );
  margin-inline: auto;
}

.hero-content,
.home-visual-content,
.about-content,
.technology-content,
.projects-content,
.research-content,
.contact-content,
.module-content,
.screen-content,
.news-feature,
.news-content {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease 120ms,
    transform 700ms var(--motion-easing) 80ms;
}

html.fullpage-enabled .fullpage-section > .hero-content,
html.fullpage-enabled .fullpage-section > .home-visual-content,
html.fullpage-enabled .fullpage-section > .about-content,
html.fullpage-enabled .fullpage-section > .technology-content,
html.fullpage-enabled .fullpage-section > .projects-content,
html.fullpage-enabled .fullpage-section > .research-content,
html.fullpage-enabled .fullpage-section > .contact-content,
html.fullpage-enabled .fullpage-section > .module-content,
html.fullpage-enabled .screen > .screen-content,
html.fullpage-enabled .fullpage-section > .news-feature,
html.fullpage-enabled .fullpage-section > .news-content {
  opacity: 0;
  transform: translateY(28px);
}

html.fullpage-enabled .fullpage-section.is-active > .hero-content,
html.fullpage-enabled .fullpage-section.is-active > .home-visual-content,
html.fullpage-enabled .fullpage-section.is-active > .about-content,
html.fullpage-enabled .fullpage-section.is-active > .technology-content,
html.fullpage-enabled .fullpage-section.is-active > .projects-content,
html.fullpage-enabled .fullpage-section.is-active > .research-content,
html.fullpage-enabled .fullpage-section.is-active > .contact-content,
html.fullpage-enabled .fullpage-section.is-active > .module-content,
html.fullpage-enabled .screen.is-active > .screen-content,
html.fullpage-enabled .fullpage-section.is-active > .news-feature,
html.fullpage-enabled .fullpage-section.is-active > .news-content {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */

.screen--hero,
.hero {
  display: grid;
  align-items: end;
  color: var(--color-white);
  background: #9ab3c7;
}

.hero::after,
.screen--hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgb(5 34 57 / 0.56) 0%,
      rgb(8 45 74 / 0.22) 42%,
      transparent 72%
    ),
    linear-gradient(0deg, rgb(5 28 47 / 0.28), transparent 42%);
  pointer-events: none;
}

.hero .section-background {
  object-position: center center;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 30;
  width: 100%;
  background: #fff;
}

.hero-stage {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  background: #fff;
  transition: opacity 220ms ease;
}

.intro-screen.is-video-ready .hero-video {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 48px);
  background: transparent;
  opacity: 1;
  transition: opacity 220ms ease;
}

.intro-screen:not(.is-video-ready) .hero-overlay {
  opacity: 0;
  pointer-events: none;
}

.intro-screen.is-video-ready .hero-overlay,
.intro-screen[data-intro-state="blocked"] .hero-overlay,
.intro-screen[data-intro-state="fallback"] .hero-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero-hint {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: var(--radius-control);
  color: var(--color-deep-blue);
  background: rgb(255 255 255 / 0.88);
  box-shadow: 0 12px 34px rgb(4 31 52 / 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: 0.12em;
}

.hero-controls {
  position: absolute;
  right: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 3vw, 36px);
  display: flex;
  gap: 12px;
}

.hero-audio-toggle,
.hero-skip {
  min-height: 48px;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: var(--radius-control);
  background: rgb(255 255 255 / 0.9);
  color: var(--color-deep-blue);
  box-shadow: 0 14px 34px rgb(4 31 52 / 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-audio-toggle {
  display: grid;
  width: 48px;
  min-width: 48px;
  padding: 0;
  place-items: center;
}

.hero-skip {
  padding: 0 18px;
  letter-spacing: 0.08em;
}

[data-intro-state="fallback"] .hero-video {
  opacity: 0;
  pointer-events: none;
}

.home-visual {
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: #12385b;
}

.site-world-video-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #12385b;
  pointer-events: none;
}

.site-world-video,
.site-world-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-world-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 500ms ease;
}

.site-world-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity 500ms ease;
}

.site-world-video-stage.is-video-ready:not(.is-playing-reverse)
  .site-world-video:not(.site-world-video--reverse) {
  opacity: 1;
}

.site-world-video-stage.is-video-ready.is-playing-reverse
  .site-world-video--reverse {
  opacity: 1;
}

.site-world-video-stage.is-video-ready .site-world-poster {
  opacity: 0;
}

.site-world-video-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgb(4 27 46 / 0.82), rgb(5 43 70 / 0.46), transparent),
    linear-gradient(0deg, rgb(3 22 38 / 0.66), rgb(3 22 38 / 0.18) 55%, transparent);
}

.site-world-progress {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 5vh, 48px);
  left: clamp(18px, 5vw, 64px);
  z-index: 3;
  height: 3px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  overflow: hidden;
}

.site-world-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-accent);
  transform: scaleX(var(--site-world-video-progress, 0));
  transform-origin: 0 50%;
  transition: transform 160ms linear;
}

.home-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgb(4 27 46 / 0.82), rgb(5 43 70 / 0.42), transparent),
    linear-gradient(0deg, rgb(3 22 38 / 0.62), transparent 58%);
  pointer-events: none;
}

.home-visual .section-background {
  object-position: center;
}

.home-visual-content {
  display: grid;
  gap: 20px;
  padding-top: 72px;
}

.home-kicker {
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 0.5);
  border-radius: var(--radius-control);
  color: var(--color-accent);
  background: rgb(6 35 58 / 0.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-visual h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: 1.08;
  text-shadow: 0 3px 22px rgb(3 25 43 / 0.26);
}

.home-position,
.home-description {
  margin: 0;
}

.home-position {
  max-width: 720px;
  color: var(--color-white);
  font-size: clamp(22px, 2.35vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 3px 20px rgb(3 25 43 / 0.2);
}

.home-description {
  max-width: 720px;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.9;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 4px;
  color: var(--color-white);
  background: rgb(6 35 58 / 0.28);
  box-shadow: 0 12px 28px rgb(2 20 35 / 0.12);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.section-link {
  padding: 0 22px;
}

.section-link--primary {
  border-color: rgb(241 244 241 / 0.92);
  color: var(--color-deep-blue);
  background: rgb(241 244 241 / 0.92);
}

.section-link:hover,
.section-link:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: rgb(14 62 94 / 0.82);
  transform: translateY(-1px);
}

.section-link--primary:hover,
.section-link--primary:focus-visible {
  color: var(--color-deep-blue);
  background: var(--color-accent);
}

.home-values {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.6vw, 24px);
  width: min(100%, 820px);
  margin-top: clamp(14px, 2.4vh, 24px);
}

.home-values::before {
  display: none;
}

.home-values span {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding-right: clamp(14px, 1.8vw, 24px);
  color: var(--color-white);
  border-right: 1px solid rgb(255 255 255 / 0.18);
  transition: transform 180ms ease;
}

.home-values span:first-child {
  padding-left: 0;
}

.home-values span:last-child {
  border-right: 0;
}

.home-values svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  color: var(--color-white);
  background: rgb(14 62 94 / 0.76);
  box-shadow: 0 12px 28px rgb(2 20 35 / 0.18);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  will-change: transform;
}

.home-values span:hover,
.home-values span:focus-within {
  transform: translateY(-1px);
}

.home-values strong {
  display: block;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.25;
}

.home-values strong::after {
  display: none;
}

.home-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 18px);
  width: min(100%, 1060px);
  margin-top: clamp(18px, 3.4vh, 34px);
}

.home-overview a {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  min-height: clamp(100px, 12vh, 118px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 4px;
  color: var(--color-white);
  background: rgb(6 35 58 / 0.28);
  box-shadow: 0 12px 28px rgb(2 20 35 / 0.12);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.home-overview a::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgb(255 255 255 / 0.08), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.home-overview a::after {
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: -58%;
  z-index: 0;
  width: 46%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.22),
    transparent
  );
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg) translateX(0);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
}

.home-overview a:hover,
.home-overview a:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: rgb(14 62 94 / 0.82);
  transform: translateY(-1px);
}

.home-overview a:hover::before,
.home-overview a:focus-visible::before {
  opacity: 1;
}

.home-overview a:hover::after,
.home-overview a:focus-visible::after {
  opacity: 1;
  transform: skewX(-18deg) translateX(360%);
}

.home-overview-icon,
.home-overview strong,
.home-overview-arrow {
  position: relative;
  z-index: 1;
}

.home-overview strong {
  display: block;
  margin-bottom: 0;
  color: var(--color-white);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.3;
}

.home-overview-icon {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 50%;
  color: var(--color-white);
  background: rgb(14 62 94 / 0.76);
  box-shadow: 0 14px 32px rgb(2 20 35 / 0.18);
  place-items: center;
  will-change: transform;
}

.home-overview-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-overview-arrow {
  justify-self: end;
  color: rgb(255 255 255 / 0.86);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
  will-change: transform;
}

.home-overview a:hover .home-overview-arrow,
.home-overview a:focus-visible .home-overview-arrow {
  transform: translateX(4px);
}

.hero-content {
  padding-bottom: clamp(72px, 11vh, 128px);
}

.brand {
  width: fit-content;
  margin: 0 0 24px;
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 0.62);
  border-radius: var(--radius-control);
  color: var(--color-deep-blue);
  background: rgb(255 255 255 / 0.82);
  box-shadow: 0 12px 34px rgb(4 31 52 / 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.hero-promises {
  display: grid;
  gap: clamp(8px, 1.3vh, 18px);
  max-width: 770px;
  margin: 0;
  font-size: clamp(36px, 4vw, 70px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0.18em;
  text-shadow: 0 3px 22px rgb(3 25 43 / 0.25);
}

.hero-promises span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-promises span:nth-child(1) {
  color: var(--color-white);
}

.hero-promises span:nth-child(2) {
  margin-left: clamp(26px, 5vw, 86px);
  color: var(--color-deep-blue);
  text-shadow: 0 1px 12px rgb(255 255 255 / 0.18);
}

.hero-promises span:nth-child(3) {
  margin-left: clamp(8px, 2vw, 34px);
  color: var(--color-white);
}

/* About */

.screen--about,
.about {
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: #174b74;
}

.about::after,
.screen--about::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgb(9 45 73 / 0.9) 0%,
      rgb(11 55 88 / 0.78) 45%,
      rgb(14 67 106 / 0.62) 100%
    );
  pointer-events: none;
}

.about .section-background {
  object-position: center;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: repeat(5, auto) 1fr;
  column-gap: clamp(64px, 7vw, 112px);
  align-items: start;
  padding-block: clamp(72px, 9vh, 112px);
}

.about-kicker {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.about-label {
  margin: 0 0 24px;
  font-size: clamp(46px, 4.2vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-content > p:not(.about-kicker):not(.about-label):not([data-about-status]) {
  max-width: 520px;
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.95;
}

.about-content > [data-about-notice],
.about-content > .section-link {
  justify-self: start;
  min-width: 132px;
  margin-top: 34px;
  padding: 10px 22px;
  border: 1px solid rgb(255 255 255 / 0.6);
  border-radius: var(--radius-control);
  color: var(--color-white);
  background: rgb(10 52 84 / 0.18);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.08em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.about-content > [data-about-notice]:hover,
.about-content > [data-about-notice]:focus-visible,
.about-content > .section-link:hover,
.about-content > .section-link:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-deep-blue);
  background: var(--color-accent);
  transform: translateY(-2px);
}

.about-links {
  grid-column: 2;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 24px);
  align-self: center;
}

.about-links a {
  position: relative;
  display: grid;
  min-height: clamp(260px, 34vh, 372px);
  align-content: start;
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: var(--radius-card);
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgb(18 82 126 / 0.52), rgb(5 37 63 / 0.66));
  box-shadow: 0 22px 58px rgb(1 19 34 / 0.2);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 260ms var(--motion-easing),
    box-shadow 260ms ease;
}

.about-links a::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 24% 20%, rgb(82 169 244 / 0.18), transparent 36%),
    linear-gradient(135deg, rgb(255 255 255 / 0.08), transparent 58%);
  opacity: 0.72;
  pointer-events: none;
}

.about-links a:hover,
.about-links a:focus-visible {
  border-color: var(--color-accent);
  background:
    linear-gradient(145deg, rgb(25 96 143 / 0.62), rgb(7 44 72 / 0.76));
  box-shadow: 0 28px 68px rgb(1 19 34 / 0.34);
  transform: translateY(-7px);
}

.about-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(112px, 9vw, 152px);
  height: clamp(112px, 9vw, 152px);
  margin-bottom: clamp(24px, 2.3vw, 34px);
  border-radius: 50%;
  color: var(--color-white);
  background:
    radial-gradient(circle at 35% 28%, rgb(92 186 255 / 0.92), transparent 34%),
    linear-gradient(145deg, rgb(67 160 242), rgb(7 105 190));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.28),
    0 18px 40px rgb(0 38 84 / 0.28);
  place-items: center;
  will-change: transform;
}

.about-card-icon svg {
  width: 56%;
  height: 56%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.8;
}

.about-links strong,
.about-links span:not(.about-card-icon) {
  position: relative;
  z-index: 1;
  display: block;
}

.about-links strong {
  color: var(--color-white);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 780;
  line-height: 1.35;
}

.about-links strong::after {
  display: block;
  width: 38px;
  height: 3px;
  margin: 14px 0 18px;
  background: var(--color-accent);
  content: "";
}

.about-links span:not(.about-card-icon) {
  max-width: 340px;
  color: rgb(240 247 251 / 0.76);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.8;
}

.about-links small {
  position: absolute;
  right: clamp(22px, 2vw, 34px);
  bottom: clamp(22px, 2vw, 34px);
  z-index: 1;
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(28px, 2.1vw, 36px);
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
}

.about-links a:hover small,
.about-links a:focus-visible small {
  transform: translateX(5px);
}

/* Technology */

.screen--technology,
.technology {
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: var(--color-blue-black);
}

.technology::after,
.screen--technology::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgb(5 31 53 / 0.78), rgb(7 39 65 / 0.9)),
    linear-gradient(90deg, rgb(8 51 82 / 0.34), transparent);
  pointer-events: none;
}

.technology .section-background {
  object-position: center;
}

.technology-content {
  padding-block: clamp(72px, 9vh, 112px);
}

.technology-content [role="tablist"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  margin-bottom: clamp(34px, 5vh, 56px);
  border-bottom: 0;
}

[role="tab"] {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 28px;
  min-height: 70px;
  align-items: center;
  padding: 0 18px 0 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  color: rgb(240 247 251 / 0.76);
  background: rgb(255 255 255 / 0.04);
  box-shadow: 0 14px 34px rgb(1 18 32 / 0.08);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

[role="tab"]:hover {
  border-color: rgb(255 255 255 / 0.18);
  color: var(--color-white);
  background: rgb(255 255 255 / 0.09);
  transform: translateY(-1px);
}

[role="tab"][aria-selected="true"] {
  border-color: var(--color-accent);
  color: var(--color-deep-blue);
  background: var(--color-accent);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.12),
    0 18px 42px rgb(1 18 32 / 0.18);
}

.technology-tab-index {
  display: grid;
  align-self: stretch;
  place-items: center;
  color: rgb(240 247 251 / 0.82);
  background: rgb(255 255 255 / 0.04);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 850;
  letter-spacing: 0;
}

[role="tab"][aria-selected="true"] .technology-tab-index {
  color: var(--color-deep-blue);
  background: rgb(8 38 64 / 0.08);
}

.technology-tab-title {
  min-width: 0;
  padding-inline: 20px;
}

.technology-tab-arrow {
  color: rgb(240 247 251 / 0.66);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

[role="tab"][aria-selected="true"] .technology-tab-arrow {
  color: var(--color-deep-blue);
}

[role="tabpanel"][hidden] {
  display: none !important;
}

.technology-content [role="tabpanel"] {
  min-height: 340px;
}

.technology-card-panel {
  display: grid;
  grid-template-columns: 1fr;
}

.technology-content [role="tabpanel"] > p,
.summary-panel {
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgb(22 82 121 / 0.72), rgb(7 39 65 / 0.78));
  box-shadow: 0 22px 50px rgb(1 18 32 / 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.technology-card-panel article {
  position: relative;
  contain: layout paint;
  min-height: clamp(300px, 36vh, 420px);
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-card);
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgb(22 82 121 / 0.72), rgb(7 39 65 / 0.78));
  box-shadow: 0 18px 44px rgb(1 18 32 / 0.18);
}

.technology-card-panel article::before,
.technology-card-panel article::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.technology-card-panel article::before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgb(7 39 65 / 0.96) 0%,
      rgb(7 39 65 / 0.88) 36%,
      rgb(7 39 65 / 0.64) 55%,
      rgb(7 39 65 / 0.32) 76%,
      rgb(7 39 65 / 0.12) 100%
    ),
    var(--technology-panel-image);
  background-position: center right;
  background-size: cover;
}

.technology-card-panel article::after {
  z-index: 1;
  background: linear-gradient(0deg, rgb(3 22 38 / 0.18), transparent 46%);
}

.technology-panel-copy {
  position: relative;
  z-index: 2;
  max-width: min(560px, 62%);
}

.technology-card-panel h2,
.technology-card-panel h3 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 1.25;
}

.summary-panel h2,
.summary-panel h3 {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.45;
}

.technology-card-panel p,
.technology-content [role="tabpanel"] > p,
.summary-panel p {
  color: rgb(240 247 251 / 0.76);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.9;
}

.technology-content [role="tabpanel"] > p,
.summary-panel {
  min-height: 240px;
  margin: 0;
  padding: 36px;
}

.technology-card-panel a,
.summary-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--color-deep-blue);
  background: var(--color-accent);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.technology-panel-rule {
  display: block;
  width: 46px;
  height: 4px;
  margin: 24px 0 24px;
  background: var(--color-accent);
}

.panel-in {
  animation: panel-in 520ms var(--motion-easing) both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Projects */

.screen--projects,
.projects {
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: #0a2d49;
}

.projects::after,
.screen--projects::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgb(5 31 52 / 0.84), rgb(5 35 58 / 0.72)),
    radial-gradient(circle at 50% 50%, transparent 0, rgb(5 30 50 / 0.25) 70%);
  pointer-events: none;
}

.project-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  object-fit: cover;
}

.projects-content {
  padding-block: clamp(62px, 8vh, 96px);
}

.projects-content > h1,
.projects-content > h2 {
  margin: 0 0 clamp(30px, 4vh, 48px);
  color: var(--color-white);
  font-size: clamp(40px, 4vw, 66px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-intro {
  max-width: 720px;
  margin: -24px 0 28px;
  color: rgb(255 255 255 / 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.projects-content [data-carousel] {
  display: grid;
  grid-template-columns:
    50px minmax(150px, 0.18fr) minmax(520px, 0.6fr)
    minmax(150px, 0.18fr) 50px;
  gap: clamp(12px, 1.3vw, 20px);
  align-items: center;
}

.project-current {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: var(--radius-card);
  background: #56738a;
  box-shadow: 0 30px 70px rgb(1 18 31 / 0.34);
}

.project-current-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-current-link:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -3px;
}

.project-current img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}

.project-current figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 58px 28px 24px;
  color: var(--color-white);
  background: linear-gradient(0deg, rgb(3 25 43 / 0.94), transparent);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  will-change: transform, opacity;
}

.project-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-card);
  opacity: 0.42;
  object-fit: cover;
  transform: scale(0.92);
  filter: saturate(0.72);
  will-change: transform, opacity;
}

.projects-content [data-carousel-prev],
.projects-content [data-carousel-next] {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.54);
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  background: rgb(5 38 63 / 0.42);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.projects-content [data-carousel-prev]:hover,
.projects-content [data-carousel-prev]:focus-visible,
.projects-content [data-carousel-next]:hover,
.projects-content [data-carousel-next]:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-deep-blue);
  background: var(--color-accent);
  transform: translateY(-2px);
}

.projects-content svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.project-case-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1040px);
  margin: clamp(22px, 3vh, 34px) auto 0;
}

.project-case-nav button {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 8px;
  color: rgb(255 255 255 / 0.82);
  background: rgb(9 50 80 / 0.52);
  box-shadow: 0 14px 34px rgb(1 18 32 / 0.12);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.project-case-nav button span {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-weight: 800;
}

.project-case-nav button:hover,
.project-case-nav button:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: rgb(18 76 112 / 0.78);
  transform: translateY(-1px);
}

.project-case-nav button.is-active,
.project-case-nav button[aria-pressed="true"] {
  border-color: var(--color-accent);
  color: var(--color-deep-blue);
  background: var(--color-accent);
}

.project-case-nav button.is-active span,
.project-case-nav button[aria-pressed="true"] span {
  color: currentColor;
}

/* Main modules */

.module-section {
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: #0a2d49;
}

.module-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(110deg, rgb(5 31 52 / 0.88), rgb(6 43 69 / 0.68) 56%, rgb(10 74 82 / 0.48)),
    radial-gradient(circle at 76% 22%, rgb(216 182 106 / 0.16), transparent 34%);
  pointer-events: none;
}

.research::after {
  background:
    linear-gradient(110deg, rgb(7 42 70 / 0.92), rgb(9 75 123 / 0.8) 52%, rgb(4 38 70 / 0.7)),
    radial-gradient(circle at 24% 28%, rgb(47 127 163 / 0.32), transparent 36%),
    radial-gradient(circle at 78% 22%, rgb(216 182 106 / 0.1), transparent 34%);
}

.consulting::after {
  background:
    linear-gradient(110deg, rgb(6 35 58 / 0.9), rgb(9 58 74 / 0.74) 56%, rgb(38 88 76 / 0.48)),
    radial-gradient(circle at 80% 20%, rgb(216 182 106 / 0.16), transparent 34%);
}

.contact-section::after {
  background:
    linear-gradient(110deg, rgb(4 27 46 / 0.92), rgb(7 42 62 / 0.78) 58%, rgb(12 68 76 / 0.5)),
    radial-gradient(circle at 80% 24%, rgb(216 182 106 / 0.18), transparent 36%);
}

.module-content {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(72px, 9vh, 112px);
}

.module-copy {
  min-width: 0;
}

.module-kicker {
  margin: 0 0 10px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.module-label {
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.module-copy > p:not(.module-kicker):not(.module-label) {
  max-width: 540px;
  margin: 0;
  color: rgb(255 255 255 / 0.8);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.95;
}

.module-copy > .section-link {
  margin-top: 34px;
}

.module-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
}

.module-links a {
  display: grid;
  min-height: clamp(150px, 18vh, 210px);
  align-content: end;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-card);
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgb(22 82 121 / 0.58), rgb(7 39 65 / 0.66));
  box-shadow: 0 22px 50px rgb(1 18 32 / 0.2);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms var(--motion-easing);
}

.module-links a:hover,
.module-links a:focus-visible {
  border-color: var(--color-accent);
  background:
    linear-gradient(145deg, rgb(35 104 144 / 0.72), rgb(10 52 84 / 0.78));
  transform: translateY(-4px);
}

.module-links strong,
.module-links span {
  display: block;
}

.module-links strong {
  margin-bottom: 9px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.35;
}

.module-links span {
  color: rgb(240 247 251 / 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.primary-screen-section--wave > .about-content,
.primary-screen-section--wave > .technology-content,
.primary-screen-section--wave > .projects-content,
.primary-screen-section--wave > .research-content,
.primary-screen-section--wave > .consulting-content,
.primary-screen-section--wave > .contact-content,
.primary-screen-section--wave > .module-content {
  padding-bottom: clamp(142px, 17vh, 184px);
}

.research {
  align-items: stretch;
  background: #0a2d49;
}

.research .section-background {
  object-position: center;
}

.research-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.48fr) minmax(0, 1fr);
  gap: clamp(52px, 6.8vw, 94px);
  align-items: center;
  padding-top: clamp(106px, 12vh, 136px);
  padding-bottom: clamp(142px, 17vh, 184px);
}

.research-copy {
  min-width: 0;
}

.research-kicker {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.34em;
}

.research-label {
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: clamp(56px, 5.6vw, 84px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: 0;
}

.research-label::after {
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 26px;
  background: var(--color-accent);
  content: "";
}

.research-intro {
  max-width: 540px;
  margin: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.95;
}

.research-cta {
  gap: 14px;
  margin-top: 34px;
}

.research-cta span {
  font-size: 24px;
  line-height: 1;
}

.research-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  margin-top: clamp(94px, 13vh, 132px);
}

.research-proof-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.research-proof-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-accent);
}

.research-proof-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.research-proof-item strong,
.research-proof-item small {
  display: block;
}

.research-proof-item strong {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.3;
}

.research-proof-item small {
  margin-top: 2px;
  color: rgb(240 247 251 / 0.66);
  font-size: 11px;
  line-height: 1.35;
}

.research-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
}

.research-card {
  position: relative;
  display: grid;
  min-height: clamp(222px, 28vh, 260px);
  align-content: start;
  padding: clamp(26px, 2.3vw, 34px);
  padding-bottom: clamp(76px, 7vh, 88px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-card);
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgb(27 91 137 / 0.6), rgb(6 48 87 / 0.72));
  box-shadow: 0 24px 58px rgb(1 18 32 / 0.18);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms var(--motion-easing);
}

.research-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgb(255 255 255 / 0.08), transparent 58%),
    radial-gradient(circle at 18% 18%, rgb(47 127 163 / 0.32), transparent 32%);
  opacity: 0.78;
  pointer-events: none;
}

.research-card:hover,
.research-card:focus-visible {
  border-color: rgb(216 182 106 / 0.64);
  background:
    linear-gradient(145deg, rgb(36 107 153 / 0.72), rgb(9 56 96 / 0.82));
  transform: translateY(-4px);
}

.research-card-icon,
.research-card strong,
.research-card span,
.research-card-arrow {
  position: relative;
  z-index: 1;
}

.research-card-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: clamp(28px, 4.2vh, 42px);
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  background: rgb(55 132 196 / 0.68);
  will-change: transform;
}

.research-card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.research-card-icon text {
  fill: currentColor;
  stroke: none;
  font-family: inherit;
}

.research-card strong {
  display: block;
  color: var(--color-white);
  font-size: clamp(22px, 1.9vw, 29px);
  font-weight: 820;
  line-height: 1.38;
}

.research-card span:not(.research-card-icon) {
  display: block;
  margin-top: 8px;
  color: rgb(240 247 251 / 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.research-card-arrow {
  display: grid;
  position: absolute;
  bottom: clamp(26px, 2.3vw, 34px);
  left: clamp(26px, 2.3vw, 34px);
  width: 42px;
  height: 42px;
  margin-top: 0;
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  background: rgb(55 132 196 / 0.64);
  font-size: 25px;
  font-style: normal;
  line-height: 1;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.research-card:hover .research-card-arrow,
.research-card:focus-visible .research-card-arrow {
  border-color: var(--color-accent);
  color: var(--color-deep-blue);
  background: var(--color-accent);
  transform: translateX(4px);
}

.primary-page-wave {
  position: absolute;
  right: -6vw;
  bottom: -28px;
  left: -6vw;
  z-index: 2;
  display: grid;
  min-height: 178px;
  align-content: start;
  justify-items: center;
  padding: 54px max(24px, 8vw) 30px;
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
  color: var(--color-deep-blue);
  background: rgb(241 244 241 / 0.98);
  box-shadow: 0 -12px 34px rgb(2 20 35 / 0.1);
  text-align: center;
}

.primary-page-wave::before {
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 10px;
  background: var(--color-bright-blue);
  content: "";
}

.primary-page-wave strong {
  display: block;
  font-size: 20px;
  font-weight: 820;
  line-height: 1.35;
}

.primary-page-wave p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgb(18 56 91 / 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.consulting-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.48fr) minmax(0, 1fr);
  gap: clamp(56px, 6vw, 92px);
  align-items: start;
  width: min(
    calc(100% - var(--page-gutter) - var(--page-gutter)),
    var(--content-max)
  );
  margin-inline: auto;
  padding-top: clamp(96px, 11vh, 128px);
  padding-bottom: clamp(56px, 7vh, 88px);
}

.consulting-copy {
  min-width: 0;
  padding-top: clamp(168px, 19vh, 220px);
}

.consulting-kicker {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.34em;
}

.consulting-label {
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: clamp(56px, 5.2vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
}

.consulting-label::after {
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 28px;
  background: var(--color-accent);
  content: "";
}

.consulting-copy > p:not(.consulting-kicker):not(.consulting-label) {
  max-width: 520px;
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.95;
}

.consulting-copy > .section-link {
  gap: 12px;
  margin-top: 34px;
}

.consulting-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.consulting-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 28px;
  gap: clamp(16px, 1.5vw, 24px);
  align-items: center;
  min-height: clamp(118px, 13vh, 152px);
  padding: clamp(18px, 1.8vw, 26px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-card);
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgb(22 82 121 / 0.6), rgb(7 39 65 / 0.7));
  box-shadow: 0 22px 50px rgb(1 18 32 / 0.18);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms var(--motion-easing);
}

.consulting-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgb(255 255 255 / 0.07), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.consulting-card:hover,
.consulting-card:focus-visible {
  border-color: rgb(216 182 106 / 0.64);
  background:
    linear-gradient(145deg, rgb(35 104 144 / 0.72), rgb(10 52 84 / 0.78));
  transform: translateY(-4px);
}

.consulting-card:hover::before,
.consulting-card:focus-visible::before {
  opacity: 1;
}

.consulting-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--color-white);
  background: rgb(55 132 196 / 0.72);
  place-items: center;
  will-change: transform;
}

.consulting-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.consulting-card-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.consulting-card-copy strong,
.consulting-card-copy span {
  display: block;
}

.consulting-card-copy strong {
  color: var(--color-white);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 780;
  line-height: 1.45;
}

.consulting-card-copy span {
  margin-top: 18px;
  color: rgb(240 247 251 / 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.consulting-card-arrow {
  position: relative;
  z-index: 1;
  color: rgb(255 255 255 / 0.9);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
  will-change: transform;
}

.consulting-card:hover .consulting-card-arrow,
.consulting-card:focus-visible .consulting-card-arrow {
  transform: translateX(4px);
}

.contact-section {
  align-items: stretch;
}

.contact-section .section-background {
  object-position: center;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.94fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
  padding-top: clamp(104px, 12vh, 140px);
  padding-bottom: clamp(142px, 17vh, 184px);
}

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

.contact-kicker {
  margin: 0 0 24px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.32em;
}

.contact-kicker::after {
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 22px;
  background: var(--color-accent);
  content: "";
}

.contact-label {
  margin: 0 0 clamp(28px, 4.2vh, 44px);
  color: var(--color-white);
  font-size: clamp(56px, 5.8vw, 88px);
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgb(1 18 32 / 0.22);
}

.contact-intro {
  max-width: 470px;
  margin: 0;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 520;
  line-height: 1.9;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: clamp(38px, 6.5vh, 70px);
  color: rgb(240 247 251 / 0.72);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 620;
}

.contact-topics span + span::before {
  display: inline-block;
  margin-right: 26px;
  color: rgb(255 255 255 / 0.32);
  content: "·";
}

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

.contact-methods {
  display: grid;
}

.contact-method {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 52px;
  gap: clamp(22px, 2.7vw, 36px);
  align-items: center;
  min-height: clamp(132px, 18vh, 178px);
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  color: var(--color-white);
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.contact-method:first-child {
  border-top: 0;
}

.contact-method:hover,
.contact-method:focus-visible {
  color: var(--color-accent);
  transform: translateX(4px);
}

.contact-method-index {
  color: var(--color-accent);
  font-size: clamp(46px, 4vw, 70px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  will-change: transform;
}

.contact-method-copy {
  display: block;
  min-width: 0;
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgb(255 255 255 / 0.2);
}

.contact-method-copy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: clamp(19px, 1.55vw, 27px);
  font-weight: 780;
  line-height: 1.2;
}

.contact-method-copy span {
  display: block;
  color: var(--color-white);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.contact-method-arrow {
  justify-self: end;
  color: var(--color-accent);
  font-size: clamp(38px, 3vw, 52px);
  font-weight: 300;
  line-height: 1;
  transition: transform 180ms ease;
  will-change: transform;
}

.contact-method:hover .contact-method-arrow,
.contact-method:focus-visible .contact-method-arrow {
  transform: translate(4px, -4px);
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: clamp(22px, 4vw, 56px);
  margin-top: clamp(30px, 4.2vh, 46px);
}

.contact-meta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  color: rgb(255 255 255 / 0.88);
  text-decoration: none;
}

.contact-meta + .contact-meta {
  padding-left: clamp(18px, 2.4vw, 36px);
  border-left: 1px solid rgb(255 255 255 / 0.22);
}

.contact-meta-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-bright-blue);
}

.contact-meta-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.contact-meta strong {
  margin-bottom: 9px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.35;
}

.contact-meta span span {
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: clamp(34px, 4.8vh, 52px);
}

.contact-actions .section-link {
  min-width: 210px;
  justify-content: center;
}

.contact-news-link {
  border-color: rgb(255 255 255 / 0.6);
  color: var(--color-white);
  background: rgb(5 30 52 / 0.16);
}

.contact-news-link:hover,
.contact-news-link:focus-visible {
  color: var(--color-deep-blue);
  background: var(--color-white);
}

.phone-sheet[hidden] {
  display: none;
}

.phone-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--color-deep-blue);
}

.phone-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(2 18 32 / 0.62);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: opacity;
}

.phone-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 0.64);
  border-radius: 12px;
  background: rgb(241 244 241 / 0.96);
  box-shadow: 0 28px 70px rgb(1 18 32 / 0.36);
  will-change: transform, opacity;
}

.phone-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.phone-sheet__header h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.phone-sheet__close {
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgb(10 52 84 / 0.18);
  border-radius: 50%;
  place-items: center;
  color: var(--color-deep-blue);
  background: rgb(255 255 255 / 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.phone-sheet__links {
  display: grid;
  gap: 10px;
}

.phone-sheet__links a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgb(10 52 84 / 0.16);
  border-radius: 8px;
  color: var(--color-deep-blue);
  background: var(--color-white);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  will-change: transform, opacity;
}

.phone-sheet__links a:hover,
.phone-sheet__links a:focus-visible {
  border-color: var(--color-accent);
  background: rgb(255 255 255 / 0.88);
  transform: translateY(-1px);
}

.phone-sheet__links strong,
.phone-sheet__links span {
  display: block;
}

.phone-sheet__links strong {
  font-size: 16px;
}

.phone-sheet__links span {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

html.phone-sheet-open,
html.phone-sheet-open body {
  overflow: hidden;
}

/* News */

.screen--news,
.news {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: clamp(52px, 6vw, 96px);
  align-items: center;
  min-height: 100dvh;
  padding-block: clamp(72px, 9vh, 112px);
  padding-inline:
    max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  color: var(--color-deep-blue);
  background: var(--color-surface);
}

.news-feature {
  position: relative;
  min-height: clamp(500px, 67vh, 700px);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #738b9d;
  box-shadow: 0 26px 64px rgb(18 56 91 / 0.16);
}

.news-feature::after {
  position: absolute;
  inset: 35% 0 0;
  content: "";
  background: linear-gradient(0deg, rgb(4 29 49 / 0.92), transparent);
  pointer-events: none;
}

.news-feature > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.news-feature > h2 {
  position: absolute;
  right: clamp(24px, 3vw, 42px);
  bottom: clamp(24px, 3vw, 42px);
  left: clamp(24px, 3vw, 42px);
  z-index: 1;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(26px, 2.35vw, 42px);
  line-height: 1.45;
  text-shadow: 0 2px 14px rgb(3 25 43 / 0.3);
}

.news-content {
  min-width: 0;
}

.news-content [role="tablist"] {
  display: flex;
  gap: 34px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cbd6de;
}

.news-content [role="tab"] {
  min-height: auto;
  padding: 12px 2px 14px;
  border-bottom: 3px solid transparent;
  color: var(--color-muted);
  background: transparent;
  font-size: 18px;
  font-weight: 750;
}

.news-content [role="tab"]:hover {
  color: var(--color-deep-blue);
  background: transparent;
}

.news-content [role="tab"][aria-selected="true"] {
  border-color: var(--color-accent);
  color: var(--color-deep-blue);
  background: linear-gradient(0deg, rgb(244 198 66 / 0.22), transparent 72%);
}

.news-content [role="tabpanel"] {
  min-height: 360px;
}

.news-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-content li {
  min-height: 72px;
  border-bottom: 1px solid #d7e0e6;
}

.news-content li:first-child {
  border-top: 1px solid #d7e0e6;
}

.news-content li a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  color: inherit;
  text-decoration: none;
}

.news-content li span {
  overflow: hidden;
  color: var(--color-deep-blue);
  font-size: 16px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-content time,
.news-content small {
  color: var(--color-muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.news-content li a:hover span,
.news-content li a:focus-visible span {
  color: var(--color-bright-blue);
}

.contact-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-summary a {
  display: grid;
  min-height: 132px;
  align-content: end;
  padding: 18px;
  border: 1px solid #d5e0e7;
  border-radius: var(--radius-card);
  color: var(--color-deep-blue);
  background: #e9eff3;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-summary a:hover,
.contact-summary a:focus-visible {
  border-color: var(--color-bright-blue);
  background: var(--color-white);
  transform: translateY(-2px);
}

.contact-summary strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.contact-summary span {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
  white-space: normal;
}

.news-content [role="tabpanel"] > p {
  display: grid;
  min-height: 260px;
  margin: 0;
  border: 1px solid #d5e0e7;
  border-radius: var(--radius-card);
  place-items: center;
  color: var(--color-muted);
  background: #e9eff3;
  text-align: center;
}

.news :focus-visible {
  outline: 3px solid var(--color-deep-blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--color-accent);
}

/* Site menu */

.site-menu-toggle {
  position: fixed;
  top: auto;
  right: clamp(18px, 2.5vw, 34px);
  bottom: clamp(18px, 2.5vw, 34px);
  z-index: 24;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.58);
  border-radius: 50%;
  background: rgb(6 35 58 / 0.48);
  box-shadow: 0 16px 36px rgb(2 23 39 / 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  border-color: var(--color-accent);
  background: rgb(8 45 74 / 0.78);
  transform: translateY(-2px);
}

.site-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgb(2 16 28 / 0.46);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  will-change: opacity;
}

.site-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 26;
  display: flex;
  width: min(420px, 100vw);
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgb(7 39 65 / 0.96), rgb(3 23 39 / 0.98));
  box-shadow: -28px 0 70px rgb(1 13 23 / 0.32);
  flex-direction: column;
  will-change: transform, opacity;
}

.site-menu-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.site-menu-header p {
  margin: 0 0 3px;
  color: rgb(255 255 255 / 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-menu-header strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.site-menu-header button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 50%;
  place-items: center;
  color: var(--color-white);
  background: rgb(255 255 255 / 0.06);
  font-size: 26px;
  line-height: 1;
}

.site-menu-nav {
  min-height: 0;
  padding: 16px 18px 26px;
  overflow-y: auto;
}

.site-menu-home,
.site-menu-group {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.045);
  will-change: transform, opacity;
}

.site-menu-home {
  display: block;
  margin-bottom: 10px;
  padding: 13px 15px;
  color: var(--color-white);
  font-weight: 750;
  text-decoration: none;
}

.site-menu-group {
  margin: 0 0 10px;
  overflow: hidden;
}

.site-menu-group summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.site-menu-group summary::-webkit-details-marker {
  display: none;
}

.site-menu-group summary::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.site-menu-group[open] summary::after {
  transform: rotate(225deg);
}

.site-menu-group ul {
  padding: 0 10px 12px;
  margin: 0;
  list-style: none;
}

.site-menu-group li + li {
  margin-top: 4px;
}

.site-menu-group a {
  display: block;
  padding: 9px 11px;
  border-radius: 6px;
  color: rgb(238 247 252 / 0.76);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-menu-home:hover,
.site-menu-home:focus-visible,
.site-menu-group a:hover,
.site-menu-group a:focus-visible {
  color: var(--color-white);
  background: rgb(244 198 66 / 0.18);
}

html.intro-active .site-menu-toggle,
html.intro-active .site-menu,
html.intro-active .site-menu-backdrop {
  visibility: hidden;
}

/* Fullpage navigation */

.fullpage-nav,
.fullpage-navigation {
  position: fixed;
  top: 50%;
  right: clamp(18px, 2vw, 34px);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  transform: translateY(-50%);
}

html.fullpage-enabled .fullpage-nav,
html.fullpage-enabled .fullpage-navigation {
  display: flex;
}

html.intro-active body {
  overflow: hidden;
}

.fullpage-nav button,
.fullpage-navigation button {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-control);
  place-items: center;
  background: transparent;
}

.fullpage-nav button::before,
.fullpage-navigation button::before {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-control);
  background: rgb(255 255 255 / 0.62);
  box-shadow: 0 0 0 1px rgb(4 30 50 / 0.16);
  content: "";
  transition:
    width 220ms var(--motion-easing),
    background 180ms ease,
    transform 180ms ease;
}

.fullpage-nav button:hover::before,
.fullpage-navigation button:hover::before {
  transform: scale(1.18);
}

.fullpage-nav .is-active::before,
.fullpage-navigation .is-active::before,
.fullpage-nav button[aria-current="true"]::before,
.fullpage-navigation button[aria-current="true"]::before {
  width: 28px;
  background: var(--color-accent);
}

.fullpage-nav[data-theme="dark"] button::before,
.fullpage-navigation[data-theme="dark"] button::before {
  background: rgb(18 56 91 / 0.54);
  box-shadow: none;
}

.fullpage-nav[data-theme="dark"] .is-active::before,
.fullpage-navigation[data-theme="dark"] .is-active::before,
.fullpage-nav[data-theme="dark"] button[aria-current="true"]::before,
.fullpage-navigation[data-theme="dark"] button[aria-current="true"]::before {
  background: var(--color-accent);
}

.fullpage-nav[data-theme="dark"] button:focus-visible,
.fullpage-navigation[data-theme="dark"] button:focus-visible {
  outline: 3px solid var(--color-deep-blue);
  outline-offset: 0;
  box-shadow: 0 0 0 6px var(--color-accent);
}

.is-broken {
  color: transparent;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.14), rgb(255 255 255 / 0.04)),
    #6f889b;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.18);
}

/* Detail pages */

.detail-page {
  color: var(--color-deep-blue);
  background: #edf3f7;
}

.primary-page--screen {
  background: var(--color-deep-blue);
}

.primary-screen-main {
  min-height: 100dvh;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 18;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding-inline:
    max(22px, calc((100vw - var(--content-max)) / 2));
  border-bottom: 1px solid rgb(18 56 91 / 0.12);
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 10px 30px rgb(18 56 91 / 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header--home {
  border-bottom-color: rgb(255 255 255 / 0.14);
  background: rgb(6 30 49 / 0.72);
  box-shadow: 0 12px 30px rgb(3 25 43 / 0.16);
}

.site-header--home .brand-mark,
.site-header--home .nav-home,
.site-header--home .nav-trigger,
.site-header--home .nav-link {
  color: var(--color-white);
}

.site-header--home .brand-name-en small {
  color: rgb(255 255 255 / 0.68);
}

.site-header--home .brand-divider {
  opacity: 0.72;
}

.site-header--home .nav-group.is-current > .nav-trigger,
.site-header--home .nav-trigger:hover,
.site-header--home .nav-trigger:focus-visible,
.site-header--home .nav-home:hover,
.site-header--home .nav-home:focus-visible,
.site-header--home .nav-link:hover,
.site-header--home .nav-link:focus-visible {
  color: var(--color-accent);
}

html.intro-active .site-header--home {
  visibility: hidden;
}

.brand-mark {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  color: var(--color-deep-blue);
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    system-ui,
    sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.brand-symbol {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  min-width: 0;
  padding: 0;
  place-items: center;
  color: currentColor;
  background: transparent;
  line-height: 1;
}

.brand-icon {
  display: block;
  width: 56px;
  height: 56px;
  background: transparent;
  object-fit: contain;
  overflow: visible;
}

.brand-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 34px;
  background: currentColor;
  opacity: 0.42;
}

.brand-name-cn {
  display: block;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-name-en {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

.brand-name-en strong,
.brand-name-en small {
  display: block;
}

.brand-name-en strong {
  font-size: clamp(15px, 1.28vw, 18px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-name-en small {
  color: var(--color-muted);
  font-size: clamp(12px, 1.12vw, 16px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-home,
.nav-trigger,
.nav-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  color: var(--color-deep-blue);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-group {
  position: relative;
}

.nav-trigger {
  border-radius: 8px;
}

.nav-group.is-current > .nav-trigger,
.nav-link.is-current,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-home:hover,
.nav-home:focus-visible,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-bright-blue);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 3;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgb(18 56 91 / 0.12);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 24px 54px rgb(18 56 91 / 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-group:hover .submenu,
.nav-group.is-open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--color-deep-blue);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--color-bright-blue);
  background: #eef5f9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border-radius: 8px;
  background: #eef5f9;
}

.menu-toggle span:not(.visually-hidden) {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-deep-blue);
}

.detail-hero {
  position: relative;
  display: grid;
  min-height: 420px;
  align-items: end;
  padding:
    clamp(82px, 11vw, 148px)
    max(24px, calc((100vw - var(--content-max)) / 2))
    clamp(48px, 7vw, 86px);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-deep-blue);
  isolation: isolate;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgb(5 31 52 / 0.86), rgb(5 31 52 / 0.34)),
    linear-gradient(0deg, rgb(5 31 52 / 0.62), transparent 58%);
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}

.detail-hero > div {
  width: min(720px, 100%);
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.12;
}

.detail-hero p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(15px, 1.25vw, 18px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  width: min(calc(100% - 44px), var(--content-max));
  margin: 34px auto 54px;
}

.detail-content,
.aside-card {
  border: 1px solid rgb(18 56 91 / 0.1);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 44px rgb(18 56 91 / 0.08);
  will-change: transform, opacity;
}

.detail-content {
  padding: clamp(24px, 3vw, 42px);
}

.detail-content section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #d9e4eb;
}

.detail-content h2,
.aside-card h2 {
  margin: 0 0 14px;
  color: var(--color-deep-blue);
  font-size: 22px;
  line-height: 1.35;
}

.detail-content p,
.detail-content li,
.aside-card p {
  color: #526b7e;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding: 11px 12px;
  border-radius: 8px;
  background: #eef5f9;
}

.detail-aside {
  position: sticky;
  top: 94px;
  align-self: start;
}

.aside-card {
  padding: 20px;
}

.aside-card + .aside-card {
  margin-top: 18px;
}

.aside-card nav {
  display: grid;
  gap: 6px;
}

.aside-card nav a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--color-deep-blue);
  text-decoration: none;
}

.aside-card nav a:hover,
.aside-card nav a:focus-visible,
.aside-card nav a.is-active {
  color: var(--color-bright-blue);
  background: #eef5f9;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: var(--color-deep-blue);
  background: var(--color-accent);
}

@media (max-width: 900px) {
  .fullpage,
  .fullpage.is-enhanced {
    position: relative;
    inset: auto;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .fullpage-nav,
  .fullpage-navigation {
    display: none;
  }

  .site-menu-toggle {
    display: none;
  }

  .site-menu {
    width: 100vw;
  }

  .site-menu-header {
    padding: 18px 18px 14px;
  }

  .site-menu-nav {
    padding: 12px 14px 22px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand-mark {
    gap: 11px;
  }

  .brand-symbol {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
  }

  .brand-divider {
    height: 28px;
  }

  .brand-name-cn {
    font-size: 22px;
  }

  .brand-name-en strong {
    font-size: 15px;
  }

  .brand-name-en small {
    font-size: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100dvh - 82px);
    padding: 10px;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 8px;
    color: var(--color-white);
    background: rgb(4 27 46 / 0.96);
    box-shadow: 0 22px 54px rgb(2 20 35 / 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overscroll-behavior: contain;
    overflow-y: auto;
  }

  .primary-navigation.is-open {
    display: grid;
    gap: 6px;
  }

  .nav-home,
  .nav-trigger,
  .nav-link {
    width: 100%;
    min-height: 46px;
    padding-inline: 12px;
    justify-content: space-between;
    border-radius: 6px;
    color: var(--color-white);
    line-height: 1.35;
    white-space: normal;
  }

  .nav-group {
    display: grid;
    border-radius: 6px;
  }

  .nav-group.is-open > .nav-trigger,
  .nav-link.is-current,
  .nav-trigger:hover,
  .nav-trigger:focus-visible,
  .nav-home:hover,
  .nav-home:focus-visible,
  .nav-link:hover,
  .nav-link:focus-visible {
    color: var(--color-white);
    background: rgb(255 255 255 / 0.09);
  }

  .nav-trigger::after {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-right: 2px solid rgb(255 255 255 / 0.64);
    border-bottom: 2px solid rgb(255 255 255 / 0.64);
    content: "";
    transform: rotate(45deg);
    transition: transform 160ms ease;
  }

  .nav-group.is-open > .nav-trigger::after {
    transform: rotate(-135deg);
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    gap: 2px;
    margin: 4px 0 8px;
    padding: 6px;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 6px;
    background: rgb(255 255 255 / 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-navigation .nav-group.is-open > .submenu {
    display: grid;
    transform: none;
  }

  .submenu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 10px;
    color: rgb(255 255 255 / 0.82);
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    color: var(--color-white);
    background: rgb(255 255 255 / 0.08);
  }

  .detail-hero {
    min-height: 360px;
    padding: 92px 20px 48px;
  }

  .detail-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .detail-layout {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), var(--content-max));
    margin-block: 22px 38px;
  }

  .detail-aside {
    position: static;
  }

  body.primary-page--screen .primary-screen-main {
    padding-top: 28px;
  }

  .fullpage-section,
  .screen {
    width: 100%;
    min-height: auto;
    overflow: visible;
  }

  .hero-content,
  .home-visual-content,
  .about-content,
  .technology-content,
  .projects-content,
  .research-content,
  .contact-content,
  .module-content,
  .screen-content {
    width: min(calc(100% - 32px), var(--content-max));
    padding-block: clamp(38px, 10vw, 56px);
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .home-visual-content {
    position: sticky;
    top: 0;
    min-height: 100dvh;
    align-content: center;
    gap: 14px;
    padding-top: 80px;
    padding-bottom: 28px;
  }

  .home-visual h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.08;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .home-kicker {
    padding: 6px 10px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .home-position {
    font-size: clamp(18px, 5.6vw, 24px);
    line-height: 1.32;
  }

  .home-description {
    font-size: 14px;
    line-height: 1.78;
  }

  .home-description br {
    display: none;
  }

  .home-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
  }

  .home-values::before {
    display: none;
  }

  .home-values span {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 38px;
    padding: 0;
    border-right: 0;
  }

  .home-values svg {
    width: 30px;
    height: 30px;
    padding: 7px;
    stroke-width: 1.8;
  }

  .home-values strong {
    font-size: 12px;
  }

  .home-values strong::after {
    display: none;
  }

  .home-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .section-link {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  .home-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 6px;
  }

  .home-overview a {
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    gap: 8px;
    min-height: 70px;
    padding: 10px;
  }

  .home-overview strong {
    font-size: 15px;
  }

  .home-overview-icon {
    width: 34px;
    height: 34px;
  }

  .home-overview-icon svg {
    width: 19px;
    height: 19px;
  }

  .home-overview-arrow {
    font-size: 18px;
  }

  .module-section {
    min-height: auto;
  }

  .module-content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 78px;
    padding-bottom: 52px;
  }

  .module-label {
    margin-bottom: 14px;
    font-size: clamp(34px, 10vw, 42px);
  }

  .module-copy > p:not(.module-kicker):not(.module-label) {
    max-width: none;
    font-size: 14px;
    line-height: 1.78;
  }

  .module-copy > .section-link {
    margin-top: 20px;
  }

  .module-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .module-links a {
    min-height: 112px;
    padding: 18px;
  }

  .module-links strong {
    font-size: 17px;
  }

  .research-content {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(calc(100% - 32px), var(--content-max));
    padding-top: 78px;
    padding-bottom: 0;
  }

  .primary-screen-section--wave > .about-content,
  .primary-screen-section--wave > .technology-content,
  .primary-screen-section--wave > .projects-content,
  .primary-screen-section--wave > .research-content,
  .primary-screen-section--wave > .consulting-content,
  .primary-screen-section--wave > .contact-content,
  .primary-screen-section--wave > .module-content {
    padding-bottom: 0;
  }

  .research-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .research-label {
    margin-bottom: 16px;
    font-size: clamp(40px, 12vw, 54px);
  }

  .research-label::after {
    width: 44px;
    height: 3px;
    margin-top: 18px;
  }

  .research-intro {
    max-width: none;
    font-size: 14px;
    line-height: 1.78;
  }

  .research-cta {
    margin-top: 20px;
  }

  .research-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .research-proof-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .research-proof-icon {
    width: 34px;
    height: 34px;
  }

  .research-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .research-card {
    min-height: 190px;
    padding: 20px;
    padding-bottom: 72px;
  }

  .research-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .research-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .research-card strong {
    font-size: 22px;
    line-height: 1.38;
  }

  .research-card span:not(.research-card-icon) {
    font-size: 14px;
  }

  .research-card-arrow {
    bottom: 20px;
    left: 20px;
    width: 38px;
    height: 38px;
    margin-top: 0;
    font-size: 22px;
  }

  .primary-page-wave {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% + 32px);
    min-height: 132px;
    margin: 18px -16px 0;
    padding: 38px 20px 28px;
    border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  }

  .primary-page-wave::before {
    width: 44px;
    height: 3px;
    margin-bottom: 8px;
  }

  .primary-page-wave strong {
    font-size: 18px;
  }

  .primary-page-wave p {
    font-size: 12px;
    line-height: 1.6;
  }

  .consulting-content {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(calc(100% - 32px), var(--content-max));
    padding-top: 78px;
    padding-bottom: 52px;
  }

  .consulting-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .consulting-copy {
    padding-top: 0;
  }

  .consulting-label {
    margin-bottom: 16px;
    font-size: clamp(40px, 12vw, 54px);
  }

  .consulting-label::after {
    width: 44px;
    height: 3px;
    margin-top: 18px;
  }

  .consulting-copy > p:not(.consulting-kicker):not(.consulting-label) {
    max-width: none;
    font-size: 14px;
    line-height: 1.78;
  }

  .consulting-copy > .section-link {
    margin-top: 20px;
  }

  .consulting-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .consulting-card {
    grid-template-columns: 54px minmax(0, 1fr) 22px;
    gap: 14px;
    min-height: 104px;
    padding: 16px;
  }

  .consulting-card-icon {
    width: 48px;
    height: 48px;
  }

  .consulting-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .consulting-card-copy strong {
    font-size: 17px;
    line-height: 1.42;
  }

  .consulting-card-copy span {
    margin-top: 8px;
    font-size: 13px;
  }

  .consulting-card-arrow {
    font-size: 24px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(calc(100% - 32px), var(--content-max));
    padding-top: 78px;
    padding-bottom: 0;
  }

  .contact-kicker {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.3em;
  }

  .contact-kicker::after {
    width: 44px;
    height: 3px;
    margin-top: 16px;
  }

  .contact-label {
    margin-bottom: 18px;
    font-size: clamp(44px, 13vw, 56px);
  }

  .contact-intro {
    max-width: none;
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.75;
  }

  .contact-topics {
    gap: 10px 18px;
    margin-top: 26px;
    font-size: 14px;
  }

  .contact-topics span + span::before {
    margin-right: 18px;
  }

  .contact-method {
    grid-template-columns: 48px minmax(0, 1fr) 28px;
    gap: 12px;
    min-height: 104px;
  }

  .contact-method-index {
    font-size: 34px;
  }

  .contact-method-copy {
    padding-left: 14px;
  }

  .contact-method-copy strong {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .contact-method-copy span {
    font-size: clamp(27px, 7.2vw, 34px);
    letter-spacing: 0.05em;
  }

  .contact-method-arrow {
    font-size: 28px;
  }

  .contact-meta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .contact-meta {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-meta + .contact-meta {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgb(255 255 255 / 0.18);
    border-left: 0;
  }

  .contact-meta-icon {
    width: 30px;
    height: 30px;
  }

  .contact-meta-icon svg {
    width: 26px;
    height: 26px;
  }

  .contact-meta strong {
    font-size: 15px;
  }

  .contact-meta span span {
    font-size: 13px;
    line-height: 1.7;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .contact-actions .section-link {
    width: 100%;
    min-width: 0;
  }

  .phone-sheet {
    align-items: end;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .phone-sheet__panel {
    width: 100%;
    padding: 18px;
    border-radius: 14px 14px 10px 10px;
  }

  .phone-sheet__header h2 {
    font-size: 19px;
  }

  .phone-sheet__links a {
    min-height: 58px;
    padding: 13px 14px;
  }

  .hero-stage {
    min-height: 100dvh;
  }

  .hero-overlay {
    gap: 14px;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    background: transparent;
  }

  .brand {
    margin-bottom: 12px;
    color: var(--color-deep-blue);
    background: rgb(255 255 255 / 0.86);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-shadow: none;
  }

  .hero-hint {
    margin: 0;
    color: var(--color-deep-blue);
    background: rgb(255 255 255 / 0.88);
    font-size: 15px;
    letter-spacing: 0.08em;
    text-shadow: none;
  }

  .hero-controls {
    position: static;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 14px;
  }

  .hero-audio-toggle,
  .hero-skip {
    border-color: rgb(255 255 255 / 0.72);
    background: rgb(255 255 255 / 0.92);
  }

  .hero-skip {
    display: grid;
    min-width: 0;
    padding-inline: 14px;
    place-items: center;
  }

  .hero-promises {
    max-width: min(100%, 560px);
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: 0.08em;
  }

  .hero-promises span {
    width: auto;
  }

  .hero-promises span:nth-child(2),
  .hero-promises span:nth-child(3) {
    margin-left: 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    min-width: 0;
    padding-block: clamp(44px, 12vw, 64px);
  }

  .about-label {
    margin-bottom: 18px;
    font-size: clamp(34px, 9vw, 44px);
    letter-spacing: -0.02em;
  }

  .about-content > p:not(.about-kicker):not(.about-label):not([data-about-status]) {
    max-width: none;
    font-size: 14px;
    line-height: 1.85;
  }

  .about-content > [data-about-notice],
  .about-content > .section-link {
    min-width: 116px;
    margin-top: 24px;
    padding: 8px 18px;
    font-size: 13px;
  }

  .about-links {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-links a {
    min-height: 210px;
    padding: 22px;
    border-radius: 12px;
  }

  .about-card-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
  }

  .about-card-icon svg {
    stroke-width: 3.5;
  }

  .about-links strong {
    font-size: 21px;
  }

  .about-links strong::after {
    margin: 10px 0 12px;
  }

  .about-links span:not(.about-card-icon) {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-links small {
    right: 18px;
    bottom: 18px;
    font-size: 28px;
  }

  .technology-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-width: 0;
    padding-block: clamp(44px, 12vw, 64px);
  }

  .technology-content [role="tablist"] {
    display: contents;
    max-width: 100%;
    margin-inline: 0;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .technology-content [role="tab"],
  .technology-card-panel {
    order: var(--technology-item-order);
  }

  .technology-content [role="tab"] {
    width: 100%;
    flex: none;
    min-width: 0;
    grid-template-columns: 56px minmax(0, 1fr) 24px;
    min-height: 58px;
    padding: 0 12px 0 0;
    border: 1px solid rgb(255 255 255 / 0.28);
    border-radius: 10px;
    scroll-snap-align: unset;
  }

  .technology-tab-index {
    font-size: 18px;
  }

  .technology-tab-title {
    padding-inline: 12px;
    font-size: 14px;
  }

  .technology-tab-arrow {
    font-size: 28px;
  }

  .technology-card-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 10px;
  }

  .technology-content [role="tabpanel"] {
    min-height: auto;
  }

  .technology-card-panel article {
    min-height: 286px;
    padding: 24px 20px;
  }

  .technology-card-panel article::before {
    background:
      linear-gradient(180deg, rgb(7 39 65 / 0.98) 0%, rgb(7 39 65 / 0.92) 42%, rgb(7 39 65 / 0.54) 100%),
      var(--technology-panel-image);
    background-position: center bottom;
    background-size: cover;
  }

  .technology-panel-copy {
    max-width: none;
  }

  .technology-card-panel h2,
  .technology-card-panel h3,
  .summary-panel h2,
  .summary-panel h3 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .technology-panel-rule {
    width: 36px;
    height: 3px;
    margin: 14px 0 16px;
  }

  .technology-card-panel p,
  .technology-content [role="tabpanel"] > p,
  .summary-panel p {
    font-size: 14px;
    line-height: 1.75;
  }

  .technology-content [role="tabpanel"] > p,
  .summary-panel {
    min-height: auto;
    padding: 22px;
  }

  .projects-content {
    padding-block: clamp(44px, 12vw, 64px);
  }

  .projects-content > h1,
  .projects-content > h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .section-intro {
    margin: -8px 0 18px;
    font-size: 14px;
  }

  .projects-content [data-carousel] {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .project-preview {
    display: none;
  }

  .projects-content [data-carousel-prev] {
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 2;
    grid-column: auto;
    grid-row: 1;
    width: 38px;
    height: 38px;
    min-height: 38px;
    background: rgb(4 27 46 / 0.72);
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .project-current {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
  }

  .projects-content [data-carousel-next] {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    grid-column: auto;
    grid-row: 1;
    width: 38px;
    height: 38px;
    min-height: 38px;
    background: rgb(4 27 46 / 0.72);
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .project-current figcaption {
    padding: 54px 18px 18px;
    font-size: 15px;
  }

  .project-case-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
  }

  .project-case-nav button {
    min-height: 50px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  .news {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    min-height: auto;
    padding: 48px 20px 56px;
  }

  .news-feature,
  .news-content {
    width: 100%;
    padding-block: 0;
  }

  .news-feature {
    min-height: 260px;
    border-radius: 12px;
  }

  .news-feature > h2 {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.35;
  }

  .news-content {
    min-width: 0;
    overflow-x: hidden;
  }

  .news-content [role="tablist"] {
    gap: 20px;
    margin-bottom: 18px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .news-content [role="tab"] {
    flex: 0 0 auto;
    padding: 10px 2px 12px;
    font-size: 15px;
  }

  .news-content [role="tabpanel"] {
    min-height: auto;
  }

  .news-content li {
    min-height: 0;
  }

  .news-content li a {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding-block: 14px;
  }

  .news-content li span {
    font-size: 14px;
    line-height: 1.55;
    white-space: normal;
  }

  .news-content time,
  .news-content small {
    font-size: 12px;
  }

  .contact-summary {
    grid-template-columns: 1fr;
  }

  .contact-summary a {
    min-height: 98px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 60px;
    padding-inline: 12px;
  }

  .brand-mark > span:not(.brand-symbol) {
    display: none;
  }

  .brand-symbol {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .primary-navigation {
    right: 8px;
    left: 8px;
    max-height: calc(100dvh - 72px);
    padding: 8px;
  }

  .nav-home,
  .nav-trigger,
  .nav-link,
  .submenu a {
    font-size: 14px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .research-content {
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
    gap: 36px;
  }

  .research-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 56px;
  }

  .research-card {
    min-height: 218px;
  }

  .consulting-content {
    grid-template-columns: minmax(300px, 0.44fr) minmax(0, 1fr);
    gap: 36px;
  }

  .consulting-cards {
    grid-template-columns: 1fr;
  }

  .consulting-card {
    min-height: 108px;
  }

  .contact-content {
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
    gap: 36px;
  }

  .contact-method {
    grid-template-columns: 66px minmax(0, 1fr) 42px;
    min-height: 118px;
  }

  .contact-method-copy span {
    font-size: clamp(34px, 3.4vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fullpage.is-enhanced {
    transition: none;
  }

  html.fullpage-enabled .fullpage-section,
  html.fullpage-enabled .screen {
    transition: none;
  }

  .hero-content,
  .home-visual-content,
  .home-values span,
  .home-values svg,
  .home-overview a::after,
  .home-overview-icon,
  .home-overview-arrow,
  .about-content,
  .technology-content,
  .technology-panel-copy,
  .projects-content,
  .project-current img,
  .project-current figcaption,
  .project-preview,
  .research-content,
  .contact-content,
  .module-content,
  .screen-content,
  .news-feature,
  .news-content,
  [role="tab"],
  .projects-content [data-carousel-prev],
  .projects-content [data-carousel-next],
  .about-content > [data-about-notice],
  .about-content > .section-link,
  .about-links a,
  .about-links img,
  .research-card,
  .contact-method,
  .contact-method-arrow,
  .contact-news-link,
  .module-links a,
  .site-menu,
  .site-menu-backdrop,
  .site-menu-home,
  .site-menu-group,
  .phone-sheet__backdrop,
  .phone-sheet__panel,
  .phone-sheet__links a,
  .detail-hero > img,
  .detail-hero > div,
  .detail-content,
  .aside-card,
  .fullpage-nav button::before,
  .fullpage-navigation button::before {
    transition: none;
  }

  .panel-in {
    animation: none;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .about-content {
    column-gap: clamp(40px, 5vw, 72px);
    padding-block: clamp(24px, 4.5vh, 40px);
  }

  .about-kicker {
    margin-bottom: clamp(4px, 1vh, 8px);
    font-size: clamp(10px, 0.8vw, 11px);
  }

  .about-label {
    margin-bottom: clamp(10px, 1.8vh, 16px);
    font-size: clamp(38px, 3.6vw, 52px);
  }

  .about-content > p:not(.about-kicker):not(.about-label):not([data-about-status]) {
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.7;
  }

  .about-content > [data-about-notice],
  .about-content > .section-link {
    margin-top: clamp(16px, 2.5vh, 22px);
    padding: clamp(7px, 1.2vh, 9px) 18px;
    font-size: clamp(12px, 0.9vw, 13px);
  }

  .about-links {
    gap: clamp(10px, 1.2vw, 16px);
  }

  .about-links a {
    min-height: clamp(208px, 29vh, 260px);
    padding: clamp(22px, 2.4vw, 30px);
  }

  .about-card-icon {
    width: clamp(82px, 7.5vw, 108px);
    height: clamp(82px, 7.5vw, 108px);
    margin-bottom: clamp(16px, 1.8vw, 22px);
  }

  .about-links strong {
    font-size: clamp(18px, 1.45vw, 24px);
  }

  .about-links strong::after {
    margin: 10px 0 12px;
  }

  .about-links span:not(.about-card-icon) {
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.65;
  }
}
