body#gssvi,
body#gssvi *,
body#gssvi *::before,
body#gssvi *::after {
  box-sizing: border-box;
}

body#gssvi {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "LINE Seed TW";
  src: url("../font/LINESeedTW_OTF_Rg.woff2") format("woff2"), url("../font/LINESeedTW_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed TW";
  src: url("../font/LINESeedTW_OTF_Bd.woff2") format("woff2"), url("../font/LINESeedTW_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body#gssvi {
  --line: rgba(129, 165, 255, 0.12);
  --line-soft: rgba(129, 165, 255, 0);
  --text: #f1f6ff;
  --text-soft: #C2DAFF;
  --panel: rgba(20, 33, 78, 0.52);
  --panel-border: rgba(191, 215, 255, 0.4);
  --nav-bg: rgba(29, 39, 88, 0.68);
  --nav-border: rgba(152, 180, 255, 0.45);
  --stars-ty: 0px;
  --stars-scale: 1.2;
  --stars-mx: 0px;
  --stars-my: 0px;
  --planet-ty: 32vh;
  --planet-scale: 1;
  --planet-bottom-shift-y: 46vh;
  --planet-bottom-opacity: 0;
  --planet-light-shift-y: 54vh;
  --planet-light-opacity: 0;
  --planet-light-breathe-y: 0px;
  --planet-light-breathe-scale-x: 1;
  --planet-light-breathe-scale-y: 1;
  --planet-light-base-scale-x: 1.12;
  --planet-light-base-scale-y: 0.76;
  --planet-light-lock-offset: 220px;
  --planet-light-dive-amount: 72px;
  --grid-size: 76px;
  color: var(--text);
  background: #0c132a;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  body#gssvi {
    --planet-light-lock-offset: 190px;
    --planet-light-dive-amount: 64px;
  }
}
@media only screen and (max-width: 768px) {
  body#gssvi {
    --planet-light-lock-offset: 162px;
    --planet-light-dive-amount: 56px;
  }
}
@media only screen and (max-width: 678px) {
  body#gssvi {
    --planet-light-lock-offset: 136px;
    --planet-light-dive-amount: 48px;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi {
    --planet-light-lock-offset: 116px;
    --planet-light-dive-amount: 42px;
  }
}

body#gssvi::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image: radial-gradient(circle at 50% -24%, rgba(40, 74, 168, 0.18), transparent 42%), linear-gradient(180deg, #0d152d 0%, #091126 42%, #060c1d 72%, #040814 100%);
  background-size: 100% 100%, 100% 100%;
  background-position: center, center;
}

body#gssvi::after {
  content: "";
  position: fixed;
  inset: -6vh -4vw;
  pointer-events: none;
  z-index: -2;
  background: url("../images/bg_star.avif") center top/cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
  transform: translate3d(var(--stars-mx), calc(var(--stars-ty) + var(--stars-my)), 0) scale(var(--stars-scale));
  transform-origin: center top;
  will-change: transform;
}

@keyframes gridLinesFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.95;
  }
}
body#gssvi .bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
body#gssvi .bg-grid-lines-v,
body#gssvi .bg-grid-lines-h {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  animation: gridLinesFadeIn 1.2s ease-out forwards;
}
body#gssvi .bg-grid-lines-v {
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  background-position: 0 0;
  animation-delay: 0.06s;
}
body#gssvi .bg-grid-lines-h {
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  background-position: 0 0;
  animation-delay: 0.18s;
}
body#gssvi .bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 1), var(--grid-size));
  grid-auto-rows: var(--grid-size);
  justify-content: start;
  align-content: start;
}
body#gssvi .bg-grid-cell {
  background: rgba(255, 255, 255, 0);
  transition: background-color 380ms ease;
}
body#gssvi .bg-grid-cell.is-hot {
  background: rgba(255, 255, 255, 0.06);
}
body#gssvi .bg-planet {
  position: absolute;
  left: 50%;
  bottom: -33vw;
  width: min(2320px, 135vw);
  transform: translate(-50%, calc(var(--planet-ty) * 0.18)) scale(var(--planet-scale));
  will-change: transform;
  display: block;
  height: auto;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  body#gssvi .bg-planet {
    bottom: -28vw;
  }
}
@media only screen and (max-width: 768px) {
  body#gssvi .bg-planet {
    bottom: -26vw;
  }
}
@media only screen and (max-width: 678px) {
  body#gssvi .bg-planet {
    bottom: -16vw;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi .bg-planet {
    bottom: -8vw;
  }
}
body#gssvi .bg-planet__bottomwrap {
  width: 100%;
  height: 100%;
  position: relative;
}
body#gssvi .bg-planet__bottom {
  position: absolute;
  left: 50%;
  bottom: -40vw;
  width: min(2300px, 135vw);
  transform: translate(-50%, calc(var(--planet-ty) * 0.18 + var(--planet-bottom-shift-y))) scale(var(--planet-scale));
  will-change: transform;
  display: block;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: var(--planet-bottom-opacity);
}
body#gssvi .bg-planet__light {
  position: absolute;
  left: 50%;
  bottom: -30vw;
  width: min(1180px, 68vw);
  transform: translate(-50%, calc(var(--planet-ty) * 0.18 + var(--planet-light-shift-y) + var(--planet-light-breathe-y))) scaleX(calc(var(--planet-scale) * var(--planet-light-base-scale-x) * var(--planet-light-breathe-scale-x))) scaleY(calc(var(--planet-scale) * var(--planet-light-base-scale-y) * var(--planet-light-breathe-scale-y)));
  will-change: transform;
  display: block;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: var(--planet-light-opacity);
}
body#gssvi main {
  position: relative;
  z-index: 2;
}
body#gssvi .section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 100px;
  position: relative;
}
body#gssvi .section > * {
  position: relative;
  z-index: 1;
}
body#gssvi .sec-inner {
  width: min(1095px, 100%);
  margin: 0 auto;
}
body#gssvi .sec-title {
  margin: 0;
  font-family: "LINE Seed TW", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 700;
}
body#gssvi .sec-title.--h2 {
  font-size: 72px;
  line-height: 1.35;
}
body#gssvi .sec-title.--h3 {
  font-size: 60px;
  line-height: 1.35;
}
body#gssvi .sec-title.--h5 {
  font-size: 32px;
  line-height: 1.2;
}
body#gssvi .sec-title.--text-shadow {
  text-shadow: 0 5px 35px rgba(85, 133, 255, 0.85);
}
@media only screen and (max-width: 1280px) {
  body#gssvi .sec-title.--h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1024px) {
  body#gssvi .sec-title.--h3 {
    font-size: 39px;
  }
}
@media only screen and (max-width: 678px) {
  body#gssvi .sec-title.--h2 {
    font-size: 50px;
    line-height: 1.35;
  }
  body#gssvi .sec-title.--h3 {
    font-size: 30px;
  }
}
body#gssvi .font-lineseed {
  font-family: "LINE Seed TW", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}
