:root {
  --hg-ink: #0b0b0b;
  --hg-paper: #f4f1e8;
  --hg-white: #ffffff;
  --hg-muted: #898989;
  --hg-line: rgba(255, 255, 255, 0.18);
  --hg-dark-line: rgba(11, 11, 11, 0.14);
  --hg-accent: #c7ff2e;
  --hg-red: #ff4b36;
  --hg-blue: #315bff;
  --hg-radius: 6px;
  --hg-container: 1440px;
  --hg-pad: 28px;
  --hg-ease: cubic-bezier(0.76, 0, 0.24, 1);
  --hg-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hg-site {
  margin: 0;
  color: var(--hg-ink);
  background: var(--hg-paper);
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.hg-site a {
  color: inherit;
  text-decoration: none;
}

body.hg-site img,
body.hg-site video {
  max-width: 100%;
  display: block;
}

.hg-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}

.hg-cursor {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--hg-accent);
  background: rgba(199, 255, 46, 0.18);
  transform: translate(-50%, -50%);
  z-index: 10000;
  opacity: 0;
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, background 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body.hg-site.is-cursor .hg-cursor {
    opacity: 1;
  }

  body.hg-site.is-cursor .hg-cursor.is-active {
    width: 52px;
    height: 52px;
    background: rgba(199, 255, 46, 0.08);
  }
}

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

.hg-section {
  position: relative;
  padding: 118px 0;
}

.hg-section--dark {
  color: var(--hg-white);
  background: var(--hg-ink);
}

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

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

.hg-section-kicker {
  margin: 0 0 24px;
  color: var(--hg-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-section-title {
  margin: 0;
  max-width: 980px;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

.hg-section-title--wide {
  max-width: 1180px;
}

.hg-section-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(11, 11, 11, 0.68);
  font-size: 19px;
  line-height: 1.7;
}

.hg-section--dark .hg-section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.hg-nav {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1100;
  color: var(--hg-white);
  transition: color 450ms var(--hg-ease), transform 450ms var(--hg-ease);
  isolation: isolate;
}

.hg-nav::before {
  content: "";
  position: absolute;
  inset: 8px 10px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 11, 11, 0.08);
  opacity: 0;
  transform: scaleY(0.84);
  transform-origin: top;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 450ms var(--hg-ease), transform 450ms var(--hg-ease), inset 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-nav {
  color: var(--hg-ink);
}

body.hg-nav-scrolled .hg-nav::before {
  inset: 8px 10px;
  opacity: 1;
  transform: scaleY(1);
}

body.hg-menu-open .hg-nav {
  color: var(--hg-white);
}

body.hg-menu-open .hg-nav::before {
  opacity: 0;
}

.hg-nav__inner {
  width: 100%;
  min-height: 82px;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 450ms var(--hg-ease), padding 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-nav__inner {
  min-height: 58px;
  padding: 0 18px;
}

.hg-nav__left,
.hg-nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  opacity: 0;
  transform: translateY(-12px);
  animation: hg-load-fade 720ms var(--hg-ease-out) forwards;
}

.hg-nav__left {
  flex: 1 1 auto;
}

.hg-nav__right {
  flex: 0 0 auto;
  justify-content: flex-end;
  animation-delay: 180ms;
}

@keyframes hg-load-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hg-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  mix-blend-mode: difference;
  transition: gap 450ms var(--hg-ease), mix-blend-mode 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-brand,
body.hg-menu-open .hg-brand {
  mix-blend-mode: normal;
}

body.hg-nav-scrolled .hg-brand,
body.hg-nav-scrolled .hg-brand__text {
  color: #050505;
  opacity: 1;
}

body.hg-menu-open .hg-brand,
body.hg-menu-open .hg-brand__text {
  color: var(--hg-white);
}

.hg-brand__mark {
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: width 450ms var(--hg-ease), height 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-brand__mark {
  width: 30px;
  height: 30px;
}

.hg-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(2);
}

body.hg-nav-scrolled .hg-brand__mark img {
  filter: grayscale(1) contrast(2.4) brightness(0);
}

body.hg-menu-open .hg-brand__mark img {
  filter: grayscale(1) contrast(2);
}

.hg-brand__text {
  display: block;
  max-width: 220px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: max-width 450ms var(--hg-ease), opacity 450ms var(--hg-ease);
}

.hg-nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  max-width: 720px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  mix-blend-mode: difference;
  transition: max-width 450ms var(--hg-ease), opacity 450ms var(--hg-ease), transform 450ms var(--hg-ease), gap 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-nav__links,
body.hg-menu-open .hg-nav__links {
  max-width: 0;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  mix-blend-mode: normal;
}

.hg-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  animation: hg-nav-link-in 720ms var(--hg-ease-out) forwards;
  transition: background 180ms ease, color 180ms ease, opacity 450ms var(--hg-ease), transform 450ms var(--hg-ease);
}

.hg-nav__link:nth-child(1) {
  animation-delay: 120ms;
}

.hg-nav__link:nth-child(2) {
  animation-delay: 180ms;
}

.hg-nav__link:nth-child(3) {
  animation-delay: 240ms;
}

.hg-nav__link:nth-child(4) {
  animation-delay: 300ms;
}

.hg-nav__link:nth-child(5) {
  animation-delay: 360ms;
}

.hg-nav__link:nth-child(6) {
  animation-delay: 420ms;
}

@keyframes hg-nav-link-in {
  to {
    opacity: 0.78;
    transform: translateY(0);
  }
}

.hg-nav__link:hover,
.hg-nav__link.active {
  color: currentColor;
  background: transparent;
  opacity: 1;
}

.hg-menu-toggle {
  display: inline-flex;
  width: auto;
  height: 46px;
  border: 1px solid currentColor;
  color: currentColor;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 14px;
  flex: 0 0 auto;
  mix-blend-mode: difference;
  transition: height 450ms var(--hg-ease), padding 450ms var(--hg-ease), color 450ms var(--hg-ease), background 450ms var(--hg-ease), border-color 450ms var(--hg-ease), opacity 450ms var(--hg-ease), transform 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-menu-toggle {
  height: 38px;
  padding: 0 12px;
  color: var(--hg-ink);
  background: rgba(255, 255, 255, 0.28);
  mix-blend-mode: normal;
}

body.hg-menu-open .hg-menu-toggle {
  color: var(--hg-white);
  background: transparent;
  mix-blend-mode: normal;
}

.hg-time {
  min-width: 146px;
  color: currentColor;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  opacity: 0.82;
  white-space: nowrap;
  mix-blend-mode: difference;
  transform: translateY(0);
  transition: min-width 450ms var(--hg-ease), max-width 450ms var(--hg-ease), opacity 450ms var(--hg-ease), transform 450ms var(--hg-ease), margin 450ms var(--hg-ease);
}

body.hg-nav-scrolled .hg-time,
body.hg-menu-open .hg-time {
  min-width: 0;
  max-width: 0;
  margin-left: -24px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  mix-blend-mode: normal;
}

.hg-menu-toggle em {
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-menu-toggle span,
.hg-menu-toggle span::before,
.hg-menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 450ms var(--hg-ease);
}

.hg-menu-toggle span::before {
  transform: translateY(-6px);
}

.hg-menu-toggle span::after {
  transform: translateY(4px);
}

body.hg-menu-open .hg-menu-toggle span {
  transform: rotate(45deg);
}

body.hg-menu-open .hg-menu-toggle span::before {
  transform: translateY(0) rotate(90deg);
}

body.hg-menu-open .hg-menu-toggle span::after {
  transform: translateY(-2px) rotate(90deg);
}

.hg-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 1090;
  color: var(--hg-white);
  background: var(--hg-ink);
  transform: translate3d(0, -100%, 0);
  transition: transform 700ms var(--hg-ease);
  overflow: auto;
  pointer-events: none;
  will-change: transform;
}

body.hg-menu-open .hg-menu-panel {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

body.hg-menu-open {
  overflow: hidden;
}

.hg-menu-panel__inner {
  width: calc(100% - 40px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 58px;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(420px, 1.6fr) minmax(220px, 0.7fr);
  gap: 54px;
  align-items: end;
}

.hg-menu-panel__meta,
.hg-menu-panel__channels {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.hg-menu-panel__meta p:first-child,
.hg-menu-panel__channels p {
  margin: 0 0 20px;
  color: var(--hg-accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-menu-panel__links {
  display: grid;
}

.hg-menu-panel__links a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 86px;
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(48px);
  transition: color 200ms ease, opacity 700ms var(--hg-ease), transform 700ms var(--hg-ease);
}

body.hg-menu-open .hg-menu-panel__links a,
body.hg-menu-open .hg-menu-panel__channels a,
body.hg-menu-open .hg-menu-panel__meta {
  opacity: 1;
  transform: translateY(0);
}

body.hg-menu-open .hg-menu-panel__links a:nth-child(1) {
  transition-delay: 160ms;
}

body.hg-menu-open .hg-menu-panel__links a:nth-child(2) {
  transition-delay: 220ms;
}

body.hg-menu-open .hg-menu-panel__links a:nth-child(3) {
  transition-delay: 280ms;
}

body.hg-menu-open .hg-menu-panel__links a:nth-child(4) {
  transition-delay: 340ms;
}

body.hg-menu-open .hg-menu-panel__links a:nth-child(5) {
  transition-delay: 400ms;
}

body.hg-menu-open .hg-menu-panel__links a:nth-child(6) {
  transition-delay: 460ms;
}

.hg-menu-panel__links a span {
  color: var(--hg-accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.hg-menu-panel__links a:hover {
  color: var(--hg-accent);
}

.hg-menu-panel__channels {
  display: grid;
  gap: 12px;
}

.hg-menu-panel__channels a {
  font-size: 15px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(18px);
  transition: color 200ms ease, opacity 700ms var(--hg-ease), transform 700ms var(--hg-ease);
}

.hg-menu-panel__meta {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--hg-ease), transform 700ms var(--hg-ease);
}

body.hg-menu-open .hg-menu-panel__meta {
  transition-delay: 100ms;
}

body.hg-menu-open .hg-menu-panel__channels a:nth-of-type(1) {
  transition-delay: 520ms;
}

body.hg-menu-open .hg-menu-panel__channels a:nth-of-type(2) {
  transition-delay: 580ms;
}

body.hg-menu-open .hg-menu-panel__channels a:nth-of-type(3) {
  transition-delay: 640ms;
}

body.hg-menu-open .hg-menu-panel__channels a:nth-of-type(4) {
  transition-delay: 700ms;
}

body.hg-menu-open .hg-menu-panel__channels a:nth-of-type(5) {
  transition-delay: 760ms;
}

.hg-menu-panel__channels a:hover {
  color: var(--hg-accent);
}

.hg-hero {
  min-height: 100svh;
  color: var(--hg-white);
  background: var(--hg-ink);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 160px);
}

.hg-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hg-hero__media img,
.hg-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: grayscale(0.25) contrast(1.04);
}

.hg-hero__content {
  width: min(100% - 56px, var(--hg-container));
  margin: 0 auto;
  padding: 142px 0 64px;
}

.hg-showreel {
  position: absolute;
  right: max(28px, calc((100vw - var(--hg-container)) / 2));
  top: 50%;
  z-index: 2;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--hg-white);
  background: rgba(11, 11, 11, 0.32);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.hg-showreel span {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

.hg-showreel:hover {
  color: var(--hg-ink);
  background: var(--hg-accent);
  transform: translateY(-50%) scale(1.05);
}

.hg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--hg-accent);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

.hg-hero__title {
  max-width: 1240px;
  margin: 0;
  font-size: 132px;
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 950;
}

.hg-hero__lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.6;
}

.hg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.hg-button--accent {
  color: var(--hg-ink);
  background: var(--hg-accent);
  border-color: var(--hg-accent);
}

.hg-button:hover {
  color: var(--hg-ink);
  background: var(--hg-white);
  transform: translateY(-2px);
}

.hg-button--accent:hover {
  background: var(--hg-red);
  border-color: var(--hg-red);
}

.hg-marquee {
  overflow: hidden;
  color: var(--hg-ink);
  background: var(--hg-accent);
  border-top: 1px solid var(--hg-ink);
  border-bottom: 1px solid var(--hg-ink);
}

.hg-marquee__track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 18px 0;
  animation: hg-marquee 28s linear infinite;
}

.hg-marquee__track span {
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.hg-marquee__track span::after {
  content: "/";
  margin-left: 34px;
}

@keyframes hg-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hg-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 64px;
  align-items: end;
}

.hg-split--center {
  align-items: center;
}

.hg-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hg-dark-line);
  border-left: 1px solid var(--hg-dark-line);
}

