@charset "UTF-8";
.site-nav {
  display: none;
  visibility: hidden;
  z-index: -1;
}
.site-nav--active {
  display: block;
  visibility: visible;
  z-index: 3;
}
.site-nav--open {
  z-index: 10;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #010216;
  z-index: 3;
}
.hero:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #010216 0%, rgba(1, 2, 22, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__nav-echo {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-white);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}
.hero__nav-echo .site-nav__toggle,
.hero__nav-echo .site-nav__brand,
.hero__nav-echo .site-nav__emblem {
  background: transparent;
  box-shadow: none;
}
.hero__nav-row {
  display: flex;
  align-items: stretch;
}
.hero__video {
  position: absolute;
  inset: 0;
  --hero-video-flip: 1;
  --hero-video-scale: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scaleX(var(--hero-video-flip)) scale(var(--hero-video-scale));
  transform-origin: center;
}
.hero__video--shadow {
  --hero-video-flip: -1;
  z-index: 1;
  mix-blend-mode: screen;
}
.hero__backdrop, .hero__vignette, .hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__vignette {
  z-index: 3;
  background: radial-gradient(circle at 52% 48%, rgba(126, 204, 255, 0.09), transparent 16%), radial-gradient(circle at 50% 90%, rgba(0, 0, 0, 0.58), transparent 38%), radial-gradient(circle at 100% 50%, rgba(2, 4, 9, 0.62), transparent 22%);
}
.hero__glow--top {
  z-index: 3;
  background: radial-gradient(circle at 23% 9%, rgba(189, 232, 255, 0.22), transparent 36%);
}
.hero__glow--focus {
  z-index: 3;
  background: radial-gradient(circle at 58% 48%, rgba(74, 168, 255, 0.12), transparent 12%);
}
.hero__inner {
  position: relative;
  min-height: calc(100svh - 20px);
  display: flex;
  align-items: flex-end;
  padding: clamp(132px, 16vw, 160px) clamp(24px, 5vw, 72px) clamp(42px, 7vw, 72px);
  mix-blend-mode: difference;
  z-index: 2;
}
.hero__copy {
  display: flex;
  width: min(100%, 500px);
  flex-direction: column;
  align-items: flex-start;
  mix-blend-mode: difference;
}
.hero__title,
.hero h1,
.hero h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  mix-blend-mode: difference;
}
.hero__rule {
  display: none;
}
.hero__description,
.hero p {
  width: 100%;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(209, 209, 209, 0.2);
  font-family: var(--font-body);
  font-size: 14.6px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-white-70);
}
@media (max-width: 980px) {
  .hero {
    min-height: calc(100svh - 16px);
  }
  .hero__nav-echo {
    top: 20px;
    left: 20px;
  }
  .hero__inner {
    min-height: calc(100svh - 16px);
    padding-top: 128px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 42px;
  }
  .hero__video {
    object-position: 60% center;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__description {
    font-size: 14.6px;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - 12px);
    border-radius: 22px;
    margin: 6px;
  }
  .hero__nav-echo {
    top: 16px;
    left: 16px;
  }
  .hero__inner {
    min-height: calc(100svh - 12px);
    align-items: flex-end;
    padding: 118px 20px 28px;
  }
  .hero__video {
    object-position: 64% center;
    --hero-video-scale: 1.12;
  }
  .hero__title {
    font-size: clamp(32px, 32px + (40px - 32px) * (100vw - 320px) / (680px - 320px), 40px);
  }
  .hero__description {
    font-size: 15px;
    line-height: 1.7;
    padding-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
}

.about {
  position: relative;
  min-height: 900px;
  overflow: visible;
}
.about__marquee {
  width: 100%;
  height: 271px;
  background: #010215;
  position: relative;
  z-index: 3;
}
.mode-view .about__marquee-band {
  position: absolute;
  left: 50%;
  width: min(1600px, 100% - 64px);
  height: 271px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.about__marquee-surface {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about__content-wrapper {
  position: relative;
  background: linear-gradient(180deg, var(--color-blue-4, #000216) 0%, var(--color-blue-8, #00042b) 6.46%, var(--color-azure-17, #011f58) 14.37%, var(--color-blue-27, #001d8a) 20.3%, var(--color-azure-36, #003db7) 26.69%, var(--color-azure-49, #0080f8) 34.97%, var(--color-azure-67, #5fbdf7) 40.43%, var(--color-grey-91, #d3effb) 45.33%, var(--color-grey-910, rgba(211, 239, 252, 0)) 50%);
  width: 100%;
  min-height: 2000px;
}
.mode-view .about__characters {
  position: sticky;
  top: 0;
  height: 100svh;
  margin-bottom: -100svh;
  pointer-events: none;
  z-index: 2;
}
.mode-view .about__character {
  position: absolute;
  top: clamp(136px, 16vh, 220px);
  will-change: left, right;
  pointer-events: none;
  overflow: hidden;
}
.about__character--left {
  left: -100%;
  width: min(31vw, 497px);
}
.about__character--right {
  right: -100%;
  width: min(38.8vw, 621px);
}
.about__character-image {
  position: relative;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 1;
}
.about__character--left .about__character-image {
  aspect-ratio: 71/87;
  background-image: url("../../images/about-robot.png");
  background-position: bottom left;
}
.about__character--right .about__character-image {
  aspect-ratio: 200/219;
  background-image: url("../../images/about-artist.png");
  background-position: bottom right;
}
.mode-view .about__cloud {
  position: absolute;
  z-index: 0;
  width: 477px;
  max-width: 100%;
  height: 192px;
  background-image: url("../../images/cloud-small.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  filter: blur(4px);
  opacity: 0;
  pointer-events: none;
}
.about__cloud--1 {
  left: -100%;
  bottom: 20%;
}
.about__cloud--2 {
  top: 26%;
  right: -100%;
}
.about .marquee--work {
  top: auto;
  bottom: clamp(80px, 10vh, 160px);
  z-index: 1;
  color: rgba(27, 37, 64, 0.18);
}
@media (max-width: 980px) {
  .about__marquee-band {
    top: 36px;
    width: min(1600px, 100% - 40px);
  }
  .about__content-wrapper {
    min-height: clamp(1040px, 138svh, 1360px);
    padding-top: 96px;
    padding-bottom: 220px;
  }
  .about__characters {
    height: min(100svh, 960px);
    margin-bottom: min(-100svh, -960px);
  }
  .about__content {
    top: 72px;
    width: min(680px, 100% - 40px);
    min-height: min(838px, 100svh - 144px);
    padding-inline: 20px;
  }
  .about__character {
    top: clamp(156px, 18vh, 240px);
  }
  .about__character--left {
    width: min(36vw, 420px);
  }
  .about__character--right {
    width: min(39vw, 470px);
  }
  .about__cloud {
    width: min(477px, 96%);
    height: auto;
    aspect-ratio: 477/192;
  }
  .about__cloud--1 {
    right: -12%;
    bottom: 12%;
  }
  .about__cloud--2 {
    top: 6%;
    right: -6%;
  }
}
@media (max-width: 680px) {
  .about__marquee-band {
    top: 28px;
    width: calc(100% - 24px);
    height: 220px;
  }
  .about__marquee-band::before {
    top: 54px;
  }
  .about__marquee-band::after {
    bottom: 46px;
  }
  .about__content-wrapper {
    min-height: clamp(920px, 122svh, 1160px);
    padding-top: 84px;
    padding-bottom: 180px;
  }
  .about__characters {
    display: none;
  }
  .about__content {
    top: 64px;
    width: calc(100% - 24px);
    min-height: min(838px, 100svh - 112px);
    padding-inline: 16px;
  }
}

.mode-view .work {
  position: relative;
  z-index: 2;
  margin-top: -33%;
}
.mode-view .work::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 60%, #fff 100%);
  top: -15%;
}
.mode-view .work__pin {
  position: relative;
}
.mode-view .work__grid-wrapper {
  position: relative;
}
.mode-view .work__grid {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  height: auto;
  min-height: 100vh;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  isolation: isolate;
  overflow: clip;
}
.mode-view .work__grid:first-child {
  border-top: 1px solid #e6e6e6;
}
.mode-view .work__grid[data-index="0"] {
  z-index: 1;
}
.mode-view .work__grid[data-index="1"] {
  z-index: 2;
}
.mode-view .work__grid[data-index="2"] {
  z-index: 3;
}
.mode-view .work__grid[data-index="3"] {
  z-index: 4;
}
.mode-view .work__image {
  width: min(28.1875vw, 451px);
  height: 100%;
  min-height: 100vh;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
}
.mode-view .work__image img,
.mode-view .work__image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mode-view .work__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mode-view .work__content {
  display: flex;
  position: relative;
  flex: 1;
  width: auto;
  min-width: 0;
  height: 100%;
  min-height: 100vh;
  padding: 0;
  justify-content: stretch;
  align-items: stretch;
  flex-shrink: 0;
  text-align: center;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  background: #fff;
}
.mode-view .work__content-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: clamp(72px, 7vw, 96px) clamp(32px, 4vw, 74px) 64px;
  background: #fff;
}
@media (max-width: 680px) {
  .mode-view .work__content {
    width: 100%;
    height: auto;
    min-height: 0;
    border: none;
  }
}
.mode-view .work__bg-pattern {
  width: min(28.125vw, 450px);
  height: 640px;
  flex-shrink: 0;
  background-color: #fff;
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 6px 6px;
}
@media (max-width: 680px) {
  .mode-view .work__bg-pattern {
    display: none;
  }
}
.mode-view .work__counter-sep {
  opacity: 0.45;
}
.mode-view .work__logo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(300px, 80%);
}
.mode-view .work__logo--dawn {
  background-image: url("../../images/logo-dawn.webp");
}
.mode-view .work__logo--trick {
  background-image: url("../../images/logo-trick.webp");
}
.mode-view .work__logo--outlanders {
  background-image: url("../../images/logo-outlanders.webp");
}
.mode-view .work__logo--umt {
  background-image: url("../../images/logo-umt.webp");
}
.mode-view .work__logo-fallback {
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 54px;
  line-height: 0.95;
  text-transform: uppercase;
  font-family: var(--font-body);
  opacity: 0;
}
.mode-view .work__logo-fallback--dawn {
  color: #e02020;
}
.mode-view .work__logo-fallback--trick {
  color: #d2491d;
  -webkit-text-stroke: 2px #221408;
  text-shadow: 0 4px 0 #c9b896;
}
.mode-view .work__logo-fallback--outlanders {
  color: #9aa3ad;
  font-weight: 600;
  letter-spacing: 0.35em;
}
.mode-view .work__logo-fallback--umt {
  color: #aab4c4;
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.mode-view .work__slide-description {
  color: #5d626d;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 36px;
}
@media (max-width: 680px) {
  .mode-view .work__grid {
    flex-direction: column;
    height: auto;
    min-height: 100svh;
  }
  .mode-view .work__grid--reverse {
    display: flex;
    flex-direction: column-reverse; /* หรือใช้ Order ช่วยจัดโครงสร้างใหม่ */
  }
  .mode-view .work__image {
    width: 100%;
    height: min(52svh, 420px);
  }
  .mode-view .work__content-inner {
    padding: 36px 28px 44px;
  }
}

.stats {
  background: #fff;
  overflow: hidden;
  border-top: 1px solid #e6e6e6;
}
.mode-view .stats {
  position: relative;
  z-index: 5;
}
.stats:before {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.mode-view .stats:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 250px;
  width: 100%;
  z-index: 1;
}
.stats__hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  padding: 8vh 24px 10vh;
}
.mode-view .stats__circuit {
  position: absolute;
  top: 50%;
  left: 50%;
  --orb-shift-y: -74px;
  width: min(1200px, 100% - 48px);
  aspect-ratio: 1200/550;
  transform: translate(-50%, -52%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(12, 28, 64, 0.08);
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background: #eaeaea;
}
.stats__circuit-art {
  transform: scale(1.01);
}
.mode-view .stats__circuit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% + var(--orb-shift-y));
  width: clamp(34px, 5.2vw, 74px);
  height: clamp(34px, 5.2vw, 74px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 96, 255, 0.9);
  filter: blur(14px);
  opacity: 0.8;
  animation: stats-blue-orb-loop 3.8s linear infinite;
  z-index: -1;
}
.mode-view .stats__circuit::after {
  content: "";
  position: absolute;
  inset: 16% 18%;
  background: radial-gradient(circle, rgba(0, 96, 255, 0.12) 0%, rgba(0, 96, 255, 0) 72%);
  filter: blur(44px);
  z-index: -1;
}
@keyframes stats-blue-orb-loop {
  0% {
    width: clamp(420px, 72vw, 1100px);
    height: clamp(420px, 72vw, 1100px);
    border: clamp(34px, 6vw, 97px) solid rgba(0, 96, 255, 0.58);
    background: transparent;
    opacity: 0.3;
    filter: blur(14px);
    animation-timing-function: linear;
  }
  60.53% {
    width: clamp(26px, 2.2vw, 32px);
    height: clamp(26px, 2.2vw, 32px);
    border: clamp(18px, 2.8vw, 41px) solid rgba(0, 96, 255, 0.8);
    background: transparent;
    opacity: 0.95;
    filter: blur(14px);
    animation-timing-function: linear;
  }
  63.16% {
    width: clamp(26px, 2.2vw, 32px);
    height: clamp(26px, 2.2vw, 32px);
    border: clamp(18px, 2.8vw, 41px) solid rgba(0, 96, 255, 0.8);
    background: transparent;
    opacity: 0.95;
    filter: blur(14px);
    animation-timing-function: cubic-bezier(0.22, 1.25, 0.36, 1);
  }
  78.95% {
    width: clamp(34px, 5.2vw, 74px);
    height: clamp(34px, 5.2vw, 74px);
    border: 0;
    background: rgba(0, 96, 255, 0.9);
    opacity: 0.82;
    filter: blur(14px);
    animation-timing-function: linear;
  }
  84.21% {
    width: clamp(34px, 5.2vw, 74px);
    height: clamp(34px, 5.2vw, 74px);
    border: 0;
    background: rgba(0, 96, 255, 0.9);
    opacity: 0.82;
    filter: blur(14px);
    animation-timing-function: cubic-bezier(0.22, 1.25, 0.36, 1);
  }
  100% {
    width: clamp(420px, 72vw, 1100px);
    height: clamp(420px, 72vw, 1100px);
    border: clamp(34px, 6vw, 97px) solid rgba(0, 96, 255, 0.58);
    background: transparent;
    opacity: 0.3;
    filter: blur(14px);
  }
}
.stats__circuit-art {
  width: 100%;
  height: 100%;
}
.stats__headline {
  position: relative;
  z-index: 3;
  color: #0b0c0e;
  text-align: center;
  font-family: "TT Norms Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--Static-Headline-Large-Line-Height, 40px);
  letter-spacing: var(--Static-Headline-Large-Tracking, 0);
  text-transform: uppercase;
  margin-top: 225px;
  max-width: 530px;
}
.mode-view .stats__float {
  position: absolute;
  width: clamp(70px, 8.5vw, 130px);
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
  will-change: transform;
  z-index: 2;
}
.mode-view .stats__float--1 {
  top: 14%;
  left: 14%;
  background-image: url("../../images/float-headphones.webp");
}
.mode-view .stats__float--2 {
  top: 13%;
  right: 13%;
  background-image: url("../../images/float-controller.webp");
}
.mode-view .stats__float--3 {
  top: 42%;
  left: 21%;
  background-image: url("../../images/float-coffee.webp");
}
.mode-view .stats__float--4 {
  top: 44%;
  right: 21%;
  background-image: url("../../images/float-folder.webp");
}
.mode-view .stats__float--5 {
  bottom: 18%;
  left: 11%;
  background-image: url("../../images/float-tablet.webp");
}
.mode-view .stats__float--6 {
  bottom: 16%;
  right: 9%;
  background-image: url("../../images/float-laptop.webp");
}
.stats__marquee {
  position: relative;
  z-index: 2;
  padding: 0 3vw 26vh;
}
.stats__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.stats__group {
  display: flex;
  flex: 0 0 auto;
}
.stats__col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-width: clamp(300px, 30vw, 480px);
}
.stats__cell {
  flex: 0 0 30vh;
  display: flex;
  flex-direction: column;
  padding: 0 2.8vw;
}
.stats__cell--top {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
  border-bottom: 1px solid #e6e6e6;
}
.stats__cell--bottom {
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 30px;
}
.stats__col--top .stats__cell--bottom {
  border-right: 1px solid #e6e6e6;
}
.stats__col--bottom .stats__cell--top {
  border-right: 1px solid #e6e6e6;
}
.stats__label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-regular);
  line-height: var(--lh-label);
  color: var(--color-grey-9464);
  color: var(--color-grey);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
}
.stats__value {
  font-family: var(--font-mono);
  font-weight: 200;
  font-size: clamp(54px, 6.5vw, 100px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 14px;
  color: var(--color-black-solid, #000);
  white-space: nowrap;
}
.stats__value--word {
  letter-spacing: 0.03em;
}
.stats__sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-grey);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
  max-width: 260px;
  line-height: 1.6;
}
.mode-view .stats__glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55vh;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(116, 185, 255, 0.55) 55%, #1273ff 100%);
  filter: blur(2px);
}
.stats .btn {
  position: relative;
  z-index: 3;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .stats__col {
    min-width: clamp(210px, 32vw, 300px);
  }
  .stats__cell {
    flex-basis: 24vh;
    padding: 0 3.6vw;
  }
  .stats__cell--top {
    padding-top: 24px;
  }
  .stats__cell--bottom {
    padding-bottom: 24px;
  }
  .stats__value {
    font-size: clamp(44px, 8vw, 76px);
  }
  .stats__sub {
    max-width: 220px;
  }
  .stats__marquee {
    padding-bottom: 14vh;
  }
}
@media (max-width: 680px) {
  .stats__hero {
    padding: 10vh 16px 9vh;
  }
  .stats__float {
    display: none;
  }
  .stats__circuit {
    --orb-shift-y: -52px;
    width: calc(100% - 24px);
    transform: translate(-50%, -48%);
    color: rgba(0, 96, 255, 0.12);
    opacity: 0.75;
  }
  .stats__circuit::after {
    inset: 24% 10%;
  }
  .stats__col {
    min-width: 62vw;
  }
  .stats__cell {
    flex-basis: 19vh;
    padding: 0 7vw;
  }
  .stats__cell--top {
    padding-top: 20px;
  }
  .stats__cell--bottom {
    padding-bottom: 20px;
  }
  .stats__value {
    font-size: clamp(40px, 14vw, 62px);
    margin-top: 10px;
  }
  .stats__label {
    font-size: 10px;
  }
  .stats__sub {
    font-size: 10px;
    letter-spacing: 0.14em;
    max-width: 70vw;
  }
  .stats__marquee {
    padding-bottom: 8vh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stats__circuit::before {
    animation: none;
    width: 52px;
    height: 52px;
    border: 0;
    background: rgba(0, 96, 255, 0.75);
    opacity: 0.75;
  }
}

@property --pill-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes pill-beam {
  to {
    --pill-angle: 360deg;
  }
}
.mode-view .services {
  position: relative;
  /* ---------- Section header (on the dark lower band, centred) ----------
     Sits on the dark part of the gradient (image #17). It scrolls up & away
     over the first slide, and the deck rises into view behind it. */
  /* ---------- Deck wrapper (3 columns) ----------
     Centred by default; GSAP drops it down at slide 0 (room for the header)
     and lifts it back to centre as the header scrolls away. */
  /* ---------- LEFT · navigation (fixed rail + marker, list scrolls) ---------- */
  /* ---------- CENTER · image stage ---------- */
  /* ---------- RIGHT · text column (sits ~120px right of the frame) ---------- */
}
.mode-view .services__pin {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, var(--color-grey-910, rgba(211, 239, 252, 0)) 0%, var(--color-grey-91, #d3effb) 9.34%, var(--color-azure-67, #5fbdf7) 19.14%, var(--color-azure-49, #0080f8) 30.06%, var(--color-azure-36, #003db7) 46.62%, var(--color-blue-27, #001d8a) 59.4%, var(--color-azure-17, #011f58) 71.26%, var(--color-blue-8, #00042b) 87.08%, #010216 100%), #fff;
}
.mode-view .services__bg-dark {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: #010216;
}
.mode-view .services__head {
  position: absolute;
  top: 58%;
  left: 0;
  width: 100%;
  z-index: 6;
  text-align: center;
  pointer-events: none;
}
.mode-view .services__head .pill {
  pointer-events: auto;
  position: relative;
  isolation: isolate;
}
.mode-view .services__head .pill::before, .mode-view .services__head .pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--pill-angle), transparent 0deg 290deg, rgba(170, 210, 255, 0.55) 325deg, #f2f8ff 346deg, rgba(170, 210, 255, 0.55) 352deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: pill-beam 4s linear infinite;
  pointer-events: none;
}
.mode-view .services__head .pill::after {
  filter: blur(4px);
  opacity: 0.85;
}
@media (max-width: 680px) {
  .mode-view .services__head {
    top: 54%;
  }
}
.mode-view .services__head-title p {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(30px, 3.9vw, 40px);
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-style: normal;
  line-height: 120%; /* 48px */
  letter-spacing: 0.8px;
}
@media (max-width: 680px) {
  .mode-view .services__head-title p {
    margin-top: 18px;
    font-size: clamp(24px, 7vw, 34px);
    padding: 0 6vw;
  }
}
.mode-view .services__deck {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.mode-view .services__nav {
  position: absolute;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 210px;
  height: min(460px, 72vh);
  overflow: hidden;
  padding-left: 36px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
@media (max-width: 980px) {
  .mode-view .services__nav {
    display: none;
  }
}
.mode-view .services__nav-marker {
  position: absolute;
  left: 0;
  top: 103px;
  width: 20px;
  height: 0;
  border-top: 1px solid #fff;
  z-index: 4;
}
.mode-view .services__nav-marker::after {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  width: 1px;
  height: 30px;
  background: #fff;
}
.mode-view .services__nav-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  will-change: transform;
}
.mode-view .services__nav-track::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 1;
}
.mode-view .services__nav-link {
  position: relative;
  font-family: "TT Norms Pro", var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.mode-view .services__nav-link::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
}
.mode-view .services__nav-link:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -36px;
  top: calc(100% + 11px);
  transform: translateY(-50%);
  width: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
}
.mode-view .services__nav-link:hover {
  opacity: 0.55;
}
.mode-view .services__nav-link--active, .mode-view .services__nav-link.active {
  opacity: 1;
  font-weight: 700;
}
.mode-view .services__stage {
  position: absolute;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: min(552px, 44vw);
  height: min(740px, 88vh);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--item-spacing-8_87, 8.87px);
  border: var(--altcha-border-width, 1px) solid var(--color-azure-1832, rgba(27, 37, 64, 0.32));
  background: var(--color-white-0, rgba(255, 255, 255, 0));
}
@media (max-width: 980px) {
  .mode-view .services__stage {
    left: 50%;
    top: 29%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 42vh;
  }
}
@media (max-width: 680px) {
  .mode-view .services__stage {
    top: 30%;
    width: 88vw;
    height: 34vh;
  }
}
.mode-view .services__frame {
  background-image: url("../../svg/service-border/service-border-3.svg"), url("../../svg/service-border/service-border-2.svg"), url("../../svg/service-border/service-border-1.svg"), url("../../svg/service-border/service-border.svg");
  background-repeat: no-repeat;
  background-size: 5.55px 5.55px;
  background-position: top left, top right, bottom left, bottom right;
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.mode-view .services__img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  will-change: clip-path;
  width: 545px;
  border-radius: 30px;
  padding: 20px;
}
.mode-view .services__img--video {
  width: 100%;
  object-fit: contain;
  border-radius: 30px;
  padding: 20px;
}
@media (max-width: 980px) {
  .mode-view .services__img {
    width: 100%;
    background-size: contain;
    background-origin: content-box;
    padding: 9% 11%;
  }
  .mode-view .services__img--video {
    height: 100%;
    padding: 9% 11%;
  }
}
.mode-view .services__texts {
  position: absolute;
  left: calc(18% + min(552px, 44vw) + 96px);
  top: 0;
  height: 100%;
  width: min(420px, 28vw);
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 980px) {
  .mode-view .services__texts {
    left: 8vw;
    width: 84vw;
    top: 50%;
    height: 48%;
  }
}
@media (max-width: 680px) {
  .mode-view .services__texts {
    left: 7vw;
    width: 86vw;
    top: 52%;
    height: 46%;
  }
}
.mode-view .services__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform;
}
@media (max-width: 980px) {
  .mode-view .services__text {
    justify-content: flex-start;
  }
}
.mode-view .services__title,
.mode-view .services h2,
.mode-view .services h3,
.mode-view .services h4,
.mode-view .services h5,
.mode-view .services h6 {
  font-family: var(--font-mono);
  font-weight: var(--fw-bold);
  font-size: clamp(32px, 3.4vw, 50px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
  font-weight: 200;
  line-height: 110%;
  overflow-wrap: normal;
}
@media (max-width: 980px) {
  .mode-view .services__title,
  .mode-view .services h2,
  .mode-view .services h3,
  .mode-view .services h4,
  .mode-view .services h5,
  .mode-view .services h6 {
    font-size: clamp(30px, 5vw, 46px);
    letter-spacing: 0.06em;
  }
}
@media (max-width: 680px) {
  .mode-view .services__title,
  .mode-view .services h2,
  .mode-view .services h3,
  .mode-view .services h4,
  .mode-view .services h5,
  .mode-view .services h6 {
    font-size: clamp(28px, 8vw, 40px);
  }
}
.mode-view .services__desc br {
  display: none;
}
.mode-view .services__desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-white-70);
  margin-top: 22px;
  max-width: 330px;
  color: var(--color-grey-9464, rgba(224, 246, 255, 0.64));
  font-family: var(--font-family-Font-1, Inter);
  font-size: 13.6px;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-24, 24px);
}
@media (max-width: 980px) {
  .mode-view .services__desc {
    margin-top: 16px;
    font-size: 14px;
  }
}
@media (max-width: 680px) {
  .mode-view .services__desc {
    margin-top: 14px;
    font-size: 14px;
    max-width: none;
  }
}
.mode-view .services__checklist,
.mode-view .services ul {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 980px) {
  .mode-view .services__checklist,
  .mode-view .services ul {
    margin-top: 24px;
    gap: 10px;
  }
}
@media (max-width: 680px) {
  .mode-view .services__checklist,
  .mode-view .services ul {
    margin-top: 20px;
    gap: 10px;
  }
}
.mode-view .services__check,
.mode-view .services li {
  background-image: url("../../svg/service-border/service-border-3.svg"), url("../../svg/service-border/service-border-2.svg"), url("../../svg/service-border/service-border-1.svg"), url("../../svg/service-border/service-border.svg");
  background-repeat: no-repeat;
  background-size: 5.55px 5.55px;
  background-position: top left, top right, bottom left, bottom right;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border: 1px solid rgba(27, 37, 64, 0.32);
  background-color: rgba(255, 255, 255, 0);
  font-family: var(--font-body);
  color: var(--color-grey-9464, rgba(224, 246, 255, 0.64));
  font-size: 12.2px;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-20, 20px); /* 163.934% */
}
@media (max-width: 980px) {
  .mode-view .services__check,
  .mode-view .services li {
    padding: 12px 14px;
    font-size: 13px;
  }
}
@media (max-width: 680px) {
  .mode-view .services__check,
  .mode-view .services li {
    padding: 11px 13px;
    font-size: 13px;
    gap: 10px;
  }
}
.mode-view .services__check:before,
.mode-view .services li:before {
  content: "";
  background: url("/application/themes/kos/assets/images/check-icon.svg") no-repeat center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.mode-view .services__check-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.mode-view .services__check-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #7b5cff;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.mode-view .services__supported {
  background-image: url("../../svg/service-border/service-border-3.svg"), url("../../svg/service-border/service-border-2.svg"), url("../../svg/service-border/service-border-1.svg"), url("../../svg/service-border/service-border.svg");
  background-repeat: no-repeat;
  background-size: 5.55px 5.55px;
  background-position: top left, top right, bottom left, bottom right;
  margin-top: 26px;
  padding: 22px 18px;
  border: 1px solid rgba(27, 37, 64, 0.32);
  background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 980px) {
  .mode-view .services__supported {
    margin-top: 18px;
    padding: 16px 16px;
  }
}
@media (max-width: 680px) {
  .mode-view .services__supported {
    display: none;
  }
}
.mode-view .services__supported-label {
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: var(--color-grey-9464, rgba(224, 246, 255, 0.64));
  font-size: 12.2px;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-20, 20px); /* 163.934% */
}
.mode-view .services__supported-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}
.mode-view .services__supported-img {
  display: block;
  height: 20px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

body.contact-page {
  background: #010215;
}

.contact {
  position: relative;
  z-index: 6;
  overflow: hidden;
  min-height: clamp(1160px, 82vw, 1360px);
  background: #010215;
}
.contact:before {
  content: "";
  top: -1400px;
  left: 0;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 2179px;
  background: linear-gradient(0deg, var(--color-blue-4, #000216) 0%, var(--color-blue-8, #00042b) 6.46%, var(--color-azure-17, #011f58) 14.37%, var(--color-blue-27, #001d8a) 20.3%, var(--color-azure-36, #003db7) 26.69%, var(--color-azure-49, #0080f8) 34.97%, var(--color-azure-67, #5fbdf7) 40.43%, var(--color-grey-91, #d3effb) 45.33%, var(--color-grey-910, rgba(211, 239, 252, 0)) 50%);
}
.contact__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: color-dodge;
}
.contact__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  mix-blend-mode: screen;
  opacity: 0.26;
  filter: saturate(0.7) brightness(0.78);
  transform: scaleX(-1) scale(1.04);
  transform-origin: center;
}
.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
  gap: clamp(68px, 7vw, 112px);
  max-width: 1190px;
  margin: 0 auto;
  align-items: start;
}
.contact__info {
  max-width: 520px;
  padding-top: clamp(126px, 11vw, 208px);
}
.contact__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
}
.contact__intro {
  width: min(100%, 465px);
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.52;
}
.contact__details {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.contact__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact__term {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.contact__value {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.42;
  text-align: right;
}
.contact__value a {
  color: inherit;
  transition: opacity 0.22s ease;
}
.contact__value a:hover, .contact__value a:focus-visible {
  opacity: 0.7;
}
.contact__value--address {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}
.contact__form {
  padding: clamp(58px, 4.4vw, 72px) clamp(28px, 3.6vw, 50px) clamp(36px, 3.2vw, 44px);
  border-radius: var(--measurements-radius-0, 0) var(--measurements-radius-0, 0) 0 0;
  background: linear-gradient(180deg, rgba(10, 169, 255, 0.6) 0%, rgba(1, 2, 21, 0) 94.5%);
  backdrop-filter: blur(38px);
}
.contact__form-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-white);
}
.contact__form-copy {
  max-width: 320px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}