body#gssvi .font-lineseed.--regular {
  font-weight: 400;
}
body#gssvi .gssvi-panel {
  position: relative;
  overflow: visible;
}
body#gssvi .gssvi-panel.--panel-bg {
  background: linear-gradient(35deg, rgba(12, 19, 44, 0.2) 0%, rgba(172, 211, 255, 0.2) 60%, rgba(12, 19, 44, 0.2) 100%);
  backdrop-filter: blur(18px);
}
body#gssvi .gssvi-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(90deg, rgba(133, 71, 246, 0.3) 0%, rgba(255, 255, 255, 0.87) 25%, rgba(255, 255, 255, 0.3) 85%, rgba(133, 71, 246, 0.3) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
body#gssvi .gssvi-panel::after {
  content: none;
}
body#gssvi .deco-cross {
  position: absolute;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: transparent;
  transform: translate(-50%, -50%);
}
body#gssvi .deco-cross::before,
body#gssvi .deco-cross::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body#gssvi .deco-cross::before {
  width: 1px;
  height: 9px;
}
body#gssvi .deco-cross::after {
  width: 9px;
  height: 1px;
}
body#gssvi .deco-cross.left-top {
  top: 0;
  left: 0;
}
body#gssvi .deco-cross.right-top {
  top: 0;
  left: 100%;
}
body#gssvi .deco-cross.left-bottom {
  top: 100%;
  left: 0;
}
body#gssvi .deco-cross.right-bottom {
  top: 100%;
  left: 100%;
}
body#gssvi .frame-panel {
  width: min(1240px, 100%);
  border: 1px solid rgba(198, 219, 255, 0.38);
  background: linear-gradient(180deg, rgba(16, 29, 72, 0.38), rgba(9, 18, 52, 0.54));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: clamp(24px, 3vw, 50px);
  position: relative;
}
body#gssvi .frame-panel::before,
body#gssvi .frame-panel::after {
  content: "+";
  position: absolute;
  font-size: 28px;
  color: rgba(221, 236, 255, 0.82);
  line-height: 1;
}
@media (prefers-reduced-motion: reduce) {
  body#gssvi {
    scroll-behavior: auto;
  }
}