.hg-meta-card {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--hg-dark-line);
  border-bottom: 1px solid var(--hg-dark-line);
  background: rgba(255, 255, 255, 0.38);
}

.hg-meta-card__num {
  display: block;
  margin-bottom: 42px;
  color: var(--hg-blue);
  font-size: 13px;
  font-weight: 950;
}

.hg-meta-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

.hg-meta-card p {
  margin: 0;
  color: rgba(11, 11, 11, 0.64);
}

.hg-work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.hg-work-card {
  grid-column: span 4;
  position: relative;
  min-height: 420px;
  color: var(--hg-white);
  background: #181818;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-work-card--wide {
  grid-column: span 8;
}

.hg-work-card__image {
  position: absolute;
  inset: 0;
}

.hg-work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.hg-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78));
}

.hg-work-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.hg-work-card__label {
  display: block;
  margin-bottom: 14px;
  color: var(--hg-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hg-work-card h3 {
  margin: 0;
  max-width: 760px;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.hg-work-card p {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.hg-work-card:hover .hg-work-card__image img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.08);
}

.hg-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: var(--hg-line);
  border: 1px solid var(--hg-line);
}

.hg-capability {
  min-height: 300px;
  padding: 30px;
  color: var(--hg-white);
  background: var(--hg-ink);
  position: relative;
  overflow: hidden;
}

.hg-capability::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 76px;
  height: 76px;
  border: 1px solid var(--hg-line);
  transform: rotate(45deg);
  transition: transform 320ms ease, background 320ms ease;
}

.hg-capability:hover::after {
  background: var(--hg-accent);
  transform: rotate(0deg);
}

.hg-capability__index {
  display: block;
  color: var(--hg-accent);
  margin-bottom: 82px;
  font-size: 12px;
  font-weight: 950;
}

.hg-capability h3 {
  margin: 0 0 12px;
  max-width: 330px;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 950;
}

.hg-capability p {
  margin: 0;
  max-width: 370px;
  color: rgba(255, 255, 255, 0.7);
}

.hg-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 620px;
  color: var(--hg-white);
  background: var(--hg-ink);
}

.hg-feature__media {
  min-height: 420px;
  overflow: hidden;
}

.hg-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hg-feature__content {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hg-feature__content h2 {
  margin: 0 0 24px;
  font-size: 64px;
  line-height: 0.96;
  font-weight: 950;
}

.hg-feature__content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.hg-logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--hg-dark-line);
  background: var(--hg-dark-line);
}

.hg-logo-cloud__item {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.hg-logo-cloud__item img {
  max-width: 150px;
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hg-logo-cloud__item:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.hg-page-hero {
  min-height: 62svh;
  padding: 150px 0 72px;
  color: var(--hg-white);
  background-color: var(--hg-ink);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.82)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hg-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 160px);
  pointer-events: none;
}

.hg-page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 56px, var(--hg-container));
  margin: 0 auto;
}

.hg-page-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: 86px;
  line-height: 0.92;
  font-weight: 950;
}

.hg-page-hero p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.hg-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--hg-dark-line);
  border: 1px solid var(--hg-dark-line);
}

.hg-list-card {
  min-height: 300px;
  padding: 30px;
  background: var(--hg-white);
  display: flex;
  flex-direction: column;
}

.hg-list-card__image {
  height: 210px;
  margin: -30px -30px 26px;
  overflow: hidden;
  background: var(--hg-ink);
}

.hg-list-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hg-list-card:hover .hg-list-card__image img {
  transform: scale(1.06);
}

.hg-list-card__meta {
  color: var(--hg-blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-list-card h3 {
  margin: 18px 0 12px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
}

.hg-list-card p {
  color: rgba(11, 11, 11, 0.64);
}

.hg-list-card ul {
  padding-left: 18px;
  margin: 6px 0 24px;
  color: rgba(11, 11, 11, 0.66);
}

.hg-list-card li + li {
  margin-top: 8px;
}

.hg-list-card__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-article {
  width: min(100% - 56px, 980px);
  margin: 0 auto;
  padding: 118px 0;
}

.hg-article h1,
.hg-article h2,
.hg-article h3 {
  line-height: 1.04;
  font-weight: 950;
}

.hg-article h1 {
  font-size: 64px;
}

.hg-article p {
  color: rgba(11, 11, 11, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.hg-richtext {
  color: inherit;
  font-size: 18px;
  line-height: 1.8;
}

.hg-richtext p {
  margin: 0 0 18px;
}

.hg-richtext img {
  width: 100%;
  height: auto;
  margin: 34px 0;
}

.hg-richtext a {
  color: var(--hg-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hg-section--dark .hg-richtext,
.hg-feature .hg-richtext {
  color: rgba(255, 255, 255, 0.72);
}

.hg-search-form {
  display: flex;
  gap: 12px;
  max-width: 720px;
  margin-top: 32px;
}

.hg-search-form input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--hg-white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 16px;
  border-radius: 0;
}

.hg-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hg-pagination {
  margin-top: 48px;
}

.hg-pagination .pagination {
  margin: 0;
}

.hg-pagination .pagination > li > a,
.hg-pagination .pagination > li > span {
  color: var(--hg-ink);
  border-color: var(--hg-dark-line);
  border-radius: 0 !important;
}

.hg-pagination .pagination > .active > a,
.hg-pagination .pagination > .active > span {
  color: var(--hg-ink);
  background: var(--hg-accent);
  border-color: var(--hg-ink);
}

.hg-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--hg-dark-line);
  border: 1px solid var(--hg-dark-line);
}

.hg-contact-card {
  min-height: 320px;
  padding: 28px;
  background: var(--hg-white);
}

.hg-contact-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 950;
}

.hg-contact-card p,
.hg-contact-card li {
  color: rgba(11, 11, 11, 0.66);
}

.hg-contact-card ul {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hg-footer {
  color: var(--hg-white);
  background: var(--hg-ink);
  border-top: 1px solid var(--hg-line);
}

.hg-footer__top {
  width: min(100% - 56px, var(--hg-container));
  margin: 0 auto;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 70px;
}

.hg-footer__headline {
  margin: 0;
  max-width: 760px;
  font-size: 74px;
  line-height: 0.94;
  font-weight: 950;
}

.hg-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hg-footer__nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--hg-line);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 900;
}

.hg-footer__nav a:hover {
  color: var(--hg-ink);
  background: var(--hg-accent);
  border-color: var(--hg-accent);
}

.hg-footer-form {
  padding: 28px;
  border: 1px solid var(--hg-line);
  background: rgba(255, 255, 255, 0.05);
}

.hg-footer-form h2 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
}

.hg-footer-form input,
.hg-footer-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--hg-white);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 15px 0;
  font-size: 15px;
}

.hg-footer-form input::placeholder,
.hg-footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.hg-footer-form textarea {
  min-height: 112px;
  resize: vertical;
}

.hg-footer-form button {
  margin-top: 24px;
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--hg-accent);
  color: var(--hg-ink);
  background: var(--hg-accent);
  font-size: 13px;
  font-weight: 950;
}

.hg-footer__bottom {
  width: min(100% - 56px, var(--hg-container));
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--hg-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hg-footer__logo {
  max-width: 128px;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1) invert(1);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.back-to-top,
.js-back-to-top {
  display: none !important;
}

.hg-legal-hero {
  min-height: 52svh;
  padding: 132px 24px 58px;
  color: rgba(255, 255, 255, 0.88);
  background: #000;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-legal-hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
}

.hg-legal-hero__inner > p,
.hg-legal-hero__inner span {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
  text-transform: uppercase;
}

.hg-legal-hero h1 {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(30px, 2.2vw, 38px);
  line-height: 0.94;
  font-weight: 540;
  letter-spacing: 0;
}

.hg-legal-hero__inner > div {
  grid-column: 2;
  display: grid;
  grid-template-columns: 136px minmax(0, 660px);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
}

.hg-legal-hero__inner div p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.58;
  font-weight: 480;
}

.hg-legal-body {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 0;
  padding: 0 24px 118px;
  color: rgba(255, 255, 255, 0.88);
  background: #000;
}

.hg-legal-index {
  position: sticky;
  top: 106px;
  align-self: start;
  min-height: calc(100svh - 106px);
  padding: 64px 52px 64px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hg-legal-index span {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.hg-legal-index a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.hg-legal-index a:hover {
  color: #fff;
  transform: translateX(6px);
}

.hg-legal-content {
  padding-top: 64px;
}

.hg-legal-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 820px);
  gap: 28px;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-legal-section > span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 720;
}

.hg-legal-section h2 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 540;
  letter-spacing: 0;
}

.hg-legal-section p {
  grid-column: 2;
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.72;
  font-weight: 480;
}

.hg-legal-section p + p {
  margin-top: 14px;
}

.hg-legal-note {
  max-width: 910px;
  margin-top: 32px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
}

.hg-legal-note p {
  margin: 0;
}

body.hg-site .parallax-window {
  min-height: 62svh;
}

body.hg-site .content-lg {
  padding-top: 118px;
  padding-bottom: 118px;
}

body.hg-site main,
body.hg-site .hg-footer {
  transition:
    filter 620ms var(--hg-ease),
    transform 620ms var(--hg-ease),
    opacity 620ms var(--hg-ease);
  transform-origin: center top;
}

body.hg-site.hg-widget-open main,
body.hg-site.hg-widget-open .hg-footer {
  filter: blur(18px) brightness(0.72) saturate(0.92);
  transform: scale(1.018);
  pointer-events: none;
}

.hg-site-topbar {
  position: fixed;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 1320;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(214, 214, 218, 0.72);
  pointer-events: none;
}

.hg-site-logo {
  pointer-events: auto;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  mix-blend-mode: difference;
  isolation: auto;
  transition: color 420ms var(--hg-ease), opacity 420ms var(--hg-ease);
}

.hg-site-logo:hover {
  color: rgba(255, 255, 255, 0.92);
}

.hg-site-tools {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  position: relative;
}

.hg-site-time {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: difference;
  isolation: auto;
}

.hg-widget-shell {
  position: relative;
  z-index: 1340;
  height: 18px;
  display: inline-flex;
  align-items: center;
}

.hg-widget-launcher {
  display: inline-flex;
  align-items: center;
  height: 18px;
  mix-blend-mode: normal;
}

.hg-widget-toggle {
  width: 18px;
  height: 18px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: #fff;
  line-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  mix-blend-mode: normal;
  isolation: auto;
  transition:
    color 360ms var(--hg-ease),
    transform 360ms var(--hg-ease);
}

.hg-widget-toggle__grid {
  width: 9px;
  height: 9px;
  display: grid;
  grid-template-columns: repeat(2, 3px);
  grid-template-rows: repeat(2, 3px);
  gap: 3px;
  color: #fff;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
}

.hg-widget-toggle__grid i {
  display: block;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 1px;
  opacity: 1;
  mix-blend-mode: difference;
  transition: transform 420ms cubic-bezier(0.76, 0, 0.24, 1), opacity 420ms var(--hg-ease);
  animation: hg-widget-dot-drift 2.8s var(--hg-ease) infinite;
}