.contact__fields {
  margin-top: 34px;
}
.contact__field {
  display: block;
  margin: 0;
}
.contact__services {
  margin: 0;
}
.contact__field + .contact__field, .contact__field-grid + .contact__services, .contact__services + .contact__field, .contact__field + .contact__field-grid {
  margin-top: 18px;
}
.contact__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact__field-grid > .contact__field + .contact__field {
  margin-top: 0;
}
.contact__field--hidden {
  display: none !important;
}
.contact__label {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}
.contact__input {
  width: 100%;
  border: 1px solid rgba(195, 223, 255, 0.16);
  border-radius: 14px;
  background: rgba(0, 8, 24, 0.15);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.2;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.contact__input:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(0, 8, 24, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.contact input.contact__input,
.contact select.contact__input {
  height: 46px;
  padding: 0 16px;
}
.contact select.contact__input {
  padding-left: 40px;
}
.contact__textarea {
  min-height: 136px;
  padding: 14px 16px;
  resize: vertical;
}
.contact__services {
  border: 0;
  padding: 0;
}
.contact__chip {
  display: inline-flex;
  margin: 0 10px 12px 0;
}
.contact__chip-input, .contact__agree-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact__chip-ui {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(195, 223, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.contact__chip-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
}
.contact__chip-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact__chip-icon--diamond {
  background: url("../../svg/daimond.svg") no-repeat center/contain;
}
.contact__chip-text {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1;
}
.contact__chip-input:checked + .contact__chip-ui {
  border-color: transparent;
  background: rgba(231, 232, 234, 0.36);
  color: var(--color-white);
}
.contact__chip-input:checked + .contact__chip-ui .contact__chip-icon {
  color: var(--color-white);
}
.contact__chip-input:focus-visible + .contact__chip-ui {
  outline: 1px solid rgba(255, 255, 255, 0.48);
  outline-offset: 2px;
}
.contact__chip-ui:hover {
  transform: translateY(-1px);
}
.contact__select-wrap {
  position: relative;
  display: block;
}
.contact__select,
.contact select.contact__select {
  appearance: none;
  padding-right: 42px;
  text-align: center;
}
.contact__select-wrap--has-icon .contact__select, .contact__select-wrap--has-icon select.contact__select {
  padding-left: 42px;
  text-align: center;
  text-align-last: center;
}
.contact__select-icon, .contact__select-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.contact__select-icon svg, .contact__select-arrow svg {
  display: block;
}
.contact__select-icon {
  left: 16px;
}
.contact__select-icon svg {
  width: 17px;
  height: 17px;
}
.contact__select-arrow {
  right: 16px;
}
.contact__select-arrow svg {
  width: 11px;
  height: 7px;
}
.contact__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}
.contact__agree-box {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 4px;
  border: 1px solid rgba(195, 223, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.contact__agree-input:checked + .contact__agree-box {
  border-color: transparent;
  background: rgba(245, 245, 245, 0.96);
  box-shadow: inset 0 0 0 4px rgba(10, 18, 33, 0.72);
}
.contact__agree-input:focus-visible + .contact__agree-box {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.contact__submit {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 26px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.contact__submit:disabled {
  cursor: wait;
  transform: none;
  filter: none;
  opacity: 0.9;
}
.contact__submit:disabled .contact__submit-cap path {
  fill: #d6d2ca;
}
.contact__submit:disabled .contact__submit-label {
  background: #d6d2ca;
}
.contact__submit:hover, .contact__submit:focus-visible {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
  outline: none;
}
.contact__submit:hover .contact__submit-cap path, .contact__submit:focus-visible .contact__submit-cap path {
  fill: #ddd9d0;
}
.contact__submit:hover .contact__submit-label, .contact__submit:focus-visible .contact__submit-label {
  background: #ddd9d0;
}
.contact__submit-cap {
  display: block;
  flex-shrink: 0;
}
.contact__submit-cap path {
  fill: #eceae5;
  transition: fill 0.22s ease;
}
.contact__submit-label {
  display: flex;
  flex: 1 0 0;
  padding: 15px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #eceae5;
  color: #191314;
  font-family: var(--font-display);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  transition: background 0.22s ease;
  height: 38px;
}
.contact__status {
  min-height: 22px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}
.contact__status[data-state=success] {
  color: #d5ffe3;
}
.contact__status[data-state=error] {
  color: #ffd2d2;
}
.contact__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: max-content;
  color: rgba(150, 164, 206, 0.16);
  font-family: var(--font-mono);
  font-size: clamp(54px, 6.5vw, 98px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 980px) {
  .contact {
    min-height: auto;
    padding-bottom: 248px;
  }
  .contact__video {
    opacity: 0.22;
    object-position: 68% top;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    max-width: 760px;
  }
  .contact__info {
    max-width: none;
  }
  .contact__intro {
    width: 100%;
    max-width: 520px;
  }
  .contact__form {
    width: 100%;
  }
  .contact__marquee {
    bottom: 146px;
    font-size: clamp(42px, 7vw, 76px);
  }
}
@media (max-width: 680px) {
  .contact {
    padding: 104px 20px 190px;
  }
  .contact__title {
    font-size: clamp(42px, 12vw, 54px);
  }
  .contact__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact__value {
    text-align: left;
  }
  .contact__value--address {
    max-width: 300px;
  }
  .contact__form {
    padding: 34px 22px 28px;
  }
  .contact__video {
    opacity: 0.18;
    object-position: 64% top;
    transform: scaleX(-1) scale(1.12);
  }
  .contact__field-grid {
    grid-template-columns: 1fr;
  }
  .contact__agree {
    align-items: flex-start;
  }
  .contact__marquee {
    bottom: 120px;
    font-size: 34px;
    letter-spacing: 0.14em;
  }
}

/*# sourceMappingURL=home.css.map */