body#gssvi .site-header {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 30;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 1024px) {
  body#gssvi .site-header {
    gap: 15px;
  }
}
body#gssvi .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
body#gssvi .logo img {
  display: block;
  width: 180px;
  height: auto;
}
body#gssvi .main-nav {
  margin: 0 auto;
  max-width: 610px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 8px 15px;
}
body#gssvi .main-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(from 90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(59, 74, 174, 0.75) 70%, rgba(125, 85, 179, 0.4) 100%);
  filter: blur(5px);
  transform: scaleY(-1);
  opacity: 0.68;
}
body#gssvi .main-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(-90deg, #7a5acb 0%, rgba(119, 103, 159, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.3;
}
body#gssvi .main-nav ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
body#gssvi .main-nav a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #DFDFDF;
  border-radius: 999px;
  padding: 10px 8px;
  font-size: 16px;
  font-weight: 500;
  transition: 180ms ease;
  white-space: nowrap;
}
body#gssvi .main-nav a:hover, body#gssvi .main-nav a.is-active {
  color: #fff;
  background: rgba(138, 175, 255, 0.1);
  text-shadow: 0 0 12px rgba(168, 197, 255, 0.85);
}
@media only screen and (max-width: 678px) {
  body#gssvi .main-nav a .--desk {
    display: none;
  }
}
body#gssvi .main-nav a .--mobile {
  display: none;
}
@media only screen and (max-width: 678px) {
  body#gssvi .main-nav a .--mobile {
    display: inline-block;
  }
}
@media only screen and (max-width: 375px) {
  body#gssvi .main-nav a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1280px) {
  body#gssvi .site-header {
    top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  body#gssvi .logo {
    width: 100%;
    justify-content: center;
  }
  body#gssvi .logo img {
    width: 145px;
    height: 30px;
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    filter: blur(16px);
    transform: translate3d(0, -34px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroCopyIn {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroPlanetIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate(calc(-50% + 9vw), calc(var(--planet-ty) * 0.18 + 20vh)) scale(calc(var(--planet-scale) * 0.82));
  }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translate(-50%, calc(var(--planet-ty) * 0.18)) scale(var(--planet-scale));
  }
}
body#gssvi .hero {
  text-align: center;
  --hero-exit-scale: 1;
  --hero-exit-blur: 0px;
  --hero-exit-opacity: 1;
  transform: translate3d(0, -10vh, 0) scale(var(--hero-exit-scale));
  filter: blur(var(--hero-exit-blur));
  opacity: var(--hero-exit-opacity);
  will-change: transform, filter, opacity;
}
body#gssvi .hero .sec-title {
  opacity: 0;
  animation: heroTitleIn 1.9s 0.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, filter, transform;
}
body#gssvi .hero p {
  margin: 25px auto 0;
  max-width: 900px;
  font-size: 16px;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0;
  animation: heroCopyIn 1.1s 2.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, filter, transform;
}
body#gssvi .bg-planet {
  opacity: 0;
  animation: heroPlanetIn 1.85s 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, filter, transform;
}
@media (prefers-reduced-motion: reduce) {
  body#gssvi .hero .sec-title,
  body#gssvi .hero p {
    opacity: 1;
    filter: none;
    animation: none;
    transform: none;
  }
  body#gssvi .bg-planet {
    opacity: 1;
    filter: none;
    animation: none;
  }
}
@media (max-width: 680px) {
  body#gssvi .hero {
    transform: translate3d(0, -6vh, 0) scale(var(--hero-exit-scale));
  }
  body#gssvi .hero p {
    letter-spacing: 0.06em;
  }
}

body#gssvi #why {
  --why-title-progress: 0;
  --why-panel-progress: 0;
  --why-panel-pad-progress: 0;
  --why-panel-shell-progress: 0;
  --why-panel-text-progress: 0;
  --why-panel-flash: 0;
}
body#gssvi .why-wrap {
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}
body#gssvi .why-wrap .why-title {
  margin: 0;
  position: relative;
  display: inline-block;
  font-family: "LINE Seed TW", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 72px;
  line-height: 1.5;
  font-weight: 800;
  text-shadow: 0 0 26px rgba(129, 175, 255, 0.82);
  opacity: var(--why-title-progress, 1);
  filter: blur(calc((1 - var(--why-title-progress, 1)) * 18px));
  transform: translate3d(calc((1 - var(--why-title-progress, 1)) * -110px), 0, 0);
  will-change: transform, filter, opacity;
}
body#gssvi .why-wrap .why-title .why-title-ghost {
  visibility: hidden;
  display: block;
}
body#gssvi .why-wrap .why-title .why-title-typed {
  position: absolute;
  inset: 0;
  display: block;
}
@media only screen and (max-width: 834px) {
  body#gssvi .why-wrap .why-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 678px) {
  body#gssvi .why-wrap .why-title {
    font-size: 40px;
  }
}
body#gssvi .why-wrap .why-panel {
  padding: calc(clamp(28px, 3vw, 46px) * var(--why-panel-pad-progress, 1));
  font-size: 16px;
  line-height: 1.95;
  opacity: 1;
  filter: blur(calc((1 - var(--why-panel-progress, 1)) * 18px));
  transform-origin: right top;
  transform: scale(var(--why-panel-progress, 1));
  will-change: transform, filter, opacity;
}
body#gssvi .why-wrap .why-panel::before {
  opacity: var(--why-panel-shell-progress, 0);
}
body#gssvi .why-wrap .why-panel .deco-cross {
  opacity: 1;
}
body#gssvi .why-wrap .why-panel p {
  opacity: var(--why-panel-text-progress, 1);
  filter: blur(calc((1 - var(--why-panel-text-progress, 1)) * 5px));
  transform: translate3d(0, calc((1 - var(--why-panel-text-progress, 1)) * 6px), 0);
  will-change: transform, filter, opacity;
}
@media only screen and (max-width: 768px) {
  body#gssvi .why-wrap {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 678px) {
  body#gssvi .why-wrap {
    flex-direction: column;
  }
}