.hg-widget-toggle__grid i:nth-child(2) {
  animation-delay: 180ms;
}

.hg-widget-toggle__grid i:nth-child(3) {
  animation-delay: 360ms;
}

.hg-widget-toggle__grid i:nth-child(4) {
  animation-delay: 540ms;
}

@keyframes hg-widget-dot-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  28% {
    transform: translate(1px, -1px) scale(1.24);
  }
  56% {
    transform: translate(-1px, 1px) scale(0.82);
  }
}

.hg-widget-toggle:hover,
.hg-widget-shell.is-open .hg-widget-toggle {
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.hg-widget-toggle:hover .hg-widget-toggle__grid {
  transform: rotate(10deg) scale(1.12);
}

.hg-widget-shell.is-open .hg-widget-toggle__grid {
  transform: rotate(45deg) scale(1.08);
}

.hg-widget-shell.is-open .hg-widget-toggle__grid i {
  opacity: 1;
}

.hg-widget-citybar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1370;
  min-height: 36px;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  background: rgba(42, 36, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transform-origin: right top;
  transition:
    opacity 520ms var(--hg-ease),
    transform 520ms var(--hg-ease);
}

.hg-widget-shell.is-open .hg-widget-citybar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hg-widget-shell.is-open .hg-widget-launcher {
  opacity: 0;
  pointer-events: none;
}

.hg-widget-citybar__tabs {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.hg-widget-citybar__tabs button {
  min-height: 28px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.54);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-size: 10px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 260ms var(--hg-ease);
}

.hg-widget-citybar__tabs button:hover,
.hg-widget-citybar__tabs button:focus-visible,
.hg-widget-citybar__tabs button.is-active {
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.hg-widget-citybar__tabs button:active {
  transform: scale(0.96);
}

.hg-widget-toggle--citybar {
  width: 18px;
  height: 18px;
  background: transparent;
}

.hg-widget-dashboard {
  position: fixed;
  inset: 0;
  z-index: 1335;
  color: #fff;
  overflow: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 620ms var(--hg-ease);
}

.hg-widget-shell.is-open .hg-widget-dashboard {
  opacity: 1;
  pointer-events: auto;
}

.hg-widget-dashboard__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  padding: 0;
  border: 0;
  background: rgba(4, 5, 5, 0.34);
  backdrop-filter: blur(34px) saturate(118%) brightness(0.78);
  -webkit-backdrop-filter: blur(34px) saturate(118%) brightness(0.78);
  cursor: default;
}

.hg-widget-dashboard__ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48)),
    rgba(10, 10, 10, 0.26);
  backdrop-filter: blur(18px) saturate(108%);
  -webkit-backdrop-filter: blur(18px) saturate(108%);
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 620ms var(--hg-ease),
    transform 700ms var(--hg-ease),
    background 700ms var(--hg-ease);
  will-change: transform, opacity;
}

.hg-widget-shell.is-open .hg-widget-dashboard__ambient {
  opacity: 1;
  transform: scale(1);
}

.hg-widget-dashboard__grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 820px);
  min-height: 100svh;
  margin: 0 20px 0 auto;
  padding: 66px 0 28px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: 10px;
  align-content: start;
}

.hg-widget-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: rgba(18, 18, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(116%);
  -webkit-backdrop-filter: blur(22px) saturate(116%);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 620ms var(--hg-ease),
    transform 620ms var(--hg-ease),
    background 320ms ease,
    border-color 320ms ease;
  transition-delay: calc((5 - var(--widget-index)) * 30ms);
}

.hg-widget-shell.is-open .hg-widget-tile {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(110ms + var(--widget-index) * 70ms);
}

.hg-widget-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 620ms var(--hg-ease),
    filter 420ms var(--hg-ease),
    opacity 320ms ease;
}

.hg-widget-tile--featured {
  grid-column: 1 / span 5;
  height: 158px;
  text-decoration: none;
}

.hg-widget-tile--featured::after,
.hg-widget-tile--office::after,
.hg-widget-tile--culture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.hg-widget-tile--featured:hover img,
.hg-widget-tile--culture:hover img,
.hg-widget-tile--office:hover img {
  transform: scale(1.04);
}

.hg-widget-tile__caption {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.hg-widget-tile__caption span,
.hg-widget-tile--culture span,
.hg-widget-tile--clock span,
.hg-widget-office__contact span,
.hg-widget-news-item span,
.hg-widget-language span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-widget-tile__caption strong {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.08;
  font-weight: 640;
}

.hg-widget-progress {
  position: absolute;
  left: 13px;
  bottom: 9px;
  z-index: 2;
  display: flex;
  gap: 5px;
}

.hg-widget-progress i {
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.hg-widget-progress i:first-child {
  background: rgba(255, 255, 255, 0.9);
}

.hg-widget-tile--culture,
.hg-widget-tile--clock {
  height: 122px;
}

.hg-widget-tile--culture {
  grid-column: 1 / span 2;
}

.hg-widget-tile--culture img {
  filter: grayscale(1) contrast(1.05);
}

.hg-widget-tile--culture span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
}

.hg-widget-tile--clock {
  grid-column: 3 / span 3;
  padding: 13px;
  display: grid;
  align-content: space-between;
  background: rgba(18, 18, 18, 0.82);
}

.hg-widget-tile--clock > span {
  justify-self: start;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.hg-widget-clock {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.hg-widget-clock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  transform: translate(-50%, -50%);
}

.hg-widget-clock i,
.hg-widget-clock b {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1px;
  transform-origin: 50% 100%;
  background: rgba(255, 255, 255, 0.84);
}

.hg-widget-clock i {
  height: 17px;
  transform: translate(-50%, -100%) rotate(36deg);
}

.hg-widget-clock b {
  height: 22px;
  transform: translate(-50%, -100%) rotate(128deg);
}

.hg-widget-tile--clock strong {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 26px;
  line-height: 0.9;
  font-weight: 620;
  letter-spacing: 0;
}

.hg-widget-tile--clock em {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 720;
}

.hg-widget-tile--office {
  grid-column: 6 / span 7;
  grid-row: 1;
  height: 220px;
}

.hg-widget-office__contact {
  position: absolute;
  left: 13px;
  bottom: 13px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 8px 9px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hg-widget-office__contact a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  text-transform: uppercase;
  text-decoration: none;
}

.hg-widget-office__badge {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 2;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #080808;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.hg-widget-office__controls {
  position: absolute;
  right: 43px;
  bottom: 13px;
  z-index: 2;
  display: inline-flex;
  gap: 5px;
}

.hg-widget-office__controls button {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.hg-widget-office__controls button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hg-widget-tile--news {
  grid-column: 6 / span 7;
  min-height: 252px;
  padding: 13px;
  background: rgba(14, 14, 14, 0.86);
}

.hg-widget-tile--news header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}

.hg-widget-tile--news h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  text-transform: uppercase;
}

.hg-widget-tile--news header a {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
  text-decoration: none;
}

.hg-widget-news-list {
  display: grid;
}

.hg-widget-news-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 62px;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 260ms ease, padding 260ms var(--hg-ease);
}

.hg-widget-news-item:hover {
  padding-left: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.hg-widget-news-item strong,
.hg-widget-news-item p {
  margin: 0;
  letter-spacing: 0;
}

.hg-widget-news-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.16;
  font-weight: 620;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 220ms ease;
}

.hg-widget-news-item:hover strong {
  color: #fff;
}

.hg-widget-news-item p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.28;
  font-weight: 520;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hg-widget-news-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.34);
}

.hg-widget-news-item img {
  width: 62px;
  height: 42px;
  border-radius: 5px;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04);
}

.hg-widget-news-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.06);
}

.hg-widget-language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-widget-language div {
  display: inline-flex;
  gap: 3px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.hg-widget-language a {
  min-height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 720;
  text-decoration: none;
}

.hg-widget-language a.is-active,
.hg-widget-language a:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
}

body.hg-widget-open {
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hg-widget-dashboard__grid {
    width: min(calc(100% - 40px), 700px);
    margin: 0 20px 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
  }

  .hg-widget-tile,
  .hg-widget-tile--featured,
  .hg-widget-tile--culture,
  .hg-widget-tile--clock,
  .hg-widget-tile--office,
  .hg-widget-tile--news {
    grid-column: auto;
    grid-row: auto;
  }

  .hg-widget-tile--featured,
  .hg-widget-tile--office,
  .hg-widget-tile--news {
    grid-column: span 2;
  }

  .hg-widget-tile--office {
    height: 218px;
  }

  .hg-widget-tile--featured {
    height: 166px;
  }

  .hg-widget-tile--culture,
  .hg-widget-tile--clock {
    height: 126px;
  }
}

.hg-lang-switch {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  background: rgba(28, 28, 28, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition:
    color 360ms var(--hg-ease),
    background 360ms var(--hg-ease),
    border-color 360ms var(--hg-ease);
}

.hg-lang-switch:hover {
  color: #fff;
  background: rgba(42, 42, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
}

.hg-fold-nav {
  --fold-ease: cubic-bezier(0.76, 0, 0.24, 1);
  --fold-speed: 520ms;

  position: fixed;
  top: 10px;
  left: 96px;
  z-index: 1300;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  max-width: calc(100vw - 390px);
  min-height: 44px;
  color: #fff;
  background: transparent;
  border-radius: 999px;
  mix-blend-mode: difference;
  transition:
    gap var(--fold-speed) var(--fold-ease),
    padding var(--fold-speed) var(--fold-ease),
    color var(--fold-speed) var(--fold-ease),
    background var(--fold-speed) var(--fold-ease),
    backdrop-filter var(--fold-speed) var(--fold-ease),
    mix-blend-mode var(--fold-speed) var(--fold-ease);
}

.hg-fold-nav__home,
.hg-fold-nav__links a,
.hg-fold-nav__menu {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.hg-fold-nav__home {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
  padding: 0;
  border-radius: 999px;
  transition:
    padding var(--fold-speed) var(--fold-ease),
    background var(--fold-speed) var(--fold-ease),
    color var(--fold-speed) var(--fold-ease),
    font-weight var(--fold-speed) var(--fold-ease);
}

.hg-fold-nav__links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  transition:
    max-width var(--fold-speed) var(--fold-ease),
    opacity 360ms var(--fold-ease),
    transform var(--fold-speed) var(--fold-ease),
    gap var(--fold-speed) var(--fold-ease);
}

.hg-fold-nav__links a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 680;
  opacity: 0;
  transform: translateY(4px);
  animation: hg-fold-link-in 640ms var(--fold-ease) forwards;
  animation-delay: calc(120ms + var(--index) * 60ms);
  transition:
    color 260ms var(--fold-ease),
    font-weight 260ms var(--fold-ease),
    opacity 360ms var(--fold-ease),
    transform var(--fold-speed) var(--fold-ease);
  transition-delay: calc(var(--index) * 22ms);
}

.hg-fold-nav__home:hover,
.hg-fold-nav__links a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.hg-fold-nav__home.is-active,
.hg-fold-nav__links a.is-active {
  color: #fff;
  font-weight: 920;
}

@keyframes hg-fold-link-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hg-fold-nav__menu {
  display: none;
  padding: 0 17px;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hg-fold-nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(280px, calc(100vw - 48px));
  padding: 14px;
  display: grid;
  gap: 2px;
  color: #fff;
  background: rgba(28, 28, 28, 0.94);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity var(--fold-speed) var(--fold-ease),
    transform var(--fold-speed) var(--fold-ease);
}

.hg-fold-nav__panel a {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 17px;
  font-weight: 680;
  text-decoration: none;
  opacity: 0;
  transform: translateY(4px);
  transition:
    color 260ms var(--fold-ease),
    font-weight 260ms var(--fold-ease),
    opacity var(--fold-speed) var(--fold-ease),
    transform var(--fold-speed) var(--fold-ease);
  transition-delay: calc(var(--index) * 40ms);
}

.hg-fold-nav__panel a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.hg-fold-nav__panel a.is-active {
  color: #fff;
  font-weight: 920;
}

body.hg-site .hg-fold-nav__home {
  color: rgba(255, 255, 255, 0.72);
}

body.hg-site .hg-fold-nav__links a,
body.hg-site .hg-fold-nav__panel a {
  color: rgba(255, 255, 255, 0.5);
}

body.hg-site .hg-fold-nav__home:hover,
body.hg-site .hg-fold-nav__links a:hover,
body.hg-site .hg-fold-nav__panel a:hover {
  color: rgba(255, 255, 255, 0.88);
}

body.hg-site .hg-fold-nav__home.is-active,
body.hg-site .hg-fold-nav__links a.is-active,
body.hg-site .hg-fold-nav__panel a.is-active {
  color: #fff;
  font-weight: 920;
}

.hg-fold-nav.is-collapsed {
  gap: 0;
  color: #fff;
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mix-blend-mode: difference;
}

.hg-fold-nav.is-collapsed .hg-fold-nav__home {
  padding: 0 18px;
}

.hg-fold-nav.is-collapsed .hg-fold-nav__links {
  max-width: 0;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28px);
}