body#gssvi #core {
  --core-title-progress: 0;
}
body#gssvi .core {
  width: min(1320px, 100%);
}
body#gssvi .core h2 {
  margin: 0 0 30px;
  text-align: center;
  opacity: var(--core-title-progress, 1);
  filter: blur(calc((1 - var(--core-title-progress, 1)) * 16px));
  transform: translate3d(0, calc((1 - var(--core-title-progress, 1)) * -140px), 0);
  will-change: transform, filter, opacity;
}
body#gssvi .core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
  align-items: stretch;
  padding-top: 15px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body#gssvi .core-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}
body#gssvi .core-item {
  --core-ball-progress: 0;
  --core-card-progress: 0;
  --core-text-progress: 0;
  --core-card-flash: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body#gssvi .core-ball {
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto -75px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(124, 173, 255, 0.45);
  padding: 22px;
  font-size: clamp(22px, 2vw, 38px);
  font-weight: 700;
  line-height: 1.35;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: var(--core-ball-progress, 1);
  filter: blur(calc((1 - var(--core-ball-progress, 1)) * 14px));
  transform: translate3d(0, calc((1 - var(--core-ball-progress, 1)) * 62px), 0);
  will-change: transform, filter, opacity;
}
body#gssvi .core-ball::after {
  content: "";
  position: absolute;
  inset: 8px 8px 8px 8px;
  background-color: #aaa;
  z-index: 1;
  border-radius: 50%;
}
body#gssvi .core-ball span {
  display: block;
  font-size: 25px;
  margin-top: 6px;
  position: relative;
  z-index: 2;
}
body#gssvi .core-ball h5 {
  position: relative;
  z-index: 2;
}
body#gssvi .core-ball.belief {
  background: url(../images/core_ball_b_1.png);
}
body#gssvi .core-ball.belief::after {
  background: url(../images/core_ball_t_1.png);
}
body#gssvi .core-ball.value {
  background: url(../images/core_ball_b_2.png);
}
body#gssvi .core-ball.value::after {
  background: url(../images/core_ball_t_2.png);
}
body#gssvi .core-ball.vision {
  background: url(../images/core_ball_b_3.png);
}
body#gssvi .core-ball.vision::after {
  background: url(../images/core_ball_t_3.png);
}
@media only screen and (max-width: 834px) {
  body#gssvi .core-ball {
    margin: 0 auto -50px;
    width: min(100%, 250px);
  }
}
body#gssvi .core-card {
  padding: 39px 30px;
  position: relative;
  z-index: 2;
  flex: 1;
  transform-origin: 50% 50%;
  opacity: var(--core-card-progress, 1);
  filter: blur(calc((1 - var(--core-card-progress, 1)) * 12px));
  transform: scale(var(--core-card-progress, 1));
  box-shadow: 0 0 calc(var(--core-card-flash, 0) * 36px) rgba(170, 212, 255, 0.56), 0 20px 45px rgba(12, 21, 60, 0.42);
  will-change: transform, filter, opacity;
}
body#gssvi .core-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.95;
}
body#gssvi .core-card li {
  position: relative;
  padding-left: 15px;
}
body#gssvi .core-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}
body#gssvi .core-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
}
body#gssvi .core-card p,
body#gssvi .core-card ul {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  opacity: var(--core-text-progress, 1);
  filter: blur(calc((1 - var(--core-text-progress, 1)) * 8px));
  transform: translate3d(0, calc((1 - var(--core-text-progress, 1)) * 20px), 0);
  will-change: transform, filter, opacity;
}