.hg-fold-nav.is-collapsed .hg-fold-nav__links a {
  animation: none;
  opacity: 0;
  transform: translateX(-18px);
  transition-delay: calc((5 - var(--index)) * 18ms);
}

.hg-fold-nav.is-open .hg-fold-nav__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hg-fold-nav.is-open {
  mix-blend-mode: normal;
}

.hg-fold-nav.is-open .hg-fold-nav__panel a {
  opacity: 1;
  transform: translateY(0);
}

body.hg-site .hg-site-logo,
body.hg-site .hg-site-time {
  color: #fff;
  mix-blend-mode: difference;
}

body.hg-site .hg-widget-toggle {
  color: #fff;
  background: transparent;
  mix-blend-mode: normal;
}

body.hg-site .hg-widget-toggle__grid i {
  background-color: #fff;
  mix-blend-mode: difference;
}

body.hg-site .hg-fold-nav:not(.is-open) {
  color: #fff;
  mix-blend-mode: difference;
}

body.hg-site .hg-fold-nav:not(.is-open) .hg-fold-nav__home,
body.hg-site .hg-fold-nav:not(.is-open) .hg-fold-nav__menu {
  color: #fff;
}

body.hg-site .hg-fold-nav:not(.is-open) .hg-fold-nav__links a {
  color: rgba(255, 255, 255, 0.74);
}

body.hg-site .hg-fold-nav:not(.is-open) .hg-fold-nav__links a.is-active {
  color: #fff;
}

body.hg-fold-menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .hg-site-topbar {
    top: 18px;
    left: 16px;
    right: 16px;
    gap: 14px;
  }

  .hg-site-logo {
    font-size: 15px;
  }

  .hg-site-tools {
    gap: 8px;
  }

  .hg-site-time {
    display: inline-flex;
    font-size: 10px;
    line-height: 18px;
    mix-blend-mode: difference;
  }

  .hg-widget-toggle {
    width: 18px;
    height: 18px;
  }

  .hg-widget-citybar {
    top: 14px;
    right: 16px;
    left: 16px;
    max-width: calc(100vw - 32px);
    overflow-x: auto;
    justify-content: space-between;
    scrollbar-width: none;
  }

  .hg-widget-citybar::-webkit-scrollbar {
    display: none;
  }

  .hg-widget-citybar__tabs {
    min-width: max-content;
  }

  .hg-widget-citybar__tabs button {
    padding: 0 10px;
  }

  .hg-widget-dashboard {
    overflow-x: hidden;
  }

  .hg-widget-dashboard__backdrop {
    background: rgba(4, 5, 5, 0.34);
    backdrop-filter: blur(30px) saturate(114%) brightness(0.78);
    -webkit-backdrop-filter: blur(30px) saturate(114%) brightness(0.78);
  }

  .hg-widget-dashboard__ambient {
    background:
      radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
      linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5)),
      rgba(8, 8, 8, 0.28);
    backdrop-filter: blur(14px) saturate(106%);
    -webkit-backdrop-filter: blur(14px) saturate(106%);
  }

  .hg-widget-shell.is-open .hg-widget-dashboard__ambient {
    background:
      radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
      linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5)),
      rgba(8, 8, 8, 0.28);
  }

  .hg-widget-dashboard__grid {
    width: calc(100% - 32px);
    min-height: 0;
    margin: 0 auto;
    padding: 66px 0 24px;
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: start;
  }

  .hg-widget-tile,
  .hg-widget-tile--featured,
  .hg-widget-tile--culture,
  .hg-widget-tile--clock,
  .hg-widget-tile--office,
  .hg-widget-tile--news {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  .hg-widget-tile--office {
    order: 1;
    height: 208px;
  }

  .hg-widget-tile--clock {
    order: 2;
    height: 126px;
  }

  .hg-widget-tile--news {
    order: 3;
    min-height: 0;
  }

  .hg-widget-tile--featured {
    order: 4;
    height: 168px;
  }

  .hg-widget-tile--culture {
    order: 5;
    height: 152px;
  }

  .hg-widget-news-item {
    grid-template-columns: minmax(0, 1fr) 62px;
    gap: 9px;
  }

  .hg-widget-news-item img {
    width: 62px;
    height: 42px;
  }

  .hg-widget-language {
    align-items: flex-start;
    flex-direction: column;
  }

  .hg-fold-nav {
    top: 4px;
    left: 76px;
    gap: 8px;
    max-width: calc(100vw - 270px);
    color: #fff;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    mix-blend-mode: difference;
  }

  .hg-fold-nav__home,
  .hg-fold-nav.is-collapsed .hg-fold-nav__home {
    padding: 0 16px;
  }

  .hg-fold-nav__links,
  .hg-fold-nav.is-collapsed .hg-fold-nav__links {
    max-width: 0;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-24px);
  }

  .hg-fold-nav__links a,
  .hg-fold-nav.is-collapsed .hg-fold-nav__links a {
    animation: none;
    opacity: 0;
    transform: translateX(-18px);
  }

  .hg-fold-nav__menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .hg-site-time {
    display: inline-flex;
  }

  .hg-fold-nav {
    max-width: calc(100vw - 160px);
  }
}

.hg-koto-home {
  color: var(--hg-white);
  background: #000;
}

.hg-koto-home + .hg-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.hg-koto-home + .hg-footer .hg-footer__top {
  display: none;
}

.hg-koto-home + .hg-footer .hg-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.hg-koto-hero {
  position: relative;
  min-height: 680px;
  height: 100svh;
  color: var(--hg-white);
  background: #000;
  overflow: hidden;
}

.hg-koto-hero::before,
.hg-koto-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hg-koto-hero::before {
  left: 0;
  bottom: 24px;
  width: min(70vw, 960px);
  height: clamp(150px, 23vh, 270px);
  background: #fff;
  mix-blend-mode: normal;
  animation: hg-block-drift 13s ease-in-out infinite alternate;
}

.hg-koto-hero::after {
  right: -10vw;
  bottom: 18%;
  width: 46vw;
  height: 24vh;
  background: #fff;
  opacity: 0.92;
  animation: hg-block-drift-alt 16s ease-in-out infinite alternate;
}

@keyframes hg-block-drift {
  from {
    transform: translate3d(-16vw, 0, 0);
  }
  to {
    transform: translate3d(34vw, -9vh, 0);
  }
}

@keyframes hg-block-drift-alt {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-46vw, -18vh, 0);
  }
}

.hg-koto-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hg-koto-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), #000 92%),
    radial-gradient(circle at 52% 16%, rgba(255, 255, 255, 0.16), transparent 26%),
    rgba(0, 0, 0, 0.44);
}

.hg-koto-hero__media img,
.hg-koto-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.05) contrast(1.1);
  transform: scale(1.01);
  animation: hg-hero-media-cycle 20s linear infinite;
  will-change: opacity, transform;
}

.hg-koto-hero__media > :nth-child(2) {
  animation-delay: 5s;
}

.hg-koto-hero__media > :nth-child(3) {
  animation-delay: 10s;
}

.hg-koto-hero__media > :nth-child(4) {
  animation-delay: 15s;
}

.hg-koto-hero__media > :only-child {
  opacity: 0.62;
  animation: none;
}

@keyframes hg-hero-media-cycle {
  0%,
  22% {
    opacity: 0.62;
    transform: scale(1.01);
  }

  28%,
  94% {
    opacity: 0;
    transform: scale(1.055);
  }

  100% {
    opacity: 0.62;
    transform: scale(1.01);
  }
}

.hg-light-sculpture {
  position: absolute;
  inset: -10% 0 0;
  z-index: 2;
  overflow: hidden;
  transform: translateZ(0);
  mix-blend-mode: screen;
}

.hg-light-sculpture__beam,
.hg-light-sculpture__glass {
  position: absolute;
  display: block;
  transform-origin: left center;
  will-change: transform, opacity;
}

.hg-light-sculpture__beam {
  left: -9vw;
  top: 14vh;
  width: 92vw;
  height: 18px;
  border-radius: 999px;
  filter: blur(0.2px);
  transform: rotate(-33deg);
  animation: hg-light-shift 6.5s ease-in-out infinite alternate;
}

.hg-light-sculpture__beam--one {
  background: linear-gradient(90deg, transparent 0%, #1f5bff 12%, #0308a8 33%, #ff2fd5 63%, #fff 78%, transparent 100%);
  box-shadow: 0 0 18px rgba(44, 96, 255, 0.85), 0 0 42px rgba(255, 47, 213, 0.45);
}

.hg-light-sculpture__beam--two {
  top: 19vh;
  left: -16vw;
  height: 9px;
  background: linear-gradient(90deg, transparent, #fff, #246aff, #ff224f, transparent);
  opacity: 0.9;
  transform: rotate(-34deg);
  animation-delay: -1.4s;
}

.hg-light-sculpture__beam--three {
  top: 25vh;
  left: -10vw;
  height: 5px;
  background: linear-gradient(90deg, transparent, #52e4ff, #ff8f1f, #ff30d8, transparent);
  opacity: 0.85;
  transform: rotate(-31deg);
  animation-delay: -2.2s;
}

.hg-light-sculpture__glass {
  left: 18vw;
  top: 4vh;
  width: 76vw;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(101deg, rgba(0, 0, 0, 0) 0 19%, rgba(30, 77, 255, 0.52) 27%, rgba(0, 0, 0, 0.72) 46%, rgba(255, 47, 213, 0.66) 73%, rgba(255, 255, 255, 0.9) 82%, rgba(0, 0, 0, 0) 100%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.28), 0 0 60px rgba(46, 90, 255, 0.2);
  clip-path: polygon(0 40%, 100% 0, 86% 35%, 8% 100%);
  transform: rotate(-12deg) skewX(-18deg);
  opacity: 0.78;
  mix-blend-mode: screen;
}

@keyframes hg-light-shift {
  from {
    transform: rotate(-33deg) translate3d(0, 0, 0);
    opacity: 0.76;
  }
  to {
    transform: rotate(-33deg) translate3d(30px, -8px, 0);
    opacity: 1;
  }
}

.hg-koto-hero__copy {
  position: absolute;
  left: 20px;
  bottom: 54px;
  z-index: 4;
  max-width: min(920px, calc(100vw - 40px));
  color: #fff;
  mix-blend-mode: difference;
  isolation: isolate;
}

.hg-koto-hero__copy p {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.hg-koto-hero__copy h1 {
  max-width: 900px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(46px, 8.2vw, 128px);
  line-height: 0.92;
  font-weight: 650;
  letter-spacing: 0;
}

.hg-koto-hero__copy .hg-mask-line--title,
.hg-koto-hero__copy .hg-mask-line--title > span {
  font-size: clamp(46px, 8.2vw, 128px) !important;
  line-height: 0.92 !important;
  font-weight: 650;
  letter-spacing: 0;
}

.hg-koto-hero__intro {
  max-width: 540px;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.hg-mask-line {
  display: block;
  overflow: hidden;
}

.hg-mask-line > span {
  display: block;
  transform: translateY(112%);
  opacity: 0;
  animation: hg-mask-up 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.hg-mask-line--eyebrow > span {
  animation-delay: 180ms;
}

.hg-mask-line--title > span {
  animation-delay: 300ms;
}

.hg-mask-line--intro > span {
  animation-delay: 460ms;
}

.hg-koto-dot {
  opacity: 0;
  animation: hg-load-fade 720ms cubic-bezier(0.22, 1, 0.36, 1) 620ms forwards;
}

@keyframes hg-mask-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hg-koto-dot {
  position: absolute;
  right: 12px;
  bottom: 14px;
  z-index: 3;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
}

.hg-koto-dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.hg-scroll-hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  color: var(--hg-white);
  background: #000;
  overflow: hidden;
}

.hg-scroll-hero::before,
.hg-scroll-hero::after {
  display: none;
}

.hg-scroll-hero__sticky {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.hg-scroll-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hg-scroll-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.01);
}

.hg-scroll-hero__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.15);
}

.hg-scroll-hero__title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 58px;
  z-index: 5;
  max-width: 1480px;
  transform-origin: left bottom;
  color: #fff;
  mix-blend-mode: difference;
  will-change: transform, opacity;
}

.hg-scroll-hero__title h1 {
  margin: 0;
  color: var(--hg-white);
  font-size: clamp(34px, 2.85vw, 46px);
  line-height: 0.94;
  font-weight: 620;
  letter-spacing: 0;
  text-shadow: none;
}

.hg-scroll-hero__title h1 span {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.hg-intro-screen {
  position: relative;
  min-height: 100svh;
  padding: clamp(104px, 13vh, 150px) 20px 82px;
  display: flex;
  align-items: flex-start;
  color: var(--hg-white);
  background: #080808;
  overflow: hidden;
}

.hg-intro-screen__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1180px, calc(100vw - 40px));
  color: var(--hg-white);
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 1.04;
  font-weight: 540;
  letter-spacing: 0;
  opacity: 1;
}

.hg-scroll-line {
  display: block;
  margin: 0;
  overflow: hidden;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.hg-scroll-line + .hg-scroll-line {
  margin-top: 0.16em;
}

.hg-scroll-line > span {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transform: translateY(104%);
  opacity: 0;
  will-change: transform, opacity;
}

body.hg-gsap-ready .hg-scroll-line > span {
  opacity: 0;
}

body.hg-scroll-hero-static .hg-scroll-line > span {
  transform: translateY(0);
  opacity: 1;
}

.hg-scroll-hero .hg-koto-dot {
  right: 14px;
  bottom: 18px;
  z-index: 6;
  mix-blend-mode: difference;
}

.hg-module {
  position: relative;
  padding: 132px 20px 148px;
  color: var(--hg-white);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-module__inner {
  width: min(100%, 1560px);
  margin: 0 auto;
}

.hg-module__header {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(520px, 0.64fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
}

.hg-module__title p,
.hg-module__title h2 {
  margin: 0;
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 1.08;
  font-weight: 540;
  letter-spacing: 0;
}

.hg-module__title p {
  color: rgba(255, 255, 255, 0.9);
}

.hg-module__title h2 {
  color: rgba(255, 255, 255, 0.42);
}

.hg-module__body {
  display: grid;
  gap: 42px;
}

.hg-module__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.52;
  font-weight: 520;
  letter-spacing: 0;
}

.hg-module__facts {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-module__facts div,
.hg-service-row,
.hg-career-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(220px, 0.32fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 72px);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    background-color 420ms var(--hg-ease),
    border-color 420ms var(--hg-ease),
    transform 420ms var(--hg-ease);
}

.hg-module__facts div {
  grid-template-columns: minmax(220px, 0.38fr) minmax(320px, 1fr);
}

.hg-module__facts div:hover,
.hg-service-row:hover,
.hg-career-list a:hover,
.hg-module__facts div:focus-visible,
.hg-service-row:focus-visible,
.hg-career-list a:focus-visible {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.hg-module__facts strong,
.hg-module__facts span,
.hg-service-row span,
.hg-service-row h3,
.hg-service-row p,
.hg-career-list span,
.hg-career-list strong,
.hg-career-list em {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.34;
  font-weight: 520;
  letter-spacing: 0;
  font-style: normal;
}

.hg-module__facts span,
.hg-service-row span,
.hg-service-row p,
.hg-career-list span,
.hg-career-list em {
  color: rgba(255, 255, 255, 0.4);
}

.hg-about__media {
  --about-media-height: clamp(320px, 34vw, 520px);
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1.16fr 0.72fr 0.72fr;
  gap: 10px;
  align-items: stretch;
}

.hg-about__media img {
  display: block;
  width: 100%;
  height: var(--about-media-height);
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.92) contrast(1.06);
}

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

.hg-team-member {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  outline: none;
}

.hg-team-member__media {
  position: relative;
  min-height: clamp(260px, 28vw, 420px);
  overflow: hidden;
  border-radius: 6px;
  background: #141414;
}

.hg-team-member__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42));
  opacity: 0.72;
  transition: opacity 520ms var(--hg-ease);
}

.hg-team-member img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition:
    transform 620ms var(--hg-ease),
    filter 520ms var(--hg-ease);
}

.hg-team-member:hover img,
.hg-team-member:focus-visible img {
  transform: scale(1.025);
  filter: grayscale(0) contrast(1.08);
}

.hg-team-member:hover .hg-team-member__media::after,
.hg-team-member:focus-visible .hg-team-member__media::after {
  opacity: 0.36;
}

.hg-team-member__copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 0 0;
}

.hg-team-member__role,
.hg-team-member h3,
.hg-team-member p {
  margin: 0;
  letter-spacing: 0;
}

.hg-team-member__role {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
  text-transform: uppercase;
}

.hg-team-member h3 {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 0.98;
  font-weight: 540;
}

.hg-team-member p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 520;
}

.hg-about-depth__grid,
.hg-client-wall__grid {
  margin-top: 78px;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-about-depth__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hg-about-depth__card {
  min-height: 318px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transition:
    background-color 420ms var(--hg-ease),
    border-color 420ms var(--hg-ease),
    transform 420ms var(--hg-ease);
}

.hg-about-depth__card:hover,
.hg-about-depth__card:focus-visible {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.hg-about-depth__card span,
.hg-about-depth__card h3,
.hg-about-depth__card p {
  margin: 0;
  letter-spacing: 0;
}

.hg-about-depth__card span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
  text-transform: uppercase;
}

.hg-about-depth__card h3 {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 0.98;
  font-weight: 540;
}

.hg-about-depth__card p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 520;
}

.hg-client-wall__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-client-wall__item {
  min-height: 220px;
  padding: 22px;
  display: grid;
  grid-template-rows: minmax(112px, 1fr) auto;
  gap: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 420ms var(--hg-ease),
    border-color 420ms var(--hg-ease),
    transform 420ms var(--hg-ease);
}

.hg-client-wall__item:hover,
.hg-client-wall__item:focus-visible {
  transform: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.hg-client-wall__mark {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 14px 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.hg-client-wall__mark img {
  max-width: min(68%, 168px);
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.34;
  transition:
    opacity 420ms var(--hg-ease),
    transform 420ms var(--hg-ease);
}

.hg-client-wall__mark strong {
  color: rgba(255, 255, 255, 0.38);
  font-size: 22px;
  line-height: 1;
  font-weight: 760;
  transition: color 420ms var(--hg-ease), transform 420ms var(--hg-ease);
}

.hg-client-wall__item:hover .hg-client-wall__mark img,
.hg-client-wall__item:focus-visible .hg-client-wall__mark img {
  opacity: 0.72;
  transform: scale(1.02);
}

.hg-client-wall__item:hover .hg-client-wall__mark strong,
.hg-client-wall__item:focus-visible .hg-client-wall__mark strong {
  color: rgba(255, 255, 255, 0.72);
  transform: scale(1.02);
}

.hg-client-wall__copy {
  display: grid;
  gap: 6px;
}

.hg-client-wall__copy strong,
.hg-client-wall__copy span {
  margin: 0;
  font-size: 12px;
  line-height: 1.34;
  font-weight: 620;
  letter-spacing: 0;
}

.hg-client-wall__copy strong {
  color: rgba(255, 255, 255, 0.84);
}

.hg-client-wall__copy span {
  color: rgba(255, 255, 255, 0.4);
}

.hg-service-list,
.hg-career-list {
  margin-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-service-row h3,
.hg-career-list strong {
  color: rgba(255, 255, 255, 0.86);
}

.hg-career-list a {
  text-decoration: none;
}

.hg-career-list a:hover strong,
.hg-career-list a:hover em {
  color: #fff;
}

.hg-koto-work {
  padding: 110px 12px 140px;
  background: #000;
}

.hg-koto-project {
  width: min(100%, 1420px);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: end;
}

.hg-koto-project + .hg-koto-project {
  margin-top: 18px;
}

.hg-koto-project__copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0 4px;
}

.hg-koto-label,
.hg-koto-project__copy h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: 0;
}

.hg-koto-label {
  color: rgba(255, 255, 255, 0.56);
}

.hg-koto-project__text {
  max-width: 310px;
  margin: auto 0 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  line-height: 1.45;
}

.hg-koto-project__tag {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  max-width: 310px;
}

.hg-koto-project__tag span {
  width: 28px;
  height: 28px;
  display: block;
  background:
    linear-gradient(135deg, #0714ff, #ff3ed2 52%, #c7ff2e);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hg-koto-project__tag p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.2;
}

.hg-koto-project__media {
  min-height: 410px;
  background: #1b1b1b;
  overflow: hidden;
  border-radius: 3px;
  display: block;
}

.hg-koto-project__media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.hg-koto-project__media:hover img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.08);
}

.hg-koto-view-all {
  width: min(100%, 1420px);
  margin: 28px auto 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 4px;
}

.hg-koto-view-all a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.hg-koto-view-all a:hover {
  color: var(--hg-white);
}

.hg-work-scroll {
  position: relative;
  min-height: 460vh;
  padding: 0;
  background: #000;
}

.hg-work-scroll__pin {
  position: sticky;
  top: 0;
  min-height: 720px;
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 36%) minmax(0, 64%);
  color: var(--hg-white);
  background: #000;
  overflow: hidden;
}

.hg-work-scroll__left {
  position: relative;
  min-width: 0;
  padding: 16vh 44px 7.2vh 20px;
}

.hg-work-scroll__right {
  position: relative;
  min-width: 0;
  padding: 7vh 20px 7vh 0;
}

.hg-work-scroll__kicker {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 0.92;
  font-weight: 540;
  letter-spacing: 0;
  text-align: left;
}

.hg-work-scroll__copy-area {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  display: grid;
  gap: 8px;
  justify-items: start;
  text-align: left;
  transform: translateY(-50%);
}

.hg-work-scroll__title-stack,
.hg-work-scroll__desc-stack,
.hg-work-scroll__meta-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hg-work-scroll__title-stack h2,
.hg-work-scroll__desc-stack p,
.hg-work-case-meta {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

.hg-work-scroll__title-stack h2:first-child,
.hg-work-scroll__desc-stack p:first-child,
.hg-work-case-meta:first-child {
  opacity: 1;
  transform: translateY(0);
}

.hg-work-scroll__title-stack h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 0.9;
  font-weight: 540;
  letter-spacing: 0;
  text-align: left;
}

.hg-work-scroll__title-stack {
  height: clamp(48px, 6.6vh, 72px);
}

.hg-work-scroll__desc-stack {
  position: absolute;
  left: 20px;
  right: 44px;
  bottom: calc(7.2vh + 76px);
  height: clamp(120px, 16vh, 178px);
}