body#gssvi .commitment {
  flex-direction: column;
  gap: 20px;
}
body#gssvi .commitment.section {
  padding-left: 0;
  padding-right: 0;
}
body#gssvi .commitment .sec-inner {
  padding: 0 30px;
}
body#gssvi .marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100vw;
  z-index: 3;
}
body#gssvi .marquee-wrap {
  width: 100%;
  overflow: hidden;
  opacity: 0.94;
}
body#gssvi .marquee-wrap--reverse {
  margin-top: -20px;
}
@media only screen and (max-width: 425px) {
  body#gssvi .marquee-wrap--reverse {
    margin-top: 0px;
  }
}
body#gssvi .marquee-track {
  display: flex;
  width: max-content;
}
body#gssvi .marquee-track .marquee-group {
  gap: 5px;
}
body#gssvi .marquee-track .marquee-group span {
  line-height: 1.5;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(90deg, white 0%, #bacdff 36%, white 67%, #4759f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 834px) {
  body#gssvi .marquee-track .marquee-group span {
    font-size: 65px;
  }
}
@media only screen and (max-width: 768px) {
  body#gssvi .marquee-track .marquee-group span {
    font-size: 60px;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi .marquee-track .marquee-group span {
    font-size: 39px;
  }
}
body#gssvi .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2.8rem;
  padding-right: 2.8rem;
  white-space: nowrap;
}
body#gssvi .marquee-group span {
  flex-shrink: 0;
}
body#gssvi .commitment-center {
  --commitment-lt-left: 0%;
  --commitment-lt-top: 0%;
  --commitment-rt-left: 0%;
  --commitment-rt-top: 0%;
  --commitment-lb-left: 0%;
  --commitment-lb-top: 0%;
  --commitment-rb-left: 0%;
  --commitment-rb-top: 0%;
  --commitment-border-opacity: 0;
  --commitment-border-height: 0;
  --commitment-title-progress: 0;
  --commitment-text-progress: 0;
  text-align: center;
  padding: 235px 15px 50px;
  width: min(860px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: -250px;
}
body#gssvi .commitment-center::before {
  opacity: var(--commitment-border-opacity, 1);
  clip-path: inset(0 0 calc((1 - var(--commitment-border-height, 1)) * 100%) 0);
  will-change: opacity, clip-path;
}
body#gssvi .commitment-center .deco-cross.left-top {
  left: var(--commitment-lt-left);
  top: var(--commitment-lt-top);
}
body#gssvi .commitment-center .deco-cross.right-top {
  left: var(--commitment-rt-left);
  top: var(--commitment-rt-top);
}
body#gssvi .commitment-center .deco-cross.left-bottom {
  left: var(--commitment-lb-left);
  top: var(--commitment-lb-top);
}
body#gssvi .commitment-center .deco-cross.right-bottom {
  left: var(--commitment-rb-left);
  top: var(--commitment-rb-top);
}
body#gssvi .commitment-center .commitment-content h5 {
  padding: 39px 0 20px;
  opacity: var(--commitment-title-progress, 1);
  transform: translate3d(0, calc((1 - var(--commitment-title-progress, 1)) * 36px), 0);
  will-change: transform, opacity;
}
body#gssvi .commitment-center .commitment-content p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 2;
  color: #eef4ff;
  opacity: var(--commitment-text-progress, 1);
  transform: translate3d(0, calc((1 - var(--commitment-text-progress, 1)) * -26px), 0);
  will-change: transform, opacity;
}
@media only screen and (max-width: 551px) {
  body#gssvi .commitment-center .commitment-content p {
    font-size: 14px;
  }
}
body#gssvi .commitment-center .commitment-content .sec-title {
  line-height: 1.5;
}
body#gssvi .commitment-center .commitment-content .sec-title br {
  display: none;
}
@media only screen and (max-width: 551px) {
  body#gssvi .commitment-center .commitment-content .sec-title br {
    display: inline-block;
  }
}
@media only screen and (max-width: 834px) {
  body#gssvi .commitment-center {
    padding: 200px 15px 50px;
    margin-top: -220px;
  }
}
@media only screen and (max-width: 768px) {
  body#gssvi .commitment-center {
    padding: 25px 15px 50px;
    margin-top: 25px;
  }
}

body#gssvi .video-section {
  --video-progress: 0;
  --video-pop: 0;
  --video-exit: 0;
  min-height: 190svh;
  align-items: flex-start;
  padding: 0 0 14svh;
  padding-inline: 0;
}
body#gssvi .video-stage {
  width: 100vw;
  min-height: 190svh;
  position: relative;
}
body#gssvi .video-card {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  aspect-ratio: 16/9;
  margin: 0 auto;
  background: rgba(9, 25, 70, 0.68);
  border: 1px solid rgba(200, 220, 255, 0.36);
  display: flex;
  overflow: hidden;
  transform-origin: center top;
  transform: translateY(calc((1 - var(--video-progress)) * 58svh + var(--video-progress) * (50svh - 50%) - var(--video-exit) * 22svh)) scale(calc(0.85 + var(--video-progress) * 0.15 + var(--video-pop) * 0.04 - var(--video-exit) * 0.16));
  opacity: calc((0.3 + var(--video-progress) * 0.7) * (1 - var(--video-exit)));
  filter: blur(calc(var(--video-exit) * 18px));
  transition: transform 120ms linear, opacity 120ms linear, filter 120ms linear;
  box-shadow: 0 34px 70px rgba(2, 9, 30, 0.48);
}
body#gssvi .video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
body#gssvi .video-card .video-play-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(208, 226, 255, 0.72);
  background: rgba(8, 20, 52, 0.55);
  backdrop-filter: blur(2px);
  box-shadow: 0 14px 36px rgba(5, 12, 34, 0.35);
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: opacity 0.24s ease, transform 0.24s ease, background-color 0.24s ease;
}
body#gssvi .video-card .video-play-toggle span {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(255,255,255,0.92)' d='M6.8 3.2c-1.1-.7-2.5.1-2.5 1.4v14.8c0 1.3 1.4 2.1 2.5 1.4l11.3-7.4c1-.7 1-2.1 0-2.8L6.8 3.2z'/%3E%3C/svg%3E");
}
body#gssvi .video-card .video-play-toggle:hover {
  background: rgba(12, 28, 68, 0.72);
}
body#gssvi .video-card .video-play-toggle:focus-visible {
  outline: 2px solid rgba(224, 237, 255, 0.9);
  outline-offset: 3px;
}
body#gssvi .video-card .video-play-toggle.is-playing {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}
@media (max-width: 1220px) {
  body#gssvi .video-section {
    min-height: 165svh;
  }
  body#gssvi .video-stage {
    min-height: 165svh;
  }
  body#gssvi .video-card {
    width: 100%;
    transform: translateY(calc((1 - var(--video-progress)) * 46svh + var(--video-progress) * (50svh - 50%) - var(--video-exit) * 18svh)) scale(calc(0.88 + var(--video-progress) * 0.12 + var(--video-pop) * 0.03 - var(--video-exit) * 0.14));
  }
}
@media (max-width: 680px) {
  body#gssvi .video-section {
    min-height: 150svh;
    padding-bottom: 10svh;
  }
  body#gssvi .video-stage {
    min-height: 150svh;
  }
  body#gssvi .video-card {
    width: 100%;
    transform: translateY(calc((1 - var(--video-progress)) * 34svh + var(--video-progress) * (50svh - 50%) - var(--video-exit) * 14svh)) scale(calc(0.9 + var(--video-progress) * 0.1 + var(--video-pop) * 0.02 - var(--video-exit) * 0.12));
  }
}
@media (prefers-reduced-motion: reduce) {
  body#gssvi .video-card {
    transform: none;
    filter: none;
    transition: none;
  }
  body#gssvi .video-card video {
    height: 100%;
  }
}