.hg-work-scroll__desc-stack p {
  inset: auto 0 0 0;
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  line-height: 1.46;
  text-align: left;
}

.hg-work-scroll__meta-stack {
  position: absolute;
  left: 20px;
  right: 44px;
  bottom: 7.2vh;
  height: 46px;
}

.hg-work-case-meta {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 360px;
}

.hg-work-case-meta img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 2px;
  background: #181818;
}

.hg-work-case-meta strong,
.hg-work-case-meta span {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hg-work-case-meta span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.hg-work-scroll__media-window {
  position: relative;
  width: 100%;
  height: 86vh;
  min-height: 580px;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  isolation: isolate;
}

.hg-work-scroll__media-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hg-work-case-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(94%, 1040px);
  display: block;
  height: 72vh;
  min-height: 488px;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.96);
  filter: brightness(0.45);
  clip-path: inset(0% 0% 0% 0% round 8px);
  will-change: transform, opacity, filter, clip-path;
  z-index: 1;
  cursor: zoom-in;
}

.hg-work-case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.62);
  opacity: 1;
  transition: opacity 520ms var(--hg-ease);
}

.hg-work-case-media.is-active {
  filter: brightness(1);
  z-index: 4;
}

.hg-work-case-media.is-active::after {
  opacity: 0;
}

.hg-work-case-media img,
.hg-work-case-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 520ms var(--hg-ease);
}

.hg-work-case-media:hover img,
.hg-work-case-media:hover video {
  transform: scale(1.02);
}

.hg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 64px 20px 42px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.76, 0, 0.24, 1);
}

.hg-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.hg-lightbox-open {
  overflow: hidden;
}

.hg-lightbox__frame {
  width: min(100%, 1320px);
  display: grid;
  gap: 14px;
  transform: translateY(26px) scale(0.96);
  opacity: 0;
  transition:
    transform 460ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 320ms cubic-bezier(0.76, 0, 0.24, 1);
}

.hg-lightbox.is-open .hg-lightbox__frame {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hg-lightbox__image {
  width: 100%;
  max-height: calc(100svh - 150px);
  display: block;
  object-fit: contain;
  background: #050505;
  border-radius: 8px;
}

.hg-lightbox__caption {
  min-height: 1.2em;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 620;
}

.hg-lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1;
  height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  background: rgba(28, 28, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.hg-lightbox__close:hover,
.hg-lightbox__close:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hg-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 5200;
  display: grid;
  place-items: center;
  padding: 64px 20px 42px;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.hg-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.hg-detail-modal-open {
  overflow: hidden;
}

.hg-detail-modal__panel {
  width: min(100%, 980px);
  max-height: calc(100svh - 110px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 0 clamp(28px, 5vw, 72px);
  padding: clamp(28px, 4.2vw, 58px);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  transform: translateY(34px) scale(0.97);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 360ms cubic-bezier(0.76, 0, 0.24, 1);
}

.hg-detail-modal.is-open .hg-detail-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hg-detail-modal__media {
  grid-row: 1 / span 5;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: #050505;
}

.hg-detail-modal:not(.has-media) .hg-detail-modal__panel {
  grid-template-columns: 1fr;
}

.hg-detail-modal:not(.has-media) .hg-detail-modal__media {
  display: none;
}

.hg-detail-modal__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.96);
}

.hg-detail-modal__eyebrow,
.hg-detail-modal__title,
.hg-detail-modal__copy,
.hg-detail-modal__list {
  margin: 0;
}

.hg-detail-modal__eyebrow {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 760;
  text-transform: uppercase;
}

.hg-detail-modal__title {
  margin-top: 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 0.92;
  font-weight: 540;
  letter-spacing: 0;
}

.hg-detail-modal__copy {
  margin-top: 26px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.42;
  font-weight: 520;
}

.hg-detail-modal__list {
  margin-top: 42px;
  display: grid;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-detail-modal__list li {
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.34;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-detail-modal__cta {
  justify-self: start;
  margin-top: 30px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  color: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.hg-detail-modal__cta:hover,
.hg-detail-modal__cta:focus-visible {
  color: #000;
  background: #fff;
  outline: none;
}

.hg-detail-modal__close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1;
  height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  background: rgba(28, 28, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.hg-detail-modal__close:hover,
.hg-detail-modal__close:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hg-work-scroll__footer {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.hg-work-scroll__footer a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 760;
}

.hg-work-scroll__footer a:hover {
  color: var(--hg-white);
}

.hg-work-scroll__mobile {
  display: none;
}

.hg-koto-news {
  padding: 122px 20px 172px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-koto-news__bar {
  width: min(100%, 1400px);
  margin: 0 auto 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 1.08;
  font-weight: 540;
  letter-spacing: 0;
}

.hg-koto-news__bar p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.hg-koto-news__bar a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 760;
  align-self: end;
}

.hg-koto-news__grid {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 0.78fr;
  gap: 10px;
}

.hg-koto-news-card {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-rows: 1fr auto;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 520ms var(--hg-ease),
    color 420ms var(--hg-ease);
}

.hg-koto-news-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  filter: grayscale(0.1);
  transition:
    transform 620ms var(--hg-ease),
    filter 520ms var(--hg-ease);
}

.hg-koto-news-card:hover,
.hg-koto-news-card:focus-visible {
  transform: translateY(-6px);
  text-decoration: none;
  outline: none;
}

.hg-koto-news-card:hover img,
.hg-koto-news-card:focus-visible img {
  transform: scale(1.018);
  filter: grayscale(0) contrast(1.05);
}

.hg-koto-news-card h3 {
  margin: 14px 0 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 540;
}

.hg-koto-news-card p,
.hg-koto-news-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.62;
}

.hg-news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-news-row {
  display: grid;
  grid-template-columns: minmax(122px, 0.18fr) minmax(240px, 0.34fr) 1fr;
  gap: clamp(28px, 4.2vw, 64px);
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    color 420ms var(--hg-ease),
    transform 420ms var(--hg-ease),
    border-color 420ms var(--hg-ease);
}

.hg-news-row:hover,
.hg-news-row:focus-visible {
  color: rgba(255, 255, 255, 0.94);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.hg-news-row span,
.hg-news-row h3,
.hg-news-row p {
  margin: 0;
}

.hg-news-row span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.62;
  text-transform: uppercase;
}

.hg-news-row h3 {
  color: currentColor;
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.22;
  font-weight: 560;
  letter-spacing: 0;
}

.hg-news-row p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.86;
}

.hg-news-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.66);
}

.hg-news-pagination__pages {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hg-news-pagination__control,
.hg-news-pagination__page,
.hg-news-pagination__ellipsis {
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  line-height: 1;
  font-weight: 720;
  text-decoration: none;
  transition:
    color 360ms var(--hg-ease),
    border-color 360ms var(--hg-ease),
    background 360ms var(--hg-ease),
    transform 360ms var(--hg-ease);
}

.hg-news-pagination__control {
  min-width: 78px;
}

.hg-news-pagination__page:hover,
.hg-news-pagination__page:focus-visible,
.hg-news-pagination__control:hover,
.hg-news-pagination__control:focus-visible {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.hg-news-pagination__page.is-active {
  color: #070707;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.hg-news-pagination__control.is-disabled,
.hg-news-pagination__ellipsis {
  opacity: 0.38;
  pointer-events: none;
}

.hg-insight-detail {
  padding: 148px 20px 0;
  color: var(--hg-white);
  background: #000;
}

.hg-insight-hero,
.hg-insight-media,
.hg-insight-body {
  width: min(100%, 1260px);
  margin: 0 auto;
}

.hg-insight-hero {
  min-height: 58svh;
  display: grid;
  align-content: end;
  padding-bottom: 72px;
}

.hg-insight-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
}

.hg-insight-hero__meta a,
.hg-insight-hero__meta span,
.hg-insight-hero__meta time {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
  text-transform: uppercase;
  text-decoration: none;
}

.hg-insight-hero__meta a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hg-insight-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(42px, 6.4vw, 112px);
  line-height: 0.92;
  font-weight: 560;
  letter-spacing: 0;
}

.hg-insight-hero p {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.72;
}

.hg-insight-media {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.hg-insight-media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.02);
}

.hg-insight-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(38px, 8vw, 150px);
  padding: 76px 0 136px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-insight-side {
  position: sticky;
  top: 110px;
  align-self: start;
}

.hg-insight-side p,
.hg-insight-side span {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1.55;
}

.hg-insight-side p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
  text-transform: uppercase;
}

.hg-insight-richtext {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.86;
}

.hg-insight-richtext h2,
.hg-insight-richtext h3 {
  margin: 54px 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 560;
}

.hg-insight-richtext h3 {
  font-size: 18px;
}

.hg-insight-richtext p,
.hg-insight-richtext ul,
.hg-insight-richtext ol,
.hg-insight-richtext blockquote {
  margin: 0 0 22px;
}

.hg-insight-richtext ul,
.hg-insight-richtext ol {
  padding-left: 18px;
}

.hg-insight-richtext li + li {
  margin-top: 8px;
}

.hg-insight-richtext blockquote {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hg-insight-richtext img {
  width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: 4px;
}

.hg-insight-inline-image {
  margin: 34px 0 42px;
}

.hg-insight-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  filter: grayscale(0.08) contrast(1.04);
}

.hg-insight-inline-image figcaption {
  max-width: 680px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  line-height: 1.65;
}

.hg-insight-related {
  padding-top: 96px;
}

.hg-contact-map {
  min-height: 92svh;
  padding: 132px 20px 84px;
  color: var(--hg-white);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hg-contact-map__inner {
  width: min(100%, 1560px);
  min-height: calc(92svh - 216px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(520px, 0.64fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: stretch;
}

.hg-contact-map__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
}

.hg-contact-map__copy p,
.hg-contact-map__copy h1,
.hg-contact-map__copy span {
  margin: 0;
  letter-spacing: 0;
}

.hg-contact-map__copy p,
.hg-contact-map__copy h1 {
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 0.92;
  font-weight: 540;
}

.hg-contact-map__copy p {
  color: rgba(255, 255, 255, 0.9);
}

.hg-contact-map__copy h1 {
  color: rgba(255, 255, 255, 0.42);
}

.hg-contact-map__copy span {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 520;
}

.hg-contact-map__stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 62% 31%, rgba(255, 255, 255, 0.16), transparent 0 12px, transparent 13px),
    radial-gradient(circle at 55% 63%, rgba(255, 255, 255, 0.13), transparent 0 12px, transparent 13px),
    radial-gradient(circle at 51% 78%, rgba(255, 255, 255, 0.12), transparent 0 12px, transparent 13px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 24%),
    #060606;
}

.hg-contact-map__stage::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50% 48% 54% 46%;
  transform: rotate(-10deg);
}

.hg-contact-map__stage::after {
  content: "";
  position: absolute;
  inset: 16% 20% 18% 16%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 46% 54% 42% 58%;
  transform: rotate(22deg);
}

.hg-contact-map__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0 68%, transparent 84%);
  opacity: 0.52;
}

.hg-contact-map__route {
  position: absolute;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0.62;
  overflow: hidden;
}

.hg-contact-map__route::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 42%, #fff 50%, transparent 58% 100%);
  transform: translateX(-100%);
  animation: hg-map-route 3.8s var(--hg-ease) infinite;
}

.hg-contact-map__route--one {
  left: 55%;
  top: 35%;
  width: 34%;
  transform: rotate(68deg);
}

.hg-contact-map__route--two {
  left: 51%;
  top: 78%;
  width: 24%;
  transform: rotate(-96deg);
}

.hg-contact-map__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateY(-100%);
  opacity: 0.4;
  animation: hg-map-scan 5.6s linear infinite;
}

.hg-contact-map__city {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 128px;
  transform: translate(-12px, -12px);
  animation: hg-map-city 3.6s var(--hg-ease) infinite;
  animation-delay: calc(var(--index) * 180ms);
}