body#gssvi .design-copy {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 550px;
}
body#gssvi .design-copy .sec-title {
  padding-bottom: 20px;
}
@media only screen and (max-width: 551px) {
  body#gssvi .design-copy .sec-title.--h2 {
    font-size: 38px;
    line-height: 1.35;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi .design-copy .sec-title.--h2 {
    font-size: 33px;
    line-height: 1.35;
  }
}
body#gssvi .design-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
}
@media only screen and (max-width: 425px) {
  body#gssvi .design-copy {
    padding: 25px;
  }
  body#gssvi .design-copy p {
    font-size: 14px;
  }
}
body#gssvi .design-system-section {
  --design-progress: 0;
  --design-card-progress: 0;
  --design-rail-progress: 0;
  --design-rail-scale: 1.1;
  --design-shot-scale: 1.3;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 560svh;
}
body#gssvi .design-system-flow {
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) minmax(550px, 1fr) minmax(120px, 0.5fr);
  gap: 40px;
  align-items: start;
  overflow: visible;
}
@media only screen and (max-width: 768px) {
  body#gssvi .design-system-flow {
    grid-template-columns: 0.2fr 3fr 0.2fr;
    gap: 0px;
  }
}
@media only screen and (max-width: 551px) {
  body#gssvi .design-system-flow {
    grid-template-columns: 0.1fr 5fr 0.1fr;
  }
}
body#gssvi .design-copy-sticky {
  position: sticky;
  top: 50svh;
  transform: translate3d(0, calc(-50% + (1 - var(--design-card-progress)) * 180px), 0);
  z-index: 3;
  margin: 0;
  opacity: calc(0.08 + var(--design-card-progress) * 0.92);
  filter: blur(calc((1 - var(--design-card-progress)) * 16px));
  transition: opacity 180ms linear, filter 180ms linear, transform 180ms linear;
}
body#gssvi .design-rail {
  position: relative;
  min-height: 520svh;
  overflow: visible;
  transform: translate3d(0, calc((1 - var(--design-rail-progress)) * 82svh), 0) scale(var(--design-rail-scale));
  transform-origin: 50% 0;
  transition: transform 180ms linear;
}
body#gssvi .design-rail-left {
  z-index: 5;
}
body#gssvi .design-rail-left .design-shot:nth-child(1) {
  --shot-base-x: 14%;
  top: 10svh;
}
body#gssvi .design-rail-left .design-shot:nth-child(2) {
  --shot-base-x: 37%;
  top: 148svh;
}
body#gssvi .design-rail-left .design-shot:nth-child(3) {
  --shot-base-x: 10%;
  top: 332svh;
}
body#gssvi .design-rail-right .design-shot:nth-child(1) {
  --shot-base-x: -12%;
  top: 88svh;
}
body#gssvi .design-rail-right .design-shot:nth-child(2) {
  --shot-base-x: -15%;
  top: 268svh;
}
body#gssvi .design-rail-right .design-shot:nth-child(3) {
  --shot-base-x: -50%;
  top: 434svh;
}
body#gssvi .design-rail img,
body#gssvi .app-image img,
body#gssvi .split-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
body#gssvi .design-shot {
  position: absolute;
  left: 50%;
  display: block;
  object-fit: cover;
  border: 0;
  box-shadow: 0 18px 34px rgba(2, 9, 30, 0.5);
  background: #0a163f;
  --shot-base-x: 0%;
  --shot-shift-y: 0px;
  --shot-scale: 0.94;
  --shot-opacity: 0;
  --shot-opacity-scale: 1;
  --shot-blur: 20px;
  opacity: calc(var(--shot-opacity) * var(--shot-opacity-scale));
  filter: blur(var(--shot-blur));
  transform: translate3d(calc(-50% + var(--shot-base-x)), var(--shot-shift-y), 0) scale(calc(var(--shot-scale) * var(--design-shot-scale, 1)));
  transition: transform 180ms linear, filter 220ms linear, opacity 180ms linear;
  will-change: transform, filter, opacity;
  max-width: none;
}
body#gssvi .design-rail-left .design-shot:nth-child(1) {
  width: 215px;
  aspect-ratio: 215/310;
  z-index: 1;
  --shot-opacity-scale: 1;
}
body#gssvi .design-rail-left .design-shot:nth-child(2) {
  width: 263px;
  aspect-ratio: 263/314;
  z-index: 4;
}
body#gssvi .design-rail-left .design-shot:nth-child(3) {
  width: 246px;
  aspect-ratio: 246/191;
  z-index: 2;
}
body#gssvi .design-rail-right .design-shot:nth-child(1) {
  width: 313px;
  aspect-ratio: 313/190;
  z-index: 3;
}
body#gssvi .design-rail-right .design-shot:nth-child(2) {
  width: 205px;
  aspect-ratio: 205/310;
  z-index: 1;
  --shot-opacity-scale: 0.8;
}
body#gssvi .design-rail-right .design-shot:nth-child(3) {
  width: 246px;
  aspect-ratio: 246/191;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  body#gssvi .design-system-section {
    --design-rail-scale: 0.85;
    --design-shot-scale: 1;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi .design-system-section {
    --design-rail-scale: 0.75;
  }
}

body#gssvi #identity-split {
  --split-progress: 0;
  --split-scroll-length: 330;
  min-height: calc(var(--split-scroll-length) * 1svh);
  align-items: flex-start;
  padding: 0;
}
body#gssvi .split-stage {
  width: 100%;
  min-height: calc(var(--split-scroll-length) * 1svh);
  position: relative;
}
body#gssvi .split-stack {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100svh;
  margin: 0;
  border: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: 35% 65%;
  padding-top: 120px;
}
@media only screen and (max-width: 1280px) {
  body#gssvi .split-stack {
    padding-top: 185px;
  }
}
@media only screen and (max-width: 1024px) {
  body#gssvi .split-stack {
    grid-template-columns: 39% 61%;
  }
}
@media only screen and (max-width: 834px) {
  body#gssvi .split-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 35px;
  }
  body#gssvi .split-stack .split-copy {
    grid-column: 1;
    grid-row: 1;
  }
  body#gssvi .split-stack .split-images {
    grid-column: 1;
    grid-row: 2;
  }
}
body#gssvi .split-copy {
  grid-column: 1;
  grid-row: 1;
  background: transparent;
  color: #ffffff;
  padding: 52px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-left: 35px;
}
@media only screen and (max-width: 834px) {
  body#gssvi .split-copy {
    margin-right: 35px;
    padding: 35px 39px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
body#gssvi .split-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(52px, 5vw, 90px);
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
body#gssvi .split-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}
body#gssvi .split-copy .deco-cross.right-top {
  display: none;
}
body#gssvi .split-copy .deco-cross.left-bottom {
  display: none;
}
body#gssvi .split-copy .deco-cross.right-bottom {
  display: none;
}
@media only screen and (max-width: 834px) {
  body#gssvi .split-copy .deco-cross.right-top {
    display: inline-block;
  }
  body#gssvi .split-copy .deco-cross.left-bottom {
    display: inline-block;
  }
  body#gssvi .split-copy .deco-cross.right-bottom {
    display: inline-block;
  }
}
body#gssvi .split-images {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  height: 100%;
  overflow: visible;
  position: relative;
  aspect-ratio: 5/3;
}
@media only screen and (max-width: 834px) {
  body#gssvi .split-images {
    width: 100%;
    height: auto;
    aspect-ratio: 5/3;
  }
}
body#gssvi .split-image {
  background: transparent;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 120ms linear;
  will-change: transform;
}
body#gssvi .split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
  border: none;
}