.hg-contact-map__city i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
  animation: hg-map-pulse 2.8s ease-out infinite;
  animation-delay: calc(var(--index) * 220ms);
}

.hg-contact-map__city strong,
.hg-contact-map__city span {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

.hg-contact-map__city strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 760;
}

.hg-contact-map__city span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 620;
}

@keyframes hg-map-route {
  0% {
    transform: translateX(-100%);
  }
  58%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes hg-map-scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes hg-map-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
  }
  70% {
    box-shadow: 0 0 0 26px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes hg-map-city {
  0%,
  100% {
    opacity: 0.78;
    transform: translate(-12px, -12px);
  }
  45% {
    opacity: 1;
    transform: translate(-12px, -16px);
  }
}

.hg-office-globe {
  position: relative;
  min-height: 100svh;
  padding: 104px 20px 42px;
  color: var(--hg-white);
  background:
    radial-gradient(circle at 68% 44%, rgba(255, 255, 255, 0.07), transparent 0 30%, transparent 58%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.035), transparent 0 18%, transparent 48%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.hg-office-globe::before {
  display: none;
}

.hg-office-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(rgba(255, 255, 255, 0.68) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}

.hg-office-globe__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1560px);
  min-height: calc(100svh - 146px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.37fr) minmax(520px, 0.63fr);
  gap: clamp(36px, 5.8vw, 104px);
  align-items: stretch;
}

.hg-office-globe__copy {
  min-height: 100%;
  padding: clamp(46px, 6.6vw, 108px) 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
}

.hg-office-globe__headline {
  display: grid;
  gap: 18px;
}

.hg-office-globe__headline p,
.hg-office-globe__headline h1,
.hg-office-globe__headline span,
.hg-office-globe__contact a,
.hg-office-globe__cities button,
.hg-office-globe__card p,
.hg-office-globe__card h2,
.hg-office-globe__card strong,
.hg-office-globe__card span {
  margin: 0;
  letter-spacing: 0;
}

.hg-office-globe__headline h1 {
  max-width: 720px;
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 0.92;
  font-weight: 540;
}

.hg-office-globe__headline p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 48px;
  line-height: 0.92;
  font-weight: 540;
  text-transform: uppercase;
}

.hg-office-globe__headline h1 {
  color: rgba(255, 255, 255, 0.42);
}

.hg-office-globe__headline span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 520;
}

.hg-office-globe__contact {
  display: grid;
  gap: 14px;
}

.hg-office-globe__contact > a {
  width: max-content;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.22;
  font-weight: 520;
  text-decoration: none;
}

.hg-office-globe__contact div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.hg-office-globe__contact div a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms ease;
}

.hg-office-globe__contact a:hover {
  color: #fff;
}

.hg-office-globe__cities {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-office-globe__cities button {
  min-height: 48px;
  padding: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-align: left;
  transition: color 260ms var(--hg-ease), padding-left 260ms var(--hg-ease);
}

.hg-office-globe__cities button span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  line-height: 1;
  font-weight: 760;
}

.hg-office-globe__cities button strong {
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

.hg-office-globe__cities button:hover,
.hg-office-globe__cities button.is-active {
  color: rgba(255, 255, 255, 0.96);
  padding-left: 6px;
}

.hg-office-globe__stage {
  position: relative;
  min-height: min(760px, calc(100svh - 146px));
  align-self: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.hg-office-globe__stage::before {
  display: none;
}

.hg-office-globe__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: grab;
}

.hg-office-globe__canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hg-office-globe__canvas.is-dragging {
  cursor: grabbing;
}

.hg-office-globe__labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hg-office-globe__label {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 780;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: color 220ms ease, opacity 220ms ease;
  cursor: pointer;
  pointer-events: auto;
  will-change: transform;
}

.hg-office-globe__label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.46;
}

.hg-office-globe__label.is-active,
.hg-office-globe__label:hover {
  color: #fff;
}

.hg-office-globe__card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: min(360px, calc(100% - 44px));
  padding: 18px;
  display: grid;
  gap: 9px;
  background: rgba(18, 18, 18, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition: opacity 260ms var(--hg-ease), transform 260ms var(--hg-ease);
}

.hg-office-globe__card.is-switching {
  opacity: 0.34;
  transform: translateY(8px);
}

.hg-office-globe__card p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1;
  font-weight: 780;
  text-transform: uppercase;
}

.hg-office-globe__card h2 {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 0.96;
  font-weight: 540;
}

.hg-office-globe__card strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 660;
}

.hg-office-globe__card span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}

.hg-koto-contact {
  width: min(100% - 24px, 1560px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 92px 0 42px;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(560px, 1fr);
  gap: clamp(56px, 8vw, 140px);
  align-items: stretch;
  background: #000;
}

.hg-koto-contact__left {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
}

.hg-koto-contact__headline p,
.hg-koto-contact__headline h2 {
  margin: 0;
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 0.92;
  font-weight: 540;
  letter-spacing: 0;
}

.hg-koto-contact__headline p {
  color: rgba(255, 255, 255, 0.92);
}

.hg-koto-contact__headline h2 {
  color: rgba(255, 255, 255, 0.42);
}

.hg-koto-contact__image {
  position: relative;
  width: min(100%, 360px);
  min-height: 220px;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #151515;
  border-radius: 4px;
}

.hg-koto-contact__image::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
}

.hg-koto-contact__image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.hg-koto-contact__image span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-koto-contact__image em {
  color: #fff;
  font-style: normal;
}

.hg-koto-contact__right {
  min-height: 620px;
  display: grid;
  align-content: stretch;
}

.hg-contact-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 88px);
  padding: 24px 0 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
  transition:
    background-color 420ms var(--hg-ease),
    border-color 420ms var(--hg-ease),
    transform 420ms var(--hg-ease);
}

.hg-contact-row:hover,
.hg-contact-row:focus-visible {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.26);
  outline: none;
}

.hg-contact-row--channels {
  padding-bottom: 118px;
}

.hg-contact-row h3,
.hg-contact-row p,
.hg-contact-row a,
.hg-contact-legal,
.hg-contact-legal a {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.22;
  font-weight: 520;
  letter-spacing: 0;
}

.hg-contact-row p,
.hg-contact-row a,
.hg-contact-channels a,
.hg-contact-legal,
.hg-contact-legal a {
  color: rgba(255, 255, 255, 0.42);
}

.hg-contact-row a:hover,
.hg-contact-channels a:hover,
.hg-contact-legal a:hover {
  color: #fff;
}

.hg-contact-channels {
  display: grid;
  justify-items: start;
}

.hg-contact-channels a {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.34;
  text-decoration: none;
}

.hg-contact-legal {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 88px);
  font-size: 15px;
  line-height: 1.2;
}

.hg-contact-legal p {
  margin: 0;
}

.hg-contact-legal__links {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  flex-wrap: wrap;
}

.hg-contact-legal a {
  font-size: 15px;
  text-decoration: none;
}

.hg-site-footer {
  position: relative;
  padding: 42px 20px 34px;
  color: rgba(255, 255, 255, 0.72);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hg-site-footer__inner {
  width: min(100%, 1560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(420px, 0.64fr);
  gap: clamp(34px, 6vw, 96px);
}

.hg-site-footer__brand,
.hg-site-footer__body {
  display: grid;
  gap: 22px;
}

.hg-site-footer__brand a,
.hg-site-footer__brand p,
.hg-site-footer__contacts p,
.hg-site-footer__contacts a,
.hg-site-footer__contacts span,
.hg-site-footer__links a,
.hg-site-footer__legal p,
.hg-site-footer__legal a {
  margin: 0;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 620;
  letter-spacing: 0;
}

.hg-site-footer__brand a {
  justify-self: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1;
  font-weight: 760;
  text-decoration: none;
}

.hg-site-footer__brand p,
.hg-site-footer__contacts p,
.hg-site-footer__contacts span,
.hg-site-footer__legal p {
  color: rgba(255, 255, 255, 0.38);
}

.hg-site-footer__body {
  gap: 36px;
}

.hg-site-footer__contacts,
.hg-site-footer__legal {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 88px);
}

.hg-site-footer__contacts div,
.hg-site-footer__legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
}

.hg-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hg-site-footer a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 240ms ease;
}