body#gssvi #business {
  --business-steps: 4;
  --business-tail-hold: 0.9;
  min-height: calc((var(--business-steps) + var(--business-tail-hold)) * 100svh);
  align-items: flex-start;
}
body#gssvi #business .sec-inner {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: var(--business-last-opacity, 1);
  filter: blur(var(--business-last-blur, 0px));
  transform: translate3d(0, var(--business-last-shift, 0px), 0);
  will-change: opacity, filter, transform;
}
body#gssvi #business .sec-title {
  margin: 0;
  text-align: left;
  text-shadow: 0 0 28px rgba(164, 201, 255, 0.75);
  padding-bottom: 35px;
  font-size: 72px;
}
@media only screen and (max-width: 768px) {
  body#gssvi #business .sec-title {
    text-align: center;
  }
}
@media only screen and (max-width: 551px) {
  body#gssvi #business .sec-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi #business .sec-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi #business {
    padding: 120px 0 100px;
  }
}
body#gssvi .business-wrap {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
  align-items: start;
}
@media only screen and (max-width: 768px) {
  body#gssvi .business-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
body#gssvi .business-wrap .business-visual {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  body#gssvi .business-wrap .business-visual {
    justify-content: center;
    padding: 0 50px;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi .business-wrap .business-visual {
    padding: 0;
  }
}
body#gssvi .business-wrap .app-image {
  width: 85%;
}
body#gssvi .business-wrap .app-image img {
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 768px) {
  body#gssvi .business-wrap .app-image {
    width: 100%;
  }
}
body#gssvi .business-wrap .business-copy {
  padding: 65px 50px 60px 110px;
  margin-left: -150px;
  align-self: start;
  position: relative;
  z-index: 1;
  transform: translateY(-70px);
}
body#gssvi .business-wrap .business-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  body#gssvi .business-wrap .business-copy {
    margin-left: -100px;
    padding: 50px 50px 50px 90px;
  }
}
@media only screen and (max-width: 768px) {
  body#gssvi .business-wrap .business-copy {
    transform: translateY(-85px);
    margin-left: 0;
    padding: 130px 50px 50px;
  }
}
@media only screen and (max-width: 425px) {
  body#gssvi .business-wrap .business-copy {
    width: 90%;
    margin: 0 auto;
    padding: 50px 30px 30px;
    transform: translateY(-15px);
  }
}

body#gssvi .promise-wrap {
  --promise-cta-btn-progress: 0;
  --promise-cta-label-progress: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  width: min(1260px, 100%);
  min-height: calc(100svh - 220px);
  padding-top: 70px;
}
body#gssvi .promise-panel {
  --promise-lt-left: 50%;
  --promise-lt-top: 50%;
  --promise-rt-left: 50%;
  --promise-rt-top: 50%;
  --promise-lb-left: 50%;
  --promise-lb-top: 50%;
  --promise-rb-left: 50%;
  --promise-rb-top: 50%;
  --promise-border-opacity: 0;
  --promise-border-height: 0;
  --promise-panel-progress: 0;
  --promise-text-progress: 0;
  max-width: 730px;
  text-align: center;
  padding: 75px 50px;
  opacity: var(--promise-panel-progress, 1);
  transform: translate3d(0, calc((1 - var(--promise-panel-progress, 1)) * 120px), 0);
  will-change: transform, opacity;
}
body#gssvi .promise-panel::before {
  opacity: var(--promise-border-opacity, 1);
  clip-path: inset(calc((1 - var(--promise-border-height, 1)) * 50%) 0 calc((1 - var(--promise-border-height, 1)) * 50%) 0);
  will-change: opacity, clip-path;
}
body#gssvi .promise-panel .deco-cross.left-top {
  left: var(--promise-lt-left);
  top: var(--promise-lt-top);
}
body#gssvi .promise-panel .deco-cross.right-top {
  left: var(--promise-rt-left);
  top: var(--promise-rt-top);
}
body#gssvi .promise-panel .deco-cross.left-bottom {
  left: var(--promise-lb-left);
  top: var(--promise-lb-top);
}
body#gssvi .promise-panel .deco-cross.right-bottom {
  left: var(--promise-rb-left);
  top: var(--promise-rb-top);
}
body#gssvi .promise-panel p {
  margin: 0;
  font-size: 25px;
  line-height: 1.85;
  text-shadow: 0 0 12px rgba(103, 150, 255, 0.45);
  opacity: var(--promise-text-progress, 1);
  transform: translate3d(0, calc((1 - var(--promise-text-progress, 1)) * 30px), 0);
  will-change: opacity;
}
@media only screen and (max-width: 768px) {
  body#gssvi .promise-panel p {
    font-size: 16px;
    line-height: 2;
  }
}
body#gssvi .promise-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
}
body#gssvi .back-top {
  justify-self: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(214, 228, 255, 0.85);
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 44px;
  line-height: 1;
  margin: 0 auto;
  opacity: var(--promise-cta-btn-progress, 1);
  transform: translate3d(0, calc((1 - var(--promise-cta-btn-progress, 1)) * 26px), 0);
  transition: transform 180ms ease, background 180ms ease, opacity 220ms ease;
  position: relative;
}
body#gssvi .back-top:hover {
  transform: translate3d(0, calc((1 - var(--promise-cta-btn-progress, 1)) * 26px - 2px), 0);
  background: rgba(255, 255, 255, 0.15);
}
body#gssvi .back-top::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/ic_arrow_top.png) no-repeat center center/contain;
}
body#gssvi .back-top-label {
  margin-top: 0;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: var(--promise-cta-label-progress, 1);
  transform: translate3d(0, calc((1 - var(--promise-cta-label-progress, 1)) * -18px), 0);
  will-change: transform, opacity;
}
@media (max-width: 680px) {
  body#gssvi .promise-wrap {
    min-height: calc(100svh - 180px);
    gap: 44px;
  }
  body#gssvi .promise-panel {
    padding: 48px 24px 60px;
  }
  body#gssvi .back-top {
    width: 82px;
    height: 82px;
    font-size: 36px;
  }
  body#gssvi .back-top-label {
    font-size: 22px;
  }
}

/*# sourceMappingURL=gssvi-main.css.map */