.hg-site-footer a:hover,
.hg-site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 1199px) {
  .hg-hero__title {
    font-size: 94px;
  }

  .hg-section-title,
  .hg-footer__headline {
    font-size: 58px;
  }

  .hg-page-hero h1 {
    font-size: 68px;
  }

  .hg-work-card,
  .hg-work-card--wide {
    grid-column: span 6;
  }

  .hg-logo-cloud {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hg-shell,
  .hg-hero__content,
  .hg-page-hero__content,
  .hg-footer__top,
  .hg-footer__bottom {
    width: min(100% - 34px, var(--hg-container));
  }

  .hg-nav__inner {
    width: 100%;
    min-height: 68px;
    padding: 0 14px;
    gap: 12px;
  }

  body.hg-nav-scrolled .hg-nav__inner {
    min-height: 58px;
    padding: 0 12px;
  }

  .hg-nav::before,
  body.hg-nav-scrolled .hg-nav::before {
    inset: 7px 8px;
  }

  .hg-nav__left,
  .hg-nav__right {
    gap: 10px;
  }

  .hg-menu-toggle {
    display: inline-flex;
    position: static;
    z-index: 1002;
    color: var(--hg-white);
    background: rgba(11, 11, 11, 0.24);
    border-color: rgba(255, 255, 255, 0.7);
  }

  body.hg-nav-scrolled .hg-menu-toggle {
    color: var(--hg-ink);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(11, 11, 11, 0.68);
  }

  body.hg-menu-open .hg-menu-toggle {
    color: var(--hg-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.82);
  }

  .hg-menu-toggle em {
    display: none;
  }

  .hg-nav__links {
    display: none;
  }

  .hg-time {
    min-width: 0;
    max-width: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    font-size: 10px;
  }

  .hg-menu-panel__inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
    padding: 112px 0 42px;
  }

  .hg-menu-panel__links {
    order: -1;
  }

  .hg-menu-panel__links a {
    font-size: 48px;
  }

  .hg-hero__content {
    padding: 132px 0 44px;
  }

  .hg-showreel {
    top: 31%;
    right: 22px;
    width: 108px;
    height: 108px;
    font-size: 11px;
  }

  .hg-hero__title {
    font-size: 62px;
  }

  .hg-hero__lead,
  .hg-page-hero p {
    font-size: 18px;
  }

  .hg-section {
    padding: 82px 0;
  }

  .hg-section-title,
  .hg-feature__content h2,
  .hg-footer__headline {
    font-size: 44px;
  }

  .hg-page-hero {
    min-height: 54svh;
    padding-top: 126px;
  }

  .hg-page-hero h1 {
    font-size: 48px;
  }

  .hg-split,
  .hg-feature,
  .hg-footer__top {
    grid-template-columns: 1fr;
  }

  .hg-meta-grid,
  .hg-capability-grid,
  .hg-list-grid {
    grid-template-columns: 1fr;
  }

  .hg-work-card,
  .hg-work-card--wide {
    grid-column: span 12;
    min-height: 360px;
  }

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

  .hg-feature__content {
    padding: 36px 24px;
  }

  .hg-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hg-koto-project {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }

  .hg-koto-project__copy {
    min-height: 0;
    padding-left: 0;
  }

  .hg-koto-project__text {
    max-width: none;
    margin: 42px 0 18px;
  }

  .hg-koto-news__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hg-module {
    padding: 86px 16px 96px;
  }

  .hg-module__inner {
    width: 100%;
  }

  .hg-module__header {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hg-module__title p,
  .hg-module__title h2 {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .hg-module__lead {
    max-width: none;
    font-size: 18px;
    line-height: 1.58;
  }

  .hg-module__facts div,
  .hg-service-row,
  .hg-career-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .hg-about__media {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hg-about__media img {
    height: 260px;
  }

  .hg-team-grid {
    margin-top: 52px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 10px;
  }

  .hg-about-depth__grid,
  .hg-client-wall__grid {
    margin-top: 52px;
  }

  .hg-about-depth__grid,
  .hg-client-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hg-team-member {
    min-height: 0;
  }

  .hg-team-member__media {
    min-height: 280px;
  }

  .hg-service-list,
  .hg-career-list {
    margin-top: 52px;
  }

  .hg-contact-map {
    min-height: auto;
    padding: 108px 16px 74px;
  }

  .hg-contact-map__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hg-contact-map__copy {
    gap: 28px;
  }

  .hg-contact-map__stage {
    min-height: 460px;
  }

  .hg-office-globe {
    min-height: auto;
    padding: 92px 16px 70px;
  }

  .hg-office-globe__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hg-office-globe__copy {
    min-height: 0;
    padding: 0;
    gap: 34px;
  }

  .hg-office-globe__headline h1 {
    max-width: 760px;
  }

  .hg-office-globe__stage {
    min-height: 560px;
  }

  .hg-koto-contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hg-koto-contact__left,
  .hg-koto-contact__right {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .hg-brand__text {
    max-width: 150px;
  }

  .hg-hero__eyebrow {
    max-width: 100%;
    align-items: flex-start;
    font-size: 0;
    line-height: 1.35;
    white-space: normal;
  }

  .hg-hero__eyebrow::after {
    content: "Brand / Identity / Digital";
    font-size: 11px;
  }

  .hg-hero__eyebrow::before {
    width: 32px;
    margin-top: 6px;
    flex: 0 0 auto;
  }

  .hg-hero__title {
    font-size: 42px;
  }

  .hg-section-title,
  .hg-feature__content h2,
  .hg-footer__headline {
    font-size: 36px;
  }

  .hg-page-hero h1 {
    font-size: 38px;
  }

  .hg-contact-grid {
    grid-template-columns: 1fr;
  }

  .hg-koto-hero {
    min-height: 560px;
    height: 100svh;
  }

  .hg-koto-hero::before {
    width: 78vw;
    height: 23vh;
  }

  .hg-koto-hero::after {
    width: 72vw;
    height: 18vh;
  }

  .hg-light-sculpture__beam {
    left: -34vw;
    top: 15vh;
    width: 124vw;
  }

  .hg-light-sculpture__beam--two {
    top: 19vh;
  }

  .hg-light-sculpture__beam--three {
    top: 23vh;
  }

  .hg-light-sculpture__glass {
    left: 2vw;
    top: 5vh;
    width: 118vw;
    height: 126px;
  }

  .hg-koto-hero__copy {
    left: 16px;
    right: 16px;
    bottom: 76px;
  }

  .hg-koto-hero__copy p {
    font-size: 15px;
  }

  .hg-koto-hero__copy h1 {
    font-size: clamp(42px, 15vw, 76px);
  }

  .hg-koto-hero__copy .hg-mask-line--title,
  .hg-koto-hero__copy .hg-mask-line--title > span {
    font-size: clamp(42px, 15vw, 76px) !important;
    line-height: 0.95 !important;
  }

  .hg-koto-hero__intro {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hg-koto-work {
    padding: 170px 10px 96px;
  }

  .hg-koto-project {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 56px;
  }

  .hg-koto-project__copy {
    min-height: 0;
    padding-left: 0;
  }

  .hg-koto-label,
  .hg-koto-project__copy h2 {
    font-size: 23px;
  }

  .hg-koto-project__text {
    max-width: none;
    margin: 42px 0 18px;
  }

  .hg-koto-project__media,
  .hg-koto-project__media img {
    min-height: 260px;
  }

  .hg-koto-news {
    padding: 92px 10px 136px;
  }

  .hg-module {
    padding: 92px 10px 104px;
  }

  .hg-koto-news__bar,
  .hg-koto-news__grid,
  .hg-koto-contact {
    width: calc(100% - 20px);
  }

  .hg-koto-news__bar {
    align-items: flex-start;
    flex-direction: column;
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .hg-koto-news__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hg-koto-news-card img {
    height: 220px;
  }

  .hg-koto-news-card h3 {
    line-height: 1.45;
  }

  .hg-koto-news-card p,
  .hg-koto-news-card span {
    line-height: 1.62;
  }

  .hg-team-grid {
    grid-template-columns: 1fr;
  }

  .hg-about-depth__grid,
  .hg-client-wall__grid {
    grid-template-columns: 1fr;
  }

  .hg-about-depth__card,
  .hg-client-wall__item {
    min-height: 0;
  }

  .hg-team-member__media {
    min-height: 330px;
  }

  .hg-contact-map {
    padding: 98px 10px 62px;
  }

  .hg-contact-map__copy p,
  .hg-contact-map__copy h1 {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .hg-contact-map__stage {
    min-height: 380px;
  }

  .hg-contact-map__city {
    min-width: 106px;
  }

  .hg-contact-map__city strong {
    font-size: 12px;
  }

  .hg-office-globe {
    padding: 88px 10px 58px;
  }

  .hg-office-globe__headline {
    gap: 14px;
  }

  .hg-office-globe__headline h1 {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .hg-office-globe__contact > a {
    font-size: 18px;
  }

  .hg-office-globe__cities button {
    min-height: 44px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .hg-office-globe__stage {
    min-height: 430px;
    border-radius: 6px;
  }

  .hg-office-globe__label {
    font-size: 9px;
  }

  .hg-office-globe__label::before {
    width: 14px;
  }

  .hg-office-globe__card {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 14px;
    border-radius: 14px;
  }

  .hg-koto-contact {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 74px 0 56px;
  }

  .hg-koto-contact__left,
  .hg-koto-contact__right {
    min-height: 0;
  }

  .hg-koto-contact__left {
    gap: 36px;
  }

  .hg-koto-contact__headline p,
  .hg-koto-contact__headline h2 {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .hg-koto-contact__image {
    width: 100%;
    min-height: 240px;
  }

  .hg-koto-contact__image img {
    min-height: 240px;
  }

  .hg-contact-row,
  .hg-contact-legal {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hg-contact-row {
    padding: 22px 0 42px;
  }

  .hg-contact-row--channels {
    padding-bottom: 52px;
  }

  .hg-contact-row h3,
  .hg-contact-row p,
  .hg-contact-row a,
  .hg-contact-channels a {
    font-size: 21px;
  }

  .hg-contact-legal {
    gap: 20px;
  }

  .hg-contact-legal__links {
    gap: 22px;
  }

  .hg-site-footer {
    padding: 36px 10px 30px;
  }

  .hg-site-footer__inner,
  .hg-site-footer__contacts,
  .hg-site-footer__legal {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hg-site-footer__body {
    gap: 26px;
  }

  .hg-site-footer__links {
    gap: 12px 18px;
  }

  .hg-legal-hero {
    padding: 122px 16px 54px;
  }

  .hg-legal-hero__inner,
  .hg-legal-hero__inner > div,
  .hg-legal-body {
    grid-template-columns: 1fr;
  }

  .hg-legal-hero h1 {
    grid-column: 1;
    max-width: none;
  }

  .hg-legal-hero__inner > div {
    grid-column: 1;
    gap: 14px;
    margin-top: 8px;
  }

  .hg-legal-body {
    padding: 0 16px 92px;
  }

  .hg-legal-index {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 34px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hg-legal-content {
    padding-top: 0;
  }

  .hg-legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hg-legal-section p {
    grid-column: 1;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .hg-scroll-hero {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hg-scroll-hero__sticky {
    position: relative;
    min-height: 100svh;
    height: auto;
    padding: 118px 16px 76px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hg-scroll-hero__title {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    transform: none !important;
  }

  .hg-scroll-hero__title h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 0.94;
  }

  .hg-scroll-hero__title h1 span {
    white-space: normal;
  }

  .hg-intro-screen {
    min-height: 100svh;
    padding: 98px 16px 72px;
  }

  .hg-intro-screen__copy {
    max-width: none;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.06;
  }

  .hg-scroll-line + .hg-scroll-line {
    margin-top: 0.28em;
  }

  body.hg-gsap-ready .hg-scroll-line > span,
  body.hg-scroll-hero-static .hg-scroll-line > span {
    transform: none !important;
    opacity: 1 !important;
  }

  .hg-scroll-hero .hg-koto-dot {
    position: absolute;
  }

  .hg-koto-work {
    padding: 96px 16px 110px;
  }

  .hg-work-scroll {
    min-height: 0;
    height: auto;
  }

  .hg-work-scroll__pin {
    display: none;
  }

  .hg-work-scroll__mobile {
    display: grid;
    gap: 34px;
  }

  .hg-work-mobile-card {
    display: grid;
    gap: 18px;
  }

  .hg-work-mobile-card img,
  .hg-work-mobile-card video {
    width: 100%;
    min-height: 260px;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
    border-radius: 6px;
    background: #151515;
    cursor: zoom-in;
  }

  .hg-work-mobile-card p,
  .hg-work-mobile-card h2,
  .hg-work-mobile-card span {
    margin: 0;
  }

  .hg-work-mobile-card div {
    display: grid;
    gap: 8px;
  }

  .hg-work-mobile-card div p:first-child {
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    font-weight: 760;
    text-transform: uppercase;
  }

  .hg-work-mobile-card h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 26px;
    line-height: 1.05;
    font-weight: 620;
  }

  .hg-work-mobile-card div p:not(:first-child) {
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1.52;
  }

  .hg-work-mobile-card span {
    color: rgba(255, 255, 255, 0.34);
    font-size: 12px;
  }

  .hg-lightbox {
    padding: 58px 12px 28px;
  }

  .hg-lightbox__image {
    max-height: calc(100svh - 124px);
    border-radius: 6px;
  }

  .hg-lightbox__close {
    top: 14px;
    right: 14px;
  }

  .hg-detail-modal {
    padding: 58px 12px 28px;
  }

  .hg-detail-modal__panel {
    max-height: calc(100svh - 86px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
    border-radius: 7px;
  }

  .hg-detail-modal__media {
    grid-row: auto;
    min-height: 220px;
    aspect-ratio: 1.2 / 1;
  }

  .hg-detail-modal__title {
    margin-top: 0;
    font-size: clamp(30px, 10vw, 44px);
  }

  .hg-detail-modal__copy {
    margin-top: 0;
    font-size: 16px;
  }

  .hg-detail-modal__list {
    margin-top: 4px;
  }

  .hg-detail-modal__close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 767px) {
  .hg-news-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .hg-news-row:hover,
  .hg-news-row:focus-visible {
    transform: translateY(-3px);
  }

  .hg-news-row h3 {
    line-height: 1.28;
  }

  .hg-news-row p {
    max-width: none;
    line-height: 1.82;
  }

  .hg-news-pagination {
    align-items: stretch;
    flex-direction: column;
    margin-top: 34px;
  }

  .hg-news-pagination__pages {
    order: -1;
  }

  .hg-news-pagination__control {
    width: 100%;
  }

  .hg-insight-detail {
    padding: 104px 16px 0;
  }

  .hg-insight-hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hg-insight-hero__meta {
    margin-bottom: 26px;
  }

  .hg-insight-hero h1 {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.96;
  }

  .hg-insight-hero p {
    margin-top: 22px;
    font-size: 13px;
  }

  .hg-insight-media img {
    aspect-ratio: 1.1 / 1;
  }

  .hg-insight-body {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 0 90px;
  }

  .hg-insight-side {
    position: static;
  }

  .hg-insight-richtext {
    font-size: 14px;
    line-height: 1.78;
  }

  .hg-insight-richtext h2 {
    margin-top: 40px;
    font-size: 21px;
  }

  .hg-insight-related {
    padding-top: 72px;
  }
}

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

}
